Skip to content

Commit c6fb88c

Browse files
authored
adapt for master merge (#7501)
1 parent e28fdef commit c6fb88c

File tree

3 files changed

+21
-16
lines changed

3 files changed

+21
-16
lines changed

CHANGELOG.md

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22

33
Jump directly to a version:
44

5-
| 4.x |
6-
|----------------------------------|
7-
| [**4.5.1 (latest release)**](#451) |
8-
| [4.5.0](#450) |
9-
| [4.4.0](#440) |
10-
| [4.3.0](#430) |
11-
| [4.2.0](#420) |
12-
| [4.1.0](#410) |
13-
| [4.0.2](#402) |
14-
| [4.0.1](#401) |
15-
| [4.0.0](#400) |
5+
| 4.x |
6+
|------------------------------------|
7+
| [**4.5.2 (latest release)**](#452) |
8+
| [4.5.1](#451) |
9+
| [4.5.0](#450) |
10+
| [4.4.0](#440) |
11+
| [4.3.0](#430) |
12+
| [4.2.0](#420) |
13+
| [4.1.0](#410) |
14+
| [4.0.2](#402) |
15+
| [4.0.1](#401) |
16+
| [4.0.0](#400) |
1617

1718
<details>
1819
<summary>Previous Versions</summary>
@@ -89,7 +90,7 @@ Jump directly to a version:
8990
___
9091

9192
## Unreleased (Master Branch)
92-
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.1...master)
93+
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.2...master)
9394
### Breaking Changes
9495
- Improved schema caching through database real-time hooks. Reduces DB queries, decreases Parse Query execution time and fixes a potential schema memory leak. If multiple Parse Server instances connect to the same DB (for example behind a load balancer), set the [Parse Server Option](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) `databaseOptions.enableSchemaHooks: true` to enable this feature and keep the schema in sync across all instances. Failing to do so will cause a schema change to not propagate to other instances and re-syncing will only happen when these instances restart. The options `enableSingleSchemaCache` and `schemaCacheTTL` have been removed. To use this feature with MongoDB, a replica set cluster with [change stream](https://docs.mongodb.com/manual/changeStreams/#availability) support is required. (Diamond Lewis, SebC) [#7214](https://github.com/parse-community/parse-server/issues/7214)
9596
- Added file upload restriction. File upload is now only allowed for authenticated users by default for improved security. To allow file upload also for Anonymous Users or Public, set the `fileUpload` parameter in the [Parse Server Options](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) (dblythy, Manuel Trezza) [#7071](https://github.com/parse-community/parse-server/pull/7071)
@@ -141,11 +142,15 @@ ___
141142
- Added runtime deprecation warnings (Manuel Trezza) [#7451](https://github.com/parse-community/parse-server/pull/7451)
142143
- Add ability to pass context of an object via a header, X-Parse-Cloud-Context, for Cloud Code triggers. The header addition allows client SDK's to add context without injecting _context in the body of JSON objects (Corey Baker) [#7437](https://github.com/parse-community/parse-server/pull/7437)
143144

144-
## 4.5.1
145-
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.0...4.5.1)
145+
## 4.5.2
146+
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.0...4.5.2)
147+
146148
### Security Fixes
147149
- SECURITY FIX: Fixes incorrect session property `authProvider: password` of anonymous users. When signing up an anonymous user, the session field `createdWith` indicates incorrectly that the session has been created using username and password with `authProvider: password`, instead of an anonymous sign-up with `authProvider: anonymous`. This fixes the issue by setting the correct `authProvider: anonymous` for future sign-ups of anonymous users. This fix does not fix incorrect `authProvider: password` for existing sessions of anonymous users. Consider this if your app logic depends on the `authProvider` field. (Corey Baker) [GHSA-23r4-5mxp-c7g5](https://github.com/parse-community/parse-server/security/advisories/GHSA-23r4-5mxp-c7g5)
148150

151+
## 4.5.1
152+
*This version was published by mistake and was deprecated.*
153+
149154
## 4.5.0
150155
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.4.0...4.5.0)
151156
### Breaking Changes

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

0 commit comments

Comments
 (0)