Skip to content

Commit

Permalink
🚒 v2.2.2
Browse files Browse the repository at this point in the history
- β˜„οΈ Meteor: `v2.4.1`
- πŸ“¦ NPM: `v2.2.2`

__Changes__:

- β˜„οΈ Meteor: Reduce bundle size via updated/replaced dev-dependencies
- πŸ“¦ NPM: Reduce package bundle size via updated `.npmignore`
- πŸ‘·β€β™‚οΈ This release is focused on efficiency and performance
- πŸ‘¨β€πŸ’» From now `onError` hook is used in every possible scenario
where exception can be thrown
- 🀝 Compatibility with `mongod@4.0.13` (*server database executable*)
- 🀝 Compatibility with `meteor@1.8.2`
- πŸ‘¨β€πŸ”¬ Minor test-suite update
- πŸ“¦ [dev-dependency] `mocha@6.2.2`; (*was `mocha@6.2.1`*)
- πŸ“‹ Minor documentation fixes
  • Loading branch information
dr-dimitru committed Dec 3, 2019
1 parent c363ebe commit 0962a5b
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 69 deletions.
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ cover.png
node_modules
npm-debug.log*
package.js
test/meteor.js
test/
test/*
35 changes: 14 additions & 21 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,35 +1,31 @@
accounts-base@1.4.4
allow-deny@1.1.0
babel-compiler@7.3.4
babel-runtime@1.3.0
base64@1.0.11
babel-compiler@7.4.0
babel-runtime@1.4.0
base64@1.0.12
binary-heap@1.0.11
boilerplate-generator@1.6.0
caching-compiler@1.2.1
callback-hook@1.1.0
callback-hook@1.2.0
check@1.3.1
coffeescript@1.0.17
ddp@1.4.0
ddp-client@2.3.3
ddp-common@1.4.0
ddp-rate-limiter@1.0.7
ddp-server@2.3.0
diff-sequence@1.1.1
dynamic-import@0.5.1
ecmascript@0.12.7
ecmascript@0.13.0
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
ecmascript-runtime-client@0.9.0
ecmascript-runtime-server@0.8.0
ejson@1.1.0
fetch@0.1.1
geojson-utils@1.0.10
http@1.4.2
id-map@1.1.0
inter-process-messaging@0.1.0
jquery@1.11.11
lmieulet:meteor-coverage@1.1.4
local-test:ostrio:cron-jobs@2.4.0
localstorage@1.2.0
local-test:ostrio:cron-jobs@2.4.1
logging@1.1.20
meteor@1.9.3
meteorhacks:picker@1.0.3
Expand All @@ -38,27 +34,24 @@ meteortesting:mocha@1.0.1
meteortesting:mocha-core@1.0.1
minimongo@1.4.5
modern-browsers@0.1.4
modules@0.13.0
modules-runtime@0.10.3
mongo@1.6.2
modules@0.14.0
modules-runtime@0.11.0
mongo@1.7.0
mongo-decimal@0.1.1
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-mongo@3.1.2
npm-mongo@3.2.0
ordered-dict@1.1.0
ostrio:cron-jobs@2.4.0
ostrio:cron-jobs@2.4.1
practicalmeteor:chai@2.1.0_1
promise@0.11.2
random@1.1.0
rate-limit@1.0.9
reactive-var@1.0.11
reload@1.3.0
retry@1.1.0
routepolicy@1.1.0
service-configuration@1.0.11
socket-stream-client@0.2.2
tracker@1.2.0
underscore@1.0.10
url@1.2.0
webapp@1.7.4
webapp@1.7.5
webapp-hashing@1.0.9
74 changes: 32 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ostrio:cron-jobs',
version: '2.4.0',
version: '2.4.1',
summary: 'Scheduler and manager for jobs and tasks in Node.js (Meteor.js) on multi-server and clusters setup',
git: 'https://github.com/VeliovGroup/josk',
documentation: 'README.md'
Expand All @@ -13,7 +13,6 @@ Package.onUse(function (api) {
});

Package.onTest(function (api) {
api.use(['ecmascript', 'accounts-base', 'ostrio:cron-jobs', 'practicalmeteor:chai', 'meteortesting:mocha', 'jquery'], 'server');
api.use('jquery', 'client');
api.use(['ecmascript', 'mongo', 'practicalmeteor:chai', 'meteortesting:mocha'], 'server');
api.addFiles('test/meteor.js', 'server');
});
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "josk",
"version": "2.2.0",
"version": "2.2.2",
"description": "Scheduler and manager for jobs and tasks in Node.js on multi-server and clusters setup",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -47,7 +47,7 @@
"bson": "^4.0.2",
"bson-ext": "^2.0.3",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"mocha": "^6.2.2",
"mongodb": "^3.3.2",
"pathval": "^1.1.0"
},
Expand Down

0 comments on commit 0962a5b

Please sign in to comment.