-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Add support for arrays of more types #5274
Merged
Merged
Changes from 10 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
1b239e7
Fix more cases where assigning an RLMArray property to itself would c…
tgoyne 9b58677
Merge branch 'tg/list-self-assignment' into master-3.0
tgoyne fa96e2a
Deliver notifications for deleted RLMArrays
tgoyne ed6d9ac
Remove a use of containsString:
tgoyne 4b4f331
Add support for arrays of more types
tgoyne 4301d21
Delete some unreachable code
tgoyne df5d94b
Update objectstore
tgoyne b87840d
Update to core 3.1/sync 2.0-rc18
tgoyne fb1e11f
Change the optional property on collections to BOOL
tgoyne 623348f
Merge remote-tracking branch 'origin/master-3.0' into tg/primitive-array
bdash bfee691
Duplicate the protocol `RealmCollection` extensions related to arrays…
bdash 7260ee4
Remove some duplicated file references from the Xcode project.
bdash 93fb306
Add missing `@objc` annotations to `SwiftPrimitiveArrayObject`.
bdash f004e85
Don't use -compare: to compare NSData objects.
bdash 781b2c3
Fix primitive list tests with Swift 4.
bdash 6cb5edf
Don't hard-code the type of the string in the expected error.
bdash df38d3a
Disable a portion of `testReplaceRange` that hits issues with Swift 4's
bdash a5ca2b5
Rename `PrimitiveListTestsBase.assertEqual`.
bdash 1465f3e
Tweak some tests to be compatible with Swift 3.0.
bdash 9557147
Fix or suppress SwiftLint violations.
bdash aa4d784
Fix tests with Swift 3.0.
bdash 454110c
Compile Util.swift into RealmSwift Tests rather than using `@testable`.
bdash 6531f8d
Increase the timeout for the interprocess tests.
bdash 699c298
Add documentation for extension methods on RealmCollection, and
bdash fac6ff9
Remove an unnecessary changelog section.
bdash 072d391
Swap the order of SwiftLint and documentation suppression comments.
bdash 39d5b7a
Fix some compiler warnings in PrimitiveListTests.swift.
bdash aab7f5f
Throw an exception when querying arrays of primitives rather than sil…
tgoyne dc976ca
Add a changelog entry
tgoyne 307946f
Merge remote-tracking branch 'origin/master-3.0' into tg/primitive-array
tgoyne e1b6c8d
Invert the sense of the define that Util.swift looks for when
bdash 4124acd
Merge remote-tracking branch 'origin/master-3.0' into tg/primitive-array
tgoyne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ObjectStore
updated
38 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
BOOL
, and should likely also havegetter=isOptional
to follow Cocoa's naming conventions.