Releases: Yubico/java-webauthn-server
Pre-release 2.5.2-RC1
Fixes:
- Allow unknown properties in
credProps
client extension output.- For example, the WebAuthn L3 editor's draft includes a new
authenticatorDisplayName
property.
- For example, the WebAuthn L3 editor's draft includes a new
Artifacts built with openjdk version "17.0.10" 2024-01-16
.
Experimental release 2.6.0-alpha5
Changes:
- Ported changes from release 2.5.1:
- Dropped dependency on COSE-Java.
- Fixed incompatibility with Jackson version 2.17.0-rc1.
Artifacts built with openjdk version "17.0.10" 2024-01-16
.
Version 2.5.1
Changes:
- Dropped dependency on COSE-Java.
- Fixed incompatibility with Jackson version 2.17.0-rc1.
Artifacts built with openjdk version "17.0.10" 2024-01-16
.
Pre-release 2.5.1-RC3
Changes:
- Reverted exclusion of Jackson version 2.17.0-rc1 from dependency resolution.
- Fixed incompatibility with Jackson version 2.17.0-rc1.
Artifacts built with openjdk version "17.0.10" 2024-01-16
.
Pre-release 2.5.1-RC2
Changes:
- Excluded Jackson version 2.17.0-rc1 from dependency resolution due to an incompatible regression.
Artifacts built with openjdk version "17.0.10" 2024-01-16
.
Pre-release 2.5.1-RC1
Changes:
- Dropped dependency on COSE-Java.
Artifacts built with openjdk version "17.0.10" 2024-01-16
.
Experimental release 2.6.0-alpha4
Re-release with no code changes to fix the reproducible binary workflow on GitHub Actions.
Artifacts built with openjdk version "17.0.9" 2023-10-17
.
Experimental release 2.6.0-alpha3
New features:
- Added enum parsing functions:
AuthenticatorAttachment.fromValue(String): Optional<AuthenticatorAttachment>
PublicKeyCredentialType.fromId(String): Optional<PublicKeyCredentialType>
ResidentKeyRequirement.fromValue(String): Optional<ResidentKeyRequirement>
TokenBindingStatus.fromValue(String): Optional<TokenBindingStatus>
UserVerificationRequirement.fromValue(String): Optional<UserVerificationRequirement>
Artifacts built with openjdk version "17.0.9" 2023-10-17
.
Experimental release 2.6.0-alpha2
New features:
- Added public builder to
CredentialPropertiesOutput
. - Added public factory function
LargeBlobRegistrationOutput.supported(boolean)
. - Added public factory functions to
LargeBlobAuthenticationOutput
. - (Experimental) Added a new suite of interfaces, starting with
CredentialRepositoryV2
.RelyingParty
can now be configured with aCredentialRepositoryV2
instance instead of aCredentialRepository
instance. This changes the result of theRelyingParty
builder toRelyingPartyV2
.CredentialRepositoryV2
andRelyingPartyV2
enable a suite of new features:CredentialRepositoryV2
does not assume that the application has usernames, instead username support is modular. In addition to theCredentialRepositoryV2
,RelyingPartyV2
can be optionally configured with aUsernameRepository
as well. If aUsernameRepository
is not set, thenRelyingPartyV2.startAssertion(StartAssertionOptions)
will fail at runtime ifStartAssertionOptions.username
is set.CredentialRepositoryV2
uses a new interfaceCredentialRecord
to represent registered credentials, instead of the concreteRegisteredCredential
class (althoughRegisteredCredential
also implementsCredentialRecord
). This provides implementations greater flexibility while also automating the type conversion toPublicKeyCredentialDescriptor
needed instartRegistration()
andstartAssertion()
.RelyingPartyV2.finishAssertion()
returns a new typeAssertionResultV2
with a new methodgetCredential()
, which returns theCredentialRecord
that was verified. The return type ofgetCredential()
is generic and preserves the concrete type ofCredentialRecord
returned by theCredentialRepositoryV2
implementation.- NOTE: Experimental features may receive breaking changes without a major version increase.
- (Experimental) Added property
RegisteredCredential.transports
.- NOTE: Experimental features may receive breaking changes without a major version increase.
Artifacts built with openjdk version "17.0.9" 2023-10-17
.
Experimental release 2.6.0-alpha1
New features:
- Added method
getParsedPublicKey(): java.security.PublicKey
toRegistrationResult
andRegisteredCredential
.- Thanks to Jakob Heher (A-SIT) for the contribution, see #299
- (Experimental) Added option
isSecurePaymentConfirmation(boolean)
toFinishAssertionOptions
. When set,RelyingParty.finishAssertion()
will adapt the validation logic for a Secure Payment Confirmation (SPC) response instead of an ordinary WebAuthn response. See the JavaDoc for details.
Artifacts built with openjdk version "17.0.7" 2023-04-18
.