Skip to content

Releases: parse-community/parse-server

6.0.0-alpha.16

21 Dec 14:32
Compare
Choose a tag to compare
6.0.0-alpha.16 Pre-release
Pre-release

6.0.0-alpha.16 (2022-12-21)

Features

  • Asynchronous initialization of Parse Server (#8232) (99fcf45)

BREAKING CHANGES

  • This release introduces the asynchronous initialization of Parse Server to prevent mounting Parse Server before being ready to receive request; it changes how Parse Server is imported, initialized and started; it also removes the callback serverStartComplete; see the Parse Server 6 migration guide for more details (#8232) (99fcf45)

6.0.0-alpha.15

20 Dec 15:59
Compare
Choose a tag to compare
6.0.0-alpha.15 Pre-release
Pre-release

6.0.0-alpha.15 (2022-12-20)

Bug Fixes

  • Nested objects are encoded incorrectly for MongoDB (#8209) (1412666)

BREAKING CHANGES

  • Nested objects are now properly stored in the database using JSON serialization; previously, due to a bug only top-level objects were serialized, but nested objects were saved as raw JSON; for example, a nested Date object was saved as a JSON object like { "__type": "Date", "iso": "2020-01-01T00:00:00.000Z" } instead of its serialized representation 2020-01-01T00:00:00.000Z (#8209) (1412666)

6.0.0-alpha.14

16 Dec 02:46
Compare
Choose a tag to compare
6.0.0-alpha.14 Pre-release
Pre-release

6.0.0-alpha.14 (2022-12-16)

Features

  • Write log entry when request with master key is rejected as outside of masterKeyIps (#8350) (e22b73d)

6.0.0-alpha.13

07 Dec 21:57
Compare
Choose a tag to compare
6.0.0-alpha.13 Pre-release
Pre-release

6.0.0-alpha.13 (2022-12-07)

Features

  • Add option to change the log level of the logs emitted by triggers (#8328) (8f3b694)

6.0.0-alpha.12

26 Nov 16:47
Compare
Choose a tag to compare
6.0.0-alpha.12 Pre-release
Pre-release

6.0.0-alpha.12 (2022-11-26)

Features

6.0.0-alpha.11

25 Nov 22:21
Compare
Choose a tag to compare
6.0.0-alpha.11 Pre-release
Pre-release

6.0.0-alpha.11 (2022-11-25)

Bug Fixes

  • Parse Server option masterKeyIps does not include localhost by default for IPv6 (#8322) (ab82635)

6.0.0-alpha.10

19 Nov 02:29
Compare
Choose a tag to compare
6.0.0-alpha.10 Pre-release
Pre-release

6.0.0-alpha.10 (2022-11-19)

Bug Fixes

  • Cloud Code trigger beforeSave does not work with Parse.Role (#8320) (f29d972)

5.4.0

19 Nov 03:37
Compare
Choose a tag to compare

5.4.0 (2022-11-19)

Bug Fixes

  • GraphQL query ignores condition equalTo with value false (#8032) (7f5a15d)
  • Internal indices for classes _Idempotency and _Role are not protected in defined schema (#8121) (c16f529)
  • LiveQuery with containedIn not working when object field is an array (#8128) (1d9605b)
  • Push notifications badge doesn't update with Installation beforeSave trigger (#8162) (3c75c2b)
  • Query aggregation pipeline cannot handle value of type Date when directAccess: true (#8167) (e424137)
  • Relation constraints in compound queries Parse.Query.or, Parse.Query.and not working (#8203) (28f0d26)
  • Security upgrade undici from 5.6.0 to 5.8.0 (#8108) (4aa016b)
  • Sorting by non-existing value throws INVALID_SERVER_ERROR on Postgres (#8157) (3b775a1)
  • Updating object includes unchanged keys in client response for certain key types (#8159) (37af1d7)

Features

  • Add convenience access to Parse Server configuration in Cloud Code via Parse.Server (#8244) (9f11115)
  • Add option to change the default value of the Parse.Query.limit() constraint (#8152) (0388956)
  • Add support for MongoDB 6 (#8242) (aba0081)
  • Add support for Postgres 15 (#8215) (2feb6c4)
  • LiveQuery support for unsorted distance queries (#8221) (0f763da)

6.0.0-alpha.9

16 Nov 22:02
Compare
Choose a tag to compare
6.0.0-alpha.9 Pre-release
Pre-release

6.0.0-alpha.9 (2022-11-16)

Features

  • Remove deprecation DEPPS3: Config option enforcePrivateUsers defaults to true (#8283) (ed499e3)

BREAKING CHANGES

  • The Parse Server option enforcePrivateUsers is set to true by default; in previous releases this option defaults to false; this change improves the default security configuration of Parse Server (#8283) (ed499e3)

6.0.0-alpha.8

11 Nov 02:27
Compare
Choose a tag to compare
6.0.0-alpha.8 Pre-release
Pre-release

6.0.0-alpha.8 (2022-11-11)

Features

  • Restrict use of masterKey to localhost by default (#8281) (6c16021)

BREAKING CHANGES

  • This release restricts the use of masterKey to localhost by default; if you are using Parse Dashboard on a different server to connect to Parse Server you need to add the IP address of the server that hosts Parse Dashboard to this option (#8281) (6c16021)