firebase_functions_interop 0.1.0-beta.1 firebase_functions_interop: ^0.1.0-beta.1 copied to clipboard
Write Firebase Cloud Functions in Dart
0.1.0-beta.1 #
This version marks first attempt to stabilize API layer provided by this library, which (ironically) means there are some breaking changes.
- Updated for
node_interop: 0.1.0-beta
. - Updated for
firebase_admin_interop: 0.1.0-beta
. - Removed
stringify
from bindings, usejsonStringify
from node_interop instead (available since0.1.0-beta.6
). - Reorganized bindings in single file.
- Finalized bindings for HTTPS and Realtime Database functions.
- Added support for
built_value
serializers in Realtime Database functions - HTTPS functions
onRequest
method now accepts handler function with single parameter of typeHttpRequest
(fromnode_interop/http
). This request is fully compatible with "dart:io" and acts mostly as a proxy to JS native request and response objects. This should also make it easier to build integrations with Dart server-side web frameworks. - Gitter: https://gitter.im/pulyaevskiy/firebase-functions-interop
0.0.4 #
- Added
<0.1.0
constraint onnode_interop
dependency.
0.0.3 #
- Added
toJson
toDeltaSnapshot
. - Added top-level
firebaseFunctions
getter. - Deprecated
FirebaseFunctions
constructor. UsefirebaseFunctions
instead. - Implemented
firebaseFunctions.config()
. - Added
DEVELOPMENT.md
docs.
0.0.2 #
- Added generics to Event class (#3)
- Added basic integration testing infrastructure
- Minor dartdoc updates
0.0.1 #
- Initial version