Skip to content

Commit

Permalink
Build: Add jQuery 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgol committed May 11, 2023
1 parent ba249ef commit 1be4538
Show file tree
Hide file tree
Showing 9 changed files with 11,527 additions and 1,057 deletions.
3 changes: 3 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,9 @@ grunt.initConfig( {
"jquery-3.6.4/jquery.js": "jquery-3.6.4/dist/jquery.js",
"jquery-3.6.4/LICENSE.txt": "jquery-3.6.4/LICENSE.txt",

"jquery-3.7.0/jquery.js": "jquery-3.7.0/dist/jquery.js",
"jquery-3.7.0/LICENSE.txt": "jquery-3.7.0/LICENSE.txt",

"jquery-migrate-1.4.1/jquery-migrate.js":
"jquery-migrate-1.4.1/dist/jquery-migrate.js",
"jquery-migrate-1.4.1/LICENSE.txt": "jquery-migrate-1.4.1/LICENSE.txt",
Expand Down
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"jquery-1.12.2": "jquery#1.12.2",
"jquery-1.12.3": "jquery#1.12.3",
"jquery-1.12.4": "jquery#1.12.4",
"jquery-3.x": "jquery#3.6.4",
"jquery-3.x": "jquery#3.7.0",
"jquery-2.0.0": "jquery#2.0.0",
"jquery-2.0.1": "jquery#2.0.1",
"jquery-2.0.2": "jquery#2.0.2",
Expand Down Expand Up @@ -67,6 +67,7 @@
"jquery-3.6.2": "jquery#3.6.2",
"jquery-3.6.3": "jquery#3.6.3",
"jquery-3.6.4": "jquery#3.6.4",
"jquery-3.7.0": "jquery#3.7.0",
"jquery-migrate-1.4.1": "https://registry.npmjs.org/jquery-migrate/-/jquery-migrate-1.4.1.tgz",
"jquery-migrate-3.4.1": "https://registry.npmjs.org/jquery-migrate/-/jquery-migrate-3.4.1.tgz"
}
Expand Down
1 change: 1 addition & 0 deletions build/tasks/testswarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module.exports = function( grunt ) {
var versions = {
"git": "git",
"3.x-git": "3.x-git",
"3.7": "3.7.0",
"3.6": "3.6.4",
"3.5": "3.5.1",
"3.4": "3.4.1",
Expand Down
20 changes: 20 additions & 0 deletions external/jquery-3.7.0/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright OpenJS Foundation and other contributors, https://openjsf.org/

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2 comments on commit 1be4538

@espen
Copy link

@espen espen commented on 1be4538 Jul 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be nice to see a new release due to this. Github Dependabot is alerting "jQuery Cross Site Scripting vulnerability" due to the 3.1.1 jquery version in the current npm release.

@mgol
Copy link
Member Author

@mgol mgol commented on 1be4538 Jul 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A release won't help as we still include all tested jQuery versions in the npm package. Removal of external from npm is scheduled for 1.14.0 & tracked in #2075; I wouldn't expect it soon, though.

Please sign in to comment.