Sandro Circi

Results 228 comments of Sandro Circi

With https://github.com/unjs/h3/pull/997/commits/d0d0de25709b01fab2f7518ea9e4544b8b140b7f I decided to restart from scratch, as I was having issues when testing the JWEs against other tools. But while doing so I've noticed an issue with the...

All `PBES2` are now supported as well as all `GCM` content encryption ones. I wasn't able to add CBC out of the box, but this could be done `[email protected]` IMO....

> While JWE migration looks promising, I prefer to keep backward compatibility with ironcrypto format so users can choose either and won't cause incompatibility with current usages. > > It...

Also, on the topic of `useSession` API, JWE does support zip compression, but it requires full control of the payload (meaning that it should be compressed AFTER serialization, something improssilbe...

Sorry @pi0 if I haven't worked on this, yet. I cannot stop thinking about the data invalidation issue (that was also pointed out in this issue https://github.com/unjs/h3/issues/1004) while keeping a...

Ideally we would update `useSession` to be based on `JWE` just by deprecating `iron-crypto` and writing a [standard JWE content](https://datatracker.ietf.org/doc/html/rfc7516#page-8) (potentially making the sealed content even smaller in normal use-cases):...

I can only speak in relation to https://github.com/nuxt/ui/pull/2263, but I would like to document it anyway. The issue we were facing was related to upgrading from `alpha.24` [to `alpha .25`](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.0.0-alpha.25),...

Also noticed another type issue, which to me seems to be legal: ```ts export const toArray = (schema: Schema) => v.pipe( v.union([ schema, v.array(schema), ]), v.transform(a => Array.isArray(a) ? a...

Once on holiday I'll try to investigate and hopefully submit a PR

> Could you provide an even more minimal example and describe the expected and current behavior? Keep in mind that by accessing `pagination.entries` only accesses the entries of the `pagination`...