Skip to content

Commit 4339989

Browse files
authored
fix: deps update, also using jsdom in frontend tests (#255)
* fix: deps update, also using jsdom in frontend tests * fix: stylelint update
1 parent 2454249 commit 4339989

7 files changed

Lines changed: 472 additions & 374 deletions

File tree

.github/workflows/sbom-compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
severity-cutoff: high
5050

5151
- name: Upload SBOM Artifact
52-
uses: actions/upload-artifact@v6
52+
uses: actions/upload-artifact@v7
5353
with:
5454
name: ${{ matrix.component }}-sbom
5555
path: ${{ matrix.component }}-sbom.spdx.json

.github/workflows/stack-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ jobs:
284284
285285
- name: Upload logs
286286
if: failure()
287-
uses: actions/upload-artifact@v6
287+
uses: actions/upload-artifact@v7
288288
with:
289289
name: backend-e2e-logs
290290
path: logs/
@@ -351,7 +351,7 @@ jobs:
351351
run: CI=true npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
352352

353353
- name: Upload Playwright report
354-
uses: actions/upload-artifact@v6
354+
uses: actions/upload-artifact@v7
355355
if: always()
356356
with:
357357
name: playwright-report-${{ matrix.shardIndex }}
@@ -368,7 +368,7 @@ jobs:
368368
369369
- name: Upload logs
370370
if: failure()
371-
uses: actions/upload-artifact@v6
371+
uses: actions/upload-artifact@v7
372372
with:
373373
name: frontend-e2e-logs-${{ matrix.shardIndex }}
374374
path: logs/

backend/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ dependencies = [
1919
"Brotli==1.2.0",
2020
"cachetools==6.2.4",
2121
"certifi==2024.8.30",
22-
"charset-normalizer==3.4.0",
22+
"charset-normalizer==3.4.4",
2323
"click==8.3.1",
2424
"ConfigArgParse==1.7.1",
25-
"aiokafka==0.12.0",
25+
"aiokafka==0.13.0",
2626
"Deprecated==1.2.14",
2727
"dishka==1.7.2",
2828
"dnspython==2.8.0",
@@ -31,7 +31,7 @@ dependencies = [
3131
"exceptiongroup==1.2.2",
3232
"fastapi==0.128.0",
3333
"frozenlist==1.7.0",
34-
"google-auth==2.47.0",
34+
"google-auth==2.48.0",
3535
"googleapis-common-protos==1.70.0",
3636
"greenlet==3.3.2",
3737
"grpcio==1.76.0",
@@ -44,7 +44,7 @@ dependencies = [
4444
"importlib-resources==6.5.2",
4545
"itsdangerous==2.2.0",
4646
"Jinja2==3.1.6",
47-
"kubernetes_asyncio==34.3.3",
47+
"kubernetes_asyncio==35.0.1",
4848
"limits==5.6.0",
4949
"markdown-it-py==4.0.0",
5050
"MarkupSafe==3.0.2",
@@ -130,7 +130,7 @@ test = [
130130
"coverage==7.13.0",
131131
"hypothesis==6.151.6",
132132
"iniconfig==2.3.0",
133-
"pluggy==1.5.0",
133+
"pluggy==1.6.0",
134134
"pytest==9.0.2",
135135
"pytest-asyncio==1.3.0",
136136
"pytest-cov==5.0.0",

backend/uv.lock

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

frontend/.stylelintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
}],
1010
"import-notation": null,
1111
"no-descending-specificity": null,
12+
"nesting-selector-no-missing-scoping-root": [true, {
13+
"ignoreAtRules": ["utility", "variant", "custom-variant"]
14+
}],
1215
"function-no-unknown": [true, {
1316
"ignoreFunctions": ["theme", "alpha", "spacing"]
1417
}],

0 commit comments

Comments
 (0)