route-node
Advanced tools
Comparing version 3.2.0 to 3.2.1
@@ -0,1 +1,12 @@ | ||
<a name="3.2.1"></a> | ||
## [3.2.1](https://github.com/troch/route-node/compare/v3.2.0...v3.2.1) (2018-06-05) | ||
### Bug Fixes | ||
* pass query param options on partial tests ([068a146](https://github.com/troch/route-node/commit/068a146)) | ||
* update search-params and path-parser to decode unicode values when parsing ([7a1c0b9](https://github.com/troch/route-node/commit/7a1c0b9)) | ||
<a name="3.2.0"></a> | ||
@@ -2,0 +13,0 @@ # [3.2.0](https://github.com/troch/route-node/compare/v3.1.2...v3.2.0) (2018-05-14) |
@@ -142,3 +142,4 @@ 'use strict'; | ||
delimited: strongMatching, | ||
caseSensitive: caseSensitive | ||
caseSensitive: caseSensitive, | ||
queryParams: options.queryParams | ||
}); | ||
@@ -145,0 +146,0 @@ } |
@@ -140,3 +140,4 @@ import { build, omit, parse } from 'search-params'; | ||
delimited: strongMatching, | ||
caseSensitive: caseSensitive | ||
caseSensitive: caseSensitive, | ||
queryParams: options.queryParams | ||
}); | ||
@@ -143,0 +144,0 @@ } |
@@ -102,6 +102,6 @@ (function (global, factory) { | ||
else if (opts.booleanFormat === 'unicode') { | ||
if (value === '✓') { | ||
if (decodeValue(value) === '✓') { | ||
return true; | ||
} | ||
if (value === '✗') { | ||
if (decodeValue(value) === '✗') { | ||
return false; | ||
@@ -218,3 +218,3 @@ } | ||
return '(' + | ||
(match ? match.replace(/(^<|>$)/g, '') : "[a-zA-Z0-9-_.~%':|=]+") + | ||
(match ? match.replace(/(^<|>$)/g, '') : "[a-zA-Z0-9-_.~%':|=+]+") + | ||
')'; | ||
@@ -604,3 +604,4 @@ }; | ||
delimited: strongMatching, | ||
caseSensitive: caseSensitive | ||
caseSensitive: caseSensitive, | ||
queryParams: options.queryParams | ||
}); | ||
@@ -607,0 +608,0 @@ } |
@@ -46,3 +46,4 @@ import { omit, parse } from 'search-params' | ||
delimited: strongMatching, | ||
caseSensitive | ||
caseSensitive, | ||
queryParams: options.queryParams | ||
}) | ||
@@ -49,0 +50,0 @@ } |
{ | ||
"name": "route-node", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "A package to create a tree of named routes", | ||
@@ -62,5 +62,5 @@ "main": "dist/cjs/route-node.js", | ||
"dependencies": { | ||
"path-parser": "4.1.0", | ||
"search-params": "2.1.2" | ||
"path-parser": "4.1.1", | ||
"search-params": "2.1.3" | ||
} | ||
} |
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
253656
2980
+ Addedpath-parser@4.1.1(transitive)
+ Addedsearch-params@2.1.3(transitive)
- Removedpath-parser@4.1.0(transitive)
- Removedsearch-params@2.1.2(transitive)
Updatedpath-parser@4.1.1
Updatedsearch-params@2.1.3