Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .dev/eudiplo/config/test/issuance/issuance.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"issuer": "https://kc-openid4vc.frosch.work/realms/enmeshed-openid4vci"
}
],
"preferredAuthServer": "authorization-server:test-built-in",
"batchSize": 1,
"dPopRequired": false,
"display": [
Expand Down
2 changes: 1 addition & 1 deletion .dev/eudiplo/config/test/presentation/test.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
}
]
},
"accessCertId": "f712261e-70aa-459d-af79-330c86bd0711",
"accessKeyChainId": "c02bae13-e5a5-42fd-94bd-c6999f5e4b45",
"lifeTime": 300
}
2 changes: 1 addition & 1 deletion .dev/eudiplo/startEudiplo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { GenericContainer, StartedTestContainer, Wait } from "testcontainers";
import { fileURLToPath } from "url";

export async function startEudiplo(): Promise<StartedTestContainer> {
return await new GenericContainer("ghcr.io/openwallet-foundation/eudiplo:6.1.0@sha256:1aa0fd250d40c88f842dd5853dba81f87b75bc435b486b79e0789ed9297440ce")
return await new GenericContainer("ghcr.io/openwallet-foundation/eudiplo:7.2.0@sha256:9ea50673acaa8a69bea2043c3abba5c38bc1a994dafa5a2484e72b5d003fd7d1")
.withEnvironment({
PUBLIC_URL: "http://localhost:3000", // eslint-disable-line @typescript-eslint/naming-convention
MASTER_SECRET: "OgwrDcgVQQ2yZwcFt7kPxQm3nUF+X3etF6MdLTstZAY=", // eslint-disable-line @typescript-eslint/naming-convention
Expand Down
20 changes: 19 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>js-soft/renovate-config"],
"reviewers": ["team:npm-dependency-update-reviewers"]
"reviewers": ["team:npm-dependency-update-reviewers"],
"customManagers": [
{
"customType": "regex",
"description": "Update EUDIPLO image when used in test containers",
"managerFilePatterns": ["/\\.ts$/"],
"matchStrings": ["new GenericContainer\\(\"(?<depName>ghcr\\.io/openwallet-foundation/eudiplo):(?<currentValue>[^\"@]+)@(?<currentDigest>sha256:[a-f0-9]+)\"\\)"],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
}
],
"packageRules": [
{
"description": "Update the EUDIPLO SDK and testcontainer image together",
"matchPackageNames": ["@eudiplo/sdk-core", "ghcr.io/openwallet-foundation/eudiplo"],
"groupName": "EUDIPLO",
"groupSlug": "eudiplo"
}
]
}
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"lint:tsc": "npm run --workspaces lint:tsc",
"outdated": "ncu -i && ncu -i --workspaces",
"start:backbone": "docker compose -f .dev/compose.backbone.yml up -d --wait",
"start:openid4vc": "docker run --rm --name eudiplo --add-host host.docker.internal:host-gateway -p 3000:3000 -e PUBLIC_URL=http://localhost:3000 -e MASTER_SECRET='OgwrDcgVQQ2yZwcFt7kPxQm3nUF+X3etF6MdLTstZAY=' -e AUTH_CLIENT_ID='root' -e AUTH_CLIENT_SECRET='test' -e CONFIG_IMPORT=true -e CONFIG_FOLDER=/app/assets/config -e PORT=3000 -v \"$(pwd)/.dev/eudiplo/config:/app/assets/config\" ghcr.io/openwallet-foundation/eudiplo:6.1.0@sha256:1aa0fd250d40c88f842dd5853dba81f87b75bc435b486b79e0789ed9297440ce",
"teardown:backbone": "docker compose -f .dev/compose.backbone.yml down -v",
"teardown:openid4vc": "docker rm -f eudiplo",
"test:teardown": "docker compose -f .dev/compose.yml down -fsv"
Expand Down
2 changes: 1 addition & 1 deletion packages/app-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"lodash": "^4.18.1"
},
"devDependencies": {
"@eudiplo/sdk-core": "6.2.0",
"@eudiplo/sdk-core": "7.0.1",
"@js-soft/node-logger": "1.2.10",
"@types/lodash": "4.17.25",
"@types/lokijs": "1.5.14",
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"ts-simple-nameof": "^1.3.3"
},
"devDependencies": {
"@eudiplo/sdk-core": "6.2.0",
"@eudiplo/sdk-core": "7.0.1",
"@js-soft/docdb-access-loki": "1.4.3",
"@js-soft/docdb-access-mongo": "1.4.3",
"@js-soft/node-logger": "1.2.10",
Expand Down