firebase-functions
Advanced tools
Comparing version 0.6.2 to 0.6.3
@@ -1,2 +0,1 @@ | ||
changed - Updated firebase-admin peer dependency to v5.2.1, which adds support for the Google Cloud Storage API. See release notes: https://github.com/firebase/firebase-admin-node/releases. | ||
changed - Updated integration test script to be fully automated. | ||
fixed - Fixed bug where developers' unit tests for Database functions would fail if they defined `event.params` but not `event.resource`, and tried to access `event.params` within the function. |
@@ -27,2 +27,5 @@ "use strict"; | ||
function _makeParams(event, triggerResource) { | ||
if (!event.resource) { | ||
return event.params || {}; | ||
} | ||
var wildcards = triggerResource.match(WILDCARD_REGEX); | ||
@@ -29,0 +32,0 @@ var params = {}; |
{ | ||
"name": "firebase-functions", | ||
"version": "0.6.2", | ||
"version": "0.6.3", | ||
"description": "Firebase SDK for Cloud Functions", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85680
1919