Skip to content

Commit 10c43b3

Browse files
dependabot[bot]surajssdCopilotCopilotclaude
authored
deps: bump the dev-dependencies group across 1 directory with 19 updates (#291)
Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Suraj Deshmukh <surajd.service@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Suraj Deshmukh <suraj.deshmukh@microsoft.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Claude Opus 4 <noreply@anthropic.com>
1 parent 4e885ec commit 10c43b3

10 files changed

Lines changed: 816 additions & 580 deletions

File tree

backend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
"devDependencies": {
3333
"@types/bun": "latest",
3434
"@types/js-yaml": "^4.0.9",
35-
"@types/node": "^20.10.6",
36-
"eslint": "^8.56.0",
35+
"@types/node": "^25.9.1",
36+
"eslint": "^10.4.0",
3737
"pino-pretty": "^13.1.3",
3838
"typescript": "5.3.3"
3939
}

bun.lock

Lines changed: 784 additions & 547 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controller/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/kaito-project/airunway/controller
33
go 1.25.3
44

55
require (
6+
github.com/go-logr/logr v1.4.3
67
github.com/google/cel-go v0.26.0
78
github.com/onsi/ginkgo/v2 v2.28.1
89
github.com/onsi/gomega v1.39.1
@@ -29,7 +30,6 @@ require (
2930
github.com/felixge/httpsnoop v1.0.4 // indirect
3031
github.com/fsnotify/fsnotify v1.9.0 // indirect
3132
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
32-
github.com/go-logr/logr v1.4.3 // indirect
3333
github.com/go-logr/stdr v1.2.2 // indirect
3434
github.com/go-logr/zapr v1.3.0 // indirect
3535
github.com/go-openapi/jsonpointer v0.22.4 // indirect

frontend/package.json

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,27 @@
3737
"devDependencies": {
3838
"@playwright/test": "^1.40.1",
3939
"@testing-library/jest-dom": "^6.2.0",
40-
"@testing-library/react": "^14.1.2",
40+
"@testing-library/react": "^16.3.2",
4141
"@testing-library/user-event": "^14.5.2",
42-
"@types/node": "^20.10.6",
43-
"@types/react": "^18.2.47",
44-
"@types/react-dom": "^18.2.18",
42+
"@tailwindcss/postcss": "^4.1.17",
43+
"@types/node": "^25.9.1",
44+
"@types/react": "^18.3.29",
45+
"@types/react-dom": "^18.3.7",
4546
"@types/react-syntax-highlighter": "^15.5.13",
46-
"@typescript-eslint/eslint-plugin": "^6.18.1",
47-
"@typescript-eslint/parser": "^6.18.1",
48-
"@vitejs/plugin-react": "^4.2.1",
49-
"@vitest/coverage-v8": "^1.1.3",
47+
"@typescript-eslint/eslint-plugin": "^8.60.0",
48+
"@typescript-eslint/parser": "^8.60.0",
49+
"@vitejs/plugin-react": "^6.0.2",
50+
"@vitest/coverage-v8": "^4.1.7",
5051
"autoprefixer": "^10.4.16",
51-
"eslint": "^8.56.0",
52-
"eslint-plugin-react-hooks": "^4.6.0",
53-
"eslint-plugin-react-refresh": "^0.4.5",
54-
"jsdom": "^23.2.0",
52+
"eslint": "^10.4.0",
53+
"eslint-plugin-react-hooks": "^7.1.1",
54+
"eslint-plugin-react-refresh": "^0.5.2",
55+
"jsdom": "^29.1.1",
5556
"msw": "^2.0.0",
5657
"postcss": "^8.4.33",
57-
"tailwindcss": "^3.4.1",
58-
"typescript": "^5.3.3",
59-
"vite": "^5.0.11",
60-
"vitest": "^1.1.3"
58+
"tailwindcss": "^4.3.0",
59+
"typescript": "^6.0.3",
60+
"vite": "^8.0.14",
61+
"vitest": "^4.1.7"
6162
}
6263
}

frontend/postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
plugins: {
3-
tailwindcss: {},
3+
"@tailwindcss/postcss": {},
44
autoprefixer: {},
55
},
66
}

frontend/src/index.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import "tailwindcss";
2+
3+
@config "../tailwind.config.js";
44

55
@layer base {
66
:root {

frontend/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"noUnusedParameters": true,
1919
"noFallthroughCasesInSwitch": true,
2020

21-
"baseUrl": ".",
2221
"paths": {
2322
"@/*": ["./src/*"]
2423
}

plugins/headlamp/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
"@emotion/react": "^11.11.1",
2222
"@emotion/styled": "^11.11.0",
2323
"@iconify/react": "^3.2.1",
24-
"@kinvolk/headlamp-plugin": "^0.13.1",
24+
"@kinvolk/headlamp-plugin": "^0.14.0",
2525
"@mui/material": "^5.15.14",
2626
"@testing-library/jest-dom": "^6.9.1",
2727
"@testing-library/react": "^16.0.0",
2828
"@types/react": "^18.3.1",
2929
"@types/react-router-dom": "5",
30-
"@vitejs/plugin-react": "^5.1.2",
31-
"@vitest/coverage-v8": "^1.1.3",
32-
"jsdom": "^23.2.0",
30+
"@vitejs/plugin-react": "^6.0.2",
31+
"@vitest/coverage-v8": "^4.1.7",
32+
"jsdom": "^29.1.1",
3333
"react-router-dom": "5",
34-
"typescript": "^5.6.0",
35-
"vitest": "^1.1.3"
34+
"typescript": "^6.0.3",
35+
"vitest": "^4.1.7"
3636
},
3737
"peerDependencies": {
3838
"react": "^18.2.0",

plugins/headlamp/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020
"declaration": false,
2121
"declarationMap": false,
2222
"outDir": "./dist",
23-
"baseUrl": ".",
2423
"paths": {
25-
"@/*": ["src/*"],
24+
"@/*": ["./src/*"],
2625
"@airunway/shared": ["../../shared/types/index.ts"],
2726
"@airunway/shared/api": ["../../shared/api/index.ts"]
2827
}

shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
"watch": "tsc --watch"
2525
},
2626
"devDependencies": {
27-
"typescript": "^5.3.3"
27+
"typescript": "^6.0.3"
2828
}
2929
}

0 commit comments

Comments
 (0)