Skip to content

Releases: Meteor-Community-Packages/meteor-collection2

4.0.2-beta.1

22 Apr 15:01
a0a3944
Compare
Choose a tag to compare
4.0.2-beta.1 Pre-release
Pre-release

Full Changelog: 4.0.1...4.0.2-beta.1

4.0.1

17 Apr 07:02
a0a3944
Compare
Choose a tag to compare

What's Changed

Full Changelog: 4.0.0...4.0.1

4.0.0

19 Mar 16:10
587621f
Compare
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
Compare
Choose a tag to compare

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

v3.4.1

24 Jun 14:20
Compare
Choose a tag to compare
  • Make compatible with Meteor 2.3

3.4.0

22 May 22:53
Compare
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
Compare
Choose a tag to compare
  • Force raix:eventemitter@1.0.0 and tmeasday:check-npm-versions@1.0.1

3.2.2

21 Apr 12:13
Compare
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
Compare
Choose a tag to compare

3.1.0

22 Jun 07:26
Compare
Choose a tag to compare
  • Added pick and omit feature
  • Updated dependencies
  • Updated tests
  • Added GitHub templates for issues and PRs.