Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v25 #905

Merged
merged 24 commits into from
Oct 10, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bcd8d11
fix: stop testing on Node 10 and 15 (#891)
SimenB Sep 13, 2021
13c041a
chore(release): 25.0.0-next.1 [skip ci]
semantic-release-bot Sep 13, 2021
47a0138
fix: stop testing ESLint 5 (#893)
SimenB Sep 13, 2021
ef08fa6
chore(release): 25.0.0-next.2 [skip ci]
semantic-release-bot Sep 13, 2021
efe56c1
chore: update dev dependencies (#894)
SimenB Sep 13, 2021
b0888c7
Merge branch 'main' into next
SimenB Sep 13, 2021
e8f16ec
feat: remove deprecated rules (#661)
G-Rath Sep 17, 2021
9d87cfa
chore(release): 25.0.0-next.3 [skip ci]
semantic-release-bot Sep 17, 2021
6aa7eea
chore: update yarn to v3 (#900)
SimenB Sep 17, 2021
74cd2ae
Merge branch 'main' into next
SimenB Sep 20, 2021
0723224
chore(release): 25.0.0-next.4 [skip ci]
semantic-release-bot Sep 20, 2021
2a0b43b
Merge branch 'main' into next
SimenB Sep 21, 2021
30e13fe
Merge branch 'main' into next
SimenB Sep 21, 2021
5c0504c
Merge branch 'main' into next
SimenB Sep 22, 2021
0fd748f
Merge branch 'main' into next
SimenB Sep 29, 2021
24b6c5d
chore(release): 25.0.0-next.5 [skip ci]
semantic-release-bot Sep 29, 2021
6708bb8
Merge branch 'main' into next
SimenB Oct 10, 2021
c5ccdca
chore(release): 25.0.0-next.6 [skip ci]
semantic-release-bot Oct 10, 2021
2a3376f
feat: add `prefer-to-be` to style ruleset
G-Rath Oct 3, 2021
809bcda
feat(prefer-to-be-null): remove rule
G-Rath Oct 9, 2021
3434d9b
feat(prefer-to-be-undefined): remove rule
G-Rath Oct 9, 2021
b860084
feat(lowercase-name): rename to `prefer-lowercase-title`
G-Rath Oct 9, 2021
f3e9e9a
feat(valid-describe): rename to `valid-describe-callback`
G-Rath Oct 9, 2021
1ef8586
chore(release): 25.0.0-next.7 [skip ci]
semantic-release-bot Oct 10, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: stop testing on Node 10 and 15 (#891)
BREAKING CHANGE: Drop support for Node 10 and 15
  • Loading branch information
SimenB committed Sep 13, 2021
commit bcd8d112fcd98a7652c767bd246d05101979239c
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 15.x, 16.x]
node-version: [12.x, 14.x, 16.x]
eslint-version: [5, 6, 7]
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
}
},
"engines": {
"node": ">=10"
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
},
"release": {
"branches": [
Expand Down