Skip to content

4.0.0

Compare
Choose a tag to compare
@jankapunkt jankapunkt released this 19 Mar 16:10
· 68 commits to master since this release
587621f

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