Skip to content

Releases: deepqai/firebase-js-sdk

firebase-database@0.5.23

22 Jul 05:50

Choose a tag to compare

Remove url validation for ip address

    // validateUrl('Invalid Firebase Database URL', 1, parsedUrl);
    // if (!parsedUrl.path.isEmpty()) {
    //   fatal(
    //     'Database URL must point to the root of a Firebase Database ' +
    //       '(not including a child path).'
    //   );
    // }

firebase-database@0.5.22

07 Jan 07:41

Choose a tag to compare

Support aggregate by pipeline:

example 7
# orderByChild('status').equalTo('A') and get first 3 elements with sorting by name field in a non case-sensitive manner.
ref.aggregate([
  { $match: { status: 'A' }},
  { $project: { name: 1, lower_name: { $toLower: '$name' } } },
  { $sort: { lower_name: 1 } },
  { $limit: 3 }
])

firebase-database@0.5.21

07 Jan 03:45

Choose a tag to compare

Add magic symbol "#" to avoid confusing with orderBy cache.

firebase-database 0.5.20

06 Jan 06:41

Choose a tag to compare

Support module replacement for firebase database

Support mongodb find filter

31 Dec 08:49

Choose a tag to compare

db.ref("/test/mycoll")
  .find({ name: { $gte: "name2" } }, { Limit: 2 })
  .once("value")

firebase-database@0.5.21

07 Jan 03:43
fe48712

Choose a tag to compare

Add magic symbol "#" to avoid confused with regular orderBy cache