Skip to content

Commit

Permalink
chore(build): bumping to version 1.19.7
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneyrehm committed Jul 14, 2021
1 parent 547d4b6 commit 19e54c7
Show file tree
Hide file tree
Showing 11 changed files with 55 additions and 48 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,13 @@

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

### 1.19.7 (July 14th 2021) ###

* **SECURITY** fixing [`URI.parseQuery()`](http://medialize.github.io/URI.js/docs.html#static-parseQuery) to prevent overwriting `__proto__` in parseQuery() - disclosed privately by @NewEraCracker
* **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/
* removed obsolete build tools
* updated jQuery versions (verifying compatibility with 1.12.4, 2.2.4, 3.6.0)

### 1.19.6 (February 13th 2021) ###

* **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
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "urijs",
"version": "1.19.6",
"version": "1.19.7",
"main": "src/URI.js",
"ignore": [
".*",
Expand Down
2 changes: 1 addition & 1 deletion build.js
Expand Up @@ -29,7 +29,7 @@ function build(files) {
output_format: "text",
output_info: "compiled_code"
}, function(data) {
var code = "/*! URI.js v1.19.6 http://medialize.github.io/URI.js/ */\n/* build contains: " + files.join(', ') + " */\n" + data;
var code = "/*! URI.js v1.19.7 http://medialize.github.io/URI.js/ */\n/* build contains: " + files.join(', ') + " */\n" + data;
$progress.hide();
$out.val(code).parent().show();
$out.prev().find('a').remove();
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "urijs",
"version": "1.19.6",
"version": "1.19.7",
"title": "URI.js - Mutating URLs",
"author": {
"name": "Rodney Rehm",
Expand Down
2 changes: 1 addition & 1 deletion src/IPv6.js
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* IPv6 Support
*
* Version: 1.19.6
* Version: 1.19.7
*
* Author: Rodney Rehm
* Web: http://medialize.github.io/URI.js/
Expand Down
2 changes: 1 addition & 1 deletion src/SecondLevelDomains.js
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* Second Level Domain (SLD) Support
*
* Version: 1.19.6
* Version: 1.19.7
*
* Author: Rodney Rehm
* Web: http://medialize.github.io/URI.js/
Expand Down
4 changes: 2 additions & 2 deletions src/URI.js
@@ -1,7 +1,7 @@
/*!
* URI.js - Mutating URLs
*
* Version: 1.19.6
* Version: 1.19.7
*
* Author: Rodney Rehm
* Web: http://medialize.github.io/URI.js/
Expand Down Expand Up @@ -81,7 +81,7 @@
return /^[0-9]+$/.test(value);
}

URI.version = '1.19.6';
URI.version = '1.19.7';

var p = URI.prototype;
var hasOwn = Object.prototype.hasOwnProperty;
Expand Down
76 changes: 38 additions & 38 deletions src/URI.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/URITemplate.js
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* URI Template Support - http://tools.ietf.org/html/rfc6570
*
* Version: 1.19.6
* Version: 1.19.7
*
* Author: Rodney Rehm
* Web: http://medialize.github.io/URI.js/
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.URI.js
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* jQuery Plugin
*
* Version: 1.19.6
* Version: 1.19.7
*
* Author: Rodney Rehm
* Web: http://medialize.github.io/URI.js/jquery-uri-plugin.html
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.URI.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 19e54c7

Please sign in to comment.