Skip to content

Commit c66925f

Browse files
committed
chore: Update to axe-core 2.6.0
1 parent dbe63eb commit c66925f

File tree

10 files changed

+45
-8
lines changed

10 files changed

+45
-8
lines changed

CHANGELOG.md

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

33
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.
44

5+
<a name="2.6.0"></a>
6+
# [2.6.0](https://github.com/dequelabs/axe-core/compare/v2.5.0...v2.6.0) (2017-12-19)
7+
8+
9+
### Bug Fixes
10+
11+
* Added message about expected contrast ratio ([#381](https://github.com/dequelabs/axe-core/issues/381)) ([#562](https://github.com/dequelabs/axe-core/issues/562)) ([a34c023](https://github.com/dequelabs/axe-core/commit/a34c023))
12+
* color contrast misc ([#639](https://github.com/dequelabs/axe-core/issues/639)) Closes [#607](https://github.com/dequelabs/axe-core/issues/607), [#556](https://github.com/dequelabs/axe-core/issues/556) ([7cb0325](https://github.com/dequelabs/axe-core/commit/7cb0325))
13+
* copy precommit hook as file, not a link ([b3bf3d4](https://github.com/dequelabs/axe-core/commit/b3bf3d4))
14+
* **aria-allowed-attr:** align rowcount, colcount, and colindex with 1.1 spec ([#555](https://github.com/dequelabs/axe-core/issues/555)) ([320ef55](https://github.com/dequelabs/axe-core/commit/320ef55))
15+
* Ensure overloaded Array.prototype won't crash axe ([8086a67](https://github.com/dequelabs/axe-core/commit/8086a67))
16+
* **check:** fix bug with async checks ([34bc4f8](https://github.com/dequelabs/axe-core/commit/34bc4f8))
17+
* **commons/aria:** allow aria-required on checkbox role ([0d7a9a1](https://github.com/dequelabs/axe-core/commit/0d7a9a1))
18+
* **commons/aria:** allow aria-required on radio role ([31e9f4c](https://github.com/dequelabs/axe-core/commit/31e9f4c))
19+
* **helpUrl:** Properly parse x.0 versions ([#550](https://github.com/dequelabs/axe-core/issues/550)) ([6457ba4](https://github.com/dequelabs/axe-core/commit/6457ba4))
20+
* **postinstall:** use node, more conditionals ([#520](https://github.com/dequelabs/axe-core/issues/520)) ([54f7ddd](https://github.com/dequelabs/axe-core/commit/54f7ddd))
21+
* **rule/dlitem:** use a case-insenstive `tagName` test ([#652](https://github.com/dequelabs/axe-core/issues/652)) ([e67a913](https://github.com/dequelabs/axe-core/commit/e67a913)), closes [#581](https://github.com/dequelabs/axe-core/issues/581)
22+
* **rules/region:** Treat `<section>` as a landmark if it has an accessible name [#640](https://github.com/dequelabs/axe-core/issues/640) ([#642](https://github.com/dequelabs/axe-core/issues/642)) ([0131458](https://github.com/dequelabs/axe-core/commit/0131458))
23+
* Polyfills are made non-enumerable [#648](https://github.com/dequelabs/axe-core/issues/648). ([#649](https://github.com/dequelabs/axe-core/issues/649)) ([1ab4629](https://github.com/dequelabs/axe-core/commit/1ab4629))
24+
* Return inapplicable results ([#473](https://github.com/dequelabs/axe-core/issues/473)). ([0a2a5cc](https://github.com/dequelabs/axe-core/commit/0a2a5cc))
25+
* try telling circle to skip .git/hooks ([3b88acd](https://github.com/dequelabs/axe-core/commit/3b88acd))
26+
* update main rules/tests for 2x branch ([b128e92](https://github.com/dequelabs/axe-core/commit/b128e92))
27+
28+
29+
### Features
30+
31+
* **landmark-one-main:** add rule ensuring one main landmark in document ([#498](https://github.com/dequelabs/axe-core/issues/498)) ([ff0a1b8](https://github.com/dequelabs/axe-core/commit/ff0a1b8))
32+
* add precommit hook on npm postinstall ([122c475](https://github.com/dequelabs/axe-core/commit/122c475))
33+
* Add rule, landmark-main-is-top-level ([#462](https://github.com/dequelabs/axe-core/issues/462)) ([f007b47](https://github.com/dequelabs/axe-core/commit/f007b47))
34+
* Improve generated selectors for namespaced elements in XHTML ([#582](https://github.com/dequelabs/axe-core/issues/582)) ([dbe63eb](https://github.com/dequelabs/axe-core/commit/dbe63eb)), closes [#563](https://github.com/dequelabs/axe-core/issues/563)
35+
* docs: rename `aria._lut`, add to developer guide
36+
37+
538
<a name="2.5.0"></a>
639
# [2.5.0](https://github.com/dequelabs/axe-core/compare/v2.4.2...v2.5.0) (2017-11-06)
740

axe.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for axe-core 2.5.0
1+
// Type definitions for axe-core 2.6.0
22
// Project: https://github.com/dequelabs/axe-core
33
// Definitions by: Marcy Sutton <https://github.com/marcysutton>
44

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "axe-core",
3-
"version": "2.5.0",
3+
"version": "2.6.0",
44
"contributors": [
55
{
66
"name": "David Sturley",

doc/examples/jasmine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build": "grunt"
1414
},
1515
"devDependencies": {
16-
"axe-core": "~1.0.1",
16+
"axe-core": "^2.6.0",
1717
"grunt": "~0.4.4",
1818
"grunt-contrib-jasmine": "~0.9.2"
1919
}

doc/examples/jest+react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"test": "jest"
1515
},
1616
"devDependencies": {
17-
"axe-core": "^2.2.3",
17+
"axe-core": "^2.6.0",
1818
"babel-jest": "^20.0.3",
1919
"babel-preset-es2015": "^6.24.1",
2020
"babel-preset-react": "^6.24.1",

doc/examples/mocha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build": "grunt"
1414
},
1515
"devDependencies": {
16-
"axe-core": "~1.0.1",
16+
"axe-core": "^2.6.0",
1717
"grunt": "~0.4.4",
1818
"grunt-mocha": "~0.4.10",
1919
"chai": "~1.9.1"

doc/examples/qunit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build": "grunt"
1414
},
1515
"devDependencies": {
16-
"axe-core": "~1.0.1",
16+
"axe-core": "^2.6.0",
1717
"grunt": "~0.4.4",
1818
"grunt-contrib-qunit": "~0.4.0",
1919
"qunitjs": "~1.14.0"

doc/examples/selenium/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build": "grunt"
1414
},
1515
"devDependencies": {
16-
"axe-webdriverjs": "^0.1.0",
16+
"axe-webdriverjs": "^1.2.0",
1717
"grunt": "~0.4.5",
1818
"selenium-webdriver": "~2.46.1"
1919
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "axe-core",
33
"description": "Accessibility engine for automated Web UI testing",
4-
"version": "2.5.0",
4+
"version": "2.6.0",
55
"license": "MPL-2.0",
66
"engines": {
77
"node": ">=4"

sri-history.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,9 @@
6666
"2.5.0": {
6767
"axe.js": "sha256-NYUXSdma9KjPfzmpt7jw/hlbmeAha8K3zEA2UOW+eWw=",
6868
"axe.min.js": "sha256-7MV3BvKtgHeecwFjYOBYJbmOhvh2wdTGU7odxgpcrG0="
69+
},
70+
"2.6.0": {
71+
"axe.js": "sha256-zK6kpREBDqi1wucJ1GoH9UafxT0E0+XUnrSzg03wdmw=",
72+
"axe.min.js": "sha256-vqKSLjjqbp9J3seCuphn1h/3OC6o5jntS8LtlIftvdY="
6973
}
7074
}

0 commit comments

Comments
 (0)