File tree 6 files changed +129
-65
lines changed
webauthn-server-attestation/src/main/java/com/yubico/fido/metadata
6 files changed +129
-65
lines changed Original file line number Diff line number Diff line change
1
+ # This name is shown in the status badge in the README
2
+ name : integration-test
3
+
4
+ on :
5
+ push :
6
+ branches :
7
+ - main
8
+ - ' release-*'
9
+ schedule :
10
+ # Run once a week to check compatibility with new FIDO MDS blob contents
11
+ - cron : ' 0 0 * * 1'
12
+
13
+ jobs :
14
+ test :
15
+ name : JDK ${{ matrix.java }} ${{ matrix.distribution }}
16
+
17
+ runs-on : ubuntu-latest
18
+ strategy :
19
+ matrix :
20
+ java : [17]
21
+ distribution : [temurin]
22
+
23
+ outputs :
24
+ report-java : 17
25
+ report-dist : temurin
26
+
27
+ steps :
28
+ - name : Check out code
29
+ uses : actions/checkout@v4
30
+
31
+ - name : Set up JDK ${{ matrix.java }}
32
+ uses : actions/setup-java@v4
33
+ with :
34
+ java-version : ${{ matrix.java }}
35
+ distribution : ${{ matrix.distribution }}
36
+
37
+ - name : Run integration tests
38
+ run : ./gradlew integrationTest
39
+
40
+ - name : Archive HTML test report
41
+ if : ${{ always() }}
42
+ uses : actions/upload-artifact@v4
43
+ with :
44
+ name : test-reports-java${{ matrix.java }}-${{ matrix.distribution }}-html
45
+ path : " */build/reports/**"
46
+
47
+ - name : Archive JUnit test report
48
+ if : ${{ always() }}
49
+ uses : actions/upload-artifact@v4
50
+ with :
51
+ name : test-reports-java${{ matrix.java }}-${{ matrix.distribution }}-xml
52
+ path : " */build/test-results/**/*.xml"
Original file line number Diff line number Diff line change @@ -57,6 +57,16 @@ New features:
57
57
* (Experimental) Added `credProps` extension to assertion extension outputs.
58
58
59
59
60
+ == Version 2.5.3 ==
61
+
62
+ `webauthn-server-attestation`:
63
+
64
+ Fixes:
65
+
66
+ * `FidoMetadataDownloader` no longer rejects FIDO MDS metadata BLOBs with
67
+ unknown properties.
68
+
69
+
60
70
== Version 2.5.2 ==
61
71
62
72
Fixes:
You can’t perform that action at this time.
0 commit comments