Skip to content

Commit 53940ef

Browse files
authored
Merge pull request #2 from hyparam/upgrade-hightable-and-hyparquet
Upgrade hightable and hyparquet
2 parents afa55a4 + b4440cd commit 53940ef

File tree

9 files changed

+34
-30
lines changed

9 files changed

+34
-30
lines changed

.github/workflows/_common_jobs.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
required: true
77
type: string
88
jobs:
9-
# lint:
10-
# runs-on: ubuntu-latest
11-
# defaults:
12-
# run:
13-
# working-directory: ${{ inputs.workspace }}
14-
# steps:
15-
# - uses: actions/checkout@v4
16-
# - run: npm i
17-
# - run: npm run lint
9+
lint:
10+
runs-on: ubuntu-latest
11+
defaults:
12+
run:
13+
working-directory: ${{ inputs.workspace }}
14+
steps:
15+
- uses: actions/checkout@v4
16+
- run: npm i
17+
- run: npm run lint
1818

1919
typecheck:
2020
runs-on: ubuntu-latest

.github/workflows/ci_hightable_demo.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: hightable-demo
22
on:
3+
workflow_dispatch:
34
push:
45
branches: ["master"]
56
pull_request:

.github/workflows/ci_hyparquet_demo.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: hyparquet-demo
22
on:
3+
workflow_dispatch:
34
push:
45
branches: ["master"]
56
pull_request:

hightable/package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,24 @@
1414
"typecheck": "tsc"
1515
},
1616
"dependencies": {
17-
"hightable": "0.11.0",
17+
"hightable": "0.12.1",
1818
"react": "18.3.1",
1919
"react-dom": "18.3.1",
20-
"react-router": "7.2.0"
20+
"react-router": "7.3.0"
2121
},
2222
"devDependencies": {
2323
"@types/react": "18.3.18",
2424
"@types/react-dom": "18.3.5",
2525
"@vitejs/plugin-react": "4.3.4",
26-
"@vitest/coverage-v8": "3.0.7",
26+
"@vitest/coverage-v8": "3.0.8",
2727
"eslint": "9.21.0",
2828
"eslint-plugin-react": "7.37.4",
29-
"eslint-plugin-react-hooks": "5.1.0",
29+
"eslint-plugin-react-hooks": "5.2.0",
3030
"eslint-plugin-react-refresh": "0.4.19",
31-
"typescript": "5.7.3",
32-
"typescript-eslint": "8.25.0",
33-
"vite": "6.2.0",
34-
"vitest": "3.0.7"
31+
"globals": "16.0.0",
32+
"typescript": "5.8.2",
33+
"typescript-eslint": "8.26.0",
34+
"vite": "6.2.1",
35+
"vitest": "3.0.8"
3536
}
3637
}

hightable/src/data.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const header = ['ID', 'Name', 'Age', 'UUID', 'Text', 'JSON']
1414
const mockData = {
1515
header,
1616
numRows: 10000,
17-
rows({start, end}: {start: number, end: number}) {
17+
rows({ start, end }: { start: number, end: number }) {
1818
const arr: AsyncRow[] = []
1919
for (let i = start; i < end; i++) {
2020
const rand = Math.abs(Math.sin(i + 1))

hyparquet/package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"typecheck": "tsc"
1515
},
1616
"dependencies": {
17-
"@hyparam/components": "0.1.19",
18-
"hightable": "0.11.0",
19-
"hyparquet": "1.8.4",
17+
"hyperparam": "0.2.24",
18+
"hightable": "0.12.1",
19+
"hyparquet": "1.8.6",
2020
"hyparquet-compressors": "1.0.0",
2121
"react": "18.3.1",
2222
"react-dom": "18.3.1"
@@ -25,14 +25,15 @@
2525
"@types/react": "18.3.18",
2626
"@types/react-dom": "18.3.5",
2727
"@vitejs/plugin-react": "4.3.4",
28-
"@vitest/coverage-v8": "3.0.7",
28+
"@vitest/coverage-v8": "3.0.8",
2929
"eslint": "9.21.0",
3030
"eslint-plugin-react": "7.37.4",
31-
"eslint-plugin-react-hooks": "5.1.0",
31+
"eslint-plugin-react-hooks": "5.2.0",
3232
"eslint-plugin-react-refresh": "0.4.19",
33-
"typescript": "5.7.3",
34-
"typescript-eslint": "8.25.0",
35-
"vite": "6.2.0",
36-
"vitest": "3.0.7"
33+
"globals": "16.0.0",
34+
"typescript": "5.8.2",
35+
"typescript-eslint": "8.26.0",
36+
"vite": "6.2.1",
37+
"vitest": "3.0.8"
3738
}
3839
}

hyparquet/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { ReactNode } from 'react'
22
import Page, { PageProps } from './Page.js'
33
import Welcome from './Welcome.js'
44

5-
import { AsyncBufferFrom, asyncBufferFrom, parquetDataFrame } from '@hyparam/components'
65
import { rowCache } from 'hightable'
76
import { byteLengthFromUrl, parquetMetadataAsync } from 'hyparquet'
7+
import { AsyncBufferFrom, asyncBufferFrom, parquetDataFrame } from 'hyperparam'
88
import { useCallback, useEffect, useState } from 'react'
99
import Dropzone from './Dropzone.js'
1010
import Layout from './Layout.js'

hyparquet/src/Dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { cn } from '@hyparam/components'
1+
import { cn } from 'hyperparam'
22
import { ReactNode, useEffect, useRef, useState } from 'react'
33

44
interface DropdownProps {

hyparquet/src/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ErrorBar, cn } from '@hyparam/components'
1+
import { ErrorBar, cn } from 'hyperparam'
22
import { ReactNode, useEffect } from 'react'
33

44
interface LayoutProps {

0 commit comments

Comments
 (0)