Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: firebase/firebase-js-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: firebase@9.6.1
Choose a base ref
...
head repository: firebase/firebase-js-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: firebase@9.6.2
Choose a head ref
  • 18 commits
  • 100 files changed
  • 7 contributors

Commits on Dec 10, 2021

  1. [Auth] Fix persistence selection in compatibility layer in worker scr…

    …ipts (#5811)
    
    * Fix persistence selection in compatability layer in worker scripts
    
    * Add changeset
    sam-gc authored Dec 10, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e3a5248 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    774b2fc View commit details
  3. Merge branch 'release'

    Release 9.6.1
    hsubox76 committed Dec 10, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a185b14 View commit details

Commits on Dec 14, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    31db4b7 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0db840a View commit details

Commits on Dec 17, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8d415c6 View commit details

Commits on Dec 20, 2021

  1. Update bug_report.md (#5819)

    Add reduced capacity message for holiday weeks.
    hsubox76 authored Dec 20, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9295bb0 View commit details

Commits on Dec 21, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9ca74ee View commit details

Commits on Dec 22, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c2fff0c View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4c042b2 View commit details

Commits on Dec 23, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3d8109c View commit details

Commits on Jan 4, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3b481f5 View commit details
  2. Copy the full SHA
    1ef1341 View commit details
  3. Copy the full SHA
    4f3662b View commit details
  4. Copy the full SHA
    be7ccb8 View commit details
  5. Copy the full SHA
    7f05d22 View commit details
  6. Copy the full SHA
    0b385f1 View commit details

Commits on Jan 7, 2022

  1. Version Packages (#5859)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    google-oss-bot and github-actions[bot] authored Jan 7, 2022
    Copy the full SHA
    0d10a7b View commit details
Showing with 1,833 additions and 347 deletions.
  1. +8 −8 .github/CODEOWNERS
  2. +56 −54 .github/workflows/e2e-test.yml
  3. +3 −1 .github/workflows/release-log.yml
  4. +2 −2 common/api-review/firestore-lite.api.md
  5. +2 −2 common/api-review/firestore.api.md
  6. +14 −14 integration/compat-interop/package.json
  7. +1 −1 integration/firebase/package.json
  8. +2 −2 integration/firestore/package.json
  9. +1 −1 integration/messaging/package.json
  10. +9 −0 packages/analytics-compat/CHANGELOG.md
  11. +5 −5 packages/analytics-compat/package.json
  12. +9 −0 packages/analytics/CHANGELOG.md
  13. +5 −5 packages/analytics/package.json
  14. +9 −0 packages/app-check-compat/CHANGELOG.md
  15. +5 −5 packages/app-check-compat/package.json
  16. +8 −0 packages/app-check/CHANGELOG.md
  17. +4 −4 packages/app-check/package.json
  18. +9 −0 packages/app-compat/CHANGELOG.md
  19. +4 −4 packages/app-compat/package.json
  20. +8 −0 packages/app/CHANGELOG.md
  21. +3 −3 packages/app/package.json
  22. +11 −0 packages/auth-compat/CHANGELOG.md
  23. +5 −5 packages/auth-compat/package.json
  24. +39 −21 packages/auth-compat/src/auth.ts
  25. +10 −0 packages/auth/CHANGELOG.md
  26. +4 −4 packages/auth/package.json
  27. +7 −0 packages/component/CHANGELOG.md
  28. +2 −2 packages/component/package.json
  29. +10 −0 packages/database-compat/CHANGELOG.md
  30. +6 −6 packages/database-compat/package.json
  31. +7 −0 packages/database-types/CHANGELOG.md
  32. +2 −2 packages/database-types/package.json
  33. +8 −0 packages/database/CHANGELOG.md
  34. +4 −4 packages/database/package.json
  35. +30 −0 packages/firebase/CHANGELOG.md
  36. +25 −25 packages/firebase/package.json
  37. +9 −0 packages/firestore-compat/CHANGELOG.md
  38. +5 −5 packages/firestore-compat/package.json
  39. +12 −0 packages/firestore/CHANGELOG.md
  40. +6 −6 packages/firestore/package.json
  41. +28 −0 packages/firestore/src/index/directional_index_byte_encoder.ts
  42. +196 −0 packages/firestore/src/index/firestore_index_value_writer.ts
  43. +83 −0 packages/firestore/src/index/index_byte_encoder.ts
  44. +329 −0 packages/firestore/src/index/ordered_code_writer.ts
  45. +4 −2 packages/firestore/src/lite-api/reference.ts
  46. +5 −0 packages/firestore/src/lite-api/reference_impl.ts
  47. +4 −0 packages/firestore/src/lite-api/transaction.ts
  48. +3 −0 packages/firestore/src/lite-api/write_batch.ts
  49. +5 −1 packages/firestore/src/local/indexeddb_remote_document_cache.ts
  50. +26 −21 packages/firestore/src/local/local_store_impl.ts
  51. +7 −6 packages/firestore/src/local/memory_remote_document_cache.ts
  52. +0 −4 packages/firestore/src/model/collections.ts
  53. +4 −1 packages/firestore/src/model/document.ts
  54. +21 −0 packages/firestore/src/model/values.ts
  55. +13 −0 packages/firestore/src/util/byte_string.ts
  56. +4 −5 packages/firestore/src/util/error.ts
  57. +3 −3 packages/firestore/test/unit/generate_spec_json.sh
  58. +256 −0 packages/firestore/test/unit/index/ordered_code_writer.test.ts
  59. +73 −1 packages/firestore/test/unit/local/local_store.test.ts
  60. +1 −1 packages/firestore/test/unit/model/mutation.test.ts
  61. +29 −0 packages/firestore/test/unit/specs/existence_filter_spec.test.ts
  62. +18 −0 packages/firestore/test/util/helpers.ts
  63. +9 −0 packages/functions-compat/CHANGELOG.md
  64. +5 −5 packages/functions-compat/package.json
  65. +8 −0 packages/functions/CHANGELOG.md
  66. +4 −4 packages/functions/package.json
  67. +9 −0 packages/installations-compat/CHANGELOG.md
  68. +5 −5 packages/installations-compat/package.json
  69. +8 −0 packages/installations/CHANGELOG.md
  70. +4 −4 packages/installations/package.json
  71. +9 −0 packages/messaging-compat/CHANGELOG.md
  72. +5 −5 packages/messaging-compat/package.json
  73. +9 −0 packages/messaging/CHANGELOG.md
  74. +5 −5 packages/messaging/package.json
  75. +9 −0 packages/performance-compat/CHANGELOG.md
  76. +5 −5 packages/performance-compat/package.json
  77. +9 −0 packages/performance/CHANGELOG.md
  78. +5 −5 packages/performance/package.json
  79. +9 −0 packages/remote-config-compat/CHANGELOG.md
  80. +5 −5 packages/remote-config-compat/package.json
  81. +9 −0 packages/remote-config/CHANGELOG.md
  82. +5 −5 packages/remote-config/package.json
  83. +9 −0 packages/storage-compat/CHANGELOG.md
  84. +6 −6 packages/storage-compat/package.json
  85. +10 −0 packages/storage/CHANGELOG.md
  86. +5 −5 packages/storage/package.json
  87. +3 −1 packages/storage/src/implementation/error.ts
  88. +1 −1 packages/template/package.json
  89. +6 −0 packages/util/CHANGELOG.md
  90. +1 −1 packages/util/package.json
  91. +3 −0 packages/util/src/errors.ts
  92. +19 −0 repo-scripts/prune-dts/.run/AllTests.run.xml
  93. +1 −1 repo-scripts/prune-dts/extract-public-api.ts
  94. +8 −4 repo-scripts/prune-dts/prune-dts.ts
  95. +23 −0 repo-scripts/prune-dts/tests/error.input.d.ts
  96. +21 −0 repo-scripts/prune-dts/tests/error.output.d.ts
  97. +38 −14 repo-scripts/size-analysis/README.md
  98. +2 −2 repo-scripts/size-analysis/package.json
  99. +10 −9 scripts/ci/log-changesets.js
  100. +50 −19 scripts/ci/notify-test-result.js
16 changes: 8 additions & 8 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@


# These owners will be the default owners for everything in the repo.
* @Feiyang1 @hiranya911 @hsubox76 @firebase/jssdk-global-approvers
* @allspain @hsubox76 @firebase/jssdk-global-approvers

# Database Code
packages/database @schmidt-sebastian @jsdt @firebase/jssdk-global-approvers
@@ -79,20 +79,20 @@ packages/performance-compat @jposuna @firebase/jssdk-global-approvers
packages/performance-types @jposuna @firebase/jssdk-global-approvers

# Analytics Code
packages/analytics @hsubox76 @Feiyang1 @firebase/jssdk-global-approvers
packages/analytics-compat @hsubox76 @Feiyang1 @firebase/jssdk-global-approvers
packages/analytics-types @hsubox76 @Feiyang1 @firebase/jssdk-global-approvers
packages/analytics @hsubox76 @firebase/jssdk-global-approvers
packages/analytics-compat @hsubox76 @firebase/jssdk-global-approvers
packages/analytics-types @hsubox76 @firebase/jssdk-global-approvers

# Remote Config Code
packages/remote-config @erikeldridge @firebase/jssdk-global-approvers
packages/remote-config-compat @erikeldridge @firebase/jssdk-global-approvers
packages/remote-config-types @erikeldridge @firebase/jssdk-global-approvers

# App Check Code
packages/app-check @hsubox76 @Feiyang1 @firebase/jssdk-global-approvers
packages/app-check-compat @hsubox76 @Feiyang1 @firebase/jssdk-global-approvers
packages/app-check-types @hsubox76 @Feiyang1 @firebase/jssdk-global-approvers
packages/app-check-interop-types @hsubox76 @Feiyang1 @firebase/jssdk-global-approvers
packages/app-check @hsubox76 @firebase/jssdk-global-approvers
packages/app-check-compat @hsubox76 @firebase/jssdk-global-approvers
packages/app-check-types @hsubox76 @firebase/jssdk-global-approvers
packages/app-check-interop-types @hsubox76 @firebase/jssdk-global-approvers

# Documentation Changes
packages/firebase/index.d.ts @egilmorez @firebase/jssdk-global-approvers
110 changes: 56 additions & 54 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
@@ -19,57 +19,59 @@ jobs:
working-directory: './e2e'

steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Set up Node (12)
uses: actions/setup-node@v2
with:
node-version: 12.x
- name: install Chrome stable
run: |
sudo apt-get update
sudo apt-get install google-chrome-stable
- name: Bump Node memory limit
run: echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
- name: Write project config
env:
PROJECT_CONFIG: ${{ secrets.TEST_PROJECT_CONFIG }}
TEST_ACCOUNT: ${{ secrets.TEST_ACCOUNT }}
run: |
echo "export const config = $PROJECT_CONFIG; export const testAccount = $TEST_ACCOUNT" > firebase-config.js
- name: Yarn install
run: |
echo "Installing firebase@${{ github.event.inputs.versionOrTag }}"
yarn add firebase@${{ github.event.inputs.versionOrTag }}
yarn
- name: Deploy "callTest" cloud function
run: |
pushd functions
npm install
popd
npx firebase-tools deploy --only functions:callTest --project jscore-sandbox-141b5 --token $FIREBASE_CLI_TOKEN
working-directory: ./config
env:
FIREBASE_CLI_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }}
- name: Run modular tests
env:
APP_CHECK_DEBUG_TOKEN: ${{ secrets.APP_CHECK_DEBUG_TOKEN }}
run: xvfb-run yarn test:modular
- name: Run compat tests
env:
APP_CHECK_DEBUG_TOKEN: ${{ secrets.APP_CHECK_DEBUG_TOKEN }}
run: xvfb-run yarn test:compat
- name: Tests succeeded
if: success()
run: node scripts/ci/notify-test-result.js success
env:
WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
# run in root
working-directory: '.'
- name: Tests failed
if: failure()
run: node scripts/ci/notify-test-result.js fail
env:
WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
# run in root
working-directory: '.'
- name: Checkout Repo
uses: actions/checkout@master
- name: Set up Node (12)
uses: actions/setup-node@v2
with:
node-version: 12.x
- name: install Chrome stable
run: |
sudo apt-get update
sudo apt-get install google-chrome-stable
- name: Bump Node memory limit
run: echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
- name: Write project config
env:
PROJECT_CONFIG: ${{ secrets.TEST_PROJECT_CONFIG }}
TEST_ACCOUNT: ${{ secrets.TEST_ACCOUNT }}
run: |
echo "export const config = $PROJECT_CONFIG; export const testAccount = $TEST_ACCOUNT" > firebase-config.js
- name: Yarn install
run: |
echo "Installing firebase@${{ github.event.inputs.versionOrTag }}"
yarn add firebase@${{ github.event.inputs.versionOrTag }}
yarn
- name: Deploy "callTest" cloud function
run: |
pushd functions
npm install
popd
npx firebase-tools deploy --only functions:callTest --project jscore-sandbox-141b5 --token $FIREBASE_CLI_TOKEN
working-directory: ./config
env:
FIREBASE_CLI_TOKEN: ${{ secrets.FIREBASE_CLI_TOKEN }}
- name: Run modular tests
env:
APP_CHECK_DEBUG_TOKEN: ${{ secrets.APP_CHECK_DEBUG_TOKEN }}
run: xvfb-run yarn test:modular
- name: Run compat tests
env:
APP_CHECK_DEBUG_TOKEN: ${{ secrets.APP_CHECK_DEBUG_TOKEN }}
run: xvfb-run yarn test:compat
- name: Tests succeeded
if: success()
run: node scripts/ci/notify-test-result.js success
env:
WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
RELEASE_TRACKER_URL: ${{ secrets.RELEASE_TRACKER_URL }}
# run in root
working-directory: '.'
- name: Tests failed
if: failure()
run: node scripts/ci/notify-test-result.js fail
env:
WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
RELEASE_TRACKER_URL: ${{ secrets.RELEASE_TRACKER_URL }}
# run in root
working-directory: '.'
4 changes: 3 additions & 1 deletion .github/workflows/release-log.yml
Original file line number Diff line number Diff line change
@@ -20,4 +20,6 @@ jobs:
node-version: 14.x

- name: Get PR number and send to tracker.
run: node scripts/ci/log-changesets.js
run: node scripts/ci/log-changesets.js
env:
RELEASE_TRACKER_URL: ${{ secrets.RELEASE_TRACKER_URL }}
4 changes: 2 additions & 2 deletions common/api-review/firestore-lite.api.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@

import { EmulatorMockTokenOptions } from '@firebase/util';
import { FirebaseApp } from '@firebase/app';
import { FirebaseError } from '@firebase/util';
import { LogLevelString as LogLevel } from '@firebase/logger';

// @public
@@ -147,10 +148,9 @@ export interface FirestoreDataConverter<T> {
}

// @public
export class FirestoreError extends Error {
export class FirestoreError extends FirebaseError {
readonly code: FirestoreErrorCode;
readonly message: string;
readonly name: string;
readonly stack?: string;
}

4 changes: 2 additions & 2 deletions common/api-review/firestore.api.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@

import { EmulatorMockTokenOptions } from '@firebase/util';
import { FirebaseApp } from '@firebase/app';
import { FirebaseError } from '@firebase/util';
import { LogLevelString as LogLevel } from '@firebase/logger';

// @public
@@ -177,10 +178,9 @@ export interface FirestoreDataConverter<T> {
}

// @public
export class FirestoreError extends Error {
export class FirestoreError extends FirebaseError {
readonly code: FirestoreErrorCode;
readonly message: string;
readonly name: string;
readonly stack?: string;
}

28 changes: 14 additions & 14 deletions integration/compat-interop/package.json
Original file line number Diff line number Diff line change
@@ -8,20 +8,20 @@
"test:debug": "karma start --browsers Chrome --auto-watch"
},
"dependencies": {
"@firebase/app": "0.7.11",
"@firebase/app-compat": "0.1.12",
"@firebase/analytics": "0.7.4",
"@firebase/analytics-compat": "0.1.5",
"@firebase/auth": "0.19.4",
"@firebase/auth-compat": "0.2.4",
"@firebase/functions": "0.7.6",
"@firebase/functions-compat": "0.1.7",
"@firebase/messaging": "0.9.4",
"@firebase/messaging-compat": "0.1.4",
"@firebase/performance": "0.5.4",
"@firebase/performance-compat": "0.1.4",
"@firebase/remote-config": "0.3.3",
"@firebase/remote-config-compat": "0.1.4"
"@firebase/app": "0.7.12",
"@firebase/app-compat": "0.1.13",
"@firebase/analytics": "0.7.5",
"@firebase/analytics-compat": "0.1.6",
"@firebase/auth": "0.19.5",
"@firebase/auth-compat": "0.2.5",
"@firebase/functions": "0.7.7",
"@firebase/functions-compat": "0.1.8",
"@firebase/messaging": "0.9.5",
"@firebase/messaging-compat": "0.1.5",
"@firebase/performance": "0.5.5",
"@firebase/performance-compat": "0.1.5",
"@firebase/remote-config": "0.3.4",
"@firebase/remote-config-compat": "0.1.5"
},
"devDependencies": {
"typescript": "4.2.2"
2 changes: 1 addition & 1 deletion integration/firebase/package.json
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test"
},
"devDependencies": {
"firebase": "9.6.1",
"firebase": "9.6.2",
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"chai": "4.3.4",
4 changes: 2 additions & 2 deletions integration/firestore/package.json
Original file line number Diff line number Diff line change
@@ -14,8 +14,8 @@
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
},
"devDependencies": {
"@firebase/app": "0.7.11",
"@firebase/firestore-compat": "0.1.10",
"@firebase/app": "0.7.12",
"@firebase/firestore-compat": "0.1.11",
"@types/mocha": "9.0.0",
"gulp": "4.0.2",
"gulp-filter": "7.0.0",
2 changes: 1 addition & 1 deletion integration/messaging/package.json
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
"test:manual": "mocha --exit"
},
"devDependencies": {
"firebase": "9.6.1",
"firebase": "9.6.2",
"chai": "4.3.4",
"chromedriver": "94.0.0",
"express": "4.17.1",
9 changes: 9 additions & 0 deletions packages/analytics-compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @firebase/analytics-compat

## 0.1.6

### Patch Changes

- Updated dependencies [[`3b481f572`](https://github.com/firebase/firebase-js-sdk/commit/3b481f572456e1eab3435bfc25717770d95a8c49)]:
- @firebase/util@1.4.3
- @firebase/analytics@0.7.5
- @firebase/component@0.5.10

## 0.1.5

### Patch Changes
10 changes: 5 additions & 5 deletions packages/analytics-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebase/analytics-compat",
"version": "0.1.5",
"version": "0.1.6",
"description": "",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
@@ -23,7 +23,7 @@
"@firebase/app-compat": "0.x"
},
"devDependencies": {
"@firebase/app-compat": "0.1.12",
"@firebase/app-compat": "0.1.13",
"rollup": "2.57.0",
"@rollup/plugin-json": "4.1.0",
"rollup-plugin-typescript2": "0.30.0",
@@ -52,10 +52,10 @@
},
"typings": "dist/src/index.d.ts",
"dependencies": {
"@firebase/component": "0.5.9",
"@firebase/analytics": "0.7.4",
"@firebase/component": "0.5.10",
"@firebase/analytics": "0.7.5",
"@firebase/analytics-types": "0.7.0",
"@firebase/util": "1.4.2",
"@firebase/util": "1.4.3",
"tslib": "^2.1.0"
},
"nyc": {
9 changes: 9 additions & 0 deletions packages/analytics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @firebase/analytics

## 0.7.5

### Patch Changes

- Updated dependencies [[`3b481f572`](https://github.com/firebase/firebase-js-sdk/commit/3b481f572456e1eab3435bfc25717770d95a8c49)]:
- @firebase/util@1.4.3
- @firebase/component@0.5.10
- @firebase/installations@0.5.5

## 0.7.4

### Patch Changes
10 changes: 5 additions & 5 deletions packages/analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebase/analytics",
"version": "0.7.4",
"version": "0.7.5",
"description": "A analytics package for new firebase packages",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
@@ -39,15 +39,15 @@
"@firebase/app": "0.x"
},
"dependencies": {
"@firebase/installations": "0.5.4",
"@firebase/installations": "0.5.5",
"@firebase/logger": "0.3.2",
"@firebase/util": "1.4.2",
"@firebase/component": "0.5.9",
"@firebase/util": "1.4.3",
"@firebase/component": "0.5.10",
"tslib": "^2.1.0"
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.11",
"@firebase/app": "0.7.12",
"rollup": "2.57.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-json": "4.1.0",
9 changes: 9 additions & 0 deletions packages/app-check-compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @firebase/app-check-compat

## 0.2.3

### Patch Changes

- Updated dependencies [[`3b481f572`](https://github.com/firebase/firebase-js-sdk/commit/3b481f572456e1eab3435bfc25717770d95a8c49)]:
- @firebase/util@1.4.3
- @firebase/app-check@0.5.3
- @firebase/component@0.5.10

## 0.2.2

### Patch Changes
10 changes: 5 additions & 5 deletions packages/app-check-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebase/app-check-compat",
"version": "0.2.2",
"version": "0.2.3",
"description": "A compat App Check package for new firebase packages",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
@@ -34,15 +34,15 @@
"@firebase/app-compat": "0.x"
},
"dependencies": {
"@firebase/app-check": "0.5.2",
"@firebase/app-check": "0.5.3",
"@firebase/logger": "0.3.2",
"@firebase/util": "1.4.2",
"@firebase/component": "0.5.9",
"@firebase/util": "1.4.3",
"@firebase/component": "0.5.10",
"tslib": "^2.1.0"
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app-compat": "0.1.12",
"@firebase/app-compat": "0.1.13",
"rollup": "2.57.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-json": "4.1.0",
Loading