- No code changes - changing version number format for Meteorite / Atmosphere
- Fixed issue #2 - Rest method restrictions (Thanks, andreasgl)
-
Added two configuration options, which changes the default behavior:
-
standAlone
- run the Collection API server as a separate HTTP(S) process. Previously, this was always the case by default.standAlone
is now set tofalse
by default so it now runs within the same web server object as Meteor. This allows the API to be accessed when deployed to Meteor.com servers. If you wish to have the old behavior, setstandAlone
totrue
. -
apiPath
- access the Collection API using this prefix. Default is set tocollectionapi
, so you'd access the 'players' collection as '/collectionapi/players'. Required to be set whenstandAlone
is set totrue
.
-
-
Fixed concurrency issues with the API (fixes "Error: Can't set headers after they are sent.")
-
Refactored code for easier maintenance
- Initial release