diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a6c62..d949a20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,19 @@ All notable changes to this project will be documented in this file. -## [1.2.3] - 2024-02-?? +## [1.2.3] - 2024-02-04 ### Added - archive: Support semantic methods for subscribing to unarchive events (onExtract), [Issue #47](https://github.com/codedread/bitjs/issues/47). +- archive: Added Gunzipper to decompress gzip files. Only supported on runtimes that supported + DecompressionStream('gzip') for now. [Issue #48](https://github.com/codedread/bitjs/issues/48). - io: Added a getData() method to ByteBuffer to retrieve a copy of the bytes that have been written. ### Changed -- archive: Error on RAR5 files. +- archive: Unrarrer throws an explicit error when encountering RAR5 files. +- io: ByteBuffer.insertXXX() now throws an error if trying to write past the end of the buffer. ## [1.2.2] - 2024-01-26 diff --git a/package.json b/package.json index 6de6076..acd5e47 100644 --- a/package.json +++ b/package.json @@ -5,25 +5,11 @@ "homepage": "https://github.com/codedread/bitjs", "author": "Jeff Schiller", "license": "MIT", - "keywords": [ - "binary", - "javascript", - "archive", - "pkzip", - "zip", - "rar", - "tar", - "unzip", - "unrar", - "untar", - "file", - "codecs", - "gif", - "jpeg", - "mp4", - "avc", - "webm", - "webp" + "keywords": [ "binary", "javascript", "archive", "file", "image", + "pkzip", "zip", "rar", "tar", "gzip", + "unzip", "unrar", "untar", "gunzip", + "gif", "jpeg", "png", "webp", + "codecs", "mp4", "avc", "webm" ], "main": "./index.js", "type": "module",