From 973e0042f76e6192a863e5c45b0717a61f533584 Mon Sep 17 00:00:00 2001 From: Nick Larew Date: Mon, 6 Nov 2023 16:05:57 -0500 Subject: [PATCH 1/2] (DOCSP-33930) External release notes for v20231101 (#626) --- source/release-notes/backend.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/source/release-notes/backend.txt b/source/release-notes/backend.txt index ee55589ae..36dc77c48 100644 --- a/source/release-notes/backend.txt +++ b/source/release-notes/backend.txt @@ -13,6 +13,25 @@ Atlas App Services Changelog 2023 Releases ------------- +.. _backend_20231101: + +01 November 2023 Release +~~~~~~~~~~~~~~~~~~~~~~~~ + +- Updated product UI and documentation to use the new ``appservices`` + CLI instead of ``realm-cli``. + +- Added support for triggers that watch all collections in a database + and deployment. + +- Added Device Sync model generation for the Realm C++ Beta SDK. + +- Apps with Private Endpoints enabled can now be configured to allow + requests that originate from outside of the VPC. + +- No longer creates a pending user account if a user tries to register a + new email/password identity with an invalid email address. + .. _backend_20231018: 18 October 2023 Release From bb41c34cbfe094408af876d3ae5d78c680e53441 Mon Sep 17 00:00:00 2001 From: Nick Larew Date: Mon, 6 Nov 2023 16:55:04 -0500 Subject: [PATCH 2/2] (DOCSP-33503) Unhide Find Your App ID CLI procedure (#619) --- source/apps/metadata.txt | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) diff --git a/source/apps/metadata.txt b/source/apps/metadata.txt index ea6f582e3..7fc07330b 100644 --- a/source/apps/metadata.txt +++ b/source/apps/metadata.txt @@ -106,35 +106,39 @@ or App Services CLI to find it programmatically. Make sure to replace ```` and ``{groupId}`` with your own values. -.. .. tab:: + .. tab:: :tabid: cli -.. To find an App ID, run :ref:`{+cli-bin+} apps list + To find an App ID, run :ref:`{+cli-bin+} apps list ` and find the App you're interested in the list returned by the command. -.. Each entry in the list contains two App ID values you may want: + Each entry in the list shows an App's project ID as well as two App + ID values you may want: -.. - The Client App ID, which is a unique string that includes the + - The Client App ID, which is a unique string that includes the App name. Use this value to connect to your App through GraphQL, the Data API, or a Realm SDK. -.. - The ``_id`` value, which is an internal ObjectId hex string. Use + - The ``_id`` value, which is an internal ObjectId hex string. Use this value in place of ``{appId}`` in Admin API endpoints. -.. .. io-code-block:: + .. io-code-block:: -.. .. input:: + .. input:: :language: bash -.. {+cli-bin+} apps list + {+cli-bin+} apps list -.. .. output:: + .. output:: :language: text -.. Found 2 apps - myapp-abcde (63ea9328dddad2523e60fb59) - myapp-dev-uvxyz (63ea93318d947aff90351070) + Found 3 apps + Client App ID Project ID _id + ------------------------------- ------------------------ ------------------------ + myapp-abcde 5b2ef33692f119212341b213 64343a2b2107b2523e60fb59 + myapp-dev-uvxyz 5b2ef33692f119212341b213 6526d3582b032aff90351070 + my-other-app-abcde 5b2ef33692f119212341b213 674c19acef214b9ad99a0bbe .. _find-atlas-project-id: @@ -197,6 +201,13 @@ or Atlas CLI to find it programmatically. The command returns a list of projects in JSON format. Find your project in the list and copy its ``id`` value. + .. tip:: + + The {+cli+} includes Project IDs when you list Apps. If you + want to find the Project ID of an existing App, you can run + ``{+cli-bin+} apps list``. To learn more, see + :ref:`find-app-id`. + .. io-code-block:: .. input::