Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 4a71334

Browse files
Update all dependencies
1 parent a7d68b0 commit 4a71334

File tree

6 files changed

+113
-113
lines changed

6 files changed

+113
-113
lines changed

‎.github/workflows/ci.yml‎

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ jobs:
2020
commits-linting,
2121
forbidden-comments-linting,
2222
]
23-
runs-on: ubuntu-22.04
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- name: Check jobs status
2626
run: if ${{ contains(needs.*.result, 'failure') }}; then exit 1; fi
2727
- name: Dependencies completed
2828
run: echo 'All dependencies completed'
2929

3030
app-code-linting:
31-
runs-on: ubuntu-22.04
31+
runs-on: ubuntu-24.04
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v5
3535
with:
3636
# Make sure the actual branch is checked out when running on pull requests
3737
ref: ${{ github.head_ref }}
@@ -40,9 +40,9 @@ jobs:
4040
with:
4141
gpg-private-key: ${{ secrets.GIT_SECRET_PRIVATE_KEY }}
4242
- name: Setup Node.js
43-
uses: actions/setup-node@v3
43+
uses: actions/setup-node@v5
4444
with:
45-
node-version: '20.9.0'
45+
node-version: '22.20.0'
4646
cache: 'npm'
4747
cache-dependency-path: package-lock.json
4848
- name: Install NPM dependencies
@@ -51,20 +51,20 @@ jobs:
5151
run: npm run build && npm run lint
5252

5353
app-tests-unit-node:
54-
runs-on: ubuntu-22.04
54+
runs-on: ubuntu-24.04
5555
strategy:
5656
matrix:
5757
index: ['1']
5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@v3
60+
uses: actions/checkout@v5
6161
with:
6262
# Make sure the actual branch is checked out when running on pull requests
6363
ref: ${{ github.head_ref }}
6464
- name: Setup Node.js
65-
uses: actions/setup-node@v3
65+
uses: actions/setup-node@v5
6666
with:
67-
node-version: '20.9.0'
67+
node-version: '22.20.0'
6868
cache: 'npm'
6969
cache-dependency-path: package-lock.json
7070
- name: Install NPM dependencies
@@ -74,20 +74,20 @@ jobs:
7474
npm run test:unit:node -- --shard=${{matrix.index}}/1
7575
7676
app-tests-unit-dom:
77-
runs-on: ubuntu-22.04
77+
runs-on: ubuntu-24.04
7878
strategy:
7979
matrix:
8080
index: ['1']
8181
steps:
8282
- name: Checkout
83-
uses: actions/checkout@v3
83+
uses: actions/checkout@v5
8484
with:
8585
# Make sure the actual branch is checked out when running on pull requests
8686
ref: ${{ github.head_ref }}
8787
- name: Setup Node.js
88-
uses: actions/setup-node@v3
88+
uses: actions/setup-node@v5
8989
with:
90-
node-version: '20.9.0'
90+
node-version: '22.20.0'
9191
cache: 'npm'
9292
cache-dependency-path: package-lock.json
9393
- name: Install NPM dependencies
@@ -97,16 +97,16 @@ jobs:
9797
npm run test:unit:dom -- --shard=${{matrix.index}}/1
9898
9999
app-tests-playwright-e2e:
100-
runs-on: ubuntu-22.04
100+
runs-on: ubuntu-24.04
101101
steps:
102102
- name: Checkout
103-
uses: actions/checkout@v3
103+
uses: actions/checkout@v5
104104
with:
105105
ref: ${{ github.head_ref }}
106106
- name: Setup Node.js
107-
uses: actions/setup-node@v3
107+
uses: actions/setup-node@v5
108108
with:
109-
node-version: '20.9.0'
109+
node-version: '22.20.0'
110110
cache: 'npm'
111111
cache-dependency-path: package-lock.json
112112
- name: Install NPM dependencies
@@ -122,7 +122,7 @@ jobs:
122122
run: ./scripts/stack/local/all/e2e/headless.js
123123
- name: Upload data for failed tests
124124
if: failure() && steps.run-e2e-tests.outcome == 'failure'
125-
uses: actions/upload-artifact@v3
125+
uses: actions/upload-artifact@v4
126126
with:
127127
name: e2e-failed-tests-data
128128
path: |
@@ -131,16 +131,16 @@ jobs:
131131
retention-days: 3
132132

133133
app-tests-playwright-api:
134-
runs-on: ubuntu-22.04
134+
runs-on: ubuntu-24.04
135135
steps:
136136
- name: Checkout
137-
uses: actions/checkout@v3
137+
uses: actions/checkout@v5
138138
with:
139139
ref: ${{ github.head_ref }}
140140
- name: Setup Node.js
141-
uses: actions/setup-node@v3
141+
uses: actions/setup-node@v5
142142
with:
143-
node-version: '20.9.0'
143+
node-version: '22.20.0'
144144
cache: 'npm'
145145
cache-dependency-path: package-lock.json
146146
- name: Install NPM dependencies
@@ -156,7 +156,7 @@ jobs:
156156
run: ./scripts/stack/local/all/api/headless.js
157157
- name: Upload data for failed tests
158158
if: failure() && steps.run-api-tests.outcome == 'failure'
159-
uses: actions/upload-artifact@v3
159+
uses: actions/upload-artifact@v4
160160
with:
161161
name: api-failed-tests-data
162162
path: |
@@ -165,10 +165,10 @@ jobs:
165165
retention-days: 3
166166

167167
commits-linting:
168-
runs-on: ubuntu-22.04
168+
runs-on: ubuntu-24.04
169169
steps:
170170
- name: Checkout
171-
uses: actions/checkout@v3
171+
uses: actions/checkout@v5
172172
with:
173173
ref: ${{ github.head_ref }}
174174
- name: 'Validate PR commits messages'
@@ -182,10 +182,10 @@ jobs:
182182
echo "Commits messages are valid"
183183
184184
forbidden-comments-linting:
185-
runs-on: ubuntu-22.04
185+
runs-on: ubuntu-24.04
186186
steps:
187187
- name: Checkout
188-
uses: actions/checkout@v3
188+
uses: actions/checkout@v5
189189
with:
190190
ref: ${{ github.head_ref }}
191191
- name: Setup todos CLI command

‎.tool-versions‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 20.9.0
1+
nodejs 22.20.0

‎docker-compose.local.infra-only.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
postgres:
33
container_name: ${PROJECT_NAME:?err}--postgres
44
hostname: ${PROJECT_NAME:?err}--postgres
5-
image: postgres:15.3-alpine3.18
5+
image: postgres:16.3-alpine3.18
66
# NOTE: To avoid the error "FATAL: role "root" does not exist docker postgres"
77
user: postgres
88
ports:
@@ -30,7 +30,7 @@ services:
3030
# http://localhost:8080/?pgsql=${PROJECT_NAME}--postgres%3A5434&username=postgres&db=postgres&ns=public&select=keys
3131
adminer:
3232
container_name: ${PROJECT_NAME:?err}--adminer
33-
image: adminer:4.8.1-standalone
33+
image: adminer:5.4.0-standalone
3434
ports:
3535
- host_ip: 0.0.0.0
3636
published: 8080 # host

‎docker/app/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM node:20.9.0-alpine3.18 as base-node-version
3+
FROM node:22.2.0-alpine3.18 as base-node-version
44

55
FROM base-node-version as install
66

‎docker/playwright/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright:v1.39.0-jammy as common
1+
FROM mcr.microsoft.com/playwright:v1.55.1-jammy as common
22

33
WORKDIR /playwright
44

‎package.json‎

Lines changed: 81 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -55,90 +55,90 @@
5555
"packages:audit": "npm audit"
5656
},
5757
"dependencies": {
58-
"@floating-ui/dom": "1.5.3",
59-
"@lucia-auth/adapter-prisma": "3.0.2",
60-
"@lucia-auth/oauth": "3.4.0",
61-
"@prisma/client": "5.5.2",
62-
"@sentry/sveltekit": "7.99.0",
63-
"callsites": "4.1.0",
64-
"dayjs": "1.11.10",
58+
"@floating-ui/dom": "1.7.4",
59+
"@lucia-auth/adapter-prisma": "4.0.1",
60+
"@lucia-auth/oauth": "3.5.3",
61+
"@prisma/client": "6.16.3",
62+
"@sentry/sveltekit": "10.17.0",
63+
"callsites": "4.2.0",
64+
"dayjs": "1.11.18",
6565
"lodash": "4.17.21",
66-
"lucia": "2.7.3",
67-
"posthog-js": "1.102.0",
68-
"posthog-node": "3.6.1",
69-
"roarr": "7.21.0",
70-
"serialize-error": "11.0.3",
71-
"sveltekit-flash-message": "2.3.0",
72-
"sveltekit-superforms": "1.12.0",
73-
"zod": "3.22.4"
66+
"lucia": "3.2.2",
67+
"posthog-js": "1.270.1",
68+
"posthog-node": "5.9.2",
69+
"roarr": "7.21.1",
70+
"serialize-error": "12.0.0",
71+
"sveltekit-flash-message": "2.4.6",
72+
"sveltekit-superforms": "2.27.2",
73+
"zod": "4.1.11"
7474
},
7575
"devDependencies": {
76-
"@faker-js/faker": "8.2.0",
77-
"@iconify/json": "2.2.137",
78-
"@northflank/cli": "0.9.12",
79-
"@playwright/test": "1.39.0",
76+
"@faker-js/faker": "10.0.0",
77+
"@iconify/json": "2.2.391",
78+
"@northflank/cli": "0.10.8",
79+
"@playwright/test": "1.55.1",
8080
"@roarr/cli": "5.12.4",
81-
"@skeletonlabs/skeleton": "2.4.0",
82-
"@skeletonlabs/tw-plugin": "0.2.3",
83-
"@sveltejs/adapter-auto": "2.1.1",
84-
"@sveltejs/adapter-node": "1.3.1",
85-
"@sveltejs/kit": "1.27.3",
86-
"@tailwindcss/forms": "0.5.6",
87-
"@tailwindcss/typography": "0.5.10",
88-
"@testing-library/dom": "9.3.3",
89-
"@testing-library/jest-dom": "6.1.5",
90-
"@testing-library/svelte": "4.0.5",
91-
"@testing-library/user-event": "14.5.1",
92-
"@types/estree": "1.0.4",
93-
"@types/jsdom": "21.1.6",
94-
"@types/lodash": "4.14.200",
95-
"@types/node": "20.8.10",
96-
"@types/shelljs": "0.8.14",
97-
"@typescript-eslint/eslint-plugin": "6.9.1",
98-
"@typescript-eslint/parser": "6.9.1",
99-
"@vitest/browser": "1.0.4",
100-
"@vitest/coverage-v8": "1.0.4",
101-
"@vitest/ui": "1.0.4",
102-
"autoprefixer": "10.4.16",
103-
"commander": "11.1.0",
104-
"dotenv": "16.3.1",
105-
"eslint": "8.53.0",
106-
"eslint-config-prettier": "9.0.0",
107-
"eslint-plugin-jest-dom": "5.1.0",
108-
"eslint-plugin-playwright": "1.5.4",
109-
"eslint-plugin-simple-import-sort": "12.0.0",
110-
"eslint-plugin-svelte": "2.34.1",
111-
"eslint-plugin-testing-library": "6.1.0",
112-
"ignore": "5.3.0",
113-
"jsdom": "23.0.1",
114-
"npm-check-updates": "16.14.6",
115-
"playwright": "1.39.0",
116-
"postcss": "8.4.31",
117-
"postcss-html": "1.5.0",
118-
"postcss-import": "15.1.0",
119-
"postcss-load-config": "4.0.1",
120-
"postcss-nesting": "12.0.1",
121-
"postcss-preset-env": "9.3.0",
122-
"prettier": "3.0.3",
123-
"prettier-plugin-svelte": "3.0.3",
124-
"prettier-plugin-tailwindcss": "0.5.6",
125-
"pretty-format": "29.7.0",
126-
"prisma": "5.5.2",
127-
"rollup-plugin-visualizer": "5.9.2",
128-
"shelljs": "0.8.5",
129-
"stylelint": "15.11.0",
130-
"stylelint-config-recommended": "13.0.0",
131-
"stylelint-config-standard": "34.0.0",
132-
"svelte": "4.2.2",
133-
"svelte-check": "3.5.2",
134-
"svelte-portal": "2.2.0",
135-
"tailwindcss": "3.3.5",
136-
"tslib": "2.6.2",
137-
"tsx": "3.14.0",
138-
"typescript": "5.2.2",
139-
"unplugin-icons": "0.17.3",
140-
"vite": "4.5.0",
141-
"vite-plugin-tailwind-purgecss": "0.1.3",
142-
"vitest": "1.0.4"
81+
"@skeletonlabs/skeleton": "3.2.2",
82+
"@skeletonlabs/tw-plugin": "0.4.1",
83+
"@sveltejs/adapter-auto": "6.1.1",
84+
"@sveltejs/adapter-node": "5.3.3",
85+
"@sveltejs/kit": "2.43.8",
86+
"@tailwindcss/forms": "0.5.10",
87+
"@tailwindcss/typography": "0.5.19",
88+
"@testing-library/dom": "10.4.1",
89+
"@testing-library/jest-dom": "6.9.1",
90+
"@testing-library/svelte": "5.2.8",
91+
"@testing-library/user-event": "14.6.1",
92+
"@types/estree": "1.0.8",
93+
"@types/jsdom": "27.0.0",
94+
"@types/lodash": "4.17.20",
95+
"@types/node": "22.18.8",
96+
"@types/shelljs": "0.8.17",
97+
"@typescript-eslint/eslint-plugin": "8.45.0",
98+
"@typescript-eslint/parser": "8.45.0",
99+
"@vitest/browser": "3.2.4",
100+
"@vitest/coverage-v8": "3.2.4",
101+
"@vitest/ui": "3.2.4",
102+
"autoprefixer": "10.4.21",
103+
"commander": "14.0.1",
104+
"dotenv": "17.2.3",
105+
"eslint": "9.37.0",
106+
"eslint-config-prettier": "10.1.8",
107+
"eslint-plugin-jest-dom": "5.5.0",
108+
"eslint-plugin-playwright": "2.2.2",
109+
"eslint-plugin-simple-import-sort": "12.1.1",
110+
"eslint-plugin-svelte": "3.12.4",
111+
"eslint-plugin-testing-library": "7.11.0",
112+
"ignore": "7.0.5",
113+
"jsdom": "27.0.0",
114+
"npm-check-updates": "19.0.0",
115+
"playwright": "1.55.1",
116+
"postcss": "8.5.6",
117+
"postcss-html": "1.8.0",
118+
"postcss-import": "16.1.1",
119+
"postcss-load-config": "6.0.1",
120+
"postcss-nesting": "13.0.2",
121+
"postcss-preset-env": "10.4.0",
122+
"prettier": "3.6.2",
123+
"prettier-plugin-svelte": "3.4.0",
124+
"prettier-plugin-tailwindcss": "0.6.14",
125+
"pretty-format": "30.2.0",
126+
"prisma": "6.16.3",
127+
"rollup-plugin-visualizer": "6.0.4",
128+
"shelljs": "0.10.0",
129+
"stylelint": "16.25.0",
130+
"stylelint-config-recommended": "17.0.0",
131+
"stylelint-config-standard": "39.0.0",
132+
"svelte": "5.39.8",
133+
"svelte-check": "4.3.2",
134+
"svelte-portal": "2.2.1",
135+
"tailwindcss": "4.1.14",
136+
"tslib": "2.8.1",
137+
"tsx": "4.20.6",
138+
"typescript": "5.9.3",
139+
"unplugin-icons": "22.4.2",
140+
"vite": "7.1.9",
141+
"vite-plugin-tailwind-purgecss": "0.3.5",
142+
"vitest": "3.2.4"
143143
}
144144
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /