Skip to content

Commit

Permalink
v5.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 12, 2024
1 parent 0c0d722 commit ee003d2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
tests:
uses: ljharb/actions/.github/workflows/node.yml@a840bfaa7e24d260a9f451baa97ca172fdb327af
uses: ljharb/actions/.github/workflows/node.yml@32a09e8b5346216e84d4cdf4769c70af9903b536
with:
range: '>= 0.8'
type: majors
Expand All @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@a840bfaa7e24d260a9f451baa97ca172fdb327af
- uses: ljharb/actions/node/install@32a09e8b5346216e84d4cdf4769c70af9903b536
with:
use-npm-ci: true
- name: Flow type check
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@a840bfaa7e24d260a9f451baa97ca172fdb327af
- uses: ljharb/actions/node/install@32a09e8b5346216e84d4cdf4769c70af9903b536
with:
use-npm-ci: true
- name: Run ESLint
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@a840bfaa7e24d260a9f451baa97ca172fdb327af
- uses: ljharb/actions/node/install@32a09e8b5346216e84d4cdf4769c70af9903b536
with:
use-npm-ci: true
- name: Run diff check for the breakUpAriaJSON script
Expand Down
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,11 @@ type TAriaQueryMap<E, K, V> = {
## 5.1.3

No changes, just trying to get the NPM build to reflect the changes in v5.1.2

## 5.2.0

[Update] The 5.2.x minor version contains breaking changes and should be skipped.

Commit f7f6120 contains a substantial audit and update of the project to match the ARIA spec. Testing coverage was substantially improved. It really locks down the project's output.

- e2e3eff docs: update README to WAI-ARIA 1.2 spec (#499)
Expand All @@ -255,4 +255,13 @@ type TAriaQueryMap<E, K, V> = {
Reverts some API data shape changes from 5.2.x. Also reverts some changes to the representation of the ARIA spec.

- fda2c97 fix: amend breaking changes and reinstate constraints (#515)
- f9f9ea6 Add prepublishOnly step to package.json (#506)
- f9f9ea6 Add prepublishOnly step to package.json (#506)

## 5.3.1

Removes the only runtime dependency from the project, and restores/broadens engines compatibility, plus a few bug fixes.

- Remove dequal from the project (#554)
- fix: add missing `doc-pagefooter` and `doc-pageheader` roles (#549)
- Fix defect in calling code when building the ElementRoleMap (#555)
- fix: add missing constraints for `aside` element to have implicit `complementary` role (#558)
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aria-query",
"version": "5.3.0",
"version": "5.3.1",
"description": "Programmatic access to the ARIA specification",
"main": "lib/index.js",
"files": [
Expand Down

0 comments on commit ee003d2

Please sign in to comment.