From 6497ec72ed14a80b66dd31d2847597acb24cb00c Mon Sep 17 00:00:00 2001 From: Manuel Date: Wed, 4 Sep 2019 05:31:19 +0200 Subject: [PATCH] added breaking change note to 3.8 release (#6023) Breaking change as described here: https://github.com/parse-community/parse-server/issues/5983#issuecomment-527693465 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 269d0a4d..e23efede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,9 @@ - FIX: Transaction was aborting before all promises have either resolved or rejected [#5878](https://github.com/parse-community/parse-server/pull/5878). Thanks to [Antonio Davi Macedo Coelho de Castro](https://github.com/davimacedo) - NEW: Use transactions for batch operation [#5849](https://github.com/parse-community/parse-server/pull/5849). Thanks to [Antonio Davi Macedo Coelho de Castro](https://github.com/davimacedo) +#### Breaking Changes: +- If you are running Parse Server on top of a MongoDB deployment which does not fit the [Retryable Writes Requirements](https://docs.mongodb.com/manual/core/retryable-writes/#prerequisites), you will have to add `retryWrites=false` to your connection string in order to upgrade to Parse Server 3.8. + ### 3.7.2 [Full Changelog](https://github.com/parse-community/parse-server/compare/3.7.1...3.7.2)