Skip to content

Commit e16d613

Browse files
Merge master into release
2 parents 826b571 + e1a7764 commit e16d613

33 files changed

+312
-196
lines changed

.changeset/early-tomatoes-occur.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/firestore': patch
3+
'firebase': patch
4+
---
5+
6+
Prevent spurious "Backend didn't respond within 10 seconds" errors when network is indeed responding, just slowly.

.changeset/empty-items-compete.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/firestore': patch
3+
---
4+
5+
Updated protobufjs transitive dependency in Firetore.

.changeset/pink-beds-study.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@firebase/firestore": patch
3+
---
4+
5+
Go back using xmlhttprequest for bidi-streams, as fetch streams seem to be having connection issue.

.changeset/real-ravens-prove.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@firebase/auth': patch
3+
---
4+
5+
Emit a module package file with esm2017 auth browser extension builds

.changeset/sharp-lizards-sit.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/firestore': patch
3+
'firebase': patch
4+
---
5+
6+
Reduce code bundle size by 6.5 kB in applications that only use memory persistence (the default persistence mode). This bundle size regression was accidentally introduced in v10.7.2.

.changeset/wild-bulldogs-deny.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@firebase/auth': patch
3+
'@firebase/auth-compat': patch
4+
---
5+
6+
Update jszip transient dependency from 3.7.1 to 3.10.1 in auth.

.github/ISSUE_TEMPLATE/bug_report_v2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ body:
7171
- Performance
7272
- Remote-Config
7373
- Storage
74+
- VertexAI
7475
validations:
7576
required: true
7677
- type: textarea

.github/workflows/deploy-config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
test:
2828
name: Deploy Firebase Project Rules and Functions
2929
runs-on: ubuntu-latest
30+
if: (github.actor != 'dependabot[bot]')
3031

3132
steps:
3233
- name: Checkout Repo

.github/workflows/health-metrics-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ env:
3535
jobs:
3636
binary-size:
3737
name: Binary Size
38-
if: github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)
38+
if: (github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)) && (github.actor != 'dependabot[bot]')
3939
runs-on: ubuntu-latest
4040
steps:
4141
- uses: actions/checkout@v3
@@ -52,7 +52,7 @@ jobs:
5252
run: yarn size-report
5353
modular-export-size:
5454
name: Binary Size For Modular Exports
55-
if: github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)
55+
if: (github.event_name == 'push' || !(github.event.pull_request.head.repo.fork)) && (github.actor != 'dependabot[bot]')
5656
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/checkout@v3

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ That's it! Thank you for your contribution!
154154
155155
#### Adding changeset to PR
156156
The repository uses changesets to associate PR contributions with major and minor version releases
157-
adn patch releases. If your change is a feature or a behavioral change (either of which should
157+
and patch releases. If your change is a feature or a behavioral change (either of which should
158158
correspond to a version bump) then you will need to generate a changeset in your PR to track the
159159
change.
160160
@@ -165,8 +165,7 @@ repository:
165165
yarn changeset
166166
```
167167
168-
You will be asked to create a description (here's an
169-
[example]((https://github.com/firebase/firebase-js-sdk/pull/3284#issuecomment-649718617)). You
168+
You will be asked to create a description (here's an [example](https://github.com/firebase/firebase-js-sdk/pull/3284#issuecomment-649718617)). You
170169
should include the version bump for your package as well as the description for the change. Valid
171170
version bump types are major, minor or patch, where:
172171

0 commit comments

Comments
 (0)