Skip to content

Commit 66a3106

Browse files
strakerGarbeedependabot[bot]JustasMonkevattest-team-ci
authored
chore(release): v4.11.1 (#1275)
Remember to merge and not squash merge. No QA required --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Jonathan Garbee <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JustasM <[email protected]> Co-authored-by: attest-team-ci <[email protected]> Co-authored-by: Zidious <[email protected]> Co-authored-by: API Team CI User <[email protected]>
2 parents a7af9e9 + 9a07fd7 commit 66a3106

27 files changed

Lines changed: 10253 additions & 10378 deletions

.github/workflows/deploy.yml

Lines changed: 43 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,30 @@ jobs:
1111
canary:
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 10
14+
environment: registry.npmjs.org
15+
permissions:
16+
# Required for OIDC
17+
id-token: write
18+
contents: read
1419
if: github.ref_name == 'develop' && github.repository_owner == 'dequelabs'
1520
steps:
16-
- uses: actions/checkout@v5
17-
- uses: actions/setup-node@v5
21+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
22+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
1823
with:
24+
registry-url: 'https://registry.npmjs.org/'
1925
node-version: 22
2026
cache: 'npm'
27+
- name: Update npm to 11 if needed
28+
run: |
29+
CURRENT_NPM=$(npm -v | cut -d. -f1)
30+
if [ "$CURRENT_NPM" -lt 11 ]; then
31+
npm install -g npm@11
32+
fi
2133
- run: npm ci
2234
# Ensure packages are built
2335
- run: npm run build
2436
# Make sure the working tree is clean
2537
- run: git reset --hard HEAD
26-
- run: npm config set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }}
2738
- run: |
2839
npx lerna publish prepatch \
2940
--no-verify-access \
@@ -36,21 +47,32 @@ jobs:
3647
--force-publish \
3748
--yes
3849
39-
relase-candidate:
50+
release-candidate:
4051
runs-on: ubuntu-latest
52+
environment: registry.npmjs.org
53+
permissions:
54+
# Required for OIDC
55+
id-token: write
56+
contents: read
4157
if: github.ref_name == 'release' && github.repository_owner == 'dequelabs'
4258
steps:
43-
- uses: actions/checkout@v5
44-
- uses: actions/setup-node@v5
59+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
60+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
4561
with:
62+
registry-url: 'https://registry.npmjs.org/'
4663
node-version: 22
4764
cache: 'npm'
65+
- name: Update npm to 11 if needed
66+
run: |
67+
CURRENT_NPM=$(npm -v | cut -d. -f1)
68+
if [ "$CURRENT_NPM" -lt 11 ]; then
69+
npm install -g npm@11
70+
fi
4871
- run: npm ci
4972
# Ensure packages are built
5073
- run: npm run build
5174
# Make sure the working tree is clean
5275
- run: git reset --hard HEAD
53-
- run: npm config set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }}
5476
- run: |
5577
npx lerna publish prepatch \
5678
--no-verify-access \
@@ -65,19 +87,30 @@ jobs:
6587
6688
production:
6789
runs-on: ubuntu-latest
90+
environment: registry.npmjs.org
91+
permissions:
92+
# Required for OIDC
93+
id-token: write
94+
contents: read
6895
if: github.ref_name == 'master' && github.repository_owner == 'dequelabs'
6996
steps:
70-
- uses: actions/checkout@v5
71-
- uses: actions/setup-node@v5
97+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
98+
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
7299
with:
100+
registry-url: 'https://registry.npmjs.org/'
73101
node-version: 22
74102
cache: 'npm'
103+
- name: Update npm to 11 if needed
104+
run: |
105+
CURRENT_NPM=$(npm -v | cut -d. -f1)
106+
if [ "$CURRENT_NPM" -lt 11 ]; then
107+
npm install -g npm@11
108+
fi
75109
- run: npm ci
76110
# Ensure packages are built
77111
- run: npm run build
78112
# Make sure the working tree is clean
79113
- run: git reset --hard HEAD
80-
- run: npm config set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }}
81114
- run: |
82115
npx lerna publish from-package \
83116
--force-publish='*' \

.github/workflows/tests.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 5
1515
steps:
16-
- uses: actions/checkout@v5
17-
- uses: actions/setup-node@v5
16+
- uses: actions/checkout@v6
17+
- uses: actions/setup-node@v6
1818
with:
1919
node-version: 22
2020
cache: 'npm'
@@ -30,8 +30,8 @@ jobs:
3030
timeout-minutes: 15
3131
needs: lint
3232
steps:
33-
- uses: actions/checkout@v5
34-
- uses: actions/setup-node@v5
33+
- uses: actions/checkout@v6
34+
- uses: actions/setup-node@v6
3535
with:
3636
node-version: ${{ matrix.node}}
3737
cache: 'npm'
@@ -50,8 +50,8 @@ jobs:
5050
timeout-minutes: 15
5151
needs: lint
5252
steps:
53-
- uses: actions/checkout@v5
54-
- uses: actions/setup-node@v5
53+
- uses: actions/checkout@v6
54+
- uses: actions/setup-node@v6
5555
with:
5656
node-version: ${{ matrix.node }}
5757
cache: 'npm'
@@ -68,8 +68,8 @@ jobs:
6868
timeout-minutes: 15
6969
needs: lint
7070
steps:
71-
- uses: actions/checkout@v5
72-
- uses: actions/setup-node@v5
71+
- uses: actions/checkout@v6
72+
- uses: actions/setup-node@v6
7373
with:
7474
node-version: ${{ matrix.node }}
7575
cache: 'npm'
@@ -88,8 +88,8 @@ jobs:
8888
timeout-minutes: 15
8989
needs: lint
9090
steps:
91-
- uses: actions/checkout@v5
92-
- uses: actions/setup-node@v5
91+
- uses: actions/checkout@v6
92+
- uses: actions/setup-node@v6
9393
with:
9494
node-version: ${{ matrix.node }}
9595
cache: 'npm'
@@ -108,8 +108,8 @@ jobs:
108108
timeout-minutes: 15
109109
needs: lint
110110
steps:
111-
- uses: actions/checkout@v5
112-
- uses: actions/setup-node@v5
111+
- uses: actions/checkout@v6
112+
- uses: actions/setup-node@v6
113113
with:
114114
node-version: ${{ matrix.node }}
115115
cache: 'npm'
@@ -124,8 +124,8 @@ jobs:
124124
timeout-minutes: 15
125125
needs: lint
126126
steps:
127-
- uses: actions/checkout@v5
128-
- uses: actions/setup-node@v5
127+
- uses: actions/checkout@v6
128+
- uses: actions/setup-node@v6
129129
with:
130130
node-version: ${{ matrix.node }}
131131
cache: 'npm'
@@ -143,8 +143,8 @@ jobs:
143143
timeout-minutes: 25
144144
needs: lint
145145
steps:
146-
- uses: actions/checkout@v5
147-
- uses: actions/setup-node@v5
146+
- uses: actions/checkout@v6
147+
- uses: actions/setup-node@v6
148148
with:
149149
node-version: ${{ matrix.node }}
150150
cache: 'npm'
@@ -160,8 +160,8 @@ jobs:
160160
timeout-minutes: 15
161161
needs: lint
162162
steps:
163-
- uses: actions/checkout@v5
164-
- uses: actions/setup-node@v5
163+
- uses: actions/checkout@v6
164+
- uses: actions/setup-node@v6
165165
with:
166166
node-version: ${{ matrix.node }}
167167
cache: 'npm'
@@ -174,8 +174,8 @@ jobs:
174174
timeout-minutes: 5
175175
needs: lint
176176
steps:
177-
- uses: actions/checkout@v5
178-
- uses: actions/setup-node@v5
177+
- uses: actions/checkout@v6
178+
- uses: actions/setup-node@v6
179179
with:
180180
node-version: 22
181181
cache: 'npm'

.github/workflows/update-axe-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 2
1313
steps:
14-
- uses: actions/checkout@v5
15-
- uses: actions/setup-node@v5
14+
- uses: actions/checkout@v6
15+
- uses: actions/setup-node@v6
1616
with:
1717
node-version: 22
1818
- uses: dequelabs/axe-api-team-public/.github/actions/create-update-axe-core-pull-request-v1@main

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.11.1](https://github.com/dequelabs/axe-core-npm/compare/v4.11.0...v4.11.1) (2026-01-09)
7+
8+
9+
### Bug Fixes
10+
11+
* reorder exports to place types first ([#1261](https://github.com/dequelabs/axe-core-npm/issues/1261)) ([40d22e3](https://github.com/dequelabs/axe-core-npm/commit/40d22e3cd6381796d731802efc71bc21c924025e)), closes [#1243](https://github.com/dequelabs/axe-core-npm/issues/1243)
12+
* Update axe-core to v4.11.1 ([#1271](https://github.com/dequelabs/axe-core-npm/issues/1271)) ([77f577e](https://github.com/dequelabs/axe-core-npm/commit/77f577ed47510045e75b939fa97ac1d4f91b219b))
13+
14+
15+
16+
17+
618
# [4.11.0](https://github.com/dequelabs/axe-core-npm/compare/v4.10.1...v4.11.0) (2025-10-14)
719

820

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "4.11.0"
2+
"version": "4.11.1"
33
}

0 commit comments

Comments
 (0)