Skip to content

Commit

Permalink
Merge main into release
Browse files Browse the repository at this point in the history
  • Loading branch information
google-oss-bot committed Aug 27, 2024
2 parents f7c6dc4 + 4ff9474 commit 2c1cb11
Show file tree
Hide file tree
Showing 34 changed files with 782 additions and 74 deletions.
5 changes: 5 additions & 0 deletions .changeset/dull-nails-kneel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@firebase/functions': patch
---

Allow a custom path in Firebase functions custom domain
5 changes: 5 additions & 0 deletions .changeset/perfect-weeks-care.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@firebase/app': patch
---

Removed an unnecessary console.log statement.
10 changes: 10 additions & 0 deletions .changeset/sixty-cycles-scream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
'@firebase/auth-compat': patch
'@firebase/firestore': patch
'@firebase/functions': patch
'@firebase/storage': patch
'@firebase/auth': patch
'firebase': patch
---

Update undici dependency to 6.19.7 due to a memory leak in older versions.
37 changes: 22 additions & 15 deletions .github/ISSUE_TEMPLATE/bug_report_v2.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Google LLC
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -21,7 +21,7 @@ body:
id: before-you-start
attributes:
value: |
*[READ THIS]:* to evaluate if you are in the right place?
*[READ THIS]:* Are you in the right place?
- For issues or feature requests related to __the code in this repository__, file a GitHub issue.
- If this is a __feature request__, make sure the issue title starts with "FR:".
- For general technical questions, post a question on [StackOverflow](http://stackoverflow.com/) with the firebase tag.
Expand All @@ -31,31 +31,31 @@ body:
id: operating-system
attributes:
label: Operating System
description: Describe your operating system
placeholder: ex. iOS 16.4
description: Describe the operating system(s) where you are experiencing the issue.
placeholder: ex. iOS 16.4, macOS Ventura 13.4, Windows 11
validations:
required: true
- type: input
id: browser-version
id: environment
attributes:
label: Browser Version
description: Describe your browser version
placeholder: ex. Safari/604.1
label: Environment (if applicable)
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.
placeholder: ex. Chrome 115, Node.js v18.16.0, React Native
validations:
required: true
- type: input
id: firebase-sdk-version
attributes:
label: Firebase SDK Version
description: Describe your Firebase SDK Version
description: The Firebase JS SDK version you're using.
placeholder: ex. 9.16.0
validations:
required: true
- type: dropdown
id: firebase-sdk-products
attributes:
label: 'Firebase SDK Product:'
description: Which Firebase Products are used in your app?
label: Firebase SDK Product(s)
description: Select the Firebase product(s) relevant to your issue. You can select multiple options in the dropdown.
multiple: true
options:
- Analytics
Expand All @@ -77,16 +77,21 @@ body:
- type: textarea
id: project-tooling
attributes:
label: Describe your project's tooling
label: Project Tooling
description: Describe the tooling your app is built with
placeholder: React app with Webpack and Jest
validations:
required: true
- type: textarea
id: describe-your-problem
attributes:
label: Describe the problem
description: Describe what you were trying to do and what occurred
label: Detailed Problem Description
description: |
Please provide a clear and concise description of the problem. Include:
- What you were trying to achieve.
- What actually happened.
- Any error messages or unexpected behavior you observed.
- Relevant log snippets or console output (if available).
placeholder: |
What were you trying to accomplish? What happened? This should include a background description, log/console output, etc.
validations:
Expand All @@ -95,6 +100,8 @@ body:
id: reproduce-code
attributes:
label: Steps and code to reproduce issue
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.
description: |
If possible, provide a minimal, self-contained code snippet or steps that consistently reproduce the issue.
This will significantly aid in debugging.
validations:
required: true
7 changes: 6 additions & 1 deletion .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ jobs:
- name: Run doc generation
run: yarn docgen:all
- name: Check for changes in docs-devsite dir (fail if so)
run: git diff --exit-code docs-devsite
run: |
if [[ -n "$(git status docs-devsite --porcelain)" ]]; then
echo "Unstaged changes detected:"
git status -s
exit 1
fi
- name: Reference documentation needs to be updated. See message below.
if: ${{ failure() }}
run: echo "Changes in this PR affect the reference docs. Run \`yarn docgen:all\` locally to regenerate docs and add them to this PR."
Loading

0 comments on commit 2c1cb11

Please sign in to comment.