From 69791855c7a4f75044da655d4880b056a9f875c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kr=C3=A6n=20Hansen?= Date: Thu, 11 Apr 2024 12:49:08 +0200 Subject: [PATCH] Add a note to changelogs on the base URL change (#6606) * Adding note on the change of base URL * Moved the base url change from "enhancement" to "internal" in "realm-web" * Update packages/realm-web/CHANGELOG.md Co-authored-by: LJ <81748770+elle-j@users.noreply.github.com> --------- Co-authored-by: LJ <81748770+elle-j@users.noreply.github.com> --- CHANGELOG.md | 3 +++ packages/realm-web/CHANGELOG.md | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fb9863a43..e5f469c481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ > [!NOTE] > This version bumps the Realm file format to version 24. It is not possible to downgrade to earlier versions. Older files will automatically be upgraded to the new file format. Files created by Realm JavaScript prior to v6.0.0, might not be upgradeable. **Only Realm Studio 15.0.0 or later** will be able to open the new file format. +> [!NOTE] +> This version communicates with Atlas Device Services through a different URL (https://services.cloud.mongodb.com). While we consider this an internal detail of the SDK, you might need to update rules in firewalls or other configuration that you've used to limit connections made by your app. + ### Enhancements * Updated bundled OpenSSL version to 3.2.0. ([realm/realm-core#7303](https://github.com/realm/realm-core/pull/7303)) * Improved performance of object notifiers with complex schemas by ~20%. ([realm/realm-core#7424](https://github.com/realm/realm-core/pull/7424)) diff --git a/packages/realm-web/CHANGELOG.md b/packages/realm-web/CHANGELOG.md index 18c367ac13..e14c935d6b 100644 --- a/packages/realm-web/CHANGELOG.md +++ b/packages/realm-web/CHANGELOG.md @@ -1,17 +1,20 @@ ## vNext (TBD) +> [!NOTE] +> This version communicates with Atlas Device Services through a different URL (https://services.cloud.mongodb.com). While we consider this an internal detail of the SDK, you might need to update rules in firewalls or other configuration that you've used to limit connections made by your app. + ### Deprecations * None ### Enhancements -* The base URL used to communicate with the Atlas App Services was updated changed from "https://realm.mongodb.com" to "https://services.cloud.mongodb.com". ([#6591](https://github.com/realm/realm-js/pull/6591)) +* None ### Fixed * Fixed an endless loop of requests that would happen if linking credentials failed due to an authentication failure. ([#6588](https://github.com/realm/realm-js/pull/6588), since v0.6.0) * Logging in with `Credentials.anonymous()` credentials will now reuse any existing anonymous user which is already authenticated with the app. This aligns with the behaviour of the `realm` package and will result in less users being created. Use `Credentials.anonymous(false)` to disable this behaviour and achieve the old behaviour of creating new anonymous users on every login. ([#6592](https://github.com/realm/realm-js/pull/6592)) ### Internal -* None +* The base URL used to communicate with the Atlas App Services was changed from "https://realm.mongodb.com" to "https://services.cloud.mongodb.com". ([#6591](https://github.com/realm/realm-js/pull/6591)) 2.0.0 Release notes (2022-10-18) =============================================================