Skip to content

Commit e21dafd

Browse files
committed
Merge pull request parse-community#366 from ParsePlatform/fosco.208
Updates for 2.0.8
2 parents ba2e105 + ea30a98 commit e21dafd

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Parse Server Changelog
2+
3+
### 2.0.8 (2/11/2016)
4+
5+
Add: support for Android and iOS push notifications
6+
Eperimental: Cloud Code validation hooks (can mark as non-experimental after we have docs)
7+
Experimental: support for schemas API (GET and POST only)
8+
Experimental: support for Parse Config (GET and POST only)
9+
Fix: Querying objects with equality constraint on array column
10+
Fix: User logout will remove session token
11+
Fix: Various files related bugs
12+
Fix: Force minimum node version 4.3 due to security issues in earlier version
13+
Performance Improvement: Improved caching
14+
15+

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ We also have an [example project](https://github.com/ParsePlatform/parse-server-
2525
* fileKey - For migrated apps, this is necessary to provide access to files already hosted on Parse.
2626
* facebookAppIds - An array of valid Facebook application IDs.
2727
* serverURL - URL which will be used by Cloud Code functions to make requests against.
28+
* push - Configuration options for APNS and GCM push. See the [wiki entry](https://github.com/ParsePlatform/parse-server/wiki/Push).
2829

2930
#### Client key options:
3031

@@ -122,6 +123,7 @@ Now you can just run `$ parse-server` from your command line.
122123
* Pointers
123124
* Users, including Facebook login and anonymous users
124125
* Files
126+
* Push Notifications - See the [wiki entry](https://github.com/ParsePlatform/parse-server/wiki/Push).
125127
* Installations
126128
* Sessions
127129
* Geopoints
@@ -133,5 +135,4 @@ You can also set up an app on Parse, providing the connection string for your mo
133135

134136
### Not supported
135137

136-
* 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.
137138
* `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()`.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "2.0.7",
3+
"version": "2.0.8",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)