Comparing version 0.2.3 to 0.2.4
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.2.4](https://github.com/nuxt-contrib/h3/compare/v0.2.3...v0.2.4) (2021-01-22) | ||
### Bug Fixes | ||
* always restore req.url for each layer to avoid mutation ([aae5787](https://github.com/nuxt-contrib/h3/commit/aae57876a1bad3972bec86cee385db308ac69764)) | ||
### [0.2.3](https://github.com/nuxt-contrib/h3/compare/v0.2.2...v0.2.3) (2021-01-20) | ||
@@ -7,0 +14,0 @@ |
@@ -550,2 +550,4 @@ 'use strict'; | ||
req.url = reqUrl.substr(layer.route.length) || "/"; | ||
} else { | ||
req.url = reqUrl; | ||
} | ||
@@ -552,0 +554,0 @@ if (layer.match && !layer.match(req.url, req)) { |
{ | ||
"name": "h3", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "Tiny JavaScript Server", | ||
@@ -5,0 +5,0 @@ "repository": "nuxt-contrib/h3", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51838
1254