Skip to content

Commit

Permalink
Prepare for 10.0.0-beta.3 (#2163)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev authored Dec 10, 2020
1 parent 07e6077 commit 45e7a18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## vNext (TBD)
## 10.0.0-beta.3 (2020-12-10)
------------------

### Breaking Changes
Expand All @@ -18,7 +18,6 @@ objects with the same primary key. (Core upgrade)
* Fixed a bug that could lead to a crash when refreshing the user's custom data. (Core upgrade)

### Enhancements
* Add support for the `GUID` data type. It can be used as primary key and is indexable. (PR [#2120](https://github.com/realm/realm-dotnet/pull/2120))
* Added support of OpenID Connect credential for the Google authentication provider. (Issue [#2108](https://github.com/realm/realm-dotnet/issues/2108))
* Optimized the internal code that handles conversions between types. This should result in a minor performance increase
for most data operations that should be most noticeable on Ahead-of-Time compiled platforms, such as iOS/UWP. Due to the
Expand Down
7 changes: 5 additions & 2 deletions Realm/Realm.Unity/Editor/Common/RealmWeaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ internal partial class Weaver
DecimalTypeName,
Decimal128TypeName,
ObjectIdTypeName,
GuidTypeName,
DateTimeOffsetTypeName,
NullableCharTypeName,
NullableSingleTypeName,
Expand Down Expand Up @@ -112,7 +111,6 @@ internal partial class Weaver
Int32TypeName,
Int64TypeName,
ObjectIdTypeName,
GuidTypeName,
NullableCharTypeName,
NullableByteTypeName,
NullableInt16TypeName,
Expand Down Expand Up @@ -395,6 +393,11 @@ private WeavePropertyResult WeaveProperty(PropertyDefinition prop, TypeDefinitio
return WeavePropertyResult.Error($"{type.Name}.{prop.Name} has a setter but its type is a {collectionType} which only supports getters.");
}

if (collectionType == RealmCollectionType.ISet)
{
return WeavePropertyResult.Error($"{type.Name}.{prop.Name} is a {collectionType} which is not yet supported.");
}

switch (collectionType)
{
case RealmCollectionType.IList:
Expand Down

0 comments on commit 45e7a18

Please sign in to comment.