|
1 | 1 | ## Parse Server Changelog
|
2 | 2 |
|
| 3 | +### 2.3.0 |
| 4 | +[Full Changelog](https://github.com/ParsePlatform/parse-server/compare/2.2.25...2.3.0) |
| 5 | + |
| 6 | +#### Breaking changes |
| 7 | +* Parse.Cloud.useMasterKey() is a no-op, please refer to (Cloud Code migration guide)[https://github.com/ParsePlatform/parse-server/wiki/Compatibility-with-Hosted-Parse#cloud-code] |
| 8 | +* Authentication helpers are now proper adapters, deprecates oauth option in favor of auth. |
| 9 | +* DEPRECATES: facebookAppIds, use `auth: { facebook: { appIds: ["AAAAAAAAA" ] } }` |
| 10 | +* `email` field is not returned anymore for `Parse.User` queries. (Provided only on the user itself if provided). |
| 11 | + |
| 12 | +#### New Features |
| 13 | +* Adds ability to restrict access through Class Level Permissions to only authenticated users [see docs](http://parseplatform.github.io/docs/ios/guide/#requires-authentication-permission-requires-parse-server---230) |
| 14 | +* Adds ability to strip sensitive data from _User responses, strips emails by default, thanks to [Arthur Cinader](https://github.com/acinader) |
| 15 | +* Adds password history support for password policies, thanks to [Bhaskar Reddy Yasa](https://github.com/bhaskaryasa) |
| 16 | + |
| 17 | +#### Improvements |
| 18 | +* Bump parse-server-s3-adapter to 1.0.6, thanks to [Arthur Cinader](https://github.com/acinader) |
| 19 | +* Using PARSE_SERVER_ENABLE_EXPERIMENTAL_DIRECT_ACCESS let you create user sessions when passing {installationId: "xxx-xxx"} on signup in cloud code, thanks to [Florent Vilmart](https://github.com/flovilmart) |
| 20 | +* Add CLI option to pass `host` parameter when creating parse-server from CLI, thanks to [Kulshekhar Kabra](https://github.com/kulshekhar) |
| 21 | + |
| 22 | +#### Bug fixes |
| 23 | +* Ensure batch routes are only using posix paths, thanks to [Steven Shipton](https://github.com/steven-supersolid) |
| 24 | +* Ensure falsy options from CLI are properly taken into account, thanks to [Steven Shipton](https://github.com/steven-supersolid) |
| 25 | +* Fixes issues affecting calls to `matchesKeyInQuery` with pointers. |
| 26 | +* Ensure that `select` keys can be changed in triggers (beforeFind...), thanks to [Arthur Cinader](https://github.com/acinader) |
| 27 | + |
| 28 | +#### Housekeeping |
| 29 | +* Enables and enforces linting with eslint, thanks to [Arthur Cinader](https://github.com/acinader) |
| 30 | + |
3 | 31 | ### 2.2.25
|
4 | 32 |
|
5 | 33 | Postgres support requires v9.5
|
|
0 commit comments