Skip to content

Commit 380ee8c

Browse files
committed
Remove old jquery versions from gridstack dist
to close #833
1 parent 65f7260 commit 380ee8c

File tree

5 files changed

+22
-8
lines changed

5 files changed

+22
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
### 3.6.3: Maintenance Release
3+
4+
- Remove old jquery versons from gridstack dist dir to stop vuln triggering. Issue #833
5+
26
### 3.6.2: Maintenance Release
37

48
- Fix colour picker floating in front of dropdown list. Issue #821

dist/dashboard.appcache

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# Time: Wed Dec 06 2023 11:54:35 GMT+0000 (Greenwich Mean Time)
2+
# Time: Tue Mar 12 2024 15:31:00 GMT+0000 (Greenwich Mean Time)
33

44
CACHE:
55
i18n.js
@@ -26,4 +26,4 @@ loading.html
2626
NETWORK:
2727
*
2828

29-
# hash: a65e8fb4038eaddf287988387fedf7a23d04f9258992cd758af6acf35799ae55
29+
# hash: 87be8dffba3951bcf42145449686dd474231b08260117d82c7fe94178f6cddc9

dist/js/app.min.js

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

fixfa.js

+10
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,13 @@ fs.readFile('src/gridstack-extra.scss', 'utf8', function (err, file) {
5858
});
5959
}
6060
});
61+
62+
// Remove jquery old versions from gridstack dist
63+
try { fs.unlinkSync('node_modules/gridstack/dist/jquery-ui.js'); }
64+
catch(e) {};
65+
try { fs.unlinkSync('node_modules/gridstack/dist/jquery-ui.min.js');}
66+
catch(e) {};
67+
try { fs.unlinkSync('node_modules/gridstack/dist/jquery.js'); }
68+
catch(e) {};
69+
try { fs.unlinkSync('node_modules/gridstack/dist/jquery.min.js'); }
70+
catch(e) {};

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-dashboard",
3-
"version": "3.6.2",
3+
"version": "3.6.3",
44
"description": "A set of dashboard nodes for Node-RED",
55
"keywords": [
66
"node-red"
@@ -88,7 +88,7 @@
8888
"compression": "^1.7.4",
8989
"gridstack": "^0.6.4",
9090
"serve-static": "^1.15.0",
91-
"socket.io": "^4.7.2"
91+
"socket.io": "^4.7.4"
9292
},
9393
"devDependencies": {
9494
"angular": "~1.8.3",
@@ -130,12 +130,12 @@
130130
"less": "^3.13.1",
131131
"map-stream": "^0.0.7",
132132
"material-design-icons-iconfont": "^6.7.0",
133-
"moment": "~2.29.4",
134-
"sass": "^1.69.5",
133+
"moment": "~2.30.1",
134+
"sass": "^1.71.1",
135135
"sprintf-js": "^1.1.3",
136136
"streamqueue": "~1.1.2",
137137
"svg-morpheus": "^0.3.0",
138-
"terser": "^5.25.0",
138+
"terser": "^5.29.1",
139139
"tinycolor2": "^1.6.0",
140140
"weather-icons-lite": "^1.6.1"
141141
},

0 commit comments

Comments
 (0)