mirror of
https://github.com/asadbek064/hyparquet.git
synced 2025-12-05 22:41:55 +00:00
Publish v1.16.2
This commit is contained in:
parent
ef8e1c8c71
commit
52f056f6be
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## [1.16.2]
|
||||
- Fix readRleBitPackedHybrid when length is zero
|
||||
|
||||
## [1.16.1]
|
||||
- Fix duckdb empty block
|
||||
|
||||
## [1.16.0]
|
||||
- New `parsers` option for custom date parsing.
|
||||
- Breaking change: parquetMetadataAsync moved initialFetchSize into an options object.
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
import javascript from '@eslint/js'
|
||||
import typescript from 'typescript-eslint'
|
||||
import jsdoc from 'eslint-plugin-jsdoc'
|
||||
import globals from 'globals'
|
||||
|
||||
@ -7,7 +6,6 @@ export default [
|
||||
{
|
||||
plugins: {
|
||||
jsdoc,
|
||||
typescript,
|
||||
},
|
||||
|
||||
languageOptions: {
|
||||
@ -19,7 +17,6 @@ export default [
|
||||
|
||||
rules: {
|
||||
...javascript.configs.recommended.rules,
|
||||
...typescript.configs.recommended.rules,
|
||||
'arrow-spacing': 'error',
|
||||
camelcase: 'off',
|
||||
'comma-spacing': 'error',
|
||||
|
||||
13
package.json
13
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "hyparquet",
|
||||
"version": "1.16.1",
|
||||
"version": "1.16.2",
|
||||
"description": "Parquet file parser for JavaScript",
|
||||
"author": "Hyperparam",
|
||||
"homepage": "https://hyperparam.app",
|
||||
@ -54,13 +54,12 @@
|
||||
"test": "vitest run"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "24.0.1",
|
||||
"@vitest/coverage-v8": "3.2.3",
|
||||
"eslint": "9.28.0",
|
||||
"eslint-plugin-jsdoc": "51.0.1",
|
||||
"@types/node": "24.0.3",
|
||||
"@vitest/coverage-v8": "3.2.4",
|
||||
"eslint": "9.29.0",
|
||||
"eslint-plugin-jsdoc": "51.0.3",
|
||||
"hyparquet-compressors": "1.1.1",
|
||||
"typescript": "5.8.3",
|
||||
"typescript-eslint": "8.34.0",
|
||||
"vitest": "3.2.3"
|
||||
"vitest": "3.2.4"
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user