Skip to content

Commit 2c1cb11

Browse files
Merge main into release
2 parents f7c6dc4 + 4ff9474 commit 2c1cb11

34 files changed

+782
-74
lines changed

.changeset/dull-nails-kneel.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/functions': patch
3+
---
4+
5+
Allow a custom path in Firebase functions custom domain

.changeset/perfect-weeks-care.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/app': patch
3+
---
4+
5+
Removed an unnecessary console.log statement.

.changeset/sixty-cycles-scream.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'@firebase/auth-compat': patch
3+
'@firebase/firestore': patch
4+
'@firebase/functions': patch
5+
'@firebase/storage': patch
6+
'@firebase/auth': patch
7+
'firebase': patch
8+
---
9+
10+
Update undici dependency to 6.19.7 due to a memory leak in older versions.

.github/ISSUE_TEMPLATE/bug_report_v2.yaml

+22-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Google LLC
1+
# Copyright 2024 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@ body:
2121
id: before-you-start
2222
attributes:
2323
value: |
24-
*[READ THIS]:* to evaluate if you are in the right place?
24+
*[READ THIS]:* Are you in the right place?
2525
- For issues or feature requests related to __the code in this repository__, file a GitHub issue.
2626
- If this is a __feature request__, make sure the issue title starts with "FR:".
2727
- For general technical questions, post a question on [StackOverflow](http://stackoverflow.com/) with the firebase tag.
@@ -31,31 +31,31 @@ body:
3131
id: operating-system
3232
attributes:
3333
label: Operating System
34-
description: Describe your operating system
35-
placeholder: ex. iOS 16.4
34+
description: Describe the operating system(s) where you are experiencing the issue.
35+
placeholder: ex. iOS 16.4, macOS Ventura 13.4, Windows 11
3636
validations:
3737
required: true
3838
- type: input
39-
id: browser-version
39+
id: environment
4040
attributes:
41-
label: Browser Version
42-
description: Describe your browser version
43-
placeholder: ex. Safari/604.1
41+
label: Environment (if applicable)
42+
description: Describe the environment where you are experiencing the issue. This could include the browser and its version, Node.js version, or any other relevant environment details.
43+
placeholder: ex. Chrome 115, Node.js v18.16.0, React Native
4444
validations:
4545
required: true
4646
- type: input
4747
id: firebase-sdk-version
4848
attributes:
4949
label: Firebase SDK Version
50-
description: Describe your Firebase SDK Version
50+
description: The Firebase JS SDK version you're using.
5151
placeholder: ex. 9.16.0
5252
validations:
5353
required: true
5454
- type: dropdown
5555
id: firebase-sdk-products
5656
attributes:
57-
label: 'Firebase SDK Product:'
58-
description: Which Firebase Products are used in your app?
57+
label: Firebase SDK Product(s)
58+
description: Select the Firebase product(s) relevant to your issue. You can select multiple options in the dropdown.
5959
multiple: true
6060
options:
6161
- Analytics
@@ -77,16 +77,21 @@ body:
7777
- type: textarea
7878
id: project-tooling
7979
attributes:
80-
label: Describe your project's tooling
80+
label: Project Tooling
8181
description: Describe the tooling your app is built with
8282
placeholder: React app with Webpack and Jest
8383
validations:
8484
required: true
8585
- type: textarea
8686
id: describe-your-problem
8787
attributes:
88-
label: Describe the problem
89-
description: Describe what you were trying to do and what occurred
88+
label: Detailed Problem Description
89+
description: |
90+
Please provide a clear and concise description of the problem. Include:
91+
- What you were trying to achieve.
92+
- What actually happened.
93+
- Any error messages or unexpected behavior you observed.
94+
- Relevant log snippets or console output (if available).
9095
placeholder: |
9196
What were you trying to accomplish? What happened? This should include a background description, log/console output, etc.
9297
validations:
@@ -95,6 +100,8 @@ body:
95100
id: reproduce-code
96101
attributes:
97102
label: Steps and code to reproduce issue
98-
description: Please provide a description of how to replicate your issue. Copy and paste any relevant code here to reproduce the problem or links to code to reproduce it.
103+
description: |
104+
If possible, provide a minimal, self-contained code snippet or steps that consistently reproduce the issue.
105+
This will significantly aid in debugging.
99106
validations:
100107
required: true

.github/workflows/check-docs.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ jobs:
3636
- name: Run doc generation
3737
run: yarn docgen:all
3838
- name: Check for changes in docs-devsite dir (fail if so)
39-
run: git diff --exit-code docs-devsite
39+
run: |
40+
if [[ -n "$(git status docs-devsite --porcelain)" ]]; then
41+
echo "Unstaged changes detected:"
42+
git status -s
43+
exit 1
44+
fi
4045
- name: Reference documentation needs to be updated. See message below.
4146
if: ${{ failure() }}
4247
run: echo "Changes in this PR affect the reference docs. Run \`yarn docgen:all\` locally to regenerate docs and add them to this PR."

0 commit comments

Comments
 (0)