File tree 4 files changed +10
-2
lines changed
4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ v2.0.2] ( https://github.com/chimurai/http-proxy-middleware/releases/tag/v2.0.2 )
4
+
5
+ - chore(deps): update @types/http-proxy to 1.17.8 ([ #701 ] ( https://github.com/chimurai/http-proxy-middleware/pull/701 ) )
6
+ - fix(fixRequestBody): fix request body for empty JSON object requests ([ #640 ] ( https://github.com/chimurai/http-proxy-middleware/pull/640 ) ) ([ mhassan1] ( https://github.com/mhassan1 ) )
7
+ - fix(types): fix type regression ([ #700 ] ( https://github.com/chimurai/http-proxy-middleware/pull/700 ) )
8
+
3
9
## [ v2.0.1] ( https://github.com/chimurai/http-proxy-middleware/releases/tag/v2.0.1 )
4
10
5
11
- fix(fixRequestBody): fix type error ([ #615 ] ( https://github.com/chimurai/http-proxy-middleware/pull/615 ) )
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ graingert
9
9
julbra
10
10
leonardobazico
11
11
Liran
12
+ mhassan1
12
13
midgleyc
13
14
mpth
14
15
oshri
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ const express = require('express');
127
127
const { createProxyMiddleware } = require (' http-proxy-middleware' );
128
128
129
129
// proxy middleware options
130
+ /** @type {import('http-proxy-middleware/dist/types').Options} */
130
131
const options = {
131
132
target: ' http://www.example.org' , // target host
132
133
changeOrigin: true , // needed for virtual hosted sites
@@ -598,4 +599,4 @@ $ yarn spellcheck
598
599
599
600
The MIT License (MIT)
600
601
601
- Copyright (c) 2015-2021 Steven Chim
602
+ Copyright (c) 2015-2022 Steven Chim
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " http-proxy-middleware" ,
3
- "version" : " 2.0.1 " ,
3
+ "version" : " 2.0.2 " ,
4
4
"description" : " The one-liner node.js proxy middleware for connect, express and browser-sync" ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments