Skip to content

Commit a566b2a

Browse files
Update dependencies
1 parent c5d6d5f commit a566b2a

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

frontend/bun.lockb

-5.3 KB
Binary file not shown.

frontend/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,33 @@
1313
"lint": "biome check"
1414
},
1515
"devDependencies": {
16-
"@types/bun": "1.1.13",
16+
"@types/bun": "1.1.14",
1717
"@types/react": "18.3.12",
1818
"@types/react-dom": "18.3.1",
1919
"@types/react-redux": "7.1.34",
20-
"@vitejs/plugin-react": "4.3.3",
21-
"typescript": "5.6.3",
22-
"vite": "5.4.10",
23-
"vite-tsconfig-paths": "5.1.0"
20+
"@vitejs/plugin-react": "4.3.4",
21+
"typescript": "5.7.2",
22+
"vite": "6.0.1",
23+
"vite-tsconfig-paths": "5.1.3"
2424
},
2525
"dependencies": {
2626
"@biomejs/biome": "1.9.4",
27-
"@grafana/faro-react": "1.11.0",
28-
"@grafana/faro-web-sdk": "1.11.0",
29-
"@grafana/faro-web-tracing": "1.11.0",
30-
"@navikt/aksel-icons": "7.5.1",
31-
"@navikt/ds-css": "7.5.1",
32-
"@navikt/ds-react": "7.5.1",
33-
"@navikt/fnrvalidator": "2.1.2",
27+
"@grafana/faro-react": "1.12.2",
28+
"@grafana/faro-web-sdk": "1.12.2",
29+
"@grafana/faro-web-tracing": "1.12.2",
30+
"@navikt/aksel-icons": "7.5.3",
31+
"@navikt/ds-css": "7.5.3",
32+
"@navikt/ds-react": "7.5.3",
33+
"@navikt/fnrvalidator": "2.1.5",
3434
"@navikt/nav-dekoratoren-moduler": "3.1.1",
3535
"@reduxjs/toolkit": "2.3.0",
3636
"@styled-icons/material": "10.47.0",
3737
"date-fns": "4.1.0",
3838
"react": "18.3.1",
3939
"react-dom": "18.3.1",
4040
"react-redux": "9.1.2",
41-
"react-router": "6.28.0",
42-
"react-router-dom": "6.28.0",
41+
"react-router": "7.0.1",
42+
"react-router-dom": "7.0.1",
4343
"styled-components": "6.1.13"
4444
}
4545
}

server/bun.lockb

1 Byte
Binary file not shown.

server/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@
1414
},
1515
"dependencies": {
1616
"@fastify/cors": "10.0.1",
17-
"@fastify/http-proxy": "10.0.1",
17+
"@fastify/http-proxy": "10.0.2",
1818
"@fastify/type-provider-typebox": "5.0.1",
1919
"fastify": "5.1.0",
2020
"fastify-metrics": "12.1.0",
21-
"happy-dom": "15.11.0",
22-
"jose": "5.8.0",
23-
"openid-client": "5.6.5",
21+
"happy-dom": "15.11.7",
22+
"jose": "5.9.1",
23+
"openid-client": "5.7.1",
2424
"prom-client": "15.1.3",
2525
"redis": "4.7.0"
2626
},
2727
"devDependencies": {
2828
"@biomejs/biome": "1.9.4",
29-
"@types/bun": "1.1.13",
30-
"@types/node": "22.9.0",
29+
"@types/bun": "1.1.14",
30+
"@types/node": "22.10.1",
3131
"tsc-alias": "1.8.10",
32-
"typescript": "5.6.3"
32+
"typescript": "5.7.2"
3333
}
3434
}

server/src/config/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const NAIS_CLUSTER_NAME = requiredEnvString('NAIS_CLUSTER_NAME');
1414
const isLocal = NAIS_CLUSTER_NAME === 'local';
1515

1616
const defaultValue = isLocal ? 'local' : undefined;
17-
const localJwk: JWK = {};
17+
const localJwk: JWK = { kty: 'RSA' };
1818

1919
export const TOKEN_X_CLIENT_ID = requiredEnvString('TOKEN_X_CLIENT_ID', defaultValue);
2020
export const TOKEN_X_WELL_KNOWN_URL = requiredEnvString('TOKEN_X_WELL_KNOWN_URL', defaultValue);

0 commit comments

Comments
 (0)