aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Database
Commit message (Collapse)AuthorAge
* Update database release notes for M29 (#1458)Gravatar Paul Beusterien2018-06-26
|
* Fix undefined behavior sanitizer issues in RTDB (#1445)Gravatar Paul Beusterien2018-06-25
|
* Explicitly import FIRDataSnapshot in private header. (#1276)Gravatar Ryan Wilson2018-05-14
|
* Fix new Xcode 9.3 warnings (#1183)Gravatar Paul Beusterien2018-04-25
|
* Eliminate tvOS deprecation warnings in FirebaseDatabase (#1155)Gravatar Paul Beusterien2018-04-20
| | | | * Delete unused URLEncoded and URLDecoded
* Remove old, unused podspecs (#1129)Gravatar Paul Beusterien2018-04-17
|
* Fixing concurrent modification when we cancel transactionGravatar Sebastian Schmidt2018-04-09
|
* Unify the representation of the dotInfoConnected value to always be an ↵Gravatar Morten Bek Ditlevsen2018-04-09
| | | | __NSCFBoolean
* Delete legacy module map (#964)Gravatar Paul Beusterien2018-03-22
|
* Update CHANGELOG.mdGravatar Sebastian Schmidt2018-02-26
|
* Update CHANGELOG.mdGravatar Sebastian Schmidt2018-02-26
|
* Updating RTDB Changelog for v4.1..5Gravatar Sebastian Schmidt2018-02-26
|
* Cleaning up implicit retain for the RTDB and StorageGravatar Sebastian Schmidt2018-02-13
|\ | | | | Cleaning up implicit retain for the RTDB and Storage
* | Fix double parsing on 32 bit devices. (#787)Gravatar Ryan Wilson2018-02-13
| |
| * Cleaning up implicit retain for the RTDB and StorageGravatar Sebastian Schmidt2018-02-13
|/
* Update Changelog for RTDB 4.14Gravatar Sebastian Schmidt2018-01-10
|
* Add Community Supported tvOS (#590)Gravatar Paul Beusterien2018-01-03
| | | | | | | Add Community Supported tvOS for Core, Auth, Database and Storage. Add tvOS unit tests Add tvOS sample app Update README.md Add tvOS to travis testing
* Update CHANGELOG.mdGravatar Sebastian Schmidt2017-12-13
|
* Standardize cross module imports with angle bracket syntax (#526)Gravatar Paul Beusterien2017-12-04
| | | | Qualify all cross-pod imports of FirebaseCore headers
* FIRAppInternal.h is a published private header (#501)Gravatar Paul Beusterien2017-11-28
|
* Replacing FIR_SWIFT_NAME macro with NS_SWIFT_NAME. (#476)Gravatar Ryan Wilson2017-11-28
| | | | | | | | | | * Replacing FIR_SWIFT_NAME macro with NS_SWIFT_NAME. This pushes the minimum Xcode version to 7.3, as NS_SWIFT_NAME was limited before that version (which is why the macro was introduced in the first place). * Fixed FIRMessaging header
* Updating Changelog for 4.1.2 RTDB releaseGravatar Sebastian Schmidt2017-11-21
|
* Using defereed init to ensure that we init FEmptyNode only onceGravatar Sebastian Schmidt2017-11-09
|
* Enumerator using generic. Cleaner for .. in .. loop in Swift (#433)Gravatar Ibrahim Ulukaya2017-11-08
| | | | | | | | | | | | | | * Enumerator using generic. Cleaner for .. in .. loop in Swift So for childSnapshot in snapshot.children { you don't need to cast each child. Each cild is already known as DataSnapshot * Update FIRDataSnapshot.h * Update FIRMutableData.h * Update FIRMutableData.m
* Fixed capitalization in Xcode. (#361)Gravatar Ryan Wilson2017-10-10
|
* Adding RTDB 4.1.1 release notes (#358)Gravatar Sebastian Schmidt2017-10-10
|
* Fix warnings exposed by Xcode 9.1 in RTDB (#353)Gravatar Paul Beusterien2017-10-10
|
* RTDB Changelog for v4.1.0 (#316)Gravatar Sebastian Schmidt2017-09-26
| | | | | | * RTDB Changelog for v4.1.0 * Update CHANGELOG.md
* Adding Multi-Resource support to the Firebase iOS SDK (#278)Gravatar Sebastian Schmidt2017-09-15
| | | | | * Adding Multi-Resource support to the Firebase iOS SDK. This CL also makes RepoInfo hashable and simplifies RepoManager based on this.
* Update CHANGELOG.md (#280)Gravatar Sebastian Schmidt2017-09-15
|
* Don't delete apps that don't exist (#276)Gravatar Sebastian Schmidt2017-09-15
|
* Move mugs derived code to third_party with proper LICENSE (#247)Gravatar Paul Beusterien2017-09-13
|
* Update CHANGELOG.md for Database (#261)Gravatar Sebastian Schmidt2017-09-13
| | | | | | | | | | * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md
* Fixing the session identifier for non-default apps (#240)Gravatar Sebastian Schmidt2017-09-06
|
* Update Changelog for 4.0.2 release. (#217)Gravatar Ryan Wilson2017-08-25
|
* Delete app from Database when deleted in Core. (#194)Gravatar Ryan Wilson2017-08-17
| | | | | | | | | | | | | * Delete an app from Database when deleted in Core. When a FIRApp is deleted in Core, it should also be deleted from the instances array in Database. See #160 for more details. * Add tests for deleting databases. * Add call to clean up deleted FIRDatabase instance.
* Inlcuding bandwidth usage in error message for queries without indexes (#201)Gravatar Sebastian Schmidt2017-08-16
|
* Adding ChangeLogs for Storage and Database (#184)Gravatar Sebastian Schmidt2017-08-07
|
* Move Auth notification constant into Core. (#155)Gravatar Ryan Wilson2017-08-04
| | | | | | | | | | | | * Move Auth notification constant into Core. SDKs that want to listen for the internal Auth notifications needed to copy the notification strings to their own SDK instead of relying on Auth's definition in order to avoid a dependency on Auth. By moving them to Core, SDKs can use the constants without taking on another dependency. * Remove Auth stub, add app instance to notification.
* Add clang-format options and script; apply to FirebaseCore (#151)Gravatar Paul Beusterien2017-07-27
|
* Purge persistence cache if we can't load from it (#153)Gravatar Sebastian Schmidt2017-07-26
| | | | | | | | * Purge persistence cache if we can't load from it * Adding unit test * Review comments
* Use modulemap to fix exposure of FirebaseCore's internal headers (#121)Gravatar Paul Beusterien2017-07-10
|
* Add travis trailing whitespace check (#116)Gravatar Paul Beusterien2017-06-30
| | | | | | * Add travis trailing whitespace check * Remove trailing white space
* Group public headers into Public directories (#112)Gravatar Paul Beusterien2017-06-29
|
* Fix comment in FPruneForest (#111)Gravatar Josep Sayol2017-06-29
|
* Fixing parsing for double numbers (#107)Gravatar Sebastian Schmidt2017-06-27
| | | NSJSONSerialization parses long values as doubles and returns NSNumber that are backed by doubles to the users. For NSNumbers that can be stored as longs, we can overwrite this behavior by re-running the initialization step.
* Not sending messages to closed websocket connections (#99)Gravatar Sebastian Schmidt2017-06-22
| | | | I believe this should be a safe change since the timer function nop is only ever run after the websocket is initialized. This works around potential issues in the websocket layer after we close the connection and hopefully addresses https://b.corp.google.com/issues/62363018x
* Rename FirebaseDev to FirebaseCommunity (#98)Gravatar Paul Beusterien2017-06-22
|
* Add Foundation import so TARGET_OS_IOS or other TARGET_OS_* gets defined (#71)Gravatar Paul Beusterien2017-06-06
|
* Add missing terminating newlines (#70)Gravatar Paul Beusterien2017-06-06
|