Commit 2c9b6b2
committed
Release 0.6.0
Breaking changes:
- Classes moved from package `com.yubico.webauthn.data` to
`com.yubico.webauthn`:
- `AssertionRequest`
- `AssertionResult`
- `RegistrationResult`
- All public classes are now final.
- All builders now enforce mandatory arguments at compile time. Some
usages may therefore need to adjust the order of calls on the builder
instance.
- Static method `Attestation.trusted(boolean)` replaced with
`.builder()` with `.trusted(boolean)` as builder method instead
- `AuthenticatorAssertionResponse` constructor is now private.
- `AuthenticatorAttestationResponse` constructor is now private.
- `PublicKeyCredentialDescriptor` constructor is now private.
- `PublicKeyCredentialRequestOptions` constructor is now private.
- All classes that take collections as constructor (builder) arguments
now make shallow copies of those collections, so that mutations of the
collections don't propagate into the class instance.
- Deleted interface `Crypto` and constructor parameter `crypto` of
`RelyingParty`
- Deleted interface `ChallengeGenerator` and constructor parameter
`challengeGenerator` of `RelyingParty`
- Updated implementation to agree with current editor's draft of the
spec
- Renamed class `AttestationData` to `AttestedCredentialData`
- Enum constant `TokenBindingStatus.NOT_SUPPORTED` deleted; this is
now instead signaled by a missing value
- Parameter `RelyingParty.allowMissingTokenBinding` therefore removed
- Enum constant `AttestationType.PRIVACY_CA` renamed to
`ATTESTATION_CA`
- Renamed class `AuthenticationDataFlags` to `AuthenticatorDataFlags`
- Deleted constant `UserVerificationRequirement.DEFAULT`
- Deleted method `AttestationObject.getAuthData()`
- Changed type of field `RelyingParty.origins` from `List` to `Set`
- Fixed (reduced) visibility of `RegisteredCredential` fields
- Class `MetadataObject` moved to `webauthn-server-attestation` module
- Updated and greatly expanded Javadoc
New features:
- Constructor parameter `pubKeyCredParams` of `RelyingParty` is now
optional with a default value.
- Constructor parameter `origins` of `RelyingParty` is now optional and
defaults to a list whose only element is the RP ID prefixed with
`https://`.
- All classes with a builder now also have a `.toBuilder()` method.File tree
122 files changed
+3160
-1117
lines changed- docs
- lib/com/yubico/lombok/1.18.5-custom
- webauthn-server-attestation/src
- main/java/com/yubico/webauthn/attestation
- matcher
- resolver
- test/java/com/yubico/webauthn/attestation
- webauthn-server-core/src
- main/java/com/yubico
- internal/util
- webauthn
- attestation
- data
- exception
- exception
- extension/appid
- meta
- test/scala/com/yubico
- scalacheck/gen
- webauthn
- attestation
- data
- test
- webauthn-server-demo/src
- main/java
- com/yubico/webauthn
- demo/webauthn
- data
- test/scala/demo/webauthn
- yubico-util-scala
- src/main/scala/com/yubico/scalacheck/gen
- yubico-util
- src
- main/java/com/yubico/internal/util
- test/scala/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.
122 files changed
+3160
-1117
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
2 | 7 | | |
3 | 8 | | |
4 | 9 | | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
5 | 14 | | |
6 | 15 | | |
7 | 16 | | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 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 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
1 | 49 | | |
2 | 50 | | |
3 | 51 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
18 | 21 | | |
19 | 22 | | |
20 | 23 | | |
| |||
40 | 43 | | |
41 | 44 | | |
42 | 45 | | |
| 46 | + | |
43 | 47 | | |
44 | 48 | | |
45 | 49 | | |
46 | 50 | | |
47 | 51 | | |
48 | 52 | | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
49 | 65 | | |
50 | 66 | | |
51 | 67 | | |
| |||
57 | 73 | | |
58 | 74 | | |
59 | 75 | | |
| 76 | + | |
60 | 77 | | |
61 | 78 | | |
62 | 79 | | |
| |||
74 | 91 | | |
75 | 92 | | |
76 | 93 | | |
77 | | - | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
78 | 102 | | |
79 | 103 | | |
80 | 104 | | |
81 | 105 | | |
82 | 106 | | |
83 | 107 | | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
84 | 127 | | |
85 | 128 | | |
86 | 129 | | |
87 | 130 | | |
88 | 131 | | |
89 | 132 | | |
90 | 133 | | |
91 | | - | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
92 | 141 | | |
93 | | - | |
| 142 | + | |
94 | 143 | | |
95 | 144 | | |
96 | 145 | | |
| |||
| 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 | + | |
| 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 | + | |
Binary file not shown.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| |||
0 commit comments