Skip to content

Commit

Permalink
πŸ“¦ NPM v2.2.4 (Meteor: v2.4.3)
Browse files Browse the repository at this point in the history
- β˜„οΈ Meteor: `v2.4.3`
- πŸ“¦ NPM: `v2.2.4`

__Changes__:

- πŸ“¦ Update potentially unsafe NPM dev-dependencies;
- πŸ‘¨β€πŸ’» Minor codebase optimizations;
- 🀝 Compatibility with `mongodb@3.5.5` (*mongo-native*);
- 🀝 Compatibility with `meteor@1.10.*`;
- πŸ“¦ [dev-dependency] `bson@4.0.4` (*was `mocha@4.0.3`*);
- πŸ“¦ [dev-dependency] `mocha@7.1.1` (*was `mocha@7.1.0`*);
- πŸ“¦ [dev-dependency] `mocha@3.5.5` (*was `mocha@3.5.4`*);
- πŸ“‹ Minor documentation updates.
  • Loading branch information
dr-dimitru committed Apr 3, 2020
1 parent 57fa303 commit daa16eb
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 69 deletions.
24 changes: 12 additions & 12 deletions .versions
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ babel-compiler@7.5.2
babel-runtime@1.5.0
base64@1.0.12
binary-heap@1.0.11
boilerplate-generator@1.6.0
boilerplate-generator@1.7.0
caching-compiler@1.2.1
callback-hook@1.3.0
check@1.3.1
coffeescript@1.0.17
ddp@1.4.0
ddp-client@2.3.3
ddp-common@1.4.0
ddp-server@2.3.0
ddp-server@2.3.1
diff-sequence@1.1.1
dynamic-import@0.5.1
ecmascript@0.14.2
Expand All @@ -23,35 +23,35 @@ fetch@0.1.1
geojson-utils@1.0.10
http@1.4.2
id-map@1.1.0
inter-process-messaging@0.1.0
inter-process-messaging@0.1.1
lmieulet:meteor-coverage@1.1.4
local-test:ostrio:cron-jobs@2.4.2
local-test:ostrio:cron-jobs@2.4.3
logging@1.1.20
meteor@1.9.3
meteorhacks:picker@1.0.3
meteortesting:browser-tests@1.0.0
meteortesting:mocha@1.0.1
meteortesting:mocha-core@1.0.1
minimongo@1.4.5
modern-browsers@0.1.4
minimongo@1.5.0
modern-browsers@0.1.5
modules@0.15.0
modules-runtime@0.12.0
mongo@1.8.0
mongo@1.9.0
mongo-decimal@0.1.1
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-mongo@3.3.0
npm-mongo@3.7.0
ordered-dict@1.1.0
ostrio:cron-jobs@2.4.2
ostrio:cron-jobs@2.4.3
practicalmeteor:chai@2.1.0_1
promise@0.11.2
random@1.1.0
random@1.2.0
reload@1.3.0
retry@1.1.0
routepolicy@1.1.0
socket-stream-client@0.2.2
socket-stream-client@0.2.3
tracker@1.2.0
underscore@1.0.10
url@1.2.0
webapp@1.8.0
webapp@1.9.0
webapp-hashing@1.0.9
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
<img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" width="160">
</a>

<a href="https://ostr.io/info/built-by-developers-for-developers">
<img src="https://ostr.io/apple-touch-icon-60x60.png" height="38">
</a>

Simple package with similar API to native `setTimeout` and `setInterval` methods, but synced between all running Node.js instances via MongoDB Collection.

Multi-instance task manager for Node.js. This package has the support of clusters, multi-server and multi-threaded Node.js instances. This package goal is to make sure that the only single process of each *task* (*job*/*cron*) is running across *multi-server* (*multi-thread*/*multi-instance*) setup.
Expand Down
122 changes: 72 additions & 50 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Package.describe({
name: 'ostrio:cron-jobs',
version: '2.4.2',
version: '2.4.3',
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'
});

Package.onUse(function (api) {
Package.onUse((api) => {
api.versionsFrom('1.6');
api.use('ecmascript', 'server');
api.mainModule('index.js', 'server');
});

Package.onTest(function (api) {
Package.onTest((api) => {
api.use(['ecmascript', 'mongo', 'practicalmeteor:chai', 'meteortesting:mocha'], 'server');
api.addFiles('test/meteor.js', 'server');
});
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "josk",
"version": "2.2.3",
"version": "2.2.4",
"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 @@ -44,11 +44,11 @@
"node": ">=8.9.0"
},
"devDependencies": {
"bson": "^4.0.3",
"bson": "^4.0.4",
"bson-ext": "^2.0.3",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"mongodb": "^3.5.4",
"mocha": "^7.1.1",
"mongodb": "^3.5.5",
"pathval": "^1.1.0"
},
"dependencies": {}
Expand Down

0 comments on commit daa16eb

Please sign in to comment.