Skip to content

Commit

Permalink
Merge pull request #193 from dequelabs/release-2021-06-16
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-siek committed Jun 23, 2021
2 parents f11a488 + d7106f8 commit acbebae
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 13 deletions.
7 changes: 0 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
<< Describe the changes >>

Closes issue: #<< ticket number >>

## Reviewer checks

**Required fields, to be filled out by PR reviewer(s)**

- [ ] Follows the commit message policy, appropriate for next version
- [ ] Code is reviewed for security
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.2.1](https://github.com/dequelabs/axe-core-gems/compare/v4.2.0...v4.2.1) (2021-06-16)


### Features

* update to use `axe-core@4.2.2` ([#192](https://github.com/dequelabs/axe-core-gems/issues/192)) ([bb86ed5](https://github.com/dequelabs/axe-core-gems/commit/bb86ed5bd0b532897522153868077e8b0f564280))

## [4.1.0](https://github.com/dequelabs/axe-core-gems/compare/v4.0.0...v4.1.0) (2021-05-20)


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-gems",
"version": "4.2.0",
"version": "4.2.1",
"license": "MPL-2.0",
"private": true,
"repository": {
Expand Down
12 changes: 12 additions & 0 deletions packages/axe-core-api/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/axe-core-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "axe-core-api",
"license": "MPL-2.0",
"dependencies": {
"axe-core": "^4.2.1"
"axe-core": "^4.2.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ Feature: Example using default Capybara setup
Then the page should not be axe clean

Scenario: Test working sub-tree (should pass)
Then the page should be axe clean within "#intro"
Then the page should be axe clean within "#topnav"
2 changes: 1 addition & 1 deletion packages/axe-core-cucumber/e2e/watir/features/a11y.feature
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Feature: Example using minimal Watir-Webdriver setup (using firefox)
Then the page should not be axe clean

Scenario: Test working sub-tree (should pass)
Then the page should be axe clean within "#intro"
Then the page should be axe clean within "#topnav"

Scenario: Test broken sub-tree (known to be inaccessible)
Then the page should not be axe clean within "#topbar"
2 changes: 1 addition & 1 deletion packages/axe-core-rspec/e2e/capybara/spec/a11y_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
end

it "is known to have an accessible sub-tree (should pass)" do
expect(page).to be_axe_clean.within "#intro"
expect(page).to be_axe_clean.within "#topnav"
end

it "is known to have an inaccessible sub-tree (should fail)" do
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# this version is used by all the packages

module AxeCoreGems
VERSION = "4.2.0"
VERSION = "4.2.1"
end

0 comments on commit acbebae

Please sign in to comment.