Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,20 @@ jobs:
fail-fast: false
matrix:
node:
- version: 16.x
# - version: 18.x
# env: NODE_OPTIONS=--openssl-legacy-provider
- version: 20.x
env: NODE_OPTIONS=--openssl-legacy-provider
- version: 22.x
env: NODE_OPTIONS=--openssl-legacy-provider
- version: 24.x
env: NODE_OPTIONS=--openssl-legacy-provider
runs-on: ubuntu-22.04
name: Tests on Node.js v${{ matrix.node.version }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node.version }}

Expand All @@ -41,10 +40,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: "22.x"

Expand Down
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ _Note: Gaps between patch versions are faulty, broken or test releases._
## UNRELEASED

* **Breaking Change**
* Remove explicit support for Node versions below 16.20.2 ([#650](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/650) by [@valscion](https://github.com/valscion))
* **NOTE:** `webpack-bundle-analyzer` might still support older Node versions but they are no longer tested against.
* Remove explicit support for Node versions below 20.9.0 ([#676](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/676) by [@valscion](https://github.com/valscion))

* **Improvement**
* Parse bundles as ES modules based on stats JSON information ([#649](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/649) by [@eamodio](https://github.com/eamodio))
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Up @@ -16,7 +16,7 @@
"main": "lib/index.js",
"bin": "lib/bin/analyzer.js",
"engines": {
"node": ">= 16.20.2"
"node": ">= 20.9.0"
},
"packageManager": "npm@6.14.8",
"scripts": {
Expand Down