Skip to content

Commit f5f608c

Browse files
authored
Merge release 4.10.1 (#7511)
* Update CHANGELOG.md * bump version * bumped [email protected]
1 parent b1de21a commit f5f608c

File tree

3 files changed

+26
-8
lines changed

3 files changed

+26
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Jump directly to a version:
44

55
| 4.x |
66
|--------------------------------------|
7-
| [**4.10.0 (latest release)**](#4100) |
7+
| [**4.10.1 (latest release)**](#4101) |
8+
| [4.10.0](#4100) |
89
| [4.5.2](#452) |
910
| [4.5.1](#451) |
1011
| [4.5.0](#450) |
@@ -91,7 +92,7 @@ Jump directly to a version:
9192
___
9293

9394
## Unreleased (Master Branch)
94-
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.10.0...master)
95+
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.10.1...master)
9596
### Breaking Changes
9697
- 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)
9798
- 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)
@@ -144,6 +145,13 @@ ___
144145
- 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)
145146
- Add CI check to add changelog entry (Manuel Trezza) [#7512](https://github.com/parse-community/parse-server/pull/7512)
146147

148+
### 4.10.1
149+
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.10.0...4.10.1)
150+
151+
- Updated to Parse JS SDK 3.3.0 and other security fixes (Manuel Trezza) [#7508](https://github.com/parse-community/parse-server/pull/7508)
152+
153+
> ⚠️ This includes a security fix of the Parse JS SDK where `logIn` will default to `POST` instead of `GET` method. This may require changes in your deployment before you upgrade to this release, see the Parse JS SDK 3.0.0 [release notes](https://github.com/parse-community/Parse-SDK-JS/releases/tag/3.0.0).
154+
147155
## 4.10.0
148156
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.5.2...4.10.0)
149157

package-lock.json

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "4.10.0",
3+
"version": "4.10.1",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {
@@ -45,7 +45,7 @@
4545
"lodash": "4.17.21",
4646
"lru-cache": "5.1.1",
4747
"mime": "2.5.2",
48-
"mongodb": "3.6.10",
48+
"mongodb": "3.6.11",
4949
"mustache": "4.2.0",
5050
"parse": "3.3.0",
5151
"pg-monitor": "1.4.1",

0 commit comments

Comments
 (0)