Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
09bdda5
feat!: remove internalIP methods (#5625)
bjohansebas Jan 12, 2026
f0caae4
feat!: drop support for node <20.9 (#5631)
bjohansebas Jan 20, 2026
cc0b931
feat: remove SockJS support (#5626)
bjohansebas Jan 21, 2026
873a803
feat: bump to express 5 (#5564)
bjohansebas Jan 23, 2026
1a30c21
feat: remove spdy (#5635)
bjohansebas Jan 24, 2026
18704b6
feat: enable compression middleware for http/2 (#5638)
bjohansebas Jan 29, 2026
ebd7f64
feat: use new URL instead of url.parse (#5637)
bjohansebas Feb 1, 2026
230679d
feat: remove colorette dependency (#5642)
bjohansebas Feb 1, 2026
a4012b6
feat: remove bypass option from proxy configuration (#5641)
bjohansebas Feb 3, 2026
6cd1752
feat: use compiler.platform to determine the target (#5647)
bjohansebas Feb 17, 2026
21df33f
feat: remove cli-flags (#5634)
bjohansebas Mar 6, 2026
3c09a1a
chore: update webpack-dev-middleware@8 (#5654)
bjohansebas Mar 30, 2026
1121977
chore: bump dependencies (#5655)
bjohansebas Mar 30, 2026
d163488
chore: update webpack-cli to version 7.0.2 (#5656)
bjohansebas Apr 1, 2026
9e36127
chore: update chokidar to v4 (#5657)
bjohansebas Apr 26, 2026
93c191a
chore: update dev-middleware (#5664)
bjohansebas Apr 26, 2026
a7ab30f
chore: update p-retry to v8.0.0 and node engine requirement to >=22.1…
bjohansebas May 1, 2026
4d2acaa
refactor: migrate to node:test and setup jsdom environment (#5667)
bjohansebas May 10, 2026
0cac23f
chore: update chokidar to v5.0.0 in package.json (#5669)
bjohansebas May 11, 2026
24544a2
fix: treat loopback aliases as equivalent in isSameOrigin (#5659)
ThierryRakotomanana May 15, 2026
c5cf7cd
refactor: migrate to ES module syntax (#5665)
bjohansebas May 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
15 changes: 2 additions & 13 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 20.x, 22.x, 24.x]
node-version: [22.x, 24.x, 25.x]
shard: ["1/4", "2/4", "3/4", "4/4"]
webpack-version: [latest]

Expand All @@ -91,12 +91,6 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Install dependencies for Node.js@18
run: |
npm i p-retry@^4.5.0 open@^8.0.9
node ./scripts/prepare-test-for-old-node.js
if: matrix.node-version == '18.x'

- name: Setup firefox
if: matrix.os != 'windows-latest'
uses: browser-actions/setup-firefox@latest
Expand All @@ -112,12 +106,7 @@ jobs:
cp -R tmp-client client

- name: Run tests for webpack version ${{ matrix.webpack-version }}
run: node_modules/.bin/jest --coverage --ci --shard=${{ matrix.shard }}
if: matrix.node-version == '18.x'

- name: Run tests for webpack version ${{ matrix.webpack-version }}
run: npm run test:coverage -- --ci --shard=${{ matrix.shard }}
if: matrix.node-version != '18.x'
run: npm run test:coverage -- --test-shard=${{ matrix.shard }}

- name: Submit coverage data to codecov
uses: codecov/codecov-action@v5
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ npm-debug.log
client
!/examples/client
!/test/client

examples/**/dist

coverage
node_modules
.vscode
Expand Down
6 changes: 2 additions & 4 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"use strict";

module.exports = (api) => {
export default (api) => {
api.cache(true);

return {
Expand All @@ -24,7 +22,7 @@ module.exports = (api) => {
"@babel/preset-env",
{
targets: {
node: "18.12.0",
node: "22.15.0",
},
},
],
Expand Down
Loading
Loading