Skip to content

Releases: chimurai/http-proxy-middleware

v0.15.2

29 May 12:53
Compare
Choose a tag to compare

v0.15.1...v0.15.2

fix(websocket): fixes websocket upgrade. (53fe79b)

v0.15.1

26 May 22:03
Compare
Choose a tag to compare

v0.15.0...v0.15.1

  • feat(pathRewrite): expose req object to pathRewrite function.
  • fix(websocket): fixes websocket upgrade when both config.ws and external .upgrade() are used.

v0.15.0

03 May 21:02
Compare
Choose a tag to compare

v0.14.0

18 Apr 20:41
Compare
Choose a tag to compare

v0.13.0...v0.14.0

v0.13.0

23 Mar 20:22
Compare
Choose a tag to compare

v0.12.0...v0.13.0

  • feat(context): custom context matcher; when simple path matching is not sufficient. #59

Example:

var filter = function (path, req) {
    return (path.match('^/api') && req.method === 'GET');
};

var apiProxy = proxyMiddleware(filter, {target: 'http://www.example.org'});

v0.12.0

13 Mar 17:50
Compare
Choose a tag to compare

v0.11.0...v0.12.0

  • 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)

v0.11.0

24 Feb 20:02
Compare
Choose a tag to compare

v0.10.0...v0.11.0

  • improved debug logging (#48)

v0.10.0

05 Feb 19:21
Compare
Choose a tag to compare

v0.9.1...v0.10.0

  • 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.

v0.10.0-beta

27 Jan 10:27
Compare
Choose a tag to compare
v0.10.0-beta Pre-release
Pre-release

v0.9.1...v0.10.0-beta

  • 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.

v0.9.1

18 Jan 21:45
Compare
Choose a tag to compare
  • fix server crash when socket error not handled correctly. (#44)
  • update dependencies