Skip to content

Commit

Permalink
Upgrade to node 20 and update minor dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Oct 21, 2023
1 parent 5a13dfe commit c357a28
Show file tree
Hide file tree
Showing 6 changed files with 1,746 additions and 945 deletions.
2 changes: 1 addition & 1 deletion .github/actions/cargo-build-macos-binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
shell: bash
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: "yarn"
cache-dependency-path: quickwit/quickwit-ui/yarn.lock
- run: make build-ui
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cross-build-binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
shell: bash
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: "yarn"
cache-dependency-path: quickwit/quickwit-ui/yarn.lock
- run: make build-ui
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: "yarn"
cache-dependency-path: quickwit/quickwit-ui/yarn.lock
- name: Install rustup
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18 as ui-builder
FROM node:20 as ui-builder

COPY quickwit/quickwit-ui /quickwit/quickwit-ui

Expand Down
26 changes: 13 additions & 13 deletions quickwit/quickwit-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
"proxy": "http://127.0.0.1:7280",
"homepage": "/ui/",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.114",
"@mui/material": "^5.11.2",
"@mui/system": "^5.11.2",
"@mui/x-date-pickers": "^5.0.12",
"@types/jest": "^27.4.1",
"@types/node": "^16.7.13",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/swagger-ui-react": "^4.11.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@types/swagger-ui-react": "^4.18.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"dayjs": "^1.11.7",
"monaco-editor": "^0.34.1",
"monaco-editor-webpack-plugin": "^7.0.1",
Expand All @@ -33,7 +33,7 @@
"react-scripts": "~5.0.1",
"styled-components": "^5.3.6",
"styled-icons": "^10.47.0",
"swagger-ui-react": "^4.18.1",
"swagger-ui-react": "^5.9.0",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
Expand Down Expand Up @@ -69,12 +69,12 @@
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"cypress": "8.5",
"jest": "^27.5.1",
"ts-jest": "^27.1.4"
"@testing-library/user-event": "^14.5.1",
"cypress": "13.3.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
},
"jest": {
"moduleNameMapper": {
Expand Down
Loading

0 comments on commit c357a28

Please sign in to comment.