Releases: deepqai/firebase-js-sdk
Releases · deepqai/firebase-js-sdk
firebase-database@0.5.23
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
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
Add magic symbol "#" to avoid confusing with orderBy cache.
firebase-database 0.5.20
Support module replacement for firebase database
Support mongodb find filter
db.ref("/test/mycoll")
.find({ name: { $gte: "name2" } }, { Limit: 2 })
.once("value")
firebase-database@0.5.21
Add magic symbol "#" to avoid confused with regular orderBy cache