diff --git a/.changeset/shared-file-buffers.md b/.changeset/shared-file-buffers.md deleted file mode 100644 index a68bfdf..0000000 --- a/.changeset/shared-file-buffers.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@medicomind/rolldown-compression": patch ---- - -Pass each source file to Rust once per batch and share its buffer across compression algorithms, with algorithm settings sent separately. diff --git a/.changeset/unified-brotli-encoder.md b/.changeset/unified-brotli-encoder.md deleted file mode 100644 index ac4f0ca..0000000 --- a/.changeset/unified-brotli-encoder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@medicomind/rolldown-compression": patch ---- - -Use the same Brotli encoder for single-section and parallel compression. diff --git a/.changeset/update-wasm-runtime.md b/.changeset/update-wasm-runtime.md deleted file mode 100644 index d1a5080..0000000 --- a/.changeset/update-wasm-runtime.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@medicomind/rolldown-compression": patch ---- - -Update the WebAssembly runtime dependency to @napi-rs/wasm-runtime 1.2.4. diff --git a/CHANGELOG.md b/CHANGELOG.md index bea191a..d416d2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # @medicomind/rolldown-compression +## 2.5.2 + +### Patch Changes + +- [`cb1cfe8`](https://github.com/Medico-Mind/rolldown-compression/commit/cb1cfe835554389b92b3b79f9e57480911ed7498) Thanks [@Mnwa](https://github.com/Mnwa)! - Pass each source file to Rust once per batch and share its buffer across compression algorithms, with algorithm settings sent separately. + +- [`b1fbdfe`](https://github.com/Medico-Mind/rolldown-compression/commit/b1fbdfef82174a8cc8aa8ff3e326d9735c5267b6) Thanks [@Mnwa](https://github.com/Mnwa)! - Use the same Brotli encoder for single-section and parallel compression. + +- [`f8b39cb`](https://github.com/Medico-Mind/rolldown-compression/commit/f8b39cbbd62cfc3f5ca3805182efd3d58804168c) Thanks [@Mnwa](https://github.com/Mnwa)! - Update the WebAssembly runtime dependency to @napi-rs/wasm-runtime 1.2.4. + ## 2.5.1 ### Patch Changes diff --git a/npm/darwin-arm64/package.json b/npm/darwin-arm64/package.json index d7b2ae9..aec4aa2 100644 --- a/npm/darwin-arm64/package.json +++ b/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression-darwin-arm64", - "version": "2.5.1", + "version": "2.5.2", "cpu": [ "arm64" ], @@ -33,4 +33,4 @@ "os": [ "darwin" ] -} \ No newline at end of file +} diff --git a/npm/darwin-x64/package.json b/npm/darwin-x64/package.json index 360b304..674d2b8 100644 --- a/npm/darwin-x64/package.json +++ b/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression-darwin-x64", - "version": "2.5.1", + "version": "2.5.2", "cpu": [ "x64" ], @@ -33,4 +33,4 @@ "os": [ "darwin" ] -} \ No newline at end of file +} diff --git a/npm/linux-arm64-gnu/package.json b/npm/linux-arm64-gnu/package.json index 4af75a3..6afd356 100644 --- a/npm/linux-arm64-gnu/package.json +++ b/npm/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression-linux-arm64-gnu", - "version": "2.5.1", + "version": "2.5.2", "cpu": [ "arm64" ], @@ -36,4 +36,4 @@ "libc": [ "glibc" ] -} \ No newline at end of file +} diff --git a/npm/linux-x64-gnu/package.json b/npm/linux-x64-gnu/package.json index 2a6207b..7647aeb 100644 --- a/npm/linux-x64-gnu/package.json +++ b/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression-linux-x64-gnu", - "version": "2.5.1", + "version": "2.5.2", "cpu": [ "x64" ], @@ -36,4 +36,4 @@ "libc": [ "glibc" ] -} \ No newline at end of file +} diff --git a/npm/linux-x64-musl/package.json b/npm/linux-x64-musl/package.json index 6e56403..185f1c4 100644 --- a/npm/linux-x64-musl/package.json +++ b/npm/linux-x64-musl/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression-linux-x64-musl", - "version": "2.5.1", + "version": "2.5.2", "cpu": [ "x64" ], @@ -36,4 +36,4 @@ "libc": [ "musl" ] -} \ No newline at end of file +} diff --git a/npm/wasm32-wasi/package.json b/npm/wasm32-wasi/package.json index d20420b..99e3d53 100644 --- a/npm/wasm32-wasi/package.json +++ b/npm/wasm32-wasi/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression-wasm32-wasi", - "version": "2.5.1", + "version": "2.5.2", "main": "rolldown-compression.wasi.cjs", "files": [ "rolldown-compression.wasm32-wasi.wasm", diff --git a/npm/win32-x64-msvc/package.json b/npm/win32-x64-msvc/package.json index e4e9640..a52b5a7 100644 --- a/npm/win32-x64-msvc/package.json +++ b/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression-win32-x64-msvc", - "version": "2.5.1", + "version": "2.5.2", "cpu": [ "x64" ], @@ -33,4 +33,4 @@ "os": [ "win32" ] -} \ No newline at end of file +} diff --git a/package-lock.json b/package-lock.json index f66a466..308df38 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@medicomind/rolldown-compression", - "version": "2.5.1", + "version": "2.5.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@medicomind/rolldown-compression", - "version": "2.5.1", + "version": "2.5.2", "license": "MIT", "devDependencies": { "@biomejs/biome": "^2.5.13", diff --git a/package.json b/package.json index 5e17b6a..1f664d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@medicomind/rolldown-compression", - "version": "2.5.1", + "version": "2.5.2", "description": "Fast native (Rust) gzip / brotli / zstd compression plugin for Rolldown, powered by napi-rs", "keywords": [ "rolldown",