- fix bugs in iOS (Pull request #50)
- Removed unused
extension
dependency - Updated dependencies
- Bumped minimum dart version is
2.18.0
- Added support for
getRefreshToken
andgetAccessToken
- Fixed bug with ios
- Added
linkCredentials
function - Added
isLoggedIn
function
- Fixed web-plugin bug
- Stable version of null-safety support
- Fixed missing code in Kotlin plugin.
- Fixed
pub.dev
score.
- Fixed many null-safety related fixes
- Upgraded dependencies
- Fixed example project
- Migrated into Null-Safety
- a list of objects turned into one object (issue #31)
- README updated.
- Fixed
pub.dev
score.
- Added
Sign With Apple ID
auth provider.
- Return null for empty
findOne
Query. (issue #23)
- Updated
insertOne
andinsertMany
to return results of inserted ids. (issue #22)
ObjectId
can be used (Also fixing issue #18).
- README updated.
- Using the latest web plugin version. =======
- Updated README.
- Using latest web plugin version.
- Added
Custom JWT
auth provider. - Added
Custom Function
auth provider.
Major Update:
Package now uses names close to the native one introduced in Realm SDK:
client.auth
now deprecated in favor ofapp
:-
auth.loginWithCredential
now deprecated in favor ofapp.login
for example:AnonymusCredential()
=>Credentails.anonymus()
UserPasswordCredential(..)
=>Credentails.emailPassword(..)
FacebookCredential(..)
=>Credentails.facebook(..)
and so on.. -
auth.logout()
now deprecated in favor ofapp.currentUser.logout()
-
auth.user
now deprecated in favor ofapp.currentUser
-
- Initialization app: use
Realm.init(<APP_ID>)
insteadMongoClient.initializeApp(<APP_ID>)
- BREAKING CHANGES: Renamed package to
flutter_mongodb_realm
and everyxxStitch
object toxxRealm
object
- fixed issue with default app set
- Updated for no-setup at web
- Using the web plugin as endorsed plugin
- Added web support by default
- Added web support (for using
sendResetPassword
)
- Added web support (for using
authListener()
stream)
- Added web support (for using
watch
on collection and calling Stitch Functions)
- Added web support (for Auth usage, not included Facebook\Google login)
- updated README for using on web
- Added web support (for Database usage)
- Added support of watch collection with specified list of ids
- Fixed
watchWithFilter()
to work correctly
Breaking Changes
- Google/Facebook login dependencies used outside of the plugin
- fix bug crashing the app when using plugin on new Flutter projects
- Added auth listener support also on iOS
- Added auth listener support inorder to monitor auth state changes (Android only)
- Added
sendResetPasswordEmail
,getUser
functions
- Fixed bugs for not using correctly defined timeout in calling a stitch function
- Updated dependencies
- Added support of using aggregation on a collection
- Now using id-part only for auth code instead full string
- Bug fixing
- Added Google and Facebook as available login providers
- Updated
find
andfindOne
collection functions to be able to use projection/sort/limit
- Fixed missing find/insert results.
- Added support for calling a Stitch function.
- Initial release.