Skip to content

Commit 574f0d1

Browse files
authored
update dependencies (#326)
Notes (cc @platypii): - upgrades hyparquet to get support for geometry/geography - we can upgrade to the last version of typescript because they reverted the commit that was breaking typescript-eslint - the react hook config must be changed to "recommended" - I removed a type assertion, as typescript-eslint now errors on it
1 parent fe44274 commit 574f0d1

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default typescript.config(
3030
rules: {
3131
...react.configs.recommended.rules,
3232
...react.configs['jsx-runtime'].rules,
33-
...reactHooks.configs['recommended-latest'].rules,
33+
...reactHooks.configs['recommended'].rules,
3434
'react-refresh/only-export-components': [
3535
'warn',
3636
{ allowConstantExport: true },

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -56,34 +56,34 @@
5656
},
5757
"dependencies": {
5858
"hightable": "0.20.0",
59-
"hyparquet": "1.18.0",
59+
"hyparquet": "1.19.0",
6060
"hyparquet-compressors": "1.1.1",
6161
"icebird": "0.3.0"
6262
},
6363
"devDependencies": {
6464
"@eslint/js": "9.36.0",
65-
"@storybook/react-vite": "9.1.8",
65+
"@storybook/react-vite": "9.1.10",
6666
"@testing-library/react": "16.3.0",
67-
"@types/node": "24.5.2",
68-
"@types/react": "19.1.13",
69-
"@types/react-dom": "19.1.9",
70-
"@vitejs/plugin-react": "5.0.3",
67+
"@types/node": "24.6.2",
68+
"@types/react": "19.2.0",
69+
"@types/react-dom": "19.2.0",
70+
"@vitejs/plugin-react": "5.0.4",
7171
"@vitest/coverage-v8": "3.2.4",
7272
"eslint": "9.36.0",
7373
"eslint-plugin-react": "7.37.5",
74-
"eslint-plugin-react-hooks": "5.2.0",
75-
"eslint-plugin-react-refresh": "0.4.21",
76-
"eslint-plugin-storybook": "9.1.8",
74+
"eslint-plugin-react-hooks": "6.1.0",
75+
"eslint-plugin-react-refresh": "0.4.23",
76+
"eslint-plugin-storybook": "9.1.10",
7777
"globals": "16.4.0",
7878
"jsdom": "27.0.0",
7979
"nodemon": "3.1.10",
8080
"npm-run-all": "4.1.5",
81-
"react": "19.1.1",
82-
"react-dom": "19.1.1",
83-
"storybook": "9.1.8",
84-
"typescript": "5.8.3",
85-
"typescript-eslint": "8.44.1",
86-
"vite": "7.1.7",
81+
"react": "19.2.0",
82+
"react-dom": "19.2.0",
83+
"storybook": "9.1.10",
84+
"typescript": "5.9.3",
85+
"typescript-eslint": "8.45.0",
86+
"vite": "7.1.9",
8787
"vitest": "3.2.4"
8888
},
8989
"peerDependencies": {

src/components/JsonView/JsonView.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('JsonView Component', () => {
1515

1616
it('renders json content as nested lists (if not collapsed)', async () => {
1717
const text = '{"key":["value"]}'
18-
const body = encoder.encode(text).buffer as ArrayBuffer
18+
const body = encoder.encode(text).buffer
1919
const source: FileSource = {
2020
resolveUrl: 'testKey0',
2121
kind: 'file',
@@ -66,7 +66,7 @@ describe('JsonView Component', () => {
6666
})
6767

6868
it('displays an error when the json content is invalid', async () => {
69-
const body = encoder.encode('INVALIDJSON').buffer as ArrayBuffer
69+
const body = encoder.encode('INVALIDJSON').buffer
7070
const source: FileSource = {
7171
resolveUrl: 'testKey2',
7272
kind: 'file',

0 commit comments

Comments
 (0)