File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
webauthn-server-attestation Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 35
35
* Fixed various typos and mistakes in JavaDocs.
36
36
* Moved version constraints for test dependencies from meta-module
37
37
`webauthn-server-parent` to unpublished test meta-module.
38
+ * `yubico-util` dependency removed from downstream compile scope.
38
39
39
40
40
41
`webauthn-server-attestation`:
50
51
* `FidoMetadataDownloader` now verifies the SHA-256 hash of the cached trust
51
52
root certificate, as promised in the JavaDoc of `useTrustRootCacheFile` and
52
53
`useTrustRootCache`.
54
+ * BouncyCastle dependency dropped.
55
+ * Guava dependency dropped (but still remains in core module).
53
56
54
57
55
58
== Version 2.0.0 ==
Original file line number Diff line number Diff line change @@ -37,9 +37,7 @@ dependencies {
37
37
api(project(" :webauthn-server-core" ))
38
38
39
39
implementation(project(" :yubico-util" ))
40
- implementation(" com.google.guava:guava" )
41
40
implementation(" com.fasterxml.jackson.core:jackson-databind" )
42
- implementation(" org.bouncycastle:bcprov-jdk18on" )
43
41
implementation(" org.slf4j:slf4j-api" )
44
42
45
43
testImplementation(platform(project(" :test-platform" )))
Original file line number Diff line number Diff line change 20
20
dependencies {
21
21
api(platform(rootProject))
22
22
23
- api(project(" :yubico-util" ))
24
-
23
+ implementation(project(" :yubico-util" ))
25
24
implementation(" com.augustcellars.cose:cose-java" )
26
25
implementation(" com.fasterxml.jackson.core:jackson-databind" )
27
26
implementation(" com.google.guava:guava" )
You can’t perform that action at this time.
0 commit comments