Skip to content

Commit 242a347

Browse files
Version Packages (#7266)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent e0d07f6 commit 242a347

File tree

52 files changed

+178
-111
lines changed

Some content is hidden

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

52 files changed

+178
-111
lines changed

.changeset/dry-cats-lick.md

-5
This file was deleted.

.changeset/grumpy-bees-shake.md

-5
This file was deleted.

.changeset/olive-cycles-count.md

-6
This file was deleted.

.changeset/olive-goats-greet.md

-5
This file was deleted.

.changeset/silent-islands-fix.md

-6
This file was deleted.

.changeset/strong-ghosts-compare.md

-5
This file was deleted.

.changeset/swift-eels-change.md

-7
This file was deleted.

.changeset/wicked-tomatoes-smoke.md

-6
This file was deleted.

integration/compat-interop/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"test:debug": "karma start --browsers Chrome --auto-watch"
99
},
1010
"dependencies": {
11-
"@firebase/app": "0.9.8",
12-
"@firebase/app-compat": "0.2.8",
13-
"@firebase/analytics": "0.9.5",
14-
"@firebase/analytics-compat": "0.2.5",
15-
"@firebase/auth": "0.23.0",
16-
"@firebase/auth-compat": "0.4.0",
11+
"@firebase/app": "0.9.9",
12+
"@firebase/app-compat": "0.2.9",
13+
"@firebase/analytics": "0.10.0",
14+
"@firebase/analytics-compat": "0.2.6",
15+
"@firebase/auth": "0.23.1",
16+
"@firebase/auth-compat": "0.4.1",
1717
"@firebase/functions": "0.9.4",
1818
"@firebase/functions-compat": "0.3.4",
1919
"@firebase/messaging": "0.12.4",

integration/firebase/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test"
88
},
99
"devDependencies": {
10-
"firebase": "9.20.0",
10+
"firebase": "9.21.0",
1111
"@types/chai": "4.3.4",
1212
"@types/mocha": "9.1.1",
1313
"chai": "4.3.7",

integration/firestore/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
1616
},
1717
"dependencies": {
18-
"@firebase/app": "0.9.8",
19-
"@firebase/firestore": "3.10.1"
18+
"@firebase/app": "0.9.9",
19+
"@firebase/firestore": "3.11.0"
2020
},
2121
"devDependencies": {
2222
"@types/mocha": "9.1.1",

integration/messaging/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test:manual": "mocha --exit"
1010
},
1111
"devDependencies": {
12-
"firebase": "9.20.0",
12+
"firebase": "9.21.0",
1313
"chai": "4.3.7",
1414
"chromedriver": "98.0.1",
1515
"express": "4.18.2",

packages/analytics-compat/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @firebase/analytics-compat
22

3+
## 0.2.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`0a27d2fbf`](https://github.com/firebase/firebase-js-sdk/commit/0a27d2fbf268f07099d4fa5ecab7fbf35a579780)]:
8+
- @firebase/analytics@0.10.0
9+
310
## 0.2.5
411

512
### Patch Changes

packages/analytics-compat/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/analytics-compat",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"description": "",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -24,7 +24,7 @@
2424
"@firebase/app-compat": "0.x"
2525
},
2626
"devDependencies": {
27-
"@firebase/app-compat": "0.2.8",
27+
"@firebase/app-compat": "0.2.9",
2828
"rollup": "2.79.1",
2929
"@rollup/plugin-json": "4.1.0",
3030
"rollup-plugin-typescript2": "0.31.2",
@@ -54,7 +54,7 @@
5454
"typings": "dist/src/index.d.ts",
5555
"dependencies": {
5656
"@firebase/component": "0.6.4",
57-
"@firebase/analytics": "0.9.5",
57+
"@firebase/analytics": "0.10.0",
5858
"@firebase/analytics-types": "0.8.0",
5959
"@firebase/util": "1.9.3",
6060
"tslib": "^2.1.0"

packages/analytics/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @firebase/analytics
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- [`0a27d2fbf`](https://github.com/firebase/firebase-js-sdk/commit/0a27d2fbf268f07099d4fa5ecab7fbf35a579780) [#7158](https://github.com/firebase/firebase-js-sdk/pull/7158) - Add method `getGoogleAnalyticsClientId()` to retrieve an unique identifier for a web client. This allows users to log purchase and other events from their backends using Google Analytics 4 Measurement Protocol and to have those events be connected to actions taken on the client within their Firebase web app. `getGoogleAnalyticsClientId()` will simplify this event recording process.
8+
39
## 0.9.5
410

511
### Patch Changes

packages/analytics/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/analytics",
3-
"version": "0.9.5",
3+
"version": "0.10.0",
44
"description": "A analytics package for new firebase packages",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -48,7 +48,7 @@
4848
},
4949
"license": "Apache-2.0",
5050
"devDependencies": {
51-
"@firebase/app": "0.9.8",
51+
"@firebase/app": "0.9.9",
5252
"rollup": "2.79.1",
5353
"@rollup/plugin-commonjs": "21.1.0",
5454
"@rollup/plugin-json": "4.1.0",

packages/app-check-compat/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @firebase/app-check-compat
22

3+
## 0.3.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`195e82ebb`](https://github.com/firebase/firebase-js-sdk/commit/195e82ebba29d501892cf9269ecee74eec9df220)]:
8+
- @firebase/app-check@0.7.0
9+
310
## 0.3.5
411

512
### Patch Changes

packages/app-check-compat/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/app-check-compat",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"description": "A compat App Check package for new firebase packages",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -35,7 +35,7 @@
3535
"@firebase/app-compat": "0.x"
3636
},
3737
"dependencies": {
38-
"@firebase/app-check": "0.6.5",
38+
"@firebase/app-check": "0.7.0",
3939
"@firebase/app-check-types": "0.5.0",
4040
"@firebase/logger": "0.4.0",
4141
"@firebase/util": "1.9.3",
@@ -44,7 +44,7 @@
4444
},
4545
"license": "Apache-2.0",
4646
"devDependencies": {
47-
"@firebase/app-compat": "0.2.8",
47+
"@firebase/app-compat": "0.2.9",
4848
"rollup": "2.79.1",
4949
"@rollup/plugin-commonjs": "21.1.0",
5050
"@rollup/plugin-json": "4.1.0",

packages/app-check/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @firebase/app-check
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- [`195e82ebb`](https://github.com/firebase/firebase-js-sdk/commit/195e82ebba29d501892cf9269ecee74eec9df220) [#7169](https://github.com/firebase/firebase-js-sdk/pull/7169) - Add new limited use token method to App Check
8+
39
## 0.6.5
410

511
### Patch Changes

packages/app-check/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/app-check",
3-
"version": "0.6.5",
3+
"version": "0.7.0",
44
"description": "The App Check component of the Firebase JS SDK",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -45,7 +45,7 @@
4545
},
4646
"license": "Apache-2.0",
4747
"devDependencies": {
48-
"@firebase/app": "0.9.8",
48+
"@firebase/app": "0.9.9",
4949
"rollup": "2.79.1",
5050
"@rollup/plugin-commonjs": "21.1.0",
5151
"@rollup/plugin-json": "4.1.0",

packages/app-compat/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @firebase/app-compat
22

3+
## 0.2.9
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @firebase/app@0.9.9
9+
310
## 0.2.8
411

512
### Patch Changes

packages/app-compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/app-compat",
3-
"version": "0.2.8",
3+
"version": "0.2.9",
44
"description": "The primary entrypoint to the Firebase JS SDK",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",
@@ -40,7 +40,7 @@
4040
},
4141
"license": "Apache-2.0",
4242
"dependencies": {
43-
"@firebase/app": "0.9.8",
43+
"@firebase/app": "0.9.9",
4444
"@firebase/util": "1.9.3",
4545
"@firebase/logger": "0.4.0",
4646
"@firebase/component": "0.6.4",

packages/app/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @firebase/app
22

3+
## 0.9.9
4+
5+
### Patch Changes
6+
7+
- Update SDK_VERSION.
8+
39
## 0.9.8
410

511
### Patch Changes

packages/app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/app",
3-
"version": "0.9.8",
3+
"version": "0.9.9",
44
"description": "The primary entrypoint to the Firebase JS SDK",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.cjs.js",

packages/auth-compat/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @firebase/auth-compat
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1d6771eb3`](https://github.com/firebase/firebase-js-sdk/commit/1d6771eb358fd5cb9a6b53b7a0141b08f83f0b47)]:
8+
- @firebase/auth@0.23.1
9+
310
## 0.4.0
411

512
### Minor Changes

packages/auth-compat/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/auth-compat",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "FirebaseAuth compatibility package that uses API style compatible with Firebase@8 and prior versions",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/index.node.cjs.js",
@@ -50,7 +50,7 @@
5050
"@firebase/app-compat": "0.x"
5151
},
5252
"dependencies": {
53-
"@firebase/auth": "0.23.0",
53+
"@firebase/auth": "0.23.1",
5454
"@firebase/auth-types": "0.12.0",
5555
"@firebase/component": "0.6.4",
5656
"@firebase/util": "1.9.3",
@@ -59,7 +59,7 @@
5959
},
6060
"license": "Apache-2.0",
6161
"devDependencies": {
62-
"@firebase/app-compat": "0.2.8",
62+
"@firebase/app-compat": "0.2.9",
6363
"@rollup/plugin-json": "4.1.0",
6464
"rollup": "2.79.1",
6565
"rollup-plugin-replace": "2.2.0",

packages/auth/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @firebase/auth
22

3+
## 0.23.1
4+
5+
### Patch Changes
6+
7+
- [`1d6771eb3`](https://github.com/firebase/firebase-js-sdk/commit/1d6771eb358fd5cb9a6b53b7a0141b08f83f0b47) [#7140](https://github.com/firebase/firebase-js-sdk/pull/7140) - Increase the popup poller timeout to 8s to support blocking functions + Firefox
8+
39
## 0.23.0
410

511
### Minor Changes

packages/auth/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@firebase/auth",
3-
"version": "0.23.0",
3+
"version": "0.23.1",
44
"description": "The Firebase Authenticaton component of the Firebase JS SDK.",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"main": "dist/node/index.js",
@@ -119,7 +119,7 @@
119119
},
120120
"license": "Apache-2.0",
121121
"devDependencies": {
122-
"@firebase/app": "0.9.8",
122+
"@firebase/app": "0.9.9",
123123
"@rollup/plugin-json": "4.1.0",
124124
"@rollup/plugin-strip": "2.1.0",
125125
"chromedriver": "98.0.1",

packages/database-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"tslib": "^2.1.0"
5959
},
6060
"devDependencies": {
61-
"@firebase/app-compat": "0.2.8",
61+
"@firebase/app-compat": "0.2.9",
6262
"typescript": "4.7.4"
6363
},
6464
"repository": {

packages/database/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"tslib": "^2.1.0"
5858
},
5959
"devDependencies": {
60-
"@firebase/app": "0.9.8",
60+
"@firebase/app": "0.9.9",
6161
"rollup": "2.79.1",
6262
"rollup-plugin-typescript2": "0.31.2",
6363
"typescript": "4.7.4"

0 commit comments

Comments
 (0)