Skip to content

Commit 19e54c7

Browse files
committed
chore(build): bumping to version 1.19.7
1 parent 547d4b6 commit 19e54c7

11 files changed

+55
-48
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
The release notes tracked in this document are also made available on the [releases page](https://github.com/medialize/URI.js/releases)
44

5+
### 1.19.7 (July 14th 2021) ###
6+
7+
* **SECURITY** fixing [`URI.parseQuery()`](http://medialize.github.io/URI.js/docs.html#static-parseQuery) to prevent overwriting `__proto__` in parseQuery() - disclosed privately by @NewEraCracker
8+
* **SECURITY** fixing [`URI.parse()`](http://medialize.github.io/URI.js/docs.html#static-parse) to handle variable amounts of `\` and `/` in scheme delimiter as Node and Browsers do - disclosed privately by [ready-research](https://github.com/ready-research) via https://huntr.dev/
9+
* removed obsolete build tools
10+
* updated jQuery versions (verifying compatibility with 1.12.4, 2.2.4, 3.6.0)
11+
512
### 1.19.6 (February 13th 2021) ###
613

714
* **SECURITY** fixing [`URI.parse()`](http://medialize.github.io/URI.js/docs.html#static-parse) to rewrite `\` in scheme delimiter to `/` as Node and Browsers do - disclosed privately by [Yaniv Nizry](https://twitter.com/ynizry) from the CxSCA AppSec team at Checkmarx

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "urijs",
3-
"version": "1.19.6",
3+
"version": "1.19.7",
44
"main": "src/URI.js",
55
"ignore": [
66
".*",

build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function build(files) {
2929
output_format: "text",
3030
output_info: "compiled_code"
3131
}, function(data) {
32-
var code = "/*! URI.js v1.19.6 http://medialize.github.io/URI.js/ */\n/* build contains: " + files.join(', ') + " */\n" + data;
32+
var code = "/*! URI.js v1.19.7 http://medialize.github.io/URI.js/ */\n/* build contains: " + files.join(', ') + " */\n" + data;
3333
$progress.hide();
3434
$out.val(code).parent().show();
3535
$out.prev().find('a').remove();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "urijs",
3-
"version": "1.19.6",
3+
"version": "1.19.7",
44
"title": "URI.js - Mutating URLs",
55
"author": {
66
"name": "Rodney Rehm",

src/IPv6.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* URI.js - Mutating URLs
33
* IPv6 Support
44
*
5-
* Version: 1.19.6
5+
* Version: 1.19.7
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/

src/SecondLevelDomains.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* URI.js - Mutating URLs
33
* Second Level Domain (SLD) Support
44
*
5-
* Version: 1.19.6
5+
* Version: 1.19.7
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/

src/URI.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* URI.js - Mutating URLs
33
*
4-
* Version: 1.19.6
4+
* Version: 1.19.7
55
*
66
* Author: Rodney Rehm
77
* Web: http://medialize.github.io/URI.js/
@@ -81,7 +81,7 @@
8181
return /^[0-9]+$/.test(value);
8282
}
8383

84-
URI.version = '1.19.6';
84+
URI.version = '1.19.7';
8585

8686
var p = URI.prototype;
8787
var hasOwn = Object.prototype.hasOwnProperty;

src/URI.min.js

+38-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/URITemplate.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* URI.js - Mutating URLs
33
* URI Template Support - http://tools.ietf.org/html/rfc6570
44
*
5-
* Version: 1.19.6
5+
* Version: 1.19.7
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/

src/jquery.URI.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* URI.js - Mutating URLs
33
* jQuery Plugin
44
*
5-
* Version: 1.19.6
5+
* Version: 1.19.7
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/jquery-uri-plugin.html

src/jquery.URI.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)