Skip to content

Commit 5facf91

Browse files
committed
Update changelog for 1.2.3 release
1 parent 813b154 commit 5facf91

File tree

2 files changed

+10
-21
lines changed

2 files changed

+10
-21
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [1.2.3] - 2024-02-??
5+
## [1.2.3] - 2024-02-04
66

77
### Added
88

99
- archive: Support semantic methods for subscribing to unarchive events (onExtract), [Issue #47](https://github.com/codedread/bitjs/issues/47).
10+
- archive: Added Gunzipper to decompress gzip files. Only supported on runtimes that supported
11+
DecompressionStream('gzip') for now. [Issue #48](https://github.com/codedread/bitjs/issues/48).
1012
- io: Added a getData() method to ByteBuffer to retrieve a copy of the bytes that have been written.
1113

1214
### Changed
1315

14-
- archive: Error on RAR5 files.
16+
- archive: Unrarrer throws an explicit error when encountering RAR5 files.
17+
- io: ByteBuffer.insertXXX() now throws an error if trying to write past the end of the buffer.
1518

1619
## [1.2.2] - 2024-01-26
1720

package.json

+5-19
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,11 @@
55
"homepage": "https://github.com/codedread/bitjs",
66
"author": "Jeff Schiller",
77
"license": "MIT",
8-
"keywords": [
9-
"binary",
10-
"javascript",
11-
"archive",
12-
"pkzip",
13-
"zip",
14-
"rar",
15-
"tar",
16-
"unzip",
17-
"unrar",
18-
"untar",
19-
"file",
20-
"codecs",
21-
"gif",
22-
"jpeg",
23-
"mp4",
24-
"avc",
25-
"webm",
26-
"webp"
8+
"keywords": [ "binary", "javascript", "archive", "file", "image",
9+
"pkzip", "zip", "rar", "tar", "gzip",
10+
"unzip", "unrar", "untar", "gunzip",
11+
"gif", "jpeg", "png", "webp",
12+
"codecs", "mp4", "avc", "webm"
2713
],
2814
"main": "./index.js",
2915
"type": "module",

0 commit comments

Comments
 (0)