mirror of
https://github.com/asadbek064/hyparquet.git
synced 2025-12-29 16:36:37 +00:00
Publish v1.20.2
This commit is contained in:
parent
4b19b19268
commit
0d1fd452aa
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## [1.20.2]
|
||||
- Support S3 presigned URLs in `asyncBufferFromUrl` (#137 thanks @EpsilonPrime)
|
||||
|
||||
## [1.20.1]
|
||||
- Update geospatial and variant metadata
|
||||
|
||||
## [1.20.0]
|
||||
- Mark geospatial columns in GeoParquet with geometry or geography data type (#133)
|
||||
- Add `geoparquet` option to opt out marking GeoParquet columns (#133)
|
||||
|
||||
13
package.json
13
package.json
@ -1,12 +1,13 @@
|
||||
{
|
||||
"name": "hyparquet",
|
||||
"version": "1.20.1",
|
||||
"version": "1.20.2",
|
||||
"description": "Parquet file parser for JavaScript",
|
||||
"author": "Hyperparam",
|
||||
"homepage": "https://hyperparam.app",
|
||||
"keywords": [
|
||||
"ai",
|
||||
"data",
|
||||
"dataset",
|
||||
"hyperparam",
|
||||
"hyparquet",
|
||||
"ml",
|
||||
@ -54,12 +55,12 @@
|
||||
"test": "vitest run"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "24.9.1",
|
||||
"@vitest/coverage-v8": "4.0.2",
|
||||
"eslint": "9.38.0",
|
||||
"eslint-plugin-jsdoc": "61.1.7",
|
||||
"@types/node": "24.10.0",
|
||||
"@vitest/coverage-v8": "4.0.6",
|
||||
"eslint": "9.39.1",
|
||||
"eslint-plugin-jsdoc": "61.1.12",
|
||||
"hyparquet-compressors": "1.1.1",
|
||||
"typescript": "5.9.3",
|
||||
"vitest": "4.0.2"
|
||||
"vitest": "4.0.6"
|
||||
}
|
||||
}
|
||||
|
||||
@ -32,6 +32,8 @@ export { asyncBufferFromUrl, byteLengthFromUrl, cachedAsyncBuffer, flatten, toJs
|
||||
* @typedef {import('../src/types.d.ts').Compressors} Compressors
|
||||
* @typedef {import('../src/types.d.ts').KeyValue} KeyValue
|
||||
* @typedef {import('../src/types.d.ts').Statistics} Statistics
|
||||
* @typedef {import('../src/types.d.ts').GeospatialStatistics} GeospatialStatistics
|
||||
* @typedef {import('../src/types.d.ts').BoundingBox} BoundingBox
|
||||
* @typedef {import('../src/types.d.ts').PageType} PageType
|
||||
* @typedef {import('../src/types.d.ts').PageHeader} PageHeader
|
||||
* @typedef {import('../src/types.d.ts').DataPageHeader} DataPageHeader
|
||||
|
||||
Loading…
Reference in New Issue
Block a user