diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d5748..1ff75a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Changelog +## [1.13.2] + - Fix duckdb delta encoding (#77 thanks @mike-iqmo). + +## [1.13.1] + - Throw exception for unsupported file_path. + ## [1.13.0] - - Query planner: pre-fetch byte ranges in parallel (#75) + - Query planner: pre-fetch byte ranges in parallel (#75). ## [1.12.1] - Fix conversion of unsigned types. @@ -39,16 +45,16 @@ - Change `readColumn` to return an array of `DecodedArray` (#67). ## [1.8.x] - - Support endpoints without range requests in `asyncBufferFromUrl` (#57). + - Support endpoints without range requests in `asyncBufferFromUrl` (#57 thanks @swlynch99). - Enhance error messages for common parsing issues. - - Mongo-style `filter` option in `parquetQuery`. + - Mongo-style `filter` option in `parquetQuery` (#56 thanks @park-brian). ## [1.7.0] - - Enable `readColumn` to read all rows (#53). + - Enable `readColumn` to read all rows (#53 thanks @park-brian). - Validate url in `asyncBufferFromUrl`. ## [1.6.x] - - Fix timestamp conversion in metadata parsing. + - Fix timestamp conversion in metadata parsing (#45 thanks @cbardasano). - Build TypeScript types before publishing to npm. ## [1.5.0] @@ -62,8 +68,8 @@ - Add support for parsing column and offset indexes (#29). ## [1.2.0] - - Return columns in the requested order (#27). - - Add option to return each row as an object keyed by column names (#25). + - Return columns in the requested order (#27 thanks @cstranstrum). + - Add option to return each row as an object keyed by column names (#25 thanks @cstranstrum). ## [1.1.0] - Export `asyncBufferFromFile` and `asyncBufferFromUrl` utilities. diff --git a/package.json b/package.json index 8bc22fd..cd0f534 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hyparquet", - "version": "1.13.1", + "version": "1.13.2", "description": "Parquet file parser for JavaScript", "author": "Hyperparam", "homepage": "https://hyperparam.app", @@ -47,13 +47,13 @@ "test": "vitest run" }, "devDependencies": { - "@types/node": "22.15.3", - "@vitest/coverage-v8": "3.1.2", + "@types/node": "22.15.18", + "@vitest/coverage-v8": "3.1.3", "eslint": "9.26.0", "eslint-plugin-jsdoc": "50.6.11", "hyparquet-compressors": "1.1.1", "typescript": "5.8.3", - "typescript-eslint": "8.31.1", - "vitest": "3.1.2" + "typescript-eslint": "8.32.1", + "vitest": "3.1.3" } }