-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
__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
1 parent
9c27190
commit 6656d20
Showing
3 changed files
with
56 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); | ||
}); |