Skip to content

Releases: Meteor-Community-Packages/meteor-collection2

4.0.1

17 Apr 07:02
a0a3944

Choose a tag to compare

What's Changed

Full Changelog: 4.0.0...4.0.1

4.0.0

19 Mar 16:10
587621f

Choose a tag to compare

What's Changed

Breaking

  • You no longer need to install simpl-schema as we from now on use the Meteor package aldeed: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

Full Changelog: 3.5.0...4.0.0

3.5.0

07 Sep 16:43

Choose a tag to compare

Add the ability to override in-built schema clean options.

v3.4.1

24 Jun 14:20

Choose a tag to compare

  • Make compatible with Meteor 2.3

3.4.0

22 May 22:53

Choose a tag to compare

  • 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 to false by default to preserve the original behavior. (fixes #422)
  • Moved from CircleCI testing to GitHub actions

3.3.0

21 Apr 15:49

Choose a tag to compare

3.2.2

21 Apr 12:13

Choose a tag to compare

  • Allow tmeasday:check-npm-versions to use version 1.0.1 as well

3.2.0

05 Sep 10:19
deb963d

Choose a tag to compare

3.1.0

22 Jun 07:26

Choose a tag to compare

  • Added pick and omit feature
  • Updated dependencies
  • Updated tests
  • Added GitHub templates for issues and PRs.

2.8.0

30 Dec 04:46

Choose a tag to compare

No changes, but aldeed:collection2 is now a shell package that installs three component packages: aldeed:collection2-core, aldeed:schema-index, and aldeed:schema-deny