Skip to content

Commit

Permalink
Version 0.9.0 -- bumped deps for vulns
Browse files Browse the repository at this point in the history
- Bumped socket.io to v4.4
- Removed mkdirp
- Bumped uglifyjs to v3.14.3
- Bumped shell-quote to v1.7.3
- Bumped pixl-server-storage to v3.0.11
  • Loading branch information
jhuckaby committed Dec 16, 2021
1 parent 3748186 commit a093f6b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/build-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ var util = require('util');
var os = require('os');
var cp = require('child_process');

var mkdirp = require('mkdirp');
var async = require('async');
var glob = require('glob');
var UglifyJS = require("uglify-js");
var Tools = require('pixl-tools');
var mkdirp = Tools.mkdirp;

var fileStatSync = function(file) {
// no-throw version of fs.statSync
Expand Down
3 changes: 3 additions & 0 deletions bin/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ var util = require('util');
var async = require('async');
var mkdirp = require('mkdirp');

var Tools = require('pixl-tools');
var mkdirp = Tools.mkdirp;

var BuildTools = require('./build-tools.js');
var setup = require('../sample_conf/setup.json');

Expand Down
3 changes: 2 additions & 1 deletion lib/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

var assert = require("assert");
var fs = require("fs");
var mkdirp = require('mkdirp');
var async = require('async');
var glob = require('glob');
var jstz = require('jstimezonedetect');
Expand All @@ -14,6 +13,8 @@ var Component = require("pixl-server/component");
var Tools = require("pixl-tools");
var Request = require("pixl-request");

var mkdirp = Tools.mkdirp;

module.exports = Class.create({

__name: 'Cronicle',
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Cronicle",
"version": "0.8.62",
"version": "0.9.0",
"description": "A simple, distributed task scheduler and runner with a web based UI.",
"author": "Joseph Huckaby <[email protected]>",
"homepage": "https://github.com/jhuckaby/Cronicle",
Expand All @@ -23,11 +23,10 @@
],
"dependencies": {
"async": "2.6.0",
"socket.io": "1.7.3",
"socket.io-client": "1.7.3",
"mkdirp": "0.5.1",
"socket.io": "4.4.0",
"socket.io-client": "4.4.0",
"glob": "5.0.15",
"uglify-js": "2.8.22",
"uglify-js": "3.14.3",
"zxcvbn": "3.5.0",
"jquery": "3.5.0",
"font-awesome": "4.7.0",
Expand All @@ -37,7 +36,7 @@
"moment-timezone": "0.5.32",
"jstimezonedetect": "1.0.6",
"netmask": "2.0.1",
"shell-quote": "1.6.1",
"shell-quote": "1.7.3",
"bcrypt-node": "0.1.0",
"uncatch": "^1.0.0",
"pixl-args": "^1.0.3",
Expand All @@ -52,7 +51,7 @@
"pixl-mail": "^1.0.11",
"pixl-perf": "^1.0.5",
"pixl-server": "^1.0.30",
"pixl-server-storage": "^2.0.10",
"pixl-server-storage": "^3.0.11",
"pixl-server-web": "^1.1.7",
"pixl-server-api": "^1.0.2",
"pixl-server-user": "^1.0.9"
Expand Down

0 comments on commit a093f6b

Please sign in to comment.