Releases: chimurai/http-proxy-middleware
Releases · chimurai/http-proxy-middleware
v1.0.5
v0.19.2
v1.0.4
v1.0.3
- build(package): exclude build artifact tsconfig.tsbuildinfo (#415)
smaller npm package size:
before:
npm notice package size: 30.3 kB
npm notice unpacked size: 208.4 kB
after:
npm notice package size: 17.1 kB
npm notice unpacked size: 61.0 kB
v1.0.2
v1.0.1
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
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
andproxyTable
(BREAKING CHANGE)