Skip to content

Commit 49f0aeb

Browse files
committed
Merge branch 'release-2.5'
2 parents 240b8d9 + 5d510c5 commit 49f0aeb

File tree

6 files changed

+129
-65
lines changed

6 files changed

+129
-65
lines changed
+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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"

NEWS

+10
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,16 @@ New features:
5757
* (Experimental) Added `credProps` extension to assertion extension outputs.
5858

5959

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+
6070
== Version 2.5.2 ==
6171

6272
Fixes:

0 commit comments

Comments
 (0)