Skip to content

Commit 5ae04bc

Browse files
Merge main into release
2 parents 67ea4f7 + aef5468 commit 5ae04bc

File tree

273 files changed

+1403
-874
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+1403
-874
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"commit": false,
88
"linked": [],
99
"access": "public",
10-
"baseBranch": "master",
10+
"baseBranch": "main",
1111
"updateInternalDependencies": "patch",
1212
"ignore": [
1313
"firebase-namespace-integration-test",

.changeset/late-humans-tan.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
'@firebase/firestore-compat': patch
3+
'@firebase/database-compat': patch
4+
'@firebase/auth-compat': patch
5+
'@firebase/app-compat': patch
6+
'@firebase/firestore': patch
7+
'@firebase/database': patch
8+
'firebase': patch
9+
'@firebase/auth': patch
10+
---
11+
12+
Fixed typos in documentation and some internal variables and parameters.

.changeset/spicy-dragons-pay.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/app-compat': patch
3+
---
4+
5+
Properly handle the case in app-compat checks where `window` exists but `self` does not. (This occurs in Ionic Stencil's Jest preset.)

.changeset/tender-apes-clap.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/analytics': patch
3+
'@firebase/app-check': patch
4+
---
5+
6+
Revert introduction of safevalues to prevent issues from arising in Browser CommonJS environments due to ES5 incompatibility. For more information, see [GitHub PR #8395](https://github.com/firebase/firebase-js-sdk/pull/8395)

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ root = true
1111
end_of_line = lf
1212
insert_final_newline = true
1313

14-
# Javascript and Typescript look like Google-style
14+
# JavaScript and TypeScript look like Google-style
1515
[*.{js,json,ts}]
1616
charset = utf-8
1717
indent_style = space

.github/ISSUE_TEMPLATE/bug_report_v2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ body:
2222
attributes:
2323
value: |
2424
*[READ THIS]:* to evaluate if you are in the right place?
25-
- For issues or feature requests related to __the code in this repository__, file a Github issue.
25+
- 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.
2828
- For general Firebase discussion, use the [firebase-talk](https://groups.google.com/forum/#!forum/firebase-talk) google group.

.github/workflows/canary-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: Canary Deploy
1717
on:
1818
push:
1919
branches:
20-
- master
20+
- main
2121
workflow_dispatch:
2222

2323
jobs:

.github/workflows/check-changeset.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: Check Changeset
1717
on:
1818
pull_request:
1919
branches:
20-
- master
20+
- main
2121

2222
env:
2323
GITHUB_PULL_REQUEST_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
@@ -41,9 +41,9 @@ jobs:
4141
- name: Yarn install
4242
run: yarn
4343
- name: Run changeset script
44-
# pull master so changeset can diff against it
44+
# pull main so changeset can diff against it
4545
run: |
46-
git pull -f --no-rebase origin master:master
46+
git pull -f --no-rebase origin main:main
4747
yarn ts-node-script scripts/ci/check_changeset.ts
4848
id: check-changeset
4949
- name: Print changeset checker output
@@ -54,22 +54,22 @@ jobs:
5454
- name: Print blocking failure status
5555
run: echo "${{steps.check-changeset.outputs.BLOCKING_FAILURE}}"
5656
- name: Find Comment
57-
uses: peter-evans/find-comment@v1
57+
uses: peter-evans/find-comment@v3
5858
id: fc
5959
with:
6060
issue-number: ${{github.event.number}}
6161
body-includes: Changeset File Check
6262
- name: Create comment (missing packages)
6363
if: ${{!steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
64-
uses: peter-evans/create-or-update-comment@v1
64+
uses: peter-evans/create-or-update-comment@v4
6565
with:
6666
issue-number: ${{github.event.number}}
6767
body: |
6868
### Changeset File Check :warning:
6969
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
7070
- name: Update comment (missing packages)
7171
if: ${{steps.fc.outputs.comment-id}}
72-
uses: peter-evans/create-or-update-comment@v1
72+
uses: peter-evans/create-or-update-comment@v4
7373
with:
7474
comment-id: ${{steps.fc.outputs.comment-id}} && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
7575
edit-mode: replace
@@ -78,7 +78,7 @@ jobs:
7878
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
7979
- name: Update comment (no missing packages)
8080
if: ${{steps.fc.outputs.comment-id && !steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
81-
uses: peter-evans/create-or-update-comment@v1
81+
uses: peter-evans/create-or-update-comment@v4
8282
with:
8383
comment-id: ${{steps.fc.outputs.comment-id}}
8484
edit-mode: replace

.github/workflows/merge-release-branch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: Merge Release Into Master
15+
name: Merge Release Into Main
1616

1717
on: workflow_dispatch
1818

1919
jobs:
20-
merge_to_master:
20+
merge_to_main:
2121
runs-on: ubuntu-latest
2222
# Allow GITHUB_TOKEN to have write permissions
2323
permissions:
@@ -36,15 +36,15 @@ jobs:
3636
- name: Echo version in shell
3737
run: |
3838
echo "Merging release ${{ steps.get-version.outputs.RELEASE_VERSION }}"
39-
- name: Merge to master
39+
- name: Merge to main
4040
uses: actions/github-script@v6
4141
with:
4242
github-token: ${{ secrets.GITHUB_TOKEN }}
4343
script: |
4444
github.rest.repos.merge({
4545
owner: context.repo.owner,
4646
repo: context.repo.repo,
47-
base: 'master',
47+
base: 'main',
4848
head: 'release',
4949
commit_message: 'Release ${{ steps.get-version.outputs.RELEASE_VERSION }}'
5050
})

.github/workflows/release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
# Ensures a new @firebase/app is published with every release.
4444
# This keeps the SDK_VERSION variable up to date.
4545
- name: Add a changeset for @firebase/app
46-
# pull master so changeset can diff against it
46+
# pull main so changeset can diff against it
4747
run: |
48-
git pull -f --no-rebase origin master:master
48+
git pull -f --no-rebase origin main:main
4949
yarn ts-node-script scripts/ci/add_changeset.ts
5050
5151
- name: Create Release Pull Request

0 commit comments

Comments
 (0)