@podium/proxy
Advanced tools
Comparing version 4.2.73 to 4.2.74
@@ -0,1 +1,8 @@ | ||
## [4.2.74](https://github.com/podium-lib/proxy/compare/v4.2.73...v4.2.74) (2022-04-05) | ||
### Bug Fixes | ||
* remove trailer header if present when proxying ([9698a40](https://github.com/podium-lib/proxy/commit/9698a40df081217ce142d4de71f929baaa339cdf)) | ||
## [4.2.73](https://github.com/podium-lib/proxy/compare/v4.2.72...v4.2.73) (2022-03-23) | ||
@@ -2,0 +9,0 @@ |
@@ -154,2 +154,8 @@ 'use strict'; | ||
if (match) { | ||
if (incoming.request.headers.trailer) { | ||
incoming.response.writeHead(400); | ||
incoming.response.end(); | ||
return; | ||
} | ||
// Turn matched uri parameters into an object of parameters | ||
@@ -156,0 +162,0 @@ const params = {}; |
{ | ||
"name": "@podium/proxy", | ||
"version": "4.2.73", | ||
"version": "4.2.74", | ||
"description": "Transparent http proxy. Dynamically mounts proxy targets on an existing HTTP server instance.", | ||
@@ -48,3 +48,3 @@ "license": "MIT", | ||
"@semantic-release/git": "10.0.1", | ||
"@semantic-release/github": "8.0.2", | ||
"@semantic-release/github": "8.0.4", | ||
"@semantic-release/npm": "8.0.3", | ||
@@ -56,8 +56,8 @@ "@semantic-release/release-notes-generator": "10.0.3", | ||
"eslint-config-airbnb-base": "14.2.1", | ||
"eslint-config-prettier": "8.4.0", | ||
"eslint-config-prettier": "8.5.0", | ||
"eslint-plugin-import": "2.25.4", | ||
"eslint-plugin-prettier": "3.4.1", | ||
"prettier": "2.5.1", | ||
"prettier": "2.6.1", | ||
"tap": "14.11.0" | ||
} | ||
} |
42396
241