Skip to content

Commit 370d64c

Browse files
authored
chore: node 26 support
1 parent 3184776 commit 370d64c

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Node.js",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/javascript-node:22",
6+
"image": "mcr.microsoft.com/devcontainers/javascript-node:24",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},
@@ -13,7 +13,7 @@
1313
// Configure properties specific to VS Code.
1414
"vscode": {
1515
"settings": {
16-
"workbench.colorTheme": "Default Dark+",
16+
"workbench.colorTheme": "Dark+",
1717
"workbench.iconTheme": "material-icon-theme"
1818
},
1919
"extensions": [

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
strategy:
133133
matrix:
134-
node-version: [22.x, 24.x]
134+
node-version: [22.x, 24.x, 26.x]
135135

136136
steps:
137137
- uses: actions/checkout@v6

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
- fix: applyPathRewrite logs old req.url instead of rewritten path (#1157)
1818
- feat(hono): support for hono with createHonoProxyMiddleware
1919
- feat(ipv6): support literal IPv6 addresses in `target` and `forward` options (ie. "http://[::1]:8000")
20+
- chore: support node v26
2021

2122
## [v3.0.5](https://github.com/chimurai/http-proxy-middleware/releases/tag/v3.0.5)
2223

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![GitHub Workflow Status (with branch)](https://img.shields.io/github/actions/workflow/status/chimurai/http-proxy-middleware/ci.yml?branch=master&logo=github-actions&logoColor=white&style=flat-square)](https://github.com/chimurai/http-proxy-middleware/actions/workflows/ci.yml?query=branch%3Amaster)
44
[![Coveralls](https://img.shields.io/coveralls/chimurai/http-proxy-middleware.svg?style=flat-square&logo=coveralls)](https://coveralls.io/r/chimurai/http-proxy-middleware)
5-
[![Known Vulnerabilities](https://snyk.io/test/github/chimurai/http-proxy-middleware/badge.svg)](https://snyk.io/test/github/chimurai/http-proxy-middleware)
65
[![npm](https://img.shields.io/npm/v/http-proxy-middleware?color=%23CC3534&style=flat-square&logo=npm)](https://www.npmjs.com/package/http-proxy-middleware)
76

87
Node.js proxying made simple. Configure proxy middleware with ease for [connect](https://github.com/senchalabs/connect), [express](https://github.com/expressjs/express), [next.js](https://github.com/vercel/next.js), [hono](https://github.com/honojs/hono) and [many more](#compatible-servers).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,6 @@
113113
]
114114
},
115115
"engines": {
116-
"node": "^22.12.0 || >=24.0.0"
116+
"node": "^22.12.0 || ^24.0.0 || >=26.0.0"
117117
}
118118
}

0 commit comments

Comments
 (0)