Skip to content

Commit 140f779

Browse files
authored
Fix incorrect Swift version number for Collections in Mixed feature (#3310)
Quick fix: Correct version number for Collections in Mixed feature release (should be `10.51.0` instead of `10.15.0`) - [Supported Types - Swift SDK](https://preview-mongodbcbullinger.gatsbyjs.io/realm/no-jira-fix-version-number/sdk/swift/model-data/supported-types/#anyrealmvalue) - [Define an Object Model- Swift SDK](https://preview-mongodbcbullinger.gatsbyjs.io/realm/no-jira-fix-version-number/sdk/swift/model-data/object-models/#define-unstructured-data) ### Release Notes **Swift SDK** - Model Data > Define an Object Model: Correct the SDK version number specified for "Model Unstructured Data" section. - Model Data > Supported Types: Correct the SDK version number specified for "RealmAny" section.
1 parent f3d5aa4 commit 140f779

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

source/sdk/node/model-data/define-a-realm-object-model.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ To learn more about Data Ingest, read :ref:`Optimize Sync with Data Ingest <opti
419419
.. _node-model-unstructured-data:
420420

421421
Define Unstructured Data
422-
-----------------------
422+
------------------------
423423

424424
.. versionadded:: 12.9.0
425425

source/sdk/react-native/model-data/data-types/mixed.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To :ref:`set a property of your object model
5252
Collections as Mixed
5353
~~~~~~~~~~~~~~~~~~~~
5454

55-
In version ``realm@12.9.0`` and later, a mixed data type can hold collections (a list or
55+
In JS SDK v12.9.0 and later, a mixed data type can hold collections (a list or
5656
dictionary, but *not* a set) of mixed elements. You can use mixed collections to
5757
model unstructured or variable data. For more information, refer to
5858
:ref:`<react-native-model-unstructured-data>`.

source/sdk/react-native/model-data/define-a-realm-object-model.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -299,11 +299,11 @@ To learn more about Data Ingest, read :ref:`Stream Data to Atlas <react-native-s
299299
.. _react-native-model-unstructured-data:
300300

301301
Define Unstructured Data
302-
-----------------------
302+
------------------------
303303

304304
.. versionadded:: ``[email protected]``
305305

306-
Starting in SDK version 12.9.0, you can store :ref:`collections of mixed data <react-native-nested-collections-mixed>`
306+
Starting in JS SDK version 12.9.0, you can store :ref:`collections of mixed data <react-native-nested-collections-mixed>`
307307
within a ``mixed`` property. You can use this feature to model complex data
308308
structures, such as JSON or MongoDB documents, without having to define a
309309
strict data model.

source/sdk/swift/model-data/object-models.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -547,11 +547,11 @@ For more information, see: :ref:`Create an Asymmetric Object
547547
.. _ios-model-unstructured-data:
548548

549549
Define Unstructured Data
550-
-----------------------
550+
------------------------
551551

552-
.. versionadded:: 10.15.0
552+
.. versionadded:: 10.51.0
553553

554-
Starting in SDK version 10.15.0, you can store :ref:`collections of mixed data <ios-nested-collections-realmanyvalue>`
554+
Starting in SDK version 10.51.0, you can store :ref:`collections of mixed data <ios-nested-collections-realmanyvalue>`
555555
within a ``AnyRealmValue`` property. You can use this feature to model complex data
556556
structures, such as JSON or MongoDB documents, without having to define a
557557
strict data model.

source/sdk/swift/model-data/supported-types.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ You can declare a Map as a property of an object:
731731
AnyRealmValue
732732
~~~~~~~~~~~~~
733733

734-
.. versionchanged:: 10.15.0
734+
.. versionchanged:: 10.51.0
735735

736736
``AnyRealmValue`` properties can hold lists or maps of mixed data.
737737

@@ -776,7 +776,7 @@ permitted value, you can't declare an ``AnyRealmValue`` as optional.
776776
Collections as Mixed
777777
````````````````````
778778

779-
In version 10.15.0 and later, a ``AnyRealmValue`` data type can
779+
In version 10.51.0 and later, a ``AnyRealmValue`` data type can
780780
contain collections (a list or map, but *not* a set) of ``AnyRealmValue``
781781
elements. You can use mixed collections to
782782
model unstructured or variable data. For more information, refer to

0 commit comments

Comments
 (0)