Commit 479492c
committed
Release 2.4.0
`webauthn-server-core`:
New features:
- Added support for RS384 and RS512 signature algorithms.
- Thanks to GitHub user JohnnyJayJay for the contribution, see
#235
- Added `userHandle` field to `AssertionRequest` as part of the second
bug fix below. `userHandle` is mutually exclusive with `username`.
This was originally released in pre-release `1.12.3-RC3`, but was
accidentally left out of the `1.12.3` release.
Fixes:
- During `RelyingParty.finishRegistration()` if an
`attestationTrustSource` is configured, if the `aaguid` in the
authenticator data is zero, the call to
`AttestationTrustSource.findTrustRoots` will fall back to reading
the AAGUID from the attestation certificate if possible.
- Fixed bug in `RelyingParty.finishAssertion` where if
`StartAssertionOptions.userHandle` was set, it did not propagate to
`RelyingParty.finishAssertion` and caused an error saying username
and user handle are both absent unless a user handle was returned by
the authenticator. This was originally released in pre-release
`1.12.3-RC3`, but was accidentally left out of the `1.12.3` release.
- Fixed regression in
`PublicKeyCredentialCreationOptions.toCredentialsCreateJson()`,
which has not been emitting a `requireResidentKey` member since
version `2.0.0`. This meant the JSON output was not backwards
compatible with browsers that only support the Level 1 version of
the WebAuthn spec.
`webauthn-server-attestation`:
Fixes:
- `findEntries` and `findTrustRoots` methods in `FidoMetadataService`
now attempt to read AAGUID from the attestation certificate if the
`aaguid` argument is absent or zero.
- Method `FidoMetadataService.Filters.allOf` now has `@SafeVarargs`
annotation.File tree
66 files changed
+2400
-1499
lines changed- .github/actions/pit-results-comment
- doc
- webauthn-server-attestation
- src
- integrationTest/scala/com/yubico/fido/metadata
- main/java/com/yubico/fido/metadata
- test/scala/com/yubico/fido/metadata
- webauthn-server-core/src
- main/java/com/yubico/webauthn
- data
- test/scala/com/yubico/webauthn
- data
- extension/uvm
- test
- webauthn-server-demo
- src
- main
- java
- com/yubico/webauthn/attestation
- matcher
- demo/webauthn
- data
- resources
- test/scala/demo/webauthn
- yubico-util-scala/src/main/scala/com/yubico
- scalacheck/gen
- webauthn
- yubico-util
- src
- jmh/java/com/yubico/internal/util/benchmark
- main/java/com/yubico/internal/util
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
66 files changed
+2400
-1499
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
67 | 73 | | |
68 | 74 | | |
69 | 75 | | |
| 76 | + | |
70 | 77 | | |
71 | 78 | | |
72 | 79 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
1 | 44 | | |
2 | 45 | | |
3 | 46 | | |
| |||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
144 | 144 | | |
145 | 145 | | |
146 | 146 | | |
| 147 | + | |
| 148 | + | |
147 | 149 | | |
148 | 150 | | |
149 | 151 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
| 30 | + | |
30 | 31 | | |
31 | | - | |
32 | | - | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
33 | 35 | | |
34 | 36 | | |
35 | 37 | | |
| |||
46 | 48 | | |
47 | 49 | | |
48 | 50 | | |
49 | | - | |
| 51 | + | |
50 | 52 | | |
51 | 53 | | |
52 | 54 | | |
| |||
56 | 58 | | |
57 | 59 | | |
58 | 60 | | |
59 | | - | |
| 61 | + | |
60 | 62 | | |
61 | 63 | | |
62 | 64 | | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
63 | 85 | | |
64 | 86 | | |
65 | 87 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
136 | | - | |
| 136 | + | |
137 | 137 | | |
0 commit comments