Skip to content

Commit 477cd94

Browse files
authored
Merge branch 'master' into hsinpei/database-set-chunked
2 parents 4956dcc + d659b9d commit 477cd94

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
- Fixes an issue where `ext:dev:init` would fail due to a missing CHANGELOG.md file (#5530).
21
- Adds `database:import` command for non-atomic imports (#5396).

npm-shrinkwrap.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase-tools",
3-
"version": "11.24.0",
3+
"version": "11.24.1",
44
"description": "Command-Line Interface for Firebase",
55
"main": "./lib/index.js",
66
"bin": {

templates/init/functions/python/main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# To get started, simply uncomment the below code or create your own.
33
# Deploy with `firebase deploy`
44

5-
from firebase_functions import https
5+
from firebase_functions import https_fn
66
from firebase_admin import initialize_app
77

88
# initialize_app()
99
#
1010
#
11-
# @https.on_request()
12-
# def on_request_example(req: https.Request) -> https.Response:
13-
# return https.Response("Hello world!")
11+
# @https_fn.on_request()
12+
# def on_request_example(req: https_fn.Request) -> https_fn.Response:
13+
# return https_fn.Response("Hello world!")

0 commit comments

Comments
 (0)