mirror of
https://github.com/asadbek064/hyparquet.git
synced 2025-12-05 22:41:55 +00:00
Publish v1.16.0
This commit is contained in:
parent
8609192b23
commit
f8ecf52bed
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## [1.16.0]
|
||||
- New `parsers` option for custom date parsing.
|
||||
- Breaking change: parquetMetadataAsync moved initialFetchSize into an options object.
|
||||
|
||||
## [1.15.0]
|
||||
- Change packaging to have node-specific exports for `asyncBufferFromFile` (#80).
|
||||
|
||||
|
||||
12
package.json
12
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "hyparquet",
|
||||
"version": "1.15.0",
|
||||
"version": "1.16.0",
|
||||
"description": "Parquet file parser for JavaScript",
|
||||
"author": "Hyperparam",
|
||||
"homepage": "https://hyperparam.app",
|
||||
@ -54,13 +54,13 @@
|
||||
"test": "vitest run"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "22.15.29",
|
||||
"@vitest/coverage-v8": "3.1.4",
|
||||
"@types/node": "24.0.0",
|
||||
"@vitest/coverage-v8": "3.2.3",
|
||||
"eslint": "9.28.0",
|
||||
"eslint-plugin-jsdoc": "50.6.17",
|
||||
"eslint-plugin-jsdoc": "50.7.1",
|
||||
"hyparquet-compressors": "1.1.1",
|
||||
"typescript": "5.8.3",
|
||||
"typescript-eslint": "8.33.0",
|
||||
"vitest": "3.1.4"
|
||||
"typescript-eslint": "8.34.0",
|
||||
"vitest": "3.2.3"
|
||||
}
|
||||
}
|
||||
|
||||
2
src/types.d.ts
vendored
2
src/types.d.ts
vendored
@ -9,7 +9,7 @@ export interface ParquetParsers {
|
||||
}
|
||||
|
||||
/**
|
||||
* Paruqet Metadata options for metadata parsing
|
||||
* Parquet Metadata options for metadata parsing
|
||||
*/
|
||||
export interface MetadataOptions {
|
||||
parsers?: ParquetParsers // custom parsers to decode advanced types
|
||||
|
||||
Loading…
Reference in New Issue
Block a user