Skip to content

Commit 31270b4

Browse files
committed
WIP
1 parent 714823d commit 31270b4

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

docs/6-oidc-upgrade.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ apply those relevant to your deployment.
77

88
New features:
99

10-
- Instance can now be configured to support multiple protocol (Connect) and
11-
Federation signing algorithms and key pairs. This was introduced in order to
12-
support signature algorithm negotiation with the clients.
10+
- Instance can now be configured to support multiple algorithms and signature
11+
keys for protocol (Connect), Federation, and VCI purposes. This was introduced
12+
to support signature algorithm negotiation with the clients.
1313
- Clients can now be configured with new properties:
1414
- ID Token Signing Algorithm (`id_token_signed_response_alg`)
1515
- Initial support for OpenID for Verifiable Credential Issuance
@@ -111,7 +111,7 @@ find appropriate.
111111
- Entity Identifier
112112
- Supported OpenID Federation Registration Types
113113
- Federation JWKS
114-
- Protocol JWKS, JWKS URI and Signed JWKS URI,
114+
- Protocol JWKS, JWKS URI, and Signed JWKS URI,
115115
- Registration type (manual, federated_automatic, or other in the future)
116116
- Is Federated flag (indicates participation in federation context)
117117
- Timestamps: created_at, updated_at, expires_at

tests/unit/src/ModuleConfigTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ protected function setUp(): void
9393
$this->sspBridgeUtilsConfigMock = $this->createMock(Config::class);
9494
$this->sspBridgeUtilsConfigMock->method('getCertPath')
9595
->willReturnCallback(
96-
fn(string $filename): string => dirname(__DIR__, 2) . '/cert/' . $filename
96+
fn(string $filename): string => dirname(__DIR__, 2) . '/cert/' . $filename,
9797
);
9898
$this->sspBridgeUtilsHttpMock = $this->createMock(HTTP::class);
9999

@@ -286,7 +286,6 @@ public function testGetFederationSignatureKeyPairBagThrowsOnInvalidConfigValue()
286286
$this->sut(
287287
overrides: [ModuleConfig::OPTION_FEDERATION_SIGNATURE_KEY_PAIRS => []],
288288
)->getFederationSignatureKeyPairBag();
289-
290289
}
291290

292291
public function testKeywordsCanBeNull(): void

0 commit comments

Comments
 (0)