Skip to content

Commit 3923169

Browse files
authored
Merge pull request #28 from CompassSecurity/chore/bump-deps
chore:updated frontend and backend deps
2 parents 394cf10 + 82c3eaa commit 3923169

8 files changed

Lines changed: 228 additions & 229 deletions

File tree

backend/uv.lock

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

frontend/biome.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",
@@ -9,6 +9,7 @@
99
"includes": [
1010
"**",
1111
"!!**/dist",
12+
"!!public",
1213
"!!src/types/types.gen.ts",
1314
"!!src/types/zod.gen.ts",
1415
"!!src/components/ui",
@@ -24,7 +25,7 @@
2425
"linter": {
2526
"enabled": true,
2627
"rules": {
27-
"recommended": true,
28+
"preset": "recommended",
2829
"correctness": {
2930
"noUnusedVariables": "off",
3031
"noUnusedImports": "off"

frontend/bun.lock

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

frontend/openapi.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

frontend/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,44 +15,44 @@
1515
},
1616
"dependencies": {
1717
"@internationalized/date": "^3.12.2",
18-
"@lucide/vue": "^1.17.0",
19-
"@tailwindcss/vite": "^4.3.0",
18+
"@lucide/vue": "^1.20.0",
19+
"@tailwindcss/vite": "^4.3.1",
2020
"@tanstack/vue-table": "^8.21.3",
2121
"@vee-validate/zod": "^4.15.1",
2222
"@vueuse/core": "^14.3.0",
23-
"axios": "^1.16.1",
23+
"axios": "^1.18.0",
2424
"chart.js": "^4.5.1",
2525
"class-variance-authority": "^0.7.1",
2626
"clsx": "^2.1.1",
27-
"dompurify": "^3.4.7",
28-
"marked": "^18.0.4",
27+
"dompurify": "^3.4.10",
28+
"marked": "^18.0.5",
2929
"oidc-client-ts": "^3.5.0",
3030
"pinia": "^3.0.4",
3131
"qrcode": "^1.5.4",
32-
"reka-ui": "^2.9.8",
32+
"reka-ui": "^2.9.10",
3333
"tailwind-merge": "^3.6.0",
34-
"tailwindcss": "^4.3.0",
34+
"tailwindcss": "^4.3.1",
3535
"vee-validate": "^4.15.1",
36-
"vue": "^3.5.35",
36+
"vue": "^3.5.38",
3737
"vue-chartjs": "^5.3.3",
3838
"vue-input-otp": "^0.3.2",
3939
"vue-router": "^5.1.0",
4040
"vue-sonner": "^2.0.9",
41-
"vuedraggable": "^4.1.0",
41+
"vuedraggable": "^2.24.3",
4242
"zod": "^4.4.3"
4343
},
4444
"devDependencies": {
45-
"@biomejs/biome": "^2.4.16",
46-
"@hey-api/openapi-ts": "^0.97.3",
45+
"@biomejs/biome": "^2.5.0",
46+
"@hey-api/openapi-ts": "^0.98.2",
4747
"@types/marked": "^6.0.0",
48-
"@types/node": "^25.9.1",
48+
"@types/node": "^25.9.3",
4949
"@types/qrcode": "^1.5.6",
5050
"@vitejs/plugin-vue": "^6.0.7",
5151
"@vue/tsconfig": "^0.9.1",
5252
"tw-animate-css": "^1.4.0",
5353
"typescript": "^6.0.3",
5454
"vite": "^8.0.16",
55-
"vue-tsc": "^3.3.3"
55+
"vue-tsc": "^3.3.5"
5656
},
5757
"overrides": {
5858
"handlebars": "^4.7.9"

frontend/src/types/types.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ export type ActivityRead = {
383383
*/
384384
visible?: boolean;
385385
priority?: ActivityPriority | null;
386-
state?: ActivityState | null;
386+
state: ActivityState | null;
387387
/**
388388
* Tags
389389
*/
@@ -670,7 +670,7 @@ export type ActivityUpdate = {
670670
*/
671671
visible?: boolean;
672672
priority?: ActivityPriority | null;
673-
state?: ActivityState | null;
673+
state: ActivityState | null;
674674
/**
675675
* Tags
676676
*/

frontend/src/types/zod.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ export const zActivityUpdate = z.object({
418418
provider: z.string().nullish(),
419419
visible: z.boolean().optional().default(false),
420420
priority: zActivityPriority.nullish(),
421-
state: zActivityState.nullish(),
421+
state: zActivityState.nullable(),
422422
tags: z.array(z.uuid()).optional().default([]),
423423
activity_group_id: z.uuid().nullish(),
424424
updated_at: z.iso.datetime().nullish(),
@@ -912,7 +912,7 @@ export const zActivityRead = z.object({
912912
provider: z.string().nullish(),
913913
visible: z.boolean().optional().default(false),
914914
priority: zActivityPriority.nullish(),
915-
state: zActivityState.nullish(),
915+
state: zActivityState.nullable(),
916916
tags: z.array(zTagRead).optional().default([]),
917917
activity_group_id: z.uuid().nullish(),
918918
updated_at: z.iso.datetime().nullish(),

frontend/src/views/AssessmentView.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,6 @@ const handleGroupToggleVisibility = async (group: ActivityGroupRead) => {
481481
@export="handleExport"
482482
@statistics="handleStatistics"
483483
@manage-assets="handleManageAssets"
484-
@manageAssets="handleManageAssets"
485484
@manage-order="handleManageOrder"
486485
@manage-acl="handleManageACL"
487486
@manage-templates="handleManageTemplates"

0 commit comments

Comments
 (0)