Skip to content

Commit 5e8b8d8

Browse files
committed
Upgrading a few packages + upgrading lock file
1 parent a704e44 commit 5e8b8d8

File tree

26 files changed

+8515
-7743
lines changed

26 files changed

+8515
-7743
lines changed

.github/workflows/high-depends.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, windows-2019]
17-
node-versions: ['14', '16', '18']
17+
node-versions: ['16', '18', '20']
1818

1919
steps:
2020
- name: Checkout

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Node ${{matrix.node-versions}}
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: '14'
16+
node-version: '16'
1717

1818
- name: Install Yarn Dependencies
1919
run: yarn install

.github/workflows/low-depends.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, windows-2019]
17-
node-versions: ['14', '16', '18']
17+
node-versions: ['16', '18', '20']
1818

1919
steps:
2020
- name: Checkout

.github/workflows/stable-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, windows-2019]
17-
node-versions: ['14', '16', '18']
17+
node-versions: ['16', '18', '20']
1818

1919
steps:
2020
- name: Checkout

.github/workflows/testing_apps.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,13 @@ jobs:
9292
- name: Node ${{matrix.node-versions}}
9393
uses: actions/setup-node@v3
9494
with:
95-
node-version: '14'
95+
node-version: '18'
9696

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

104103
- name: Packing Encore
105104
run: yarn pack --filename webpack-encore.tgz

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## [v4.4.0](https://github.com/symfony/webpack-encore/releases/tag/v4.5.0)
4+
5+
### Features
6+
7+
* #1235 Dropping support for Node 14 (16 is new min) and allowing `svelte` 4 (@weaverryan)
8+
9+
* #1185 Bump `babel-loader` from 8.2.5 to 9.1.2 (@dppanteon) - the
10+
[CHANGELOG for babel 9](https://github.com/babel/babel-loader/releases/tag/v9.0.0)
11+
does not list any breaking changes besides increasing the minimum Node version.
12+
13+
* #1224 Allow fork-ts-checker-webpack-plugin ^8.0 and ^9.0 (@buffcode)
14+
315
## [v4.4.0](https://github.com/symfony/webpack-encore/releases/tag/v4.4.0)
416

517
### Features

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"url": "https://github.com/symfony/webpack-encore/issues"
2424
},
2525
"engines": {
26-
"node": ">=14.0.0"
26+
"node": ">=16.0.0"
2727
},
2828
"homepage": "https://github.com/symfony/webpack-encore",
2929
"dependencies": {
3030
"@nuxt/friendly-errors-webpack-plugin": "^2.5.1",
3131
"assets-webpack-plugin": "7.0.*",
32-
"babel-loader": "^9.1.2",
32+
"babel-loader": "^9.1.3",
3333
"chalk": "^4.0.0",
3434
"clean-webpack-plugin": "^4.0.0",
3535
"css-loader": "^6.7.0",
@@ -88,9 +88,9 @@
8888
"sass-loader": "^13.0.0",
8989
"sinon": "^14.0.0",
9090
"strip-ansi": "^6.0.0",
91-
"stylus": "^0.58.1",
91+
"stylus": "^0.60.0",
9292
"stylus-loader": "^7.0.0",
93-
"svelte": "^3.50.0",
93+
"svelte": "^3.50.0 || ^4.2.2",
9494
"svelte-loader": "^3.1.0",
9595
"ts-loader": "^9.0.0",
9696
"typescript": "^4.2.2 || ^5.0.0",

0 commit comments

Comments
 (0)