Skip to content

Commit

Permalink
Merge pull request #435 from dequelabs/release-2024-02-12
Browse files Browse the repository at this point in the history
chore: RC v4.8.2
  • Loading branch information
dequejenn committed Feb 12, 2024
2 parents 9e76f64 + a93c378 commit e1c24cc
Show file tree
Hide file tree
Showing 12 changed files with 74 additions and 89 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
distribution: "temurin"

- name: Cache npm dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: npm-cache
with:
path: "**/node_modules"
key: npm-cache-v1-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-cache-v1-${{ runner.os }}-
- name: Cache Maven dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: maven-cache
with:
path: ~/.m2/repository
Expand Down Expand Up @@ -69,15 +69,15 @@ jobs:
java: [8, 11, 17]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Restore npm cache
id: npm-cache
with:
path: "**/node_modules"
key: npm-cache-v1-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-cache-v1-${{ runner.os }}-
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Restore Maven cache
id: maven-cache
with:
Expand All @@ -100,15 +100,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Restore npm cache
id: npm-cache
with:
path: "**/node_modules"
key: npm-cache-v1-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-cache-v1-${{ runner.os }}-
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Restore Maven cache
id: maven-cache
with:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [4.8.2](https://github.com/dequelabs/axe-core-maven-html/compare/v4.8.1...v4.8.2) (2024-02-12)


### Bug Fixes

* Update axe-core to v4.8.4 ([#429](https://github.com/dequelabs/axe-core-maven-html/issues/429)) ([4205623](https://github.com/dequelabs/axe-core-maven-html/commit/420562350aa0ff8a2b1e98e1ec8ff53bdda56312))



## [4.8.1](https://github.com/dequelabs/axe-core-maven-html/compare/v4.8.0...v4.8.1) (2024-01-09)


Expand Down
49 changes: 11 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axe-core-maven-html",
"version": "4.8.1",
"version": "4.8.2",
"license": "ISC",
"repository": "dequelabs/axe-core-maven-html",
"scripts": {
Expand All @@ -14,7 +14,7 @@
"conventional-changelog-cli": "^4.1.0",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"husky": "^8.0.3",
"husky": "^9.0.7",
"standard-version": "^9.5.0",
"xml-js": "^1.6.11"
}
Expand Down
26 changes: 13 additions & 13 deletions playwright/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions playwright/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "axe-core-maven-html-playwright",
"version": "4.8.1",
"version": "4.8.2",
"license": "MPL",
"private": true,
"repository": "dequelabs/axe-core-maven-html",
"scripts": {
"start": "http-server ./node_modules/axe-test-fixtures/fixtures -a \"\" -p 1337 --silent"
},
"dependencies": {
"axe-core": "^4.8.3"
"axe-core": "^4.8.4"
},
"devDependencies": {
"axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1",
Expand Down
12 changes: 6 additions & 6 deletions playwright/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>playwright</artifactId>
<version>4.8.1</version>
<version>4.8.2</version>
<packaging>jar</packaging>
<parent>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>virtual-superpackage</artifactId>
<version>4.8.1</version>
<version>4.8.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Axe-core Playwright Java</name>
Expand Down Expand Up @@ -161,7 +161,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
<configuration>
<argLine>@{argLine} -more -arguments</argLine>
<runOrder>alphabetical</runOrder>
Expand Down Expand Up @@ -220,7 +220,7 @@
<dependency>
<groupId>com.microsoft.playwright</groupId>
<artifactId>playwright</artifactId>
<version>1.40.0</version>
<version>1.41.1</version>
</dependency>
<!-- Overrides commons-codec used in httpclient for security reasons -->
<dependency>
Expand Down Expand Up @@ -273,8 +273,8 @@
<dependency>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>dequeutilites</artifactId>
<version>4.8.1</version>
<version>4.8.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>virtual-superpackage</artifactId>
<version>4.8.1</version>
<version>4.8.2</version>
<packaging>pom</packaging>
<name>Axe-core-maven-html Superpackage</name>
<description>axe-core-maven-html superpackage containing; selenium, playwright, and, utilities</description>
Expand Down Expand Up @@ -77,7 +77,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.5</version>
<configuration>
<runOrder>alphabetical</runOrder>
</configuration>
Expand Down Expand Up @@ -117,4 +117,4 @@
</build>
</profile>
</profiles>
</project>
</project>
Loading

0 comments on commit e1c24cc

Please sign in to comment.