Skip to content

Commit

Permalink
Merge pull request #305 from Meteor-Community-Packages/meteor-3.0-beta.0
Browse files Browse the repository at this point in the history
Update zodern:types & support Meteor 3.0-beta.0
  • Loading branch information
StorytellerCZ authored Dec 30, 2023
2 parents e173c9d + 2c11fa1 commit 2650c96
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
meteorRelease:
- '--release 2.3'
- '--release 2.8.1'
- '--release 2.13.3'
- '--release 2.14'
# Latest version
steps:
- name: Checkout code
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '20.x'

- name: Install Dependencies
run: |
Expand Down
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.3.1
* Updated zodern:types to v1.0.10
* Meteor `3.0-beta.0` is now a supported version, but not functionality wise (need to upgrade `count` functions in code)

## 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)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

8 changes: 4 additions & 4 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: '1.3.0',
version: '1.3.1',
git: 'https://github.com/Meteor-Community-Packages/meteor-collection-hooks'
})

Package.onUse(function (api) {
api.versionsFrom(['2.3', '2.8.1', '3.0-alpha.15'])
api.versionsFrom(['2.3', '2.8.1', '3.0-beta.0'])

api.use([
'mongo',
Expand All @@ -18,7 +18,7 @@ Package.onUse(function (api) {
'ecmascript'
])

api.use('zodern:types@1.0.9', 'server')
api.use('zodern:types@1.0.11', 'server')

api.use(['accounts-base'], ['client', 'server'], { weak: true })

Expand All @@ -31,7 +31,7 @@ Package.onUse(function (api) {
Package.onTest(function (api) {
// var isTravisCI = process && process.env && process.env.TRAVIS

api.versionsFrom(['1.12', '2.3'])
api.versionsFrom(['1.12', '2.3', '3.0-beta.0'])

api.use([
'matb33:collection-hooks',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meteor-collection-hooks",
"version": "1.2.1",
"version": "1.3.1",
"private": true,
"scripts": {
"start": "meteor test-packages ./",
Expand Down

0 comments on commit 2650c96

Please sign in to comment.