diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..983c7415 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +## Parse Server Changelog + +### 2.0.8 (2/11/2016) + +Add: support for Android and iOS push notifications +Eperimental: Cloud Code validation hooks (can mark as non-experimental after we have docs) +Experimental: support for schemas API (GET and POST only) +Experimental: support for Parse Config (GET and POST only) +Fix: Querying objects with equality constraint on array column +Fix: User logout will remove session token +Fix: Various files related bugs +Fix: Force minimum node version 4.3 due to security issues in earlier version +Performance Improvement: Improved caching + + diff --git a/README.md b/README.md index a9b67dd6..dfa8b0f0 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ We also have an [example project](https://github.com/ParsePlatform/parse-server- * fileKey - For migrated apps, this is necessary to provide access to files already hosted on Parse. * facebookAppIds - An array of valid Facebook application IDs. * serverURL - URL which will be used by Cloud Code functions to make requests against. +* push - Configuration options for APNS and GCM push. See the [wiki entry](https://github.com/ParsePlatform/parse-server/wiki/Push). #### Client key options: @@ -122,6 +123,7 @@ Now you can just run `$ parse-server` from your command line. * Pointers * Users, including Facebook login and anonymous users * Files +* Push Notifications - See the [wiki entry](https://github.com/ParsePlatform/parse-server/wiki/Push). * Installations * Sessions * Geopoints @@ -133,5 +135,4 @@ You can also set up an app on Parse, providing the connection string for your mo ### Not supported -* Push - We did not rebuild a new push delivery system for parse-server, but we are open to working on one together with the community. * `Parse.User.current()` or `Parse.Cloud.useMasterKey()` in cloud code. Instead of `Parse.User.current()` use `request.user` and instead of `Parse.Cloud.useMasterKey()` pass `useMasterKey: true` to each query. To make queries and writes as a specific user within Cloud Code, you need the user's session token, which is available in `request.user.getSessionToken()`. diff --git a/package.json b/package.json index 987f2c08..521381f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "parse-server", - "version": "2.0.7", + "version": "2.0.8", "description": "An express module providing a Parse-compatible API server", "main": "lib/index.js", "repository": {