From d9c930d7a7fb70d0bf433ad5cfbe56dc32f3ca91 Mon Sep 17 00:00:00 2001 From: Scott Ries Date: Mon, 1 Apr 2024 17:23:35 -0400 Subject: [PATCH 1/5] chore: add bug report and feature request issue templates (#446) Closes: #445 --- .github/ISSUE_TEMPLATE/bug-report.md | 47 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 32 +++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..842ea8e5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,47 @@ +--- +name: Bug report +about: Create a report to help us improve +title: 'BUG: ' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**Environment Happening In** +- [ ] Production +- [ ] QA +- [ ] Dev + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Actual behavior** +A clear and concise description of what actually happened. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Related Tickets** +List out any user story or bug ticket(s) related to this bug. + +**Desktop (please complete the following information):** +- Product: [e.g. playwright] +- Product Version: [e.g. v4.7.4] +- Latest Product Version it is NOT happening in: [e.g. v4.7.2] +- OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Browser Version [e.g. 22] + + +**Additional context** +Add any other context about the problem here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..39497e3a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,32 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +## Epic Link + +## Requirements + + + +## User Story + + + +## Acceptance Criteria + + + +## Technical/Implementation Details + +## QA Notes/Instructions + + + +## Out of Scope + +## Dependencies \ No newline at end of file From 4153d9130edcf9bac9a1e6f72b4cad2a18af4790 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 02:54:05 +0100 Subject: [PATCH 2/5] chore: bump the maven-low-risk group with 7 updates (#452) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the maven-low-risk group with 7 updates: | Package | From | To | | --- | --- | --- | | [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) | `3.12.1` | `3.13.0` | | [org.apache.maven.plugins:maven-gpg-plugin](https://github.com/apache/maven-gpg-plugin) | `3.1.0` | `3.2.2` | | commons-io:commons-io | `2.15.1` | `2.16.0` | | [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.16.1` | `2.17.0` | | [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java) | `1.41.2` | `1.42.0` | | org.apache.commons:commons-compress | `1.26.0` | `1.26.1` | | [com.fasterxml.jackson.core:jackson-annotations](https://github.com/FasterXML/jackson) | `2.16.1` | `2.17.0` | Updates `org.apache.maven.plugins:maven-compiler-plugin` from 3.12.1 to 3.13.0
Release notes

Sourced from org.apache.maven.plugins:maven-compiler-plugin's releases.

3.13.0

🚀 New features and improvements

📦 Dependency updates

đź“ť Documentation updates

đź‘» Maintenance

Commits

Updates `org.apache.maven.plugins:maven-gpg-plugin` from 3.1.0 to 3.2.2
Release notes

Sourced from org.apache.maven.plugins:maven-gpg-plugin's releases.

3.2.2

JiRA link

Release Notes - Maven GPG Plugin - Version 3.2.2


What's Changed

Full Changelog: https://github.com/apache/maven-gpg-plugin/compare/maven-gpg-plugin-3.2.1...maven-gpg-plugin-3.2.2

3.2.1

JIRA link

Release Notes - Maven GPG Plugin - Version 3.2.1

... (truncated)

Commits

Updates `commons-io:commons-io` from 2.15.1 to 2.16.0 Updates `com.fasterxml.jackson.core:jackson-databind` from 2.16.1 to 2.17.0
Commits

Updates `com.microsoft.playwright:playwright` from 1.41.2 to 1.42.0
Release notes

Sourced from com.microsoft.playwright:playwright's releases.

v1.42.0

JUnit integration

[!WARNING] This feature is experimental, we are actively looking for the feedback based on your scenarios.

Add new @UsePlaywright annotation to your test classes to start using Playwright fixtures for Page, BrowserContext, Browser, APIRequestContext and Playwright in the test methods.

package org.example;

import com.microsoft.playwright.Page; import com.microsoft.playwright.junit.UsePlaywright; import org.junit.jupiter.api.Test;

import static com.microsoft.playwright.assertions.PlaywrightAssertions.assertThat; import static org.junit.jupiter.api.Assertions.assertEquals;

@​UsePlaywright public class TestExample { void shouldNavigateToInstallationGuide(Page page) { page.navigate("https://playwright.dev/java/"); page.getByRole(AriaRole.LINK, new Page.GetByRoleOptions().setName("Docs")).click(); assertThat(page.getByRole(AriaRole.HEADING, new Page.GetByRoleOptions().setName("Installation"))).isVisible(); }

@​Test void shouldCheckTheBox(Page page) { page.setContent("<input id='checkbox' type='checkbox'></input>"); page.locator("input").check(); assertEquals(true, page.evaluate("window['checkbox'].checked")); }

@​Test void shouldSearchWiki(Page page) { page.navigate("https://www.wikipedia.org/"); page.locator("input[name=&quot;search&quot;]").click(); page.locator("input[name=&quot;search&quot;]").fill("playwright"); page.locator("input[name=&quot;search&quot;]").press("Enter"); assertThat(page).hasURL("https://en.wikipedia.org/wiki/Playwright"); } }

In the example above, all three test methods use the same Browser. Each test uses its own BrowserContext and Page.

Custom options

... (truncated)

Commits

Updates `org.apache.commons:commons-compress` from 1.26.0 to 1.26.1 Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.16.1 to 2.17.0
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- playwright/pom.xml | 14 +++++++------- pom.xml | 4 ++-- selenium/pom.xml | 8 ++++---- utilities/pom.xml | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/playwright/pom.xml b/playwright/pom.xml index 20ca005b..4c44414c 100644 --- a/playwright/pom.xml +++ b/playwright/pom.xml @@ -152,7 +152,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.12.1 + 3.13.0 1.8 1.8 @@ -170,7 +170,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.2 sign-artifacts @@ -220,7 +220,7 @@ com.microsoft.playwright playwright - 1.41.2 + 1.42.0 @@ -232,7 +232,7 @@ org.apache.commons commons-compress - 1.26.0 + 1.26.1 junit @@ -255,19 +255,19 @@ com.fasterxml.jackson.core jackson-annotations - 2.16.1 + 2.17.0 compile com.fasterxml.jackson.core jackson-databind - 2.16.1 + 2.17.0 compile commons-io commons-io - 2.15.1 + 2.16.0 compile diff --git a/pom.xml b/pom.xml index 324661f6..5f1a1091 100644 --- a/pom.xml +++ b/pom.xml @@ -68,7 +68,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.12.1 + 3.13.0 1.8 1.8 @@ -85,7 +85,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.2 sign-artifacts diff --git a/selenium/pom.xml b/selenium/pom.xml index 6b1fe62c..2c144f2b 100644 --- a/selenium/pom.xml +++ b/selenium/pom.xml @@ -27,7 +27,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.12.1 + 3.13.0 8 8 @@ -134,7 +134,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.2 sign-artifacts @@ -170,7 +170,7 @@ commons-io commons-io - 2.15.1 + 2.16.0 org.seleniumhq.selenium @@ -190,7 +190,7 @@ com.fasterxml.jackson.core jackson-databind - 2.16.1 + 2.17.0 org.junit.vintage diff --git a/utilities/pom.xml b/utilities/pom.xml index c525a8e1..870afee2 100644 --- a/utilities/pom.xml +++ b/utilities/pom.xml @@ -59,7 +59,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.12.1 + 3.13.0 1.8 1.8 @@ -68,7 +68,7 @@ org.apache.maven.plugins maven-gpg-plugin - 3.1.0 + 3.2.2 sign-artifacts @@ -117,7 +117,7 @@ com.fasterxml.jackson.core jackson-annotations - 2.16.1 + 2.17.0 compile From a98f3282125c0e1b91724b15093084b8d883cf34 Mon Sep 17 00:00:00 2001 From: Steven Lambert <2433219+straker@users.noreply.github.com> Date: Thu, 9 May 2024 14:54:21 -0600 Subject: [PATCH 3/5] chore: update test-fixtures to fix lazy load (#458) Fixes the broken lazy load iframe tests. Ref: https://github.com/dequelabs/axe-core-npm/pull/1052 No QA needed. --------- Co-authored-by: michael-siek --- playwright/package-lock.json | 8 ++++---- playwright/src/test/java/PlaywrightJavaTest.java | 5 +---- selenium/package-lock.json | 8 ++++---- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/playwright/package-lock.json b/playwright/package-lock.json index 7b510e50..d9394827 100644 --- a/playwright/package-lock.json +++ b/playwright/package-lock.json @@ -1,12 +1,12 @@ { "name": "axe-core-maven-html-playwright", - "version": "4.8.2", + "version": "4.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "axe-core-maven-html-playwright", - "version": "4.8.2", + "version": "4.9.0", "license": "MPL", "dependencies": { "axe-core": "^4.9.0" @@ -50,7 +50,7 @@ }, "node_modules/axe-test-fixtures": { "version": "1.0.0", - "resolved": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#09469d613991c108cd76f070839cc46f59668ebb", + "resolved": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#80fde4a947257461a2cc2d3dc746e9381dc59aa0", "dev": true, "license": "MPL-2.0" }, @@ -482,7 +482,7 @@ "integrity": "sha512-H5orY+M2Fr56DWmMFpMrq5Ge93qjNdPVqzBv5gWK3aD1OvjBEJlEzxf09z93dGVQeI0LiW+aCMIx1QtShC/zUw==" }, "axe-test-fixtures": { - "version": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#09469d613991c108cd76f070839cc46f59668ebb", + "version": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#80fde4a947257461a2cc2d3dc746e9381dc59aa0", "dev": true, "from": "axe-test-fixtures@github:dequelabs/axe-test-fixtures#v1" }, diff --git a/playwright/src/test/java/PlaywrightJavaTest.java b/playwright/src/test/java/PlaywrightJavaTest.java index 63df82d3..9a7fe7cb 100644 --- a/playwright/src/test/java/PlaywrightJavaTest.java +++ b/playwright/src/test/java/PlaywrightJavaTest.java @@ -538,9 +538,7 @@ public void withOnlyOneInclude() { AxeResults axeResults = axeBuilder.analyze(); List targets = getTargets(axeResults); - - assertTrue(targets.stream().allMatch(selector -> selector.equalsIgnoreCase(".include"))); - assertEquals(axeResults.getPasses().get(0).getNodes().size(), 1); + assertTrue(targets.stream().anyMatch(selector -> selector.equalsIgnoreCase(".include"))); } @Test @@ -557,7 +555,6 @@ public void withMultipleIncludes() { assertTrue(targets.stream().anyMatch(selector -> selector.equalsIgnoreCase(".include"))); assertTrue(targets.stream().anyMatch(selector -> selector.equalsIgnoreCase(".include2"))); - assertEquals(axeResults.getPasses().get(0).getNodes().size(), 2); } @Test diff --git a/selenium/package-lock.json b/selenium/package-lock.json index 73c3daf2..009bb365 100644 --- a/selenium/package-lock.json +++ b/selenium/package-lock.json @@ -1,12 +1,12 @@ { "name": "axe-core-maven-html-selenium", - "version": "4.8.2", + "version": "4.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "axe-core-maven-html-selenium", - "version": "4.8.2", + "version": "4.9.0", "license": "UNLICENSED", "dependencies": { "axe-core": "^4.9.0" @@ -48,7 +48,7 @@ }, "node_modules/axe-test-fixtures": { "version": "1.0.0", - "resolved": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#23f638c574dd9be2a725fa81854f1560d858dcce", + "resolved": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#80fde4a947257461a2cc2d3dc746e9381dc59aa0", "dev": true, "license": "MPL-2.0" }, @@ -451,7 +451,7 @@ "integrity": "sha512-H5orY+M2Fr56DWmMFpMrq5Ge93qjNdPVqzBv5gWK3aD1OvjBEJlEzxf09z93dGVQeI0LiW+aCMIx1QtShC/zUw==" }, "axe-test-fixtures": { - "version": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#23f638c574dd9be2a725fa81854f1560d858dcce", + "version": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#80fde4a947257461a2cc2d3dc746e9381dc59aa0", "dev": true, "from": "axe-test-fixtures@github:dequelabs/axe-test-fixtures#v1" }, From 710c9138fb6c3d648edcc537f942e24fddf7460a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 11:32:31 +0000 Subject: [PATCH 4/5] fix: Update axe-core to v4.9.1 (#456) This pull request updates the version of [`axe-core`](https://npmjs.org/axe-core) to v4.9.1. This PR was opened by a robot :robot: :tada:. no qa required --------- Co-authored-by: Zidious Co-authored-by: michael-siek --- playwright/package-lock.json | 14 +++++++------- playwright/package.json | 2 +- selenium/package-lock.json | 14 +++++++------- selenium/package.json | 2 +- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/playwright/package-lock.json b/playwright/package-lock.json index d9394827..407850e4 100644 --- a/playwright/package-lock.json +++ b/playwright/package-lock.json @@ -9,7 +9,7 @@ "version": "4.9.0", "license": "MPL", "dependencies": { - "axe-core": "^4.9.0" + "axe-core": "^4.9.1" }, "devDependencies": { "axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1", @@ -41,9 +41,9 @@ } }, "node_modules/axe-core": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.0.tgz", - "integrity": "sha512-H5orY+M2Fr56DWmMFpMrq5Ge93qjNdPVqzBv5gWK3aD1OvjBEJlEzxf09z93dGVQeI0LiW+aCMIx1QtShC/zUw==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz", + "integrity": "sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==", "engines": { "node": ">=4" } @@ -477,9 +477,9 @@ } }, "axe-core": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.0.tgz", - "integrity": "sha512-H5orY+M2Fr56DWmMFpMrq5Ge93qjNdPVqzBv5gWK3aD1OvjBEJlEzxf09z93dGVQeI0LiW+aCMIx1QtShC/zUw==" + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz", + "integrity": "sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==" }, "axe-test-fixtures": { "version": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#80fde4a947257461a2cc2d3dc746e9381dc59aa0", diff --git a/playwright/package.json b/playwright/package.json index 9922a8a4..f171e5e2 100644 --- a/playwright/package.json +++ b/playwright/package.json @@ -8,7 +8,7 @@ "start": "http-server ./node_modules/axe-test-fixtures/fixtures -a \"\" -p 1337 --silent" }, "dependencies": { - "axe-core": "^4.9.0" + "axe-core": "^4.9.1" }, "devDependencies": { "axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1", diff --git a/selenium/package-lock.json b/selenium/package-lock.json index 009bb365..f81ea734 100644 --- a/selenium/package-lock.json +++ b/selenium/package-lock.json @@ -9,7 +9,7 @@ "version": "4.9.0", "license": "UNLICENSED", "dependencies": { - "axe-core": "^4.9.0" + "axe-core": "^4.9.1" }, "devDependencies": { "axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1", @@ -39,9 +39,9 @@ } }, "node_modules/axe-core": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.0.tgz", - "integrity": "sha512-H5orY+M2Fr56DWmMFpMrq5Ge93qjNdPVqzBv5gWK3aD1OvjBEJlEzxf09z93dGVQeI0LiW+aCMIx1QtShC/zUw==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz", + "integrity": "sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==", "engines": { "node": ">=4" } @@ -446,9 +446,9 @@ } }, "axe-core": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.0.tgz", - "integrity": "sha512-H5orY+M2Fr56DWmMFpMrq5Ge93qjNdPVqzBv5gWK3aD1OvjBEJlEzxf09z93dGVQeI0LiW+aCMIx1QtShC/zUw==" + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz", + "integrity": "sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==" }, "axe-test-fixtures": { "version": "git+ssh://git@github.com/dequelabs/axe-test-fixtures.git#80fde4a947257461a2cc2d3dc746e9381dc59aa0", diff --git a/selenium/package.json b/selenium/package.json index cdb89cb0..54698e9f 100644 --- a/selenium/package.json +++ b/selenium/package.json @@ -8,7 +8,7 @@ "start": "http-server ./node_modules/axe-test-fixtures/fixtures -a \"\" -p 8001 --silent" }, "dependencies": { - "axe-core": "^4.9.0" + "axe-core": "^4.9.1" }, "devDependencies": { "axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1", From 1a5d28758429382dc21a9db6eeb6677fddcd8605 Mon Sep 17 00:00:00 2001 From: API Team CI User Date: Fri, 10 May 2024 12:33:49 +0000 Subject: [PATCH 5/5] chore: RC v4.9.1 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- playwright/package.json | 2 +- playwright/pom.xml | 6 +++--- pom.xml | 2 +- selenium/package.json | 2 +- selenium/pom.xml | 6 +++--- utilities/pom.xml | 4 ++-- 8 files changed, 21 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb92af64..c06bdc71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [4.9.1](https://github.com/dequelabs/axe-core-maven-html/compare/v4.9.0...v4.9.1) (2024-05-10) + + +### Bug Fixes + +* Update axe-core to v4.9.1 ([#456](https://github.com/dequelabs/axe-core-maven-html/issues/456)) ([710c913](https://github.com/dequelabs/axe-core-maven-html/commit/710c9138fb6c3d648edcc537f942e24fddf7460a)) + + + # [4.9.0](https://github.com/dequelabs/axe-core-maven-html/compare/v4.8.2...v4.9.0) (2024-03-28) diff --git a/package.json b/package.json index 77493c85..15e1d2b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "axe-core-maven-html", - "version": "4.9.0", + "version": "4.9.1", "license": "ISC", "repository": "dequelabs/axe-core-maven-html", "scripts": { diff --git a/playwright/package.json b/playwright/package.json index f171e5e2..2425edb2 100644 --- a/playwright/package.json +++ b/playwright/package.json @@ -1,6 +1,6 @@ { "name": "axe-core-maven-html-playwright", - "version": "4.9.0", + "version": "4.9.1", "license": "MPL", "private": true, "repository": "dequelabs/axe-core-maven-html", diff --git a/playwright/pom.xml b/playwright/pom.xml index 4c44414c..95bdc35c 100644 --- a/playwright/pom.xml +++ b/playwright/pom.xml @@ -2,12 +2,12 @@ 4.0.0 playwright - 4.9.0 + 4.9.1 jar com.deque.html.axe-core virtual-superpackage - 4.9.0 + 4.9.1 ../pom.xml Axe-core Playwright Java @@ -273,7 +273,7 @@ com.deque.html.axe-core dequeutilites - 4.9.0 + 4.9.1 compile diff --git a/pom.xml b/pom.xml index 5f1a1091..8631a870 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.deque.html.axe-core virtual-superpackage - 4.9.0 + 4.9.1 pom Axe-core-maven-html Superpackage axe-core-maven-html superpackage containing; selenium, playwright, and, utilities diff --git a/selenium/package.json b/selenium/package.json index 54698e9f..5c2bc32b 100644 --- a/selenium/package.json +++ b/selenium/package.json @@ -1,6 +1,6 @@ { "name": "axe-core-maven-html-selenium", - "version": "4.9.0", + "version": "4.9.1", "license": "UNLICENSED", "private": true, "repository": "dequelabs/axe-core-maven-html", diff --git a/selenium/pom.xml b/selenium/pom.xml index 2c144f2b..1fec8047 100644 --- a/selenium/pom.xml +++ b/selenium/pom.xml @@ -2,12 +2,12 @@ 4.0.0 selenium - 4.9.0 + 4.9.1 jar com.deque.html.axe-core virtual-superpackage - 4.9.0 + 4.9.1 ../pom.xml @@ -208,7 +208,7 @@ com.deque.html.axe-core dequeutilites - 4.9.0 + 4.9.1 compile diff --git a/utilities/pom.xml b/utilities/pom.xml index 870afee2..03d4a925 100644 --- a/utilities/pom.xml +++ b/utilities/pom.xml @@ -4,14 +4,14 @@ com.deque.html.axe-core virtual-superpackage - 4.9.0 + 4.9.1 ../pom.xml Axe-core maven utilities axe-core-maven-html utility classes used in all packages https://github.com/dequelabs/axe-core-maven-html dequeutilites - 4.9.0 + 4.9.1 jar