Skip to content

Commit

Permalink
Merge pull request editorconfig#122 from hildjj/bugfixes
Browse files Browse the repository at this point in the history
Breaking: update minimum node version to 16
  • Loading branch information
hildjj committed Jul 2, 2023
2 parents 2e87ce4 + b28cc90 commit 3b7855a
Show file tree
Hide file tree
Showing 8 changed files with 344 additions and 208 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Tests
on:
push:
branches:
- '*'
- main
pull_request:
branches: ['*']

Expand All @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x]
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: npm install
- name: Check coding standards
if: matrix.node-version == '18.x' && matrix.os == 'ubuntu-latest'
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
run: npm run lint
- name: Test
run: npm run ci
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 2.0.0

- **Breaking**: Now requires Node v16+
- Enable extended globbing from minimatch. This means that some patterns will
work in this version might not work in other editorconfig implementations.
Fixes #84.
- Add `unset` option to API and CLI. When enabled, properties with the value
"unset" will be removed from the returned object. Defaults to false in all
cases, since according to the core team, this is something that the editor
plugin is supposed to do, and the tests reinforce this. An `unset()`
function is now exported if you'd like to call it explicitly.
Fixes #123.

## 1.0.3

- Updated all dependencies, including security fixes for semver 7.3.8
Expand Down

0 comments on commit 3b7855a

Please sign in to comment.