Skip to content

Commit

Permalink
Some dep updates (#1732)
Browse files Browse the repository at this point in the history
* Upgrade *node* dependents. A little early but close to the Oct 27, 2020 LTS expiration of the prior. Needed for testing as well.
* Don't attempt to take any more new Yahoo accounts *(OpenID)*. There is bitrot in the related packages as *node* gets further away from 6.0. Hopefully those accounts aren't orphaned already because there's a lot of errors showing up in the logs that are related.
* Attempt to isolate what's not being found occasionally... most likely it's graveyard items but want to be sure.
* Holding off on *terser* yet again from breaking changes that affect core and dependents.
* Delete op retested

Auto-merge
  • Loading branch information
Martii authored Aug 16, 2020
1 parent 557e66d commit b5d5688
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion controllers/scriptStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,8 @@ exports.storeScript = function (aUser, aMeta, aBuf, aUpdate, aCallback) {
return;
} else if (!aScript && aUpdate) {
aCallback(new statusError({
message: 'Updating but no script found.',
message: 'Updating but no script found. Reference: '
+ installName + ' ; '+ caseSensitive(installName),
code: 500 // Status code unknown... could be user error too
}), null);
return;
Expand Down
2 changes: 1 addition & 1 deletion controllers/strategies.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"yahoo": {
"name": "Yahoo!",
"oauth": false,
"readonly": false
"readonly": true
}
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"ace-builds": "1.4.12",
"ansi-colors": "4.1.1",
"async": "3.2.0",
"aws-sdk": "2.730.0",
"aws-sdk": "2.734.0",
"base62": "2.0.1",
"body-parser": "1.19.0",
"bootstrap": "3.4.1",
Expand All @@ -28,7 +28,7 @@
"image-size": "0.8.3",
"ip-range-check": "0.2.0",
"jquery": "3.5.1",
"js-beautify": "1.11.0",
"js-beautify": "1.12.0",
"jsdom": "16.4.0",
"less-middleware": "3.1.0",
"marked": "1.1.1",
Expand All @@ -38,7 +38,7 @@
"moment": "2.27.0",
"moment-duration-format": "2.3.2",
"mongodb": "3.6.0",
"mongoose": "5.9.28",
"mongoose": "5.10.0",
"morgan": "1.10.0",
"mu2": "0.5.21",
"octicons": "4.4.0",
Expand All @@ -59,7 +59,7 @@
"request": "2.88.2",
"rfc2047": "2.0.1",
"s3rver": "3.6.1",
"sanitize-html": "1.27.2",
"sanitize-html": "1.27.3",
"select2": "3.5.2-browserify",
"select2-bootstrap-css": "1.4.6",
"serve-favicon": "2.5.0",
Expand All @@ -85,8 +85,8 @@
"clean": "node dev/clean.js"
},
"engines": {
"node": ">=12.13.1 <13.0.0",
"npm": ">=6.12.1"
"node": ">=14.8.0 <15.0.0",
"npm": ">=6.14.7"
},
"private": true
}

0 comments on commit b5d5688

Please sign in to comment.