- Remove underscore and modernize
- Add direct check for Connection object and remove the check from the check call.
- Allow overriding default
Meteor.applyoptions viaapplyOptionsoption. #46
- Relax
versionsFromconstraint so that it works with 1.3 beta 16. #42
- Added error handling when a mixin doesn't return any options, thanks to PR #24.
- Added mixins, which are functions that transform incoming Method options.
this.nameis now accessible if the Method is called via_execute.
- You can now access the Method name through
this.nameinsiderun().
- Throw errors if a callback is not passed, just like normal Methods do.
- Renamed from
mdg:methodtomdg:validated-methodandMethodtoValidatedMethod - Removed
schemaoption, the way to use SimpleSchema now is by passingSimpleSchema#validator()into thevalidateoption - Added a special meaning to
validate: nullto allow people to intentionally skip validation if they need to, for example when a method has no arguments
Initial version