Skip to content

Commit

Permalink
Upgrading a few packages + upgrading lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Oct 22, 2023
1 parent a704e44 commit 5e8b8d8
Show file tree
Hide file tree
Showing 26 changed files with 8,515 additions and 7,743 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: 2 additions & 3 deletions .github/workflows/testing_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,13 @@ jobs:
- name: Node ${{matrix.node-versions}}
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- 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
version: 8.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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
"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": {
"@nuxt/friendly-errors-webpack-plugin": "^2.5.1",
"assets-webpack-plugin": "7.0.*",
"babel-loader": "^9.1.2",
"babel-loader": "^9.1.3",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.0",
Expand Down Expand Up @@ -88,9 +88,9 @@
"sass-loader": "^13.0.0",
"sinon": "^14.0.0",
"strip-ansi": "^6.0.0",
"stylus": "^0.58.1",
"stylus": "^0.60.0",
"stylus-loader": "^7.0.0",
"svelte": "^3.50.0",
"svelte": "^3.50.0 || ^4.2.2",
"svelte-loader": "^3.1.0",
"ts-loader": "^9.0.0",
"typescript": "^4.2.2 || ^5.0.0",
Expand Down

0 comments on commit 5e8b8d8

Please sign in to comment.