Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C++ GA Fast Follows #3147

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/cpp/asymmetric/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FetchContent_Declare(
FetchContent_Declare(
cpprealm
GIT_REPOSITORY https://github.com/realm/realm-cpp.git
GIT_TAG 8eba9728ea535a6cd78beaef37ed6d22b73fe889
GIT_TAG v1.0.0
)
FetchContent_Declare(
json
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/local/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.15)
cmake_minimum_required(VERSION 3.25)

project(examples-local)

Expand All @@ -14,7 +14,7 @@ FetchContent_Declare(
FetchContent_Declare(
cpprealm
GIT_REPOSITORY https://github.com/realm/realm-cpp.git
GIT_TAG 8eba9728ea535a6cd78beaef37ed6d22b73fe889
GIT_TAG v1.0.0
)

FetchContent_MakeAvailable(Catch2 cpprealm)
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/scripts/bluehawk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ echo "Bluehawking C++ local examples"
npx bluehawk snip $CPP_EXAMPLES/local --ignore build -o $GENERATED_EXAMPLES

# Bluehawk sync examples
echo "Bluehawking C++ sync SDK examples"
echo "Bluehawking C++ sync examples"
npx bluehawk snip $CPP_EXAMPLES/sync --ignore build -o $GENERATED_EXAMPLES
2 changes: 1 addition & 1 deletion examples/cpp/sync/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FetchContent_Declare(
FetchContent_Declare(
cpprealm
GIT_REPOSITORY https://github.com/realm/realm-cpp.git
GIT_TAG 8eba9728ea535a6cd78beaef37ed6d22b73fe889
GIT_TAG v1.0.0
)
FetchContent_Declare(
json
Expand Down
4 changes: 4 additions & 0 deletions source/includes/note-cpp-supports-subset-of-rql.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.. note::

The C++ SDK does not yet support the full range of query expressions
that the other SDKs provide.
5 changes: 1 addition & 4 deletions source/sdk/cpp/crud/filter-data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ To filter data in your realm, you can leverage
Realm's query engine. You can also sort filtered data. For an example of
how to sort query results, refer to :ref:`cpp-sort-lists-and-results`.

.. note::

While the Realm C++ SDK is in development, it does not yet support the
full range of query expressions that the other Realm SDKs provide.
.. include:: /includes/note-cpp-supports-subset-of-rql.rst

About the Examples on This Page
-------------------------------
Expand Down
4 changes: 4 additions & 0 deletions source/sdk/cpp/realm-files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ Work with Realm Files - C++ SDK
Configure & Open a Realm </sdk/cpp/realm-files/configure-and-open-a-realm>
Reduce Realm File Size </sdk/cpp/realm-files/compact-realm>
Encrypt a Realm </sdk/cpp/realm-files/encrypt-a-realm>

- :doc:`Configure & Open a Realm </sdk/cpp/realm-files/configure-and-open-a-realm>`
- :doc:`Reduce Realm File Size </sdk/cpp/realm-files/compact-realm>`
- :doc:`Encrypt a Realm </sdk/cpp/realm-files/encrypt-a-realm>`
2 changes: 2 additions & 0 deletions source/sdk/cpp/sync/sync-subscriptions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ filter also applies to writes. If you try to write a ``Dog`` object where
the ``age`` is ``4``, you get a compensating write error and the write
reverts.

.. include:: /includes/note-cpp-supports-subset-of-rql.rst

.. _cpp-update-subscriptions:

Update Sync Subscriptions
Expand Down
Loading