Comparing version 1.7.2 to 1.7.3
{ | ||
"name": "URIjs", | ||
"version": "1.7.2", | ||
"version": "1.7.3", | ||
"title": "URI.js - Mutating URLs", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -187,2 +187,7 @@ # URI.js # | ||
### 1.7.3 (October 11th 2012) ### | ||
* fixing `strictEncodeURIComponent()` to properly encode `*` to `%2A` | ||
* fixing IE9's incorrect report of `img.href` being available - ([Issue #48](https://github.com/medialize/URI.js/issues/48)) | ||
### 1.7.2 (August 28th 2012) ### | ||
@@ -189,0 +194,0 @@ |
@@ -5,3 +5,3 @@ /*! | ||
* | ||
* Version: 1.7.2 | ||
* Version: 1.7.3 | ||
* | ||
@@ -8,0 +8,0 @@ * Author: Rodney Rehm |
@@ -5,3 +5,3 @@ /*! | ||
* | ||
* Version: 1.7.2 | ||
* Version: 1.7.3 | ||
* | ||
@@ -8,0 +8,0 @@ * Author: Rodney Rehm |
/*! | ||
* URI.js - Mutating URLs | ||
* | ||
* Version: 1.7.2 | ||
* Version: 1.7.3 | ||
* | ||
@@ -106,3 +106,5 @@ * Author: Rodney Rehm | ||
// see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/encodeURIComponent | ||
return encodeURIComponent(string).replace(/[!'()*]/g, escape); | ||
return encodeURIComponent(string) | ||
.replace(/[!'()*]/g, escape) | ||
.replace(/\*/g, "%2A"); | ||
} | ||
@@ -109,0 +111,0 @@ URI.encode = strictEncodeURIComponent; |
@@ -5,3 +5,3 @@ /*! | ||
* | ||
* Version: 1.7.2 | ||
* Version: 1.7.3 | ||
* | ||
@@ -8,0 +8,0 @@ * Author: Rodney Rehm |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
104501
2577
290
0