Skip to content

Commit

Permalink
Update to the latest Meteor rc.4 and start preparing changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Jun 13, 2024
1 parent f890026 commit 6cf9690
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
meteorRelease:
- '--release 3.0-rc.2'
- '--release 3.0-rc.4'
# Latest version
steps:
- name: Checkout code
Expand Down
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v2.0.0

* BREAKING: find hooks have been removed (due to Meteor 3 compatibility)
* Async hooks are now supported
* Meteor 3.0 is now the minimum required Meteor version

## v1.4.0
* Test suite minimum Meteor version is 2.12 to support new counts and to be fully compatible with Meteor 3
* Meteor `3.0-beta.0` is now a supported version, but not functionality wise (need to upgrade `count` functions in tests)
Expand Down
7 changes: 4 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
Package.describe({
name: 'matb33:collection-hooks',
summary: 'Extends Mongo.Collection with before/after hooks for insert/update/upsert/remove/find/findOne',
version: '2.0.0-beta.1',
version: '2.0.0-beta.2',
git: 'https://github.com/Meteor-Community-Packages/meteor-collection-hooks'
})

Package.onUse(function (api) {
api.versionsFrom(['3.0-rc.2'])
api.versionsFrom(['3.0-rc.4'])

api.use([
'mongo',
Expand All @@ -31,13 +31,14 @@ Package.onUse(function (api) {
Package.onTest(function (api) {
// var isTravisCI = process && process.env && process.env.TRAVIS

api.versionsFrom(['3.0-rc.2'])
api.versionsFrom(['3.0-rc.4'])

api.use([
'matb33:collection-hooks',
'accounts-base',
'accounts-password',
'mongo',
'ddp',
'tinytest',
'test-helpers',
'ecmascript'
Expand Down

0 comments on commit 6cf9690

Please sign in to comment.