Skip to content

release 4.2.1 #17

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

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 4.2.1 (2024-01-10)

### Fixes

- Removed logic to automatically detect out of date eslint plugins.
Unfortunately this is [not safe in current Node.js if any of those
plugins use the `exports` feature in `package.json`](https://github.com/nodejs/node/issues/33460),
which led to install failures for a related module.

## 4.2.0 (2023-11-29)

### Adds
Expand Down
46 changes: 0 additions & 46 deletions lib/checkUpdates.js

This file was deleted.

6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"name": "eslint-config-apostrophe",
"version": "4.2.0",
"version": "4.2.1",
"description": "eslint configuration for apostrophe and related core modules",
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"check": "node ./lib/checkUpdates",
"compare": "node ./lib/index",
"eslint": "eslint . -c eslintrc.json",
"test": "npx mocha",
"postinstall": "npm run check"
"test": "npx mocha"
},
"repository": {
"type": "git",
Expand Down