@scayle/unstorage-compression-driver
1.2.1
Patch Changes
- Updated dependency
[email protected]to[email protected]
1.2.0
Minor Changes
- Added optional OpenTelemetry tracing around compression and decompression events. To enable this feature, add the buildtime environment variable
UNSTORAGE_COMPRESSION_OTEL_TRACE=true.
Patch Changes
- Added dependency
@opentelemetry/api@^1.9.0
1.1.0
Minor Changes
- Removed
destras dependency and and replaced its usage withJSON.parsefor string to object parsing. Depending on the payload size, this should have marginal positive impact on the overall parsing performance. This is an internal refactoring and does not affect usage.
Patch Changes
- Removed dependency
[email protected]
1.0.2
Patch Changes
- Updated dependency
[email protected]to[email protected]
1.0.1
Patch Changes
- Updated dependency
[email protected]to[email protected]
1.0.0
Major Changes
- Drop CommonJS support. The package is now ESM-only. If you are using this package in a Nuxt 3 context, you should have no issues.
0.2.7
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.2.6
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.2.5
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.2.4
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.2.3
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.2.2
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.2.1
Patch Changes
- Fix publishing error which caused some files to be missing
0.2.0
Minor Changes
- Resolved warnings with the types and exports configuration reported by
AreTheTypesWronghttps://github.com/arethetypeswrong/arethetypeswrong.github.io. This was done as a preventative measure to protect against potential ESM or TypeScript issues.
Additionally, we now build the library withunbuildrather thantsc.
This is essentially an internal refactor and should have no user-visible changes. However, as part of this change, thecompressionandtypesexport configurations were removed frompackage.json. The exports were unused, but are mentioned here as it could possibly result in a breaking change.
0.1.5
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.1.4
Patch Changes
- Updated dependency
[email protected]to[email protected]
0.1.3
Patch Changes
- Format code with dprint
0.1.2
Patch Changes
- Removed unnecessary warning message that indicated that no cache value has been available
0.1.1
Patch Changes
- Introduce
@scayle/unstorage-compression-driverpackage as custom unstorage driver. It allows to compress values withdeflate,gziporbrotliusingnode:zlibwhile passing the data source handling to a generic supported driver likeredisorVercel KV.