Skip to content

Commit 0476850

Browse files
authored
chore: Release v4.10.2 (#528) (#530)
## [4.10.2](v4.10.1...v4.10.2) (2025-08-13) ### Bug Fixes * remove duplicate "Please see" ([#510](#510)) ([093cb06](093cb06)) * remove superfluous space in exception message ([#518](#518)) ([7b0300c](7b0300c)) * Update axe-core to v4.10.3 ([#501](#501)) ([b160777](b160777)) No QA needed
2 parents 9fdd50f + 2692ff7 commit 0476850

File tree

18 files changed

+130
-110
lines changed

18 files changed

+130
-110
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
browser-tools: circleci/browser-tools@1.4.3
4+
browser-tools: circleci/browser-tools@1.5.3
55

66
defaults: &defaults
77
docker:

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @dequelabs/axe-api-team
1+
* @dequelabs/ocarina-team

.github/dependabot.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ updates:
1414
update-types:
1515
- "minor"
1616
- "patch"
17+
cooldown:
18+
default-days: 7
1719

1820
- package-ecosystem: "npm"
1921
directory: "/"
@@ -31,6 +33,8 @@ updates:
3133
update-types:
3234
- "minor"
3335
- "patch"
36+
cooldown:
37+
default-days: 7
3438

3539
- package-ecosystem: "maven"
3640
directory: "/"
@@ -48,4 +52,6 @@ updates:
4852
maven-low-risk:
4953
update-types:
5054
- "minor"
51-
- "patch"
55+
- "patch"
56+
cooldown:
57+
default-days: 7

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [4.10.2](https://github.com/dequelabs/axe-core-maven-html/compare/v4.10.1...v4.10.2) (2025-08-13)
2+
3+
4+
### Bug Fixes
5+
6+
* remove duplicate "Please see" ([#510](https://github.com/dequelabs/axe-core-maven-html/issues/510)) ([093cb06](https://github.com/dequelabs/axe-core-maven-html/commit/093cb06e58ff69a52c00d7c5c8c08e8f4ae6e490))
7+
* remove superfluous space in exception message ([#518](https://github.com/dequelabs/axe-core-maven-html/issues/518)) ([7b0300c](https://github.com/dequelabs/axe-core-maven-html/commit/7b0300cc57dfa463a89559113726ef68a2ea4500))
8+
* Update axe-core to v4.10.3 ([#501](https://github.com/dequelabs/axe-core-maven-html/issues/501)) ([b160777](https://github.com/dequelabs/axe-core-maven-html/commit/b1607774dd8f3b39465fc928a297c3d8ae974c0e))
9+
10+
11+
112
## [4.10.1](https://github.com/dequelabs/axe-core-maven-html/compare/v4.10.0...v4.10.1) (2024-11-05)
213

314

package-lock.json

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "axe-core-maven-html",
3-
"version": "4.10.1",
3+
"version": "4.10.2",
44
"license": "ISC",
55
"repository": "dequelabs/axe-core-maven-html",
66
"scripts": {
@@ -14,7 +14,7 @@
1414
"conventional-changelog-cli": "^5.0.0",
1515
"copyfiles": "^2.4.1",
1616
"del-cli": "^5.1.0",
17-
"husky": "^9.0.11",
17+
"husky": "^9.1.7",
1818
"standard-version": "^9.5.0",
1919
"xml-js": "^1.6.11"
2020
}

playwright/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
> A Playwright Java chainable API integration for axe-core
44
5+
This package does not follow Semantic Versioning (SemVer) but instead uses the major and minor version (but not patch version) of axe-core that the package uses. For example, if the API version is v4.7.2, then the axe-core version used by the package will be v4.7.x. The patch version of this package may include bug fixes and new API features but will not introduce breaking changes.
6+
57
## Table of Contents
68

79
- [Prerequisites](#prerequisites)

playwright/package-lock.json

Lines changed: 10 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playwright/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "axe-core-maven-html-playwright",
3-
"version": "4.10.1",
3+
"version": "4.10.2",
44
"license": "MPL",
55
"private": true,
66
"repository": "dequelabs/axe-core-maven-html",
77
"scripts": {
88
"start": "http-server ./node_modules/axe-test-fixtures/fixtures -a \"\" -p 1337 --silent"
99
},
1010
"dependencies": {
11-
"axe-core": "^4.10.2"
11+
"axe-core": "^4.10.3"
1212
},
1313
"devDependencies": {
1414
"axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1",

playwright/pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>playwright</artifactId>
5-
<version>4.10.1</version>
5+
<version>4.10.2</version>
66
<packaging>jar</packaging>
77
<parent>
88
<groupId>com.deque.html.axe-core</groupId>
99
<artifactId>virtual-superpackage</artifactId>
10-
<version>4.10.1</version>
10+
<version>4.10.2</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<name>Axe-core Playwright Java</name>
@@ -35,11 +35,11 @@
3535
<distributionManagement>
3636
<repository>
3737
<id>ossrh</id>
38-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
38+
<url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url>
3939
</repository>
4040
<snapshotRepository>
4141
<id>ossrh</id>
42-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
42+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
4343
</snapshotRepository>
4444
</distributionManagement>
4545
<scm>
@@ -66,7 +66,7 @@
6666
<artifactId>frontend-maven-plugin</artifactId>
6767
<!-- Use the latest released version:
6868
https://repo1.maven.org/maven2/com/github/eirslett/frontend-maven-plugin/ -->
69-
<version>1.15.0</version>
69+
<version>1.15.1</version>
7070
<executions>
7171
<execution>
7272
<id>install node and npm</id>
@@ -139,7 +139,7 @@
139139
<plugin>
140140
<groupId>org.apache.maven.plugins</groupId>
141141
<artifactId>maven-javadoc-plugin</artifactId>
142-
<version>3.7.0</version>
142+
<version>3.11.1</version>
143143
<executions>
144144
<execution>
145145
<id>attach-javadocs</id>
@@ -161,7 +161,7 @@
161161
<plugin>
162162
<groupId>org.apache.maven.plugins</groupId>
163163
<artifactId>maven-surefire-plugin</artifactId>
164-
<version>3.2.5</version>
164+
<version>3.5.2</version>
165165
<configuration>
166166
<argLine>@{argLine} -more -arguments</argLine>
167167
<runOrder>alphabetical</runOrder>
@@ -170,7 +170,7 @@
170170
<plugin>
171171
<groupId>org.apache.maven.plugins</groupId>
172172
<artifactId>maven-gpg-plugin</artifactId>
173-
<version>3.2.4</version>
173+
<version>3.2.7</version>
174174
<executions>
175175
<execution>
176176
<id>sign-artifacts</id>
@@ -207,7 +207,7 @@
207207
<extensions>true</extensions>
208208
<configuration>
209209
<serverId>ossrh</serverId>
210-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
210+
<nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl>
211211
<autoReleaseAfterClose>true</autoReleaseAfterClose>
212212
</configuration>
213213
</plugin>
@@ -220,19 +220,19 @@
220220
<dependency>
221221
<groupId>com.microsoft.playwright</groupId>
222222
<artifactId>playwright</artifactId>
223-
<version>1.44.0</version>
223+
<version>1.49.0</version>
224224
</dependency>
225225
<!-- Overrides commons-codec used in httpclient for security reasons -->
226226
<dependency>
227227
<groupId>commons-codec</groupId>
228228
<artifactId>commons-codec</artifactId>
229-
<version>1.17.0</version>
229+
<version>1.17.1</version>
230230
</dependency>
231231
<!-- Overrides commons-compress for security reasons -->
232232
<dependency>
233233
<groupId>org.apache.commons</groupId>
234234
<artifactId>commons-compress</artifactId>
235-
<version>1.26.2</version>
235+
<version>1.27.1</version>
236236
</dependency>
237237
<dependency>
238238
<groupId>junit</groupId>
@@ -255,25 +255,25 @@
255255
<dependency>
256256
<groupId>com.fasterxml.jackson.core</groupId>
257257
<artifactId>jackson-annotations</artifactId>
258-
<version>2.17.1</version>
258+
<version>2.18.2</version>
259259
<scope>compile</scope>
260260
</dependency>
261261
<dependency>
262262
<groupId>com.fasterxml.jackson.core</groupId>
263263
<artifactId>jackson-databind</artifactId>
264-
<version>2.17.1</version>
264+
<version>2.18.2</version>
265265
<scope>compile</scope>
266266
</dependency>
267267
<dependency>
268268
<groupId>commons-io</groupId>
269269
<artifactId>commons-io</artifactId>
270-
<version>2.16.1</version>
270+
<version>2.18.0</version>
271271
<scope>compile</scope>
272272
</dependency>
273273
<dependency>
274274
<groupId>com.deque.html.axe-core</groupId>
275275
<artifactId>dequeutilites</artifactId>
276-
<version>4.10.1</version>
276+
<version>4.10.2</version>
277277
<scope>compile</scope>
278278
</dependency>
279279
</dependencies>

0 commit comments

Comments
 (0)