Releases: Meteor-Community-Packages/meteor-simple-schema
v2.0.0
What's Changed
- Bump the npm_and_yarn group across 1 directory with 2 updates by @dependabot in #743
- Meteor 3.0 compatibility by @jankapunkt in #741
New Contributors
- @dependabot made their first contribution in #743
- @jankapunkt made their first contribution in #741
Full Changelog: v1.13.1...v2.0.0
v1.13.1
Attention! 🧐
This package is back under maintenance by the Meteor Community Packages group 🚀
Consider this a hard-fork to ensure a future-proof maintenance with focus on
Meteor-Compatibility (Meteor 2.x; 3.x and beyond)! ☄️
Changelog
- back under community maintenance!
- 100% compatibility with Meteor, used the last Meteor-compatible version from NPM
- moved all code from npm [email protected] to this repo
- NPM link: https://www.npmjs.com/package/simpl-schema/v/1.13.1
- GitHub commit: 7f3ea1c2a185199e676726b6e4e82ab5fa722e97
- updated all tests to use
meteortesting:mocha
+ chai - added coverage reporting to the tests!
- prepare for Meteor 3.0 compatibility migration (will be done in the next version)
- updated CI
- publish as Meteor package
Why release 1.13.1 ?
This is the 1:1 copy of the most recent available release that had full Meteor-Compatibility.
While we wanted to move to long-termin include the newer NPM releases it was not possible without huge effort and ongoing maintenance would have been questionable!
Therefore we set a new hard-fork at this level and continue development with 100% Meteor compatibility. By doing so we will be able to mirgate this package towards Meteor 3.0 and thus also migrate dependant packages, like Collection2 or AutoForm.
2.0.0-rc.1
v1.5.3
Removed the old SimpleSchema.prototype.validator
NOTE: There was an accidental breaking change related to this in v1.4.0. Probably only aldeed:collection2 is affected. If you use aldeed:simple-schema v1.4.0 or higher along with aldeed:collection2, be sure to use aldeed:collection2 v2.7.1 or higher.
v1.5.2
v1.3.3
v1.3.2
v1.3.1
v1.3.0
v1.2.0
- The
clean
function now automatically converts a number or string to a Date object. (Thanks @rlora) - Fix to
makeGeneric
handling when a property name starts with a number but also includes non-numeric characters. (Thanks @Nieziemski) - New
exclusiveMax
andexclusiveMin
options allow you to specify that themin
ormax
value itself should not be considered valid. (Thanks @sleiber)