diff --git a/History.md b/History.md index 1fde3c1..2ae038e 100644 --- a/History.md +++ b/History.md @@ -8,9 +8,14 @@ * 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) +## v1.3.2 +* Updated `zodern:types` to v1.0.13 [@storytellercz](https://github.com/sponsors/StorytellerCZ) +* Updated Meteor 3 supported version to `3.0-rc.10` for migration support, but will release full 3.0 supported version soon. [@storytellercz](https://github.com/sponsors/StorytellerCZ) +* Fix loop in before.find when retuning false [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/313) by [rikvdlooi](https://github.com/rikvdlooi) + ## 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) +* Updated `zodern:types` to v1.0.10 [@storytellercz](https://github.com/sponsors/StorytellerCZ) +* Meteor `3.0-beta.0` is now a supported version, but not functionality wise (need to upgrade `count` functions in code) [@storytellercz](https://github.com/sponsors/StorytellerCZ) ## v1.3.0 * Add direct async methods [PR](https://github.com/Meteor-Community-Packages/meteor-collection-hooks/pull/300) [@alisnic](https://github.com/alisnic) diff --git a/package-lock.json b/package-lock.json index 746acbe..008840f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -347,6 +347,12 @@ "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array.prototype.tosorted": { @@ -1235,6 +1241,7 @@ "doctrine": "^2.1.0", "es-iterator-helpers": "^1.0.19", "estraverse": "^5.3.0", + "hasown": "^2.0.2", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", "object.entries": "^1.1.8", diff --git a/package.js b/package.js index 2215ea7..52b2487 100644 --- a/package.js +++ b/package.js @@ -8,7 +8,7 @@ Package.describe({ }) Package.onUse(function (api) { - api.versionsFrom(['2.8.0', '3.0-rc.4']) + api.versionsFrom(['2.8.1', '3.0-rc.10']) api.use([ 'mongo', @@ -29,7 +29,7 @@ Package.onUse(function (api) { }) Package.onTest(function (api) { - api.versionsFrom(['2.8.0', '3.0-rc.4']) + api.versionsFrom(['2.8.0', '3.0-rc.10']) api.use([ 'matb33:collection-hooks', diff --git a/package.json b/package.json index 7991476..962869d 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "eslint-plugin-import": "^2.29.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react": "^7.34.1", + "eslint-plugin-react": "^7.34.4", "eslint-plugin-standard": "^4.1.0", "spacejam": "^1.6.1" },