Skip to content

Releases: parse-community/parse-server

6.0.0-alpha.26

20 Jan 15:41
Compare
Choose a tag to compare
6.0.0-alpha.26 Pre-release
Pre-release

6.0.0-alpha.26 (2023-01-20)

Bug Fixes

  • ES6 modules do not await the import of Cloud Code files (#8368) (a7bd180)

6.0.0-alpha.25

16 Jan 11:33
Compare
Choose a tag to compare
6.0.0-alpha.25 Pre-release
Pre-release

6.0.0-alpha.25 (2023-01-16)

Features

  • Add ParseQuery.watch to trigger LiveQuery only on update of specific fields (#8028) (fc92faa)

6.0.0-alpha.24

09 Jan 18:27
Compare
Choose a tag to compare
6.0.0-alpha.24 Pre-release
Pre-release

6.0.0-alpha.24 (2023-01-09)

Features

  • Reduce Docker image size by improving stages (#8359) (40810b4)

BREAKING CHANGES

  • The Docker image does not contain the git dependency anymore; if you have been using git as a transitive dependency it now needs to be explicitly installed in your Docker file, for example with RUN apk --no-cache add git (#8359) (40810b4)

6.0.0-alpha.23

08 Jan 21:04
Compare
Choose a tag to compare
6.0.0-alpha.23 Pre-release
Pre-release

6.0.0-alpha.23 (2023-01-08)

Features

  • Access the internal scope of Parse Server using the new maintenanceKey; the internal scope contains unofficial and undocumented fields (prefixed with underscore _) which are used internally by Parse Server; you may want to manipulate these fields for out-of-band changes such as data migration or correction tasks; changes within the internal scope of Parse Server may happen at any time without notice or changelog entry, it is therefore recommended to look at the source code of Parse Server to understand the effects of manipulating internal fields before using the key; it is discouraged to use the maintenanceKey for routine operations in a production environment; see access scopes (#8212) (f3bcc93)

BREAKING CHANGES

  • Fields in the internal scope of Parse Server (prefixed with underscore _) are only returned using the new maintenanceKey; previously the masterKey allowed reading of internal fields; see access scopes for a comparison of the keys' access permissions (#8212) (f3bcc93)

6.0.0-alpha.22

08 Jan 17:24
Compare
Choose a tag to compare
6.0.0-alpha.22 Pre-release
Pre-release

6.0.0-alpha.22 (2023-01-08)

Features

  • Adapt verifyServerUrl for new asynchronous Parse Server start-up states (#8366) (ffa4974)

BREAKING CHANGES

  • The method ParseServer.verifyServerUrl now returns a promise instead of a callback. (ffa4974)

6.0.0-alpha.21

06 Jan 12:40
Compare
Choose a tag to compare
6.0.0-alpha.21 Pre-release
Pre-release

6.0.0-alpha.21 (2023-01-06)

Features

  • Add request rate limiter based on IP address (#8174) (6c79f6a)

6.0.0-alpha.20

06 Jan 11:38
Compare
Choose a tag to compare
6.0.0-alpha.20 Pre-release
Pre-release

6.0.0-alpha.20 (2023-01-06)

Features

6.0.0-alpha.19

05 Jan 14:55
Compare
Choose a tag to compare
6.0.0-alpha.19 Pre-release
Pre-release

6.0.0-alpha.19 (2023-01-05)

Features

  • Remove deprecation DEPPS1: Native MongoDB syntax in aggregation pipeline (#8362) (d0d30c4)

BREAKING CHANGES

  • The MongoDB aggregation pipeline requires native MongoDB syntax instead of the custom Parse Server syntax; for example pipeline stage names require a leading dollar sign like $match and the MongoDB document ID is referenced using _id instead of objectId (#8362) (d0d30c4)

6.0.0-alpha.18

05 Jan 13:35
Compare
Choose a tag to compare
6.0.0-alpha.18 Pre-release
Pre-release

6.0.0-alpha.18 (2023-01-05)

Bug Fixes

  • The client IP address may be determined incorrectly in some cases; this fixes a security vulnerability in which the Parse Server option masterKeyIps may be circumvented, see GHSA-vm5r-c87r-pf6x (#8372) (892040d)

BREAKING CHANGES

  • The mechanism to determine the client IP address has been rewritten; to correctly determine the IP address it is now required to set the Parse Server option trustProxy accordingly if Parse Server runs behind a proxy server, see the express framework's trust proxy setting (#8372) (892040d)

6.0.0-alpha.17

22 Dec 12:28
Compare
Choose a tag to compare
6.0.0-alpha.17 Pre-release
Pre-release

6.0.0-alpha.17 (2022-12-22)

Features

  • Upgrade Node Package Manager lock file package-lock.json to version 2 (#8285) (ee72467)

BREAKING CHANGES

  • The Node Package Manager lock file package-lock.json is upgraded to version 2; while it is backwards with version 1 for the npm installer, consider this if you run any non-npm analysis tools that use the lock file (#8285) (ee72467)