Skip to content

Commit

Permalink
๐Ÿ“ฆ Meteor: v2.5.0
Browse files Browse the repository at this point in the history
__Changes:__

- ๐Ÿ‘จโ€๐Ÿ”ง Fix minor bug when re-send loop was trying non-existent transport if only single transport defined
- ๐Ÿ‘จโ€๐Ÿ”ง Fix `.sendMail` callbacks on single-server setup when `{concatEmails: true}` option enabled
- ๐Ÿ‘จโ€๐Ÿ”ง Fix `.sendMail` callbacks when `{keepHistory: true}` option enabled
- ๐Ÿ“” Refined documentation
- ๐Ÿค Compatibility with `mongod` server, tested with `@4.4.29`, `@5.0.25`, `@6.0.14`, and `@7.0.6`
- ๐Ÿค Compatibility with `mongodb` driver for node.js, tested with `@4.17.2`, `@5.9.2`, and `@6.5.0`
- ๐Ÿค Compatibility with the latest Meteor.js and its packages
- ๐Ÿค Compatibility with upcoming `[email protected]` and its packages

__Dependencies__:

- ๐Ÿ“ฆ `[email protected]`, *was `v3.0.2`*
- ๐Ÿ“ฆ `[email protected]`, *was `v4.2.2`*

__Dev Dependencies__:

- ๐Ÿ“ฆ `[email protected]`, *was `v4.3.6`*
- ๐Ÿ“ฆ `[email protected]`, *was `v6.7.8`*
- ๐Ÿ“ฆ `[email protected]`, *was `v3.0.7`*
  • Loading branch information
dr-dimitru committed Apr 3, 2024
1 parent 9c27190 commit 6656d20
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 52 deletions.
4 changes: 4 additions & 0 deletions .meteorignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
.DS_Store
.eslintcache
.eslintrc
ascii
cover.jpg
cover.png
node_modules
CHANGELOG.md
CODE_OF_CONDUCT.md
Expand All @@ -13,6 +16,7 @@ HISTORY.md
LICENCE
LICENSE
README.md
rollup.config.js
docs
test
package.json
Expand Down
76 changes: 36 additions & 40 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,58 +1,54 @@
[email protected]
babel-compiler@7.9.0
babel-compiler@7.10.5
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
ddp-server@2.5.0
[email protected].1
[email protected].2
[email protected].2
[email protected].0
ddp-server@2.7.0
[email protected].2
[email protected].3
[email protected].8
[email protected].1
[email protected]
[email protected]
[email protected].2
[email protected].1
[email protected].10
[email protected].3
[email protected].4
[email protected].11
[email protected]
[email protected]
[email protected]
lmieulet:[email protected]
local-test:ostrio:[email protected]
[email protected]
[email protected]
meteorhacks:[email protected]
meteortesting:[email protected]
meteortesting:[email protected]
meteortesting:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
local-test:ostrio:[email protected]
[email protected]
[email protected]
meteortesting:[email protected]
meteortesting:[email protected]
meteortesting:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
npm-mongo@4.3.1
npm-mongo@4.17.2
[email protected]
ostrio:[email protected]
practicalmeteor:[email protected]_1
[email protected]
[email protected]
[email protected]
ostrio:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].1
[email protected].0
[email protected].8
[email protected].1
28 changes: 16 additions & 12 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
Package.describe({
name: 'ostrio:mailer',
version: '2.4.4',
version: '2.5.0',
summary: 'Bulletproof email queue on top of NodeMailer for a single and multi-server setups',
git: 'https://github.com/veliovgroup/mail-time',
documentation: 'README.md'
});

Package.onUse((api) => {
api.versionsFrom('1.6');
api.use(['mongo', 'ecmascript'], 'server');
Npm.depends({
josk: '3.1.1',
deepmerge: '4.3.1',
});

api.versionsFrom(['1.6', '3.0-beta.0']);
api.use(['[email protected] || 2.0.0-beta300.0', '[email protected] || 0.16.8-beta300.0'], 'server');
api.mainModule('index.js', 'server');
});

Package.onTest((api) => {
api.use(['ecmascript', 'mongo', 'practicalmeteor:chai', 'meteortesting:mocha'], 'server');
api.addFiles('test/meteor.js', 'server');
});
Npm.depends({
deepmerge: '4.3.1',
nodemailer: '6.9.12',
'nodemailer-direct-transport': '3.3.2',
chai: '4.4.1',
});

Npm.depends({
josk: '3.0.2',
deepmerge: '4.2.2',
// UNCOMMENT FOR METEOR_TESTS
// nodemailer: '6.7.8',
// 'nodemailer-direct-transport': '3.0.7'
api.use(['[email protected] || 0.16.8-beta300.0', '[email protected] || 2.0.0-beta300.0', 'meteortesting:[email protected] || 3.1.0-beta300.0'], 'server');
api.addFiles('test/meteor.js', 'server');
});

0 comments on commit 6656d20

Please sign in to comment.