-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactor handles subscription.dart * Refactor: use import over part for handle_base.dart * Fix regression: Check if close on handle deref * TMP: Skip some tests (something broke with RootedHandle) * Ups! * Wip * After rebase * wip * Fix after rebase * Revert "TMP: Skip some tests (something broke with RootedHandle)" This reverts commit 5081217. * Use dart_test.yaml to configure tags. Make baas a tag instead of a prefix. Simplify * Fix nullPtr related bug * Doh! I'll go die in shame!! * Refactor RealmHandle * Refactor ConfigHandle * Refactor _RealmQueryHandler (now QueryHandle) * Refactor RealmObjectHandle (now ObjectHandle) * Refactor RealmResultHandle (now ResultsHandle) * More RealmHandle stuff * Don't need Tuple * Expose disableAutoRefreshForTesting * Refactor UserHandle * RealmHandle.findAll * Realm.find/.findExiting/.renameProperty * Drop superfluous this. * Refactor AppHandle * Refactor SchedulerHandle * Move config handles * Refactor SessionHandle * UserHandle.linkCredentials/.createApiKey/.fetchApiKey/.fetchAllApiKeys.deleteApiKey/.disableApiKey/.enableApiKey * Refactor RealmListHandle (now ListHandle) * Refactor RealmSetHandle (now SetHandle) * Refactor RealmAppCredentialsHandle (now CredentialsHandle) * WIP * WIP2 * Organize imports * ResultsHandle stuff * More UserHandle stuff * subscribeForSchemaNotification (something rubs me the wrong way about this) * Move MapHandle.query * More ObjectHandle stuff * Move callback functions into handle files * Move resolveX to XHandle.resolveIn * Make a bunch of function public in prep for getting rid of parts * Refactor XChangesHandle * Use CredentialsHandle not Credentils * Traffic in ResultsHandle not RealmResult + dart fix stuff * Split part files * Move XTokenHandles * toNative extension method replaces toRealmValue function * Replace last use of deprecated Pointer.elementAt(i) * More RealmHandle stuff * Replace invokeGetBool and invokeGetPointer * Run melos custom_format * Move callAppFunction stuff * Refactor equals * Move raiseIfNull to HandleBase ctor. Rename to be explicit about call to getLastError * Completely unrelated spelling corrections in CHANGELOG * Seperate AsyncOpenTaskHandle and NotificationHandle from realm_core.dart * moving guardSynchronousCallback and getApp out of realm_core.dart * Split native convertion functions into separate files * Last leg.. for now * PR feedback * Fix rebase * Tweat memEquals perf test * fixup! Last leg.. for now * Fix after rebase * more PR feedback
- Loading branch information
Showing
69 changed files
with
4,642 additions
and
4,245 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
"geospatial", | ||
"HRESULT", | ||
"keepalive", | ||
"keypaths", | ||
"loggable", | ||
"maccatalyst", | ||
"mugaritz", | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2021 MongoDB, Inc. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
|
||
import 'package:realm_dart/src/cli/main.dart' as x; | ||
|
||
void main(List<String> arguments) => x.main(arguments); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2021 MongoDB, Inc. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
|
||
import 'package:realm_dart/src/cli/main.dart' as x; | ||
|
||
void main(List<String> arguments) => x.main(arguments); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tags: | ||
baas: { timeout: 2x } |
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
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.