Skip to content

Version Packages #6295

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/cool-elephants-leave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/polite-fireants-mate.md

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Set up Node (12)
- name: Set up Node (14)
uses: actions/setup-node@v2
with:
node-version: 12.x
node-version: 14.x
- name: install Chrome stable
run: |
sudo apt-get update
Expand Down
17 changes: 14 additions & 3 deletions .github/workflows/release-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,24 @@ jobs:
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
- name: Go back to release branch
# changesets/action created and checked out a new branch
# return to `release` branch.
run: git checkout release
## REVERT BEFORE CHECKIN: FOR DEVELOPMENT TESTING ONLY
- name: Get new scripts from this branch
run: |
git pull -f --no-rebase origin ch-staging-fix-2:dev
git checkout dev scripts/release
- name: Publish to NPM
# --skipTests No need to run tests
# --skipReinstall Yarn install has already been run
# --ignoreUnstaged Adding the @firebase/app changeset file means
# there's unstaged changes. Ignore.
# TODO: Make these flags defaults in the release script.
run: yarn release --releaseType staging --skipTests --skipReinstall --ignoreUnstaged
run: yarn release --releaseType Staging --ci --skipTests --skipReinstall --ignoreUnstaged
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN_ANALYTICS: ${{secrets.NPM_TOKEN_ANALYTICS}}
NPM_TOKEN_ANALYTICS_INTEROP_TYPES: ${{secrets.NPM_TOKEN_ANALYTICS_INTEROP_TYPES}}
NPM_TOKEN_ANALYTICS_TYPES: ${{secrets.NPM_TOKEN_ANALYTICS_TYPES}}
Expand Down Expand Up @@ -111,11 +121,12 @@ jobs:
VERSION_SCRIPT="const pkg = require('./packages/firebase/package.json'); console.log(pkg.version);"
VERSION=`node -e "${VERSION_SCRIPT}"`
echo "::set-output name=STAGING_VERSION::$VERSION"
BASE_VERSION=$(echo ${{ steps.get-version.outputs.STAGING_VERSION }} | cut -d "-" -f 1)
BASE_VERSION=$(echo $VERSION | cut -d "-" -f 1)
echo "::set-output name=BASE_VERSION::$BASE_VERSION"
- name: Echo version in shell
- name: Echo versions in shell
run: |
echo "Staging release ${{ steps.get-version.outputs.STAGING_VERSION }}"
echo "Base version: ${{ steps.get-version.outputs.BASE_VERSION }}"
- name: Launch E2E tests workflow
# Trigger e2e-test.yml
run: |
Expand Down
8 changes: 4 additions & 4 deletions integration/compat-interop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"test:debug": "karma start --browsers Chrome --auto-watch"
},
"dependencies": {
"@firebase/app": "0.7.24",
"@firebase/app-compat": "0.1.25",
"@firebase/app": "0.7.25",
"@firebase/app-compat": "0.1.26",
"@firebase/analytics": "0.7.9",
"@firebase/analytics-compat": "0.1.10",
"@firebase/auth": "0.20.1",
"@firebase/auth-compat": "0.2.14",
"@firebase/auth": "0.20.2",
"@firebase/auth-compat": "0.2.15",
"@firebase/functions": "0.8.1",
"@firebase/functions-compat": "0.2.1",
"@firebase/messaging": "0.9.13",
Expand Down
2 changes: 1 addition & 1 deletion integration/firebase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test"
},
"devDependencies": {
"firebase": "9.8.1",
"firebase": "9.8.2",
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"chai": "4.3.6",
Expand Down
2 changes: 1 addition & 1 deletion integration/firestore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
},
"dependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"@firebase/firestore": "3.4.9"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion integration/messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:manual": "mocha --exit"
},
"devDependencies": {
"firebase": "9.8.1",
"firebase": "9.8.2",
"chai": "4.3.6",
"chromedriver": "98.0.1",
"express": "4.18.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@firebase/app-compat": "0.x"
},
"devDependencies": {
"@firebase/app-compat": "0.1.25",
"@firebase/app-compat": "0.1.26",
"rollup": "2.72.1",
"@rollup/plugin-json": "4.1.0",
"rollup-plugin-typescript2": "0.31.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"rollup": "2.72.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-check-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app-compat": "0.1.25",
"@firebase/app-compat": "0.1.26",
"rollup": "2.72.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/app-check/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"rollup": "2.72.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/app-compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @firebase/app-compat

## 0.1.26

### Patch Changes

- Updated dependencies []:
- @firebase/[email protected]

## 0.1.25

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/app-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebase/app-compat",
"version": "0.1.25",
"version": "0.1.26",
"description": "The primary entrypoint to the Firebase JS SDK",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"@firebase/util": "1.6.0",
"@firebase/logger": "0.3.2",
"@firebase/component": "0.5.14",
Expand Down
6 changes: 6 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @firebase/app

## 0.7.25

### Patch Changes

- Update SDK_VERSION.

## 0.7.24

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebase/app",
"version": "0.7.24",
"version": "0.7.25",
"description": "The primary entrypoint to the Firebase JS SDK",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/auth-compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @firebase/auth-compat

## 0.2.15

### Patch Changes

- [`a3e4941c0`](https://github.com/firebase/firebase-js-sdk/commit/a3e4941c07dd766fdf7ae02a510995b3781e597f) [#6295](https://github.com/firebase/firebase-js-sdk/pull/6295) - Fix auth scheme reconition in capacitor env

- Updated dependencies [[`a3e4941c0`](https://github.com/firebase/firebase-js-sdk/commit/a3e4941c07dd766fdf7ae02a510995b3781e597f)]:
- @firebase/[email protected]

## 0.2.14

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/auth-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebase/auth-compat",
"version": "0.2.14",
"version": "0.2.15",
"description": "FirebaseAuth compatibility package that uses API style compatible with Firebase@8 and prior versions",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"main": "dist/index.node.cjs.js",
Expand Down Expand Up @@ -43,7 +43,7 @@
"@firebase/app-compat": "0.x"
},
"dependencies": {
"@firebase/auth": "0.20.1",
"@firebase/auth": "0.20.2",
"@firebase/auth-types": "0.11.0",
"@firebase/component": "0.5.14",
"@firebase/util": "1.6.0",
Expand All @@ -53,7 +53,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app-compat": "0.1.25",
"@firebase/app-compat": "0.1.26",
"@rollup/plugin-json": "4.1.0",
"rollup": "2.72.1",
"rollup-plugin-replace": "2.2.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @firebase/auth

## 0.20.2

### Patch Changes

- [`a3e4941c0`](https://github.com/firebase/firebase-js-sdk/commit/a3e4941c07dd766fdf7ae02a510995b3781e597f) [#6295](https://github.com/firebase/firebase-js-sdk/pull/6295) - Add missing field to `firebase` claim in token result typing

## 0.20.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebase/auth",
"version": "0.20.1",
"version": "0.20.2",
"description": "The Firebase Authenticaton component of the Firebase JS SDK.",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"main": "dist/node/index.js",
Expand Down Expand Up @@ -86,7 +86,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-strip": "2.1.0",
"chromedriver": "98.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/database-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"tslib": "^2.1.0"
},
"devDependencies": {
"@firebase/app-compat": "0.1.25"
"@firebase/app-compat": "0.1.26"
},
"repository": {
"directory": "packages/database-compat",
Expand Down
2 changes: 1 addition & 1 deletion packages/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"tslib": "^2.1.0"
},
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"rollup": "2.72.1",
"rollup-plugin-typescript2": "0.31.2",
"typescript": "4.2.2"
Expand Down
10 changes: 10 additions & 0 deletions packages/firebase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# firebase

## 9.8.2

### Patch Changes

- Updated dependencies [[`a3e4941c0`](https://github.com/firebase/firebase-js-sdk/commit/a3e4941c07dd766fdf7ae02a510995b3781e597f), [`a3e4941c0`](https://github.com/firebase/firebase-js-sdk/commit/a3e4941c07dd766fdf7ae02a510995b3781e597f)]:
- @firebase/[email protected]
- @firebase/[email protected]
- @firebase/[email protected]
- @firebase/[email protected]

## 9.8.1

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/firebase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firebase",
"version": "9.8.1",
"version": "9.8.2",
"description": "Firebase JavaScript library for web and Node.js",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"license": "Apache-2.0",
Expand Down Expand Up @@ -219,11 +219,11 @@
"test:ci": "echo 'No test suite for firebase wrapper'"
},
"dependencies": {
"@firebase/app": "0.7.24",
"@firebase/app-compat": "0.1.25",
"@firebase/app": "0.7.25",
"@firebase/app-compat": "0.1.26",
"@firebase/app-types": "0.7.0",
"@firebase/auth": "0.20.1",
"@firebase/auth-compat": "0.2.14",
"@firebase/auth": "0.20.2",
"@firebase/auth-compat": "0.2.15",
"@firebase/database": "0.13.0",
"@firebase/database-compat": "0.2.0",
"@firebase/firestore": "3.4.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/firestore-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"tslib": "^2.1.0"
},
"devDependencies": {
"@firebase/app-compat": "0.1.25",
"@firebase/app-compat": "0.1.26",
"@types/eslint": "7.29.0",
"rollup": "2.72.1",
"rollup-plugin-sourcemaps": "0.6.3",
Expand Down
6 changes: 3 additions & 3 deletions packages/firestore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@
"@firebase/app": "0.x"
},
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app-compat": "0.1.25",
"@firebase/auth": "0.20.1",
"@firebase/app": "0.7.25",
"@firebase/app-compat": "0.1.26",
"@firebase/auth": "0.20.2",
"@rollup/plugin-alias": "3.1.9",
"@rollup/plugin-json": "4.1.0",
"@types/eslint": "7.29.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/functions-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@firebase/app-compat": "0.x"
},
"devDependencies": {
"@firebase/app-compat": "0.1.25",
"@firebase/app-compat": "0.1.26",
"rollup": "2.72.1",
"@rollup/plugin-json": "4.1.0",
"rollup-plugin-typescript2": "0.31.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@firebase/app": "0.x"
},
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"rollup": "2.72.1",
"@rollup/plugin-json": "4.1.0",
"rollup-plugin-typescript2": "0.31.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/installations-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"url": "https://github.com/firebase/firebase-js-sdk/issues"
},
"devDependencies": {
"@firebase/app-compat": "0.1.25",
"@firebase/app-compat": "0.1.26",
"rollup": "2.72.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/installations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"url": "https://github.com/firebase/firebase-js-sdk/issues"
},
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"rollup": "2.72.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/messaging-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"tslib": "^2.1.0"
},
"devDependencies": {
"@firebase/app-compat": "0.1.25",
"@firebase/app-compat": "0.1.26",
"@rollup/plugin-json": "4.1.0",
"rollup-plugin-typescript2": "0.31.2",
"ts-essentials": "9.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"tslib": "^2.1.0"
},
"devDependencies": {
"@firebase/app": "0.7.24",
"@firebase/app": "0.7.25",
"rollup": "2.72.1",
"rollup-plugin-typescript2": "0.31.2",
"@rollup/plugin-json": "4.1.0",
Expand Down
Loading