Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

route-node

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

route-node - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1

11

CHANGELOG.md

@@ -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)

3

dist/cjs/route-node.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc