Skip to content
This repository was archived by the owner on Jun 26, 2026. It is now read-only.

Commit bb6d81f

Browse files
committed
Release: com.io7m.xstructural 2.0.0
Change: Add a new max-width and line-height. Change: Update org.codehaus.mojo:jaxb2-maven-plugin:3.1.0 → 3.3.0. Change: Update org.junit:junit-bom:5.10.2 → 5.14.2. Change: Update ch.qos.logback:logback-classic:1.5.24 → 1.5.28. Change: Update actions/setup-java:5.1.0 → 5.2.0. Change: Update ch.qos.logback:logback-classic:1.5.21 → 1.5.24. Change: Update net.sf.saxon:Saxon-HE:12.4 → 12.9. Change: Update org.immutables:value:2.12.0 → 2.12.1. Change: Update actions/checkout:6.0.1 → 6.0.2. Change: Update io7m.maven-api.version:3.9.11 → 3.9.12. Change: Update org.immutables:value:2.10.1 → 2.12.0. Change: Update org.slf4j:slf4j-api:2.0.13 → 2.0.17. Change: Update com.github.marschall:memoryfilesystem:2.8.0 → 2.8.2. Change: Update org.apache.tika:tika-core:3.2.2 → 3.2.3. Change: Update ch.qos.logback:logback-classic:1.5.6 → 1.5.21. Change: Update actions/checkout:5.0.0 → 6.0.1. Change: Add a type checker for type attributes. (Ticket: #40) Change: (Backwards incompatible) Rename the .xml module due to a long-standing Dependabot bug. Change: Unify the XSLT stylesheets. (Ticket: #41) Change: Ensure paragraph CSS includes type attributes. (Ticket: #17) Change: Update org.apache.tika:tika-core:2.9.2 → 3.2.2. Change: Update io7m.maven-api.version:3.9.6 → 3.9.11. Change: Update commons-io:commons-io:2.16.1 → 2.21.0. Change: Update org.apache.maven.plugins:maven-plugin-plugin:3.11.0 → 3.15.2. Change: Update org.w3c:epubcheck:5.1.0 → 5.3.0. Change: Update org.apache.commons:commons-compress:1.26.1 → 1.28.0. Change: Update codecov/codecov-action:5.1.2 → 5.3.1.
2 parents 1950c14 + 7694042 commit bb6d81f

157 files changed

Lines changed: 1982 additions & 3328 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ updates:
55
- package-ecosystem: "github-actions"
66
directory: "/"
77
schedule:
8-
interval: "daily"
8+
interval: "monthly"
9+
cooldown:
10+
default-days: 21
911

1012
- package-ecosystem: "maven"
1113
directory: "/"
1214
schedule:
13-
interval: "daily"
15+
interval: "monthly"
16+
cooldown:
17+
default-days: 21
1418

1519
target-branch: "develop"
1620
ignore:

.github/workflows/deploy-release.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,7 @@ fi
4545
4646
<servers>
4747
<server>
48-
<id>sonatype-nexus-snapshots</id>
49-
<username>${MAVEN_CENTRAL_USERNAME}</username>
50-
<password>${MAVEN_CENTRAL_PASSWORD}</password>
51-
</server>
52-
<server>
53-
<id>sonatype-nexus-staging</id>
48+
<id>central</id>
5449
<username>${MAVEN_CENTRAL_USERNAME}</username>
5550
<password>${MAVEN_CENTRAL_PASSWORD}</password>
5651
</server>

.github/workflows/deploy-snapshot.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@ fi
3434
3535
<servers>
3636
<server>
37-
<id>sonatype-nexus-snapshots</id>
38-
<username>${MAVEN_CENTRAL_USERNAME}</username>
39-
<password>${MAVEN_CENTRAL_PASSWORD}</password>
40-
</server>
41-
<server>
42-
<id>sonatype-nexus-staging</id>
37+
<id>central</id>
4338
<username>${MAVEN_CENTRAL_USERNAME}</username>
4439
<password>${MAVEN_CENTRAL_PASSWORD}</password>
4540
</server>

.github/workflows/deploy.linux.temurin.lts.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,21 @@ on:
1111
push:
1212
tags: [ com.io7m.xstructural-* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
1619
runs-on: ubuntu-latest
1720
steps:
18-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1922
with:
2023
submodules: true
2124

2225
- name: JDK
23-
uses: actions/setup-java@v4
26+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
2427
with:
25-
java-version: 21
28+
java-version: 25
2629
distribution: temurin
2730

2831
- name: Check PGP version
@@ -34,7 +37,7 @@ jobs:
3437
run: echo "${PGP_SIGNING_KEY}" | gpg -v --import
3538

3639
- name: Log in to Quay.io.
37-
uses: redhat-actions/podman-login@v1.7
40+
uses: redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603
3841
with:
3942
username: ${{ secrets.QUAY_IO_USERNAME }}
4043
password: ${{ secrets.QUAY_IO_PASSWORD }}

.github/workflows/main.linux.temurin.current.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,27 @@ name: main.linux.temurin.current
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
16+
17+
env:
18+
NO_VULKAN_DEVICE_TESTS: false
1319

1420
jobs:
1521
build:
22+
name: Build
1623
runs-on: ubuntu-latest
1724
steps:
18-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1926
with:
2027
submodules: true
2128

2229
- name: JDK
23-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
2431
with:
25-
java-version: 22
32+
java-version: 25
2633
distribution: 'temurin'
2734

2835
- name: Collect project version
@@ -40,7 +47,7 @@ jobs:
4047
run: mvn --batch-mode --strict-checksums --errors clean verify site
4148

4249
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4451
if: always()
4552
with:
4653
name: test-logs

.github/workflows/main.linux.temurin.lts.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,27 @@ name: main.linux.temurin.lts
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
16+
17+
env:
18+
NO_VULKAN_DEVICE_TESTS: false
1319

1420
jobs:
1521
build:
22+
name: Build
1623
runs-on: ubuntu-latest
1724
steps:
18-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1926
with:
2027
submodules: true
2128

2229
- name: JDK
23-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
2431
with:
25-
java-version: 21
32+
java-version: 25
2633
distribution: 'temurin'
2734

2835
- name: Collect project version
@@ -40,20 +47,20 @@ jobs:
4047
run: mvn --batch-mode --strict-checksums --errors clean verify site
4148

4249
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4451
if: always()
4552
with:
4653
name: test-logs
4754
path: ./com.io7m.xstructural.tests/target/surefire-reports
4855

4956
- name: Coverage
50-
uses: codecov/codecov-action@v4.5.0
57+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
5158
with:
5259
token: ${{ secrets.CODECOV_TOKEN }}
53-
file: com.io7m.xstructural.tests/target/site/jacoco-aggregate/jacoco.xml
60+
files: com.io7m.xstructural.tests/target/site/jacoco-aggregate/jacoco.xml
5461

5562
- name: Log in to Quay.io.
56-
uses: redhat-actions/podman-login@v1.7
63+
uses: redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603
5764
with:
5865
username: ${{ secrets.QUAY_IO_USERNAME }}
5966
password: ${{ secrets.QUAY_IO_PASSWORD }}

.github/workflows/main.windows.temurin.current.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,27 @@ name: main.windows.temurin.current
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
16+
17+
env:
18+
NO_VULKAN_DEVICE_TESTS: true
1319

1420
jobs:
1521
build:
22+
name: Build
1623
runs-on: windows-latest
1724
steps:
18-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1926
with:
2027
submodules: true
2128

2229
- name: JDK
23-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
2431
with:
25-
java-version: 22
32+
java-version: 25
2633
distribution: 'temurin'
2734

2835
- name: Collect project version
@@ -40,7 +47,7 @@ jobs:
4047
run: mvn --batch-mode --strict-checksums --errors clean verify site
4148

4249
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4451
if: always()
4552
with:
4653
name: test-logs

.github/workflows/main.windows.temurin.lts.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,27 @@ name: main.windows.temurin.lts
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
16+
17+
env:
18+
NO_VULKAN_DEVICE_TESTS: true
1319

1420
jobs:
1521
build:
22+
name: Build
1623
runs-on: windows-latest
1724
steps:
18-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1926
with:
2027
submodules: true
2128

2229
- name: JDK
23-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
2431
with:
25-
java-version: 21
32+
java-version: 25
2633
distribution: 'temurin'
2734

2835
- name: Collect project version
@@ -40,7 +47,7 @@ jobs:
4047
run: mvn --batch-mode --strict-checksums --errors clean verify site
4148

4249
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4451
if: always()
4552
with:
4653
name: test-logs

.github/workflows/pr.linux.temurin.current.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,27 @@ name: pr.linux.temurin.current
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
16+
17+
env:
18+
NO_VULKAN_DEVICE_TESTS: false
1319

1420
jobs:
1521
build:
22+
name: Build
1623
runs-on: ubuntu-latest
1724
steps:
18-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1926
with:
2027
submodules: true
2128

2229
- name: JDK
23-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
2431
with:
25-
java-version: 22
32+
java-version: 25
2633
distribution: 'temurin'
2734

2835
- name: Collect project version
@@ -40,7 +47,7 @@ jobs:
4047
run: mvn --batch-mode --strict-checksums --errors clean verify site
4148

4249
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4451
if: always()
4552
with:
4653
name: test-logs

.github/workflows/pr.linux.temurin.lts.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,27 @@ name: pr.linux.temurin.lts
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
16+
17+
env:
18+
NO_VULKAN_DEVICE_TESTS: false
1319

1420
jobs:
1521
build:
22+
name: Build
1623
runs-on: ubuntu-latest
1724
steps:
18-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
1926
with:
2027
submodules: true
2128

2229
- name: JDK
23-
uses: actions/setup-java@v4
30+
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
2431
with:
25-
java-version: 21
32+
java-version: 25
2633
distribution: 'temurin'
2734

2835
- name: Collect project version
@@ -40,7 +47,7 @@ jobs:
4047
run: mvn --batch-mode --strict-checksums --errors clean verify site
4148

4249
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4451
if: always()
4552
with:
4653
name: test-logs

0 commit comments

Comments
 (0)