Changelog
- fix(fix-request-body): make sure the content-type exists (#578) (oufeng)
- docs(response interceptor): align with nodejs default utf8 (#567)
- feat: try to proxy body even after body-parser middleware (#492) (midgleyc)
- fix(response interceptor): proxy original response headers (#563)
- feat(handler): response interceptor (#520)
- fix(log error): handle undefined target when websocket errors (#527)
- fix(log error): handle optional target (#523)
- fix(error handler): re-throw http-proxy missing target error (#517)
- refactor(dependency): remove
camelcase
- fix(option): optional
target
when router
is used (#512)
- fix(errorHandler): fix confusing error message (#509)
- fix(proxy): close proxy when server closes (#508)
- refactor(lodash): remove lodash (#459) (#507) (TrySound)
- fix(ETIMEDOUT): return 504 on ETIMEDOUT (#480) (aremishevsky)
- chore(deps): lodash 4.17.20 (#475)
- chore(deps): lodash 4.17.19 (#454)
- chore(deps): http-proxy 1.18.1 (#442)
- build(package): exclude build artifact tsconfig.tsbuildinfo (#415)
- fix(router): handle rejected promise in custom router (#410) (bforbis)
- fix(typescript): fix proxyRes and router types (#410) (dylang)
- feat(createProxyMiddleware): explicit import http-proxy-middleware (BREAKING CHANGE)(#400)
- feat(typescript): export http-proxy-middleware types (#400)
- fix(typescript): ES6 target - TS1192 (#400)
- feat(http-proxy): bump to v1.18.0
- feat: async router (#379) (LiranBri)
- feat(typescript): types support (#369)
- feat: async pathRewrite (#397) (rsethc)
- fix(ws): concurrent websocket requests do not get upgraded (#335)
- chore: drop node 6 (BREAKING CHANGE)
- chore: update to micromatch@4 (BREAKING CHANGE)
- chore: update dev dependencies
- refactor: migrate to typescript (#328)
- feat(middleware): Promise / async support (#328)
- refactor: remove legacy options
proxyHost
and proxyTable
(BREAKING CHANGE)
- fix(log): handle case when error code is missing (#303)
- feat(http-proxy): bump to v1.17.0 (#261)
- fix(ntlm authentication): fixed bug preventing proxying with ntlm authentication. (#132) (Thanks: EladBezalel, oshri551)
- fix(onError): improve default proxy error handling. http status codes (504, 502 and 500). (#132) (graingert)
- feat(logging): improve error message & add link to Node errors page. (#106) (cloudmu)
- feat(pathRewrite): path can be empty string. (#110) (sunnylqm)
- bug(websocket): memory leak when option 'ws:true' is used. (#114) (julbra)
- chore(package.json): reduce package size. (#109)
- fix(Express sub Router): 404 on non-proxy routes (#94)
- fix(context matching): Use RFC 3986 path in context matching. (excludes query parameters)
- deprecated(proxyTable): renamed
proxyTable
to router
.
- feat(router): support for custom
router
function.
- fix(websocket): fixes websocket upgrade.
- feat(pathRewrite): expose
req
object to pathRewrite function.
- fix(websocket): fixes websocket upgrade when both config.ws and external .upgrade() are used.
- feat(pathRewrite): support for custom pathRewrite function.
- feat(proxy): support proxy creation without context.
- fix(connect mounting): use connect's
path
configuration to mount proxy.
- feat(context): custom context matcher; when simple
path
matching is not sufficient.
- add option
onProxyReqWs
(subscribe to http-proxy proxyReqWs
event)
- add option
onOpen
(subscribe to http-proxy open
event)
- add option
onClose
(subscribe to http-proxy close
event)
- feat(proxyTable) - added proxyTable support for WebSockets.
- fixed(proxyTable) - ensure original path (not rewritten path) is being used when
proxyTable
is used in conjunction with pathRewrite
.
- fix server crash when socket error not handled correctly.
- support subscribing to http-proxy
proxyReq
event (trbngr)
- add
logLevel
and logProvider
support
- fix pathRewrite when
agent
is configured
- support external websocket upgrade
- fix websocket shorthand
- support shorthand syntax
- fix express/connect mounting
- support subscribing to http-proxy
error
event
- support subscribing to http-proxy
proxyRes
event
- support path rewrite
- deprecate proxyHost option