Releases: Meteor-Community-Packages/meteor-collection2
Releases · Meteor-Community-Packages/meteor-collection2
v4.0.3
- Make compatible with Meteor 3.0 release @StorytellerCZ
Full Changelog: 4.0.2...4.0.3
4.0.2
4.0.2-beta.1
Full Changelog: 4.0.1...4.0.2-beta.1
4.0.1
What's Changed
- fix: use actually dynamic import in dynamic.js by @jankapunkt in #450
Full Changelog: 4.0.0...4.0.1
4.0.0
What's Changed
- Update README.md by @Prinzhorn in #435
- feature(ci): add comment issue workflow by @jankapunkt in #442
- Add CodeQL workflow for GitHub code scanning by @lgtm-com in #441
- Support for asynchronous mongo methods by @klablink in #443
- Meteor 3.0 migration by @harryadel in #444
Breaking
- You no longer need to install
simpl-schema
as we from now on use the Meteor packagealdeed:simple-schema
again, which is now under our maintenance. While the npm package works, there will be no Meteor support in the future and we decided for a hard fork in order to remain compatible. - Collection2 is now optionally dynamic OR static imported. This allows to reduce client bundle size.
In order to import it dynamically you need to run:
import 'meteor/aldeed:collection2/dynamic'
Collection2.load() // returns a promise!!!!
In order to import it statically you need to run:
import 'meteor/aldeed:collection2/static'
Collection2.load() // no promise
New Contributors
- @Prinzhorn made their first contribution in #435
- @lgtm-com made their first contribution in #441
- @klablink made their first contribution in #443
Full Changelog: 3.5.0...4.0.0
3.5.0
v3.4.1
- Make compatible with Meteor 2.3
3.4.0
- Code modernization in few places
- You can now set
packages.collection2.disableCollectionNamesInValidation
in your Meteor settings to disable showing Collection name in errors from server, this is set tofalse
by default to preserve the original behavior. (fixes #422) - Moved from CircleCI testing to GitHub actions
3.3.0
- Force
raix:eventemitter@1.0.0
andtmeasday:check-npm-versions@1.0.1
3.2.2
- Allow
tmeasday:check-npm-versions
to use version1.0.1
as well