Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbf04ec5

Browse files
committed
chore(build): bumping to version 1.19.4
1 parentb02bf03 commitbf04ec5

File tree

11 files changed

+19
-14
lines changed

11 files changed

+19
-14
lines changed

‎CHANGELOG.md‎

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
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.4 (December 23rd 2020) ###
6+
7+
***SECURITY** fixing[`URI.parseAuthority()`](http://medialize.github.io/URI.js/docs.html#static-parseAuthority) to rewrite`\` to`/` as Node and Browsers do - followed up to by[alesandroortiz](https://github.com/alesandroortiz) in[PR#403](https://github.com/medialize/URI.js/issues/403), relates to[Issue#233](https://github.com/medialize/URI.js/pull/233)
8+
59
###1.19.3 (December 20th 2020) ###
610

7-
***SECURITY** fixing[`URI.parseAuthority()`](http://medialize.github.io/URI.js/docs.html#static-parseAuthority) to rewrite`\` to`/` as Node and Browsers do - disclosed privately, relates to[Issue#233](https://github.com/medialize/URI.js/pull/233)
11+
***SECURITY** fixing[`URI.parseAuthority()`](http://medialize.github.io/URI.js/docs.html#static-parseAuthority) to rewrite`\` to`/` as Node and Browsers do - disclosed privately by[alesandroortiz](https://github.com/alesandroortiz), relates to[Issue#233](https://github.com/medialize/URI.js/pull/233)
12+
813
###1.19.2 (October 20th 2019) ###
914

1015
* fixing[`URI.build()`](http://medialize.github.io/URI.js/docs.html#static-build) to properly handle relative paths when a scheme is given -[Issue#387](https://github.com/medialize/URI.js/issues/387)

‎bower.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"urijs",
3-
"version":"1.19.3",
3+
"version":"1.19.4",
44
"main":"src/URI.js",
55
"ignore": [
66
".*",

‎build.js‎

Lines changed: 1 addition & 1 deletion
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-
varcode="/*! URI.js v1.19.3 http://medialize.github.io/URI.js/ */\n/* build contains: "+files.join(', ')+" */\n"+data;
32+
varcode="/*! URI.js v1.19.4 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‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"urijs",
3-
"version":"1.19.3",
3+
"version":"1.19.4",
44
"title":"URI.js - Mutating URLs",
55
"author": {
66
"name":"Rodney Rehm",

‎src/IPv6.js‎

Lines changed: 1 addition & 1 deletion
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.3
5+
* Version: 1.19.4
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/

‎src/SecondLevelDomains.js‎

Lines changed: 1 addition & 1 deletion
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.3
5+
* Version: 1.19.4
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/

‎src/URI.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* URI.js - Mutating URLs
33
*
4-
* Version: 1.19.3
4+
* Version: 1.19.4
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.3';
84+
URI.version='1.19.4';
8585

8686
varp=URI.prototype;
8787
varhasOwn=Object.prototype.hasOwnProperty;

‎src/URI.min.js‎

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎src/URITemplate.js‎

Lines changed: 1 addition & 1 deletion
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.3
5+
* Version: 1.19.4
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/

‎src/jquery.URI.js‎

Lines changed: 1 addition & 1 deletion
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.3
5+
* Version: 1.19.4
66
*
77
* Author: Rodney Rehm
88
* Web: http://medialize.github.io/URI.js/jquery-uri-plugin.html

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp