Skip to content

Commit 4e4c97f

Browse files
authoredFeb 12, 2024
refactor: improve migration (#5040)
1 parent b453380 commit 4e4c97f

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed
 

‎lib/Server.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -2040,6 +2040,15 @@ class Server {
20402040
if (proxyConfig.router) {
20412041
return createProxyMiddleware(proxyConfig);
20422042
}
2043+
2044+
// TODO improve me after drop `bypass` to always generate error when configuration is bad
2045+
if (!proxyConfig.bypass) {
2046+
util.deprecate(
2047+
() => {},
2048+
`Invalid proxy configuration:\n\n${JSON.stringify(proxyConfig, null, 2)}\n\nThe use of proxy object notation as proxy routes has been removed.\nPlease use the 'router' or 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options`,
2049+
"DEP_WEBPACK_DEV_SERVER_PROXY_ROUTES_ARGUMENT",
2050+
)();
2051+
}
20432052
};
20442053

20452054
/**
@@ -2090,12 +2099,15 @@ class Server {
20902099

20912100
if (newProxyConfig !== proxyConfig) {
20922101
proxyConfig = newProxyConfig;
2102+
20932103
const socket = req.socket != null ? req.socket : req.connection;
20942104
// @ts-ignore
20952105
const server = socket != null ? socket.server : null;
2106+
20962107
if (server) {
20972108
server.removeAllListeners("close");
20982109
}
2110+
20992111
proxyMiddleware =
21002112
/** @type {RequestHandler} */
21012113
(getProxyMiddleware(proxyConfig));
@@ -2110,7 +2122,7 @@ class Server {
21102122
if (isByPassFuncDefined) {
21112123
util.deprecate(
21122124
() => {},
2113-
"Using the 'bypass' option is deprecated. Please use the 'router' and 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
2125+
"Using the 'bypass' option is deprecated. Please use the 'router' or 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
21142126
"DEP_WEBPACK_DEV_SERVER_PROXY_BYPASS_ARGUMENT",
21152127
)();
21162128
}

‎test/server/proxy-option.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ describe("proxy option", () => {
238238
const lastCall = utilSpy.mock.calls[utilSpy.mock.calls.length - 1];
239239

240240
expect(lastCall[1]).toEqual(
241-
"Using the 'bypass' option is deprecated. Please use the 'router' and 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
241+
"Using the 'bypass' option is deprecated. Please use the 'router' or 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
242242
);
243243
expect(lastCall[2]).toEqual(
244244
"DEP_WEBPACK_DEV_SERVER_PROXY_BYPASS_ARGUMENT",

0 commit comments

Comments
 (0)
Please sign in to comment.