Skip to content

Commit 0cf81b3

Browse files
committed
chore: upgrade dependencies
1 parent 02edeb6 commit 0cf81b3

File tree

10 files changed

+1957
-1532
lines changed

10 files changed

+1957
-1532
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ RUN apt update
44
RUN apt install -y postgresql-common
55
RUN YES=yes /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
66
RUN apt install -y postgresql-client-17
7-
RUN su node -c "npm install -g pnpm@10.7.0"
7+
RUN su node -c "npm install -g pnpm@10.8.1"

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@
2727
"scminput": false,
2828
"markdown": true
2929
},
30+
"typescript.tsdk": "node_modules/typescript/lib",
3031
}

apps/backend/package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -28,46 +28,46 @@
2828
"test:e2e": "jest --config ./test/jest-e2e.json"
2929
},
3030
"dependencies": {
31-
"@fastify/secure-session": "^8.1.1",
31+
"@fastify/secure-session": "^8.2.0",
3232
"@fastify/static": "^8.1.1",
33-
"@mikro-orm/cli": "^6.4.11",
34-
"@mikro-orm/core": "^6.4.11",
35-
"@mikro-orm/migrations": "^6.4.11",
33+
"@mikro-orm/cli": "^6.4.13",
34+
"@mikro-orm/core": "^6.4.13",
35+
"@mikro-orm/migrations": "^6.4.13",
3636
"@mikro-orm/nestjs": "^6.1.1",
37-
"@mikro-orm/postgresql": "^6.4.11",
38-
"@mikro-orm/reflection": "^6.4.11",
39-
"@mikro-orm/seeder": "^6.4.11",
40-
"@nestjs/common": "^11.0.12",
37+
"@mikro-orm/postgresql": "^6.4.13",
38+
"@mikro-orm/reflection": "^6.4.13",
39+
"@mikro-orm/seeder": "^6.4.13",
40+
"@nestjs/common": "^11.0.20",
4141
"@nestjs/config": "^4.0.2",
42-
"@nestjs/core": "^11.0.12",
43-
"@nestjs/platform-fastify": "^11.0.12",
44-
"@nestjs/swagger": "^11.1.0",
42+
"@nestjs/core": "^11.0.20",
43+
"@nestjs/platform-fastify": "^11.0.20",
44+
"@nestjs/swagger": "^11.1.4",
4545
"@nestjs/terminus": "^11.0.0",
4646
"@quassel/utils": "workspace:*",
4747
"class-transformer": "^0.5.1",
4848
"class-validator": "^0.14.1",
4949
"csv-stringify": "^6.5.2",
5050
"date-fns": "^4.1.0",
51-
"fastify": "5.2.1",
51+
"fastify": "5.3.0",
5252
"hash-wasm": "^4.12.0",
5353
"reflect-metadata": "^0.2.2",
5454
"rxjs": "^7.8.2"
5555
},
5656
"devDependencies": {
57-
"@nestjs/cli": "^11.0.5",
58-
"@nestjs/schematics": "^11.0.2",
59-
"@nestjs/testing": "^11.0.12",
57+
"@nestjs/cli": "^11.0.6",
58+
"@nestjs/schematics": "^11.0.5",
59+
"@nestjs/testing": "^11.0.20",
6060
"@types/jest": "^29.5.14",
61-
"@types/node": "^22.13.16",
61+
"@types/node": "^22.14.1",
6262
"@types/supertest": "^6.0.3",
6363
"jest": "^29.7.0",
6464
"source-map-support": "^0.5.21",
6565
"supertest": "^7.1.0",
66-
"ts-jest": "^29.3.1",
66+
"ts-jest": "^29.3.2",
6767
"ts-loader": "^9.5.2",
6868
"ts-node": "^10.9.2",
6969
"tsconfig-paths": "^4.2.0",
70-
"typescript": "^5.8.2"
70+
"typescript": "^5.8.3"
7171
},
7272
"overrides": {
7373
"sodium-native": "4.2.0"

apps/backend/src/types.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import "@fastify/secure-session";
12
import { SessionData as FastifySessionData } from "@fastify/secure-session";
23
import { UserResponseDto } from "./system/users/user.dto";
34

apps/frontend/package.json

+19-19
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
"generate:icons": "pwa-asset-generator ./public/logo.svg ./public --type png --opaque false --favicon --maskable --manifest ./manifest.json --index ./index.html"
1818
},
1919
"dependencies": {
20-
"@fullcalendar/core": "^6.1.15",
21-
"@fullcalendar/interaction": "^6.1.15",
22-
"@fullcalendar/react": "^6.1.15",
23-
"@fullcalendar/timegrid": "^6.1.15",
24-
"@nanostores/i18n": "^0.12.2",
25-
"@nanostores/persistent": "^0.10.2",
26-
"@nanostores/react": "^0.8.4",
20+
"@fullcalendar/core": "^6.1.17",
21+
"@fullcalendar/interaction": "^6.1.17",
22+
"@fullcalendar/react": "^6.1.17",
23+
"@fullcalendar/timegrid": "^6.1.17",
24+
"@nanostores/i18n": "^1.0.0",
25+
"@nanostores/persistent": "^1.0.0",
26+
"@nanostores/react": "^1.0.0",
2727
"@quassel/ui": "workspace:*",
2828
"@quassel/utils": "workspace:*",
29-
"@tanstack/react-query": "^5.71.1",
30-
"@tanstack/react-router": "^1.114.29",
31-
"nanostores": "^0.11.4",
29+
"@tanstack/react-query": "^5.74.4",
30+
"@tanstack/react-router": "^1.116.0",
31+
"nanostores": "^1.0.1",
3232
"openapi-fetch": "0.13.5",
3333
"openapi-react-query": "0.3.1",
3434
"react": "^19.1.0",
@@ -37,20 +37,20 @@
3737
"devDependencies": {
3838
"@anolilab/unplugin-favicons": "^1.0.5",
3939
"@sinclair/typebox": "^0.34.33",
40-
"@tanstack/router-devtools": "^1.114.31",
41-
"@tanstack/router-plugin": "^1.114.31",
40+
"@tanstack/router-devtools": "^1.116.0",
41+
"@tanstack/router-plugin": "^1.116.1",
4242
"@testing-library/jest-dom": "^6.6.3",
43-
"@testing-library/react": "^16.2.0",
44-
"@types/react": "^19.0.12",
45-
"@types/react-dom": "^19.0.4",
46-
"@vitejs/plugin-react": "^4.3.4",
43+
"@testing-library/react": "^16.3.0",
44+
"@types/react": "^19.1.2",
45+
"@types/react-dom": "^19.1.2",
46+
"@vitejs/plugin-react": "^4.4.1",
4747
"@vitest/coverage-v8": "3.1.1",
4848
"favicons": "^7.2.0",
49-
"jsdom": "^26.0.0",
49+
"jsdom": "^26.1.0",
5050
"openapi-typescript": "^7.6.1",
5151
"openapi-typescript-helpers": "^0.0.15",
52-
"typescript": "^5.8.2",
53-
"vite": "^6.2.4",
52+
"typescript": "^5.8.3",
53+
"vite": "^6.3.2",
5454
"vitest": "^3.1.1"
5555
}
5656
}

apps/website/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"dependencies": {
1313
"@fontsource-variable/montserrat": "^5.2.5",
1414
"@fontsource-variable/onest": "^5.2.7",
15-
"astro": "^5.5.6",
15+
"astro": "^5.7.4",
1616
"reveal.js": "^5.2.1"
1717
},
1818
"devDependencies": {
1919
"@astrojs/check": "^0.9.4",
20-
"@iconify/json": "^2.2.322",
20+
"@iconify/json": "^2.2.329",
2121
"@types/reveal.js": "^5.0.5",
22-
"sharp": "^0.33.5",
23-
"typescript": "^5.8.2",
22+
"sharp": "^0.34.1",
23+
"typescript": "^5.8.3",
2424
"unplugin-icons": "^22.1.0"
2525
}
2626
}

libs/ui/package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,25 @@
2929
"preview": "vite preview"
3030
},
3131
"dependencies": {
32-
"@mantine/core": "7.17.3",
33-
"@mantine/dates": "7.17.3",
34-
"@mantine/form": "7.17.3",
35-
"@mantine/hooks": "7.17.3",
36-
"@mantine/modals": "^7.17.3",
37-
"@mantine/notifications": "7.17.3",
32+
"@mantine/core": "7.17.4",
33+
"@mantine/dates": "7.17.4",
34+
"@mantine/form": "7.17.4",
35+
"@mantine/hooks": "7.17.4",
36+
"@mantine/modals": "^7.17.4",
37+
"@mantine/notifications": "7.17.4",
3838
"@tabler/icons-react": "^3.31.0",
3939
"dayjs": "^1.11.13",
4040
"react": "^19.1.0",
4141
"react-dom": "^19.1.0",
4242
"react-dsv-import": "^0.4.10"
4343
},
4444
"devDependencies": {
45-
"@eslint/js": "^9.23.0",
46-
"@types/react": "^19.0.12",
47-
"@types/react-dom": "^19.0.4",
48-
"@vitejs/plugin-react": "^4.3.4",
49-
"typescript": "^5.8.2",
50-
"vite": "^6.2.4",
45+
"@eslint/js": "^9.25.0",
46+
"@types/react": "^19.1.2",
47+
"@types/react-dom": "^19.1.2",
48+
"@vitejs/plugin-react": "^4.4.1",
49+
"typescript": "^5.8.3",
50+
"vite": "^6.3.2",
5151
"vite-plugin-dts": "^4.5.3",
5252
"vite-plugin-svgr": "^4.3.0"
5353
}

libs/utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
"dayjs": "^1.11.13"
3232
},
3333
"devDependencies": {
34-
"@eslint/js": "^9.23.0",
35-
"typescript": "^5.8.2",
36-
"vite": "^6.2.4",
34+
"@eslint/js": "^9.25.0",
35+
"typescript": "^5.8.3",
36+
"vite": "^6.3.2",
3737
"vite-plugin-dts": "^4.5.3",
3838
"vitest": "^3.1.1"
3939
}

package.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,30 @@
1818
"author": "openscript GmbH",
1919
"license": "MIT",
2020
"devDependencies": {
21-
"@changesets/cli": "^2.28.1",
22-
"@eslint/js": "^9.23.0",
23-
"@nestjs/cli": "^11.0.5",
21+
"@changesets/cli": "^2.29.2",
22+
"@eslint/js": "^9.25.0",
23+
"@nestjs/cli": "^11.0.6",
2424
"@nx-tools/container-metadata": "^6.1.1",
2525
"@nx-tools/nx-container": "^6.2.0",
26-
"@typescript-eslint/parser": "^8.29.0",
27-
"eslint": "^9.23.0",
28-
"eslint-config-prettier": "^10.1.1",
26+
"@typescript-eslint/parser": "^8.30.1",
27+
"eslint": "^9.25.0",
28+
"eslint-config-prettier": "^10.1.2",
2929
"eslint-plugin-astro": "^1.3.1",
30-
"eslint-plugin-prettier": "^5.2.5",
31-
"eslint-plugin-react": "^7.37.4",
30+
"eslint-plugin-prettier": "^5.2.6",
31+
"eslint-plugin-react": "^7.37.5",
3232
"eslint-plugin-react-hooks": "5.2.0",
3333
"eslint-plugin-react-refresh": "^0.4.19",
3434
"globals": "^16.0.0",
35-
"nx": "^20.7.0",
35+
"nx": "^20.8.0",
3636
"prettier": "^3.5.3",
3737
"prettier-plugin-astro": "^0.14.1",
38-
"typescript-eslint": "^8.29.0"
38+
"typescript": "^5.8.3",
39+
"typescript-eslint": "^8.30.1"
3940
},
4041
"engines": {
4142
"node": ">=22.0.0"
4243
},
43-
"packageManager": "pnpm@10.7.0",
44+
"packageManager": "pnpm@10.8.1",
4445
"pnpm": {
4546
"onlyBuiltDependencies": [
4647
"@nestjs/core",

0 commit comments

Comments
 (0)