Skip to content

Commit

Permalink
chore: sync develop with master (#309)
Browse files Browse the repository at this point in the history
Co-authored-by: AdnoC <[email protected]>
  • Loading branch information
michael-siek and AdnoC authored Apr 20, 2023
1 parent d1e0fd9 commit f21b1c9
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- checkout
- restore_cache:
key: npm-v1-deps-{{ checksum "package-lock.json" }}-{{ checksum "selenium/package-lock.json" }}-{{ checksum "playwright/package-lock.json" }}
- run: mvn license:add-third-party
- run: mvn compile license:add-third-party
- run:
name: Selenium Licenses
command: node .circleci/license-check.js selenium/target/generated-sources/license/THIRD-PARTY.txt
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [4.6.0](https://github.com/dequelabs/axe-core-maven-html/compare/v4.5.1...v4.6.0) (2023-01-19)


### Features

* **playwright, selenium:** add support for new include/exclude selectors and axe-core 4.6
([#283](https://github.com/dequelabs/axe-core-maven-html/issues/283))
([8736a9c](https://github.com/dequelabs/axe-core-maven-html/commit/8736a9c501e36a5808d96ea04827d14579635a78))

### [4.5.1](https://github.com/dequelabs/axe-core-maven-html/compare/v4.5.0...v4.5.1) (2022-11-15)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axe-core-maven-html",
"version": "4.5.1",
"version": "4.6.0",
"license": "ISC",
"repository": "dequelabs/axe-core-maven-html",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion playwright/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axe-core-maven-html-playwright",
"version": "4.5.1",
"version": "4.6.0",
"license": "MPL",
"private": true,
"repository": "dequelabs/axe-core-maven-html",
Expand Down
8 changes: 4 additions & 4 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.5.1</version>
<version>4.6.0</version>
<packaging>jar</packaging>
<parent>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>virtual-superpackage</artifactId>
<version>4.5.1</version>
<version>4.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Axe-core Playwright Java</name>
Expand Down Expand Up @@ -290,8 +290,8 @@
<dependency>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>dequeutilites</artifactId>
<version>4.5.1</version>
<version>4.6.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
4 changes: 2 additions & 2 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.5.1</version>
<version>4.6.0</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 @@ -117,4 +117,4 @@
</build>
</profile>
</profiles>
</project>
</project>
2 changes: 1 addition & 1 deletion selenium/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axe-core-maven-html-selenium",
"version": "4.5.1",
"version": "4.6.0",
"license": "UNLICENSED",
"private": true,
"repository": "dequelabs/axe-core-maven-html",
Expand Down
8 changes: 4 additions & 4 deletions selenium/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>selenium</artifactId>
<version>4.5.1</version>
<version>4.6.0</version>
<packaging>jar</packaging>
<parent>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>virtual-superpackage</artifactId>
<version>4.5.1</version>
<version>4.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<build>
Expand Down Expand Up @@ -208,8 +208,8 @@
<dependency>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>dequeutilites</artifactId>
<version>4.5.1</version>
<version>4.6.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>
6 changes: 3 additions & 3 deletions utilities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<parent>
<groupId>com.deque.html.axe-core</groupId>
<artifactId>virtual-superpackage</artifactId>
<version>4.5.1</version>
<version>4.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Axe-core maven utilities</name>
<description>axe-core-maven-html utility classes used in all packages</description>
<url>https://github.com/dequelabs/axe-core-maven-html</url>
<artifactId>dequeutilites</artifactId>
<version>4.5.1</version>
<version>4.6.0</version>
<packaging>jar</packaging>
<distributionManagement>
<repository>
Expand Down Expand Up @@ -121,4 +121,4 @@
<scope>compile</scope>
</dependency>
</dependencies>
</project>
</project>

0 comments on commit f21b1c9

Please sign in to comment.