Skip to content

Commit aab10be

Browse files
authored
Changelog 2.3.0 (#3205)
* 2.3.0 changelog * bumps package * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md
1 parent 752f0e9 commit aab10be

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
## Parse Server Changelog
22

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+
331
### 2.2.25
432

533
Postgres support requires v9.5

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.2.25",
3+
"version": "2.3.0",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)