diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 2ab0fe6..51b3388 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -13,8 +13,8 @@ jobs: matrix: meteorRelease: - '--release 2.3' - - '--release 2.7.3' - - '--release 2.9.0' + - '--release 2.8.1' + - '--release 2.13.3' # Latest version steps: - name: Checkout code diff --git a/History.md b/History.md index 59de09f..32328f9 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,9 @@ +## v1.3.0 +* Add direct async methods [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/300) [@alisnic](https://github.com/alisnic) +* Add support for async collection methods [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/299) [@jdgjsag67251](https://github.com/jdgjsag67251) +* Added additional Meteor version targets for Meteor `2.8.1` and `3.0-alpha.15` [@storytellercz](https://github.com/sponsors/StorytellerCZ) +* Updated tests targets to Meteor `2.8.1` and `2.13.3` [@storytellercz](https://github.com/sponsors/StorytellerCZ) + ## v1.2.2 * Fixed [issue](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/issues/296) where after update did not use direct find [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/297) [@jdgjsag67251](https://github.com/jdgjsag67251) diff --git a/package.js b/package.js index ca21288..89c41e1 100644 --- a/package.js +++ b/package.js @@ -2,13 +2,13 @@ Package.describe({ name: 'matb33:collection-hooks', - summary: 'Extends Mongo.Collection with before/after hooks for insert/update/remove/find/findOne', - version: '1.2.2', + summary: 'Extends Mongo.Collection with before/after hooks for insert/update/upsert/remove/find/findOne', + version: '1.3', git: 'https://github.com/Meteor-Community-Packages/meteor-collection-hooks' }) -Package.onUse(function (api, where) { - api.versionsFrom(['2.3']) +Package.onUse(function (api) { + api.versionsFrom(['2.3', '2.8.1', '3.0-alpha.15']) api.use([ 'mongo',