Skip to content

Commit

Permalink
bumping node 14 -> 16 & adding 20 in cI
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Oct 22, 2023
1 parent 71d5a8e commit 3df30f0
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/high-depends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2019]
node-versions: ['14', '16', '18']
node-versions: ['16', '18', '20']

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Node ${{matrix.node-versions}}
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'

- name: Install Yarn Dependencies
run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/low-depends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2019]
node-versions: ['14', '16', '18']
node-versions: ['16', '18', '20']

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2019]
node-versions: ['14', '16', '18']
node-versions: ['16', '18', '20']

steps:
- name: Checkout
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/testing_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,11 @@ jobs:
- name: Node ${{matrix.node-versions}}
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'

- if: ${{ contains(matrix.app.name, 'pnpm') }}
name: Install pnpm
uses: pnpm/action-setup@v2
with:
# The latest version of pnpm does not support node 14.x anymore.
version: 7.x

- name: Packing Encore
run: yarn pack --filename webpack-encore.tgz
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG

## [v4.4.0](https://github.com/symfony/webpack-encore/releases/tag/v4.5.0)

### Features

* #1235 Dropping support for Node 14 (16 is new min) and allowing `svelte` 4 (@weaverryan)

* #1185 Bump `babel-loader` from 8.2.5 to 9.1.2 (@dppanteon) - the
[CHANGELOG for babel 9](https://github.com/babel/babel-loader/releases/tag/v9.0.0)
does not list any breaking changes besides increasing the minimum Node version.

* #1224 Allow fork-ts-checker-webpack-plugin ^8.0 and ^9.0 (@buffcode)

## [v4.4.0](https://github.com/symfony/webpack-encore/releases/tag/v4.4.0)

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"url": "https://github.com/symfony/webpack-encore/issues"
},
"engines": {
"node": ">=14.0.0"
"node": ">=16.0.0"
},
"homepage": "https://github.com/symfony/webpack-encore",
"dependencies": {
Expand Down

0 comments on commit 3df30f0

Please sign in to comment.