Skip to content

Commit 66cb0f0

Browse files
authored
Merge v4.10.0 into master (#7505)
* bump version * Update CHANGELOG.md
1 parent c6fb88c commit 66cb0f0

File tree

3 files changed

+32
-15
lines changed

3 files changed

+32
-15
lines changed

CHANGELOG.md

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

33
Jump directly to a version:
44

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

1819
<details>
1920
<summary>Previous Versions</summary>
@@ -90,7 +91,7 @@ Jump directly to a version:
9091
___
9192

9293
## Unreleased (Master Branch)
93-
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.2...master)
94+
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.10.0...master)
9495
### Breaking Changes
9596
- 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)
9697
- 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)
@@ -142,6 +143,22 @@ ___
142143
- Added runtime deprecation warnings (Manuel Trezza) [#7451](https://github.com/parse-community/parse-server/pull/7451)
143144
- 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)
144145

146+
## 4.10.0
147+
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.2...4.10.0)
148+
149+
*Versions >4.5.2 and <4.10.0 are skipped.*
150+
151+
> ⚠️ A security incident caused a number of incorrect version tags to be pushed to the Parse Server repository. These version tags linked to a personal fork of a contributor who had write access to the repository. The code to which these tags linked has not been reviewed or approved by Parse Platform. Even though no releases were published with these incorrect versions, it was possible to define a Parse Server dependency that pointed to these version tags, for example if you defined this dependency:
152+
> ```js
153+
> "parse-server": "[email protected]:parse-community/parse-server.git#4.9.3"
154+
> ```
155+
>
156+
> We have since deleted the incorrect version tags, but they may still show up if your personal fork on GitHub or locally. We do not know when these tags have been pushed to the Parse Server repository, but we first became aware of this issue on July 21, 2021. We are not aware of any malicious code or concerns related to privacy, security or legality (e.g. proprietary code). However, it has been reported that some functionality does not work as expected and the introduction of security vulnerabilities cannot be ruled out.
157+
>
158+
> You may be also affected if you used the Bitnami image for Parse Server. Bitnami picked up the incorrect version tag `4.9.3` and published a new Bitnami image for Parse Server.
159+
>
160+
>**If you are using any of the affected versions, we urgently recommend to upgrade to version `4.10.0`.**
161+
145162
## 4.5.2
146163
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.0...4.5.2)
147164

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

0 commit comments

Comments
 (0)