You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
🎉 Thank you for supporting EasyFirebase! I'm a full-time student spending my free time on this library, so I apologize if there any bugs present. Feel free to contribute with a pull request or report buts in Issues!
New Features
Querying
Querying is here. Search for documents in a Swifty manner.
EasyFirestore.Querying.where(\Car.make,.equals,"Toyota"){ cars in
// Handle your queried documents here...
}
Conform your class to IndexableDocument to index your documents! This allows you to easily keep track of how many documents are in a collection. This also will allow you to grab a random document easier.
classCar:IndexableDocument{
// These properties are inherited from Document
varid:String=UUID().uuidString
vardateCreated:Date=Date()
// And this shiny new property is inherited from IndexableDocument
varindex:Int
// ...
}
Other Additions
Easily generate EasyUser usernames and suggest new ones if they're taken
Ability to request updated email verification status from EasyUser objects
Minor Changes
All auth management features have migrated to instance methods of EasyUser
All EasyUser objects now conform to IndexableDocument instead of Document
Bug Fixes
Fix iOS device compatability
This discussion was created from the release 1.0.0-pre.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
🎉 Thank you for supporting EasyFirebase! I'm a full-time student spending my free time on this library, so I apologize if there any bugs present. Feel free to contribute with a pull request or report buts in Issues!
New Features
Querying
Querying is here. Search for documents in a Swifty manner.
For more information, check out README.md.
Indexable Documents
Conform your class to
IndexableDocument
to index your documents! This allows you to easily keep track of how many documents are in a collection. This also will allow you to grab a random document easier.Other Additions
EasyUser
usernames and suggest new ones if they're takenEasyUser
objectsMinor Changes
EasyUser
EasyUser
objects now conform toIndexableDocument
instead ofDocument
Bug Fixes
This discussion was created from the release 1.0.0-pre.
Beta Was this translation helpful? Give feedback.
All reactions