Skip to content

Releases: chimurai/http-proxy-middleware

v1.0.2

14 Mar 13:25
Compare
Choose a tag to compare

v1.0.1...v1.0.2

  • fix(router): handle rejected promise in custom router (#410) (bforbis)

v1.0.1

29 Feb 12:39
Compare
Choose a tag to compare

v1.0.0...v1.0.1

  • fix(typescript): fix proxyRes and router types (#410) (dylang)

v1.0.0

18 Feb 22:51
Compare
Choose a tag to compare

v0.21.0...v1.0.0

  • feat(createProxyMiddleware): explicit import http-proxy-middleware (BREAKING CHANGE)(#400)
  • feat(typescript): export http-proxy-middleware types (#400)
  • fix(typescript): ES6 target - TS1192 (introduced in v0.21.0) (#400)

BREAKING CHANGE

require/import of http-proxy-middleware is now explicit

functionality did not change in this release.

https://humanwhocodes.com/blog/2019/01/stop-using-default-exports-javascript-module

v0.x.x with implicit require

const proxy = require('http-proxy-middleware');

v1.0.0 with explicit require

const { createProxyMiddleware } = require('http-proxy-middleware');

TypeScript Types

import { Filter, Options, RequestHandler } from 'http-proxy-middleware';

v1.0.0 - semver

Moving to less confusing semver versioning (#358)

v0.21.0

16 Feb 18:32
Compare
Choose a tag to compare

v0.20.0...v0.21.0

  • feat(http-proxy): bump to v1.18.0
  • feat: async router (#379) (LiranBri)
  • feat(typescript): types support (#369)
  • feat: async pathRewrite (#397) (rsethc)

v0.20.0

03 Sep 19:58
3b97308
Compare
Choose a tag to compare

v0.19.1...v0.20.0

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

v0.19.1

25 Nov 20:20
Compare
Choose a tag to compare

v0.19.0...v0.19.1

  • fix(log): handle case when error code is missing (#303)

v0.19.0

29 Aug 21:30
bb59c66
Compare
Choose a tag to compare

v0.18.0...v0.19.0

  • feat(http-proxy): bump to v1.17.0 (#261)

List of changes in the http-proxy 1.17.0
http-party/node-http-proxy@1.16.2...1.17.0

v0.18.0

12 Mar 22:49
Compare
Choose a tag to compare

v0.17.4...v0.18.0

v0.17.4

02 Mar 23:09
Compare
Choose a tag to compare

v0.17.3...v0.17.4

  • fix(ntlm authentication): fixed bug preventing proxying with ntlm authentication. (#132)

(Thanks: EladBezalel, oshri551)

v0.17.3

07 Dec 21:24
Compare
Choose a tag to compare

v0.17.2...v0.17.3

  • fix(onError): improve default proxy error handling. http status codes (504, 502 and 500). (32b4c06) (graingert)