@twin.org/core 0.0.1-next.63 → 0.0.1-next.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/docs/changelog.md +14 -0
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -4271,7 +4271,7 @@ class Compression {
|
|
|
4271
4271
|
// GZIP header contains a byte which specifies the OS the
|
|
4272
4272
|
// compression was performed on. We set this to 3 (Unix) to ensure
|
|
4273
4273
|
// that we produce consistent results.
|
|
4274
|
-
if (type ===
|
|
4274
|
+
if (type === CompressionType.Gzip && compressedBytes.length >= 10) {
|
|
4275
4275
|
compressedBytes[9] = 3;
|
|
4276
4276
|
}
|
|
4277
4277
|
return compressedBytes;
|
package/dist/esm/index.mjs
CHANGED
|
@@ -4269,7 +4269,7 @@ class Compression {
|
|
|
4269
4269
|
// GZIP header contains a byte which specifies the OS the
|
|
4270
4270
|
// compression was performed on. We set this to 3 (Unix) to ensure
|
|
4271
4271
|
// that we produce consistent results.
|
|
4272
|
-
if (type ===
|
|
4272
|
+
if (type === CompressionType.Gzip && compressedBytes.length >= 10) {
|
|
4273
4273
|
compressedBytes[9] = 3;
|
|
4274
4274
|
}
|
|
4275
4275
|
return compressedBytes;
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/core - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.64...core-v0.0.1-next.65) (2025-06-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **core:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.63...core-v0.0.1-next.64) (2025-06-19)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
16
|
+
|
|
3
17
|
## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.62...core-v0.0.1-next.63) (2025-06-18)
|
|
4
18
|
|
|
5
19
|
|