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.8.4
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.9.0
Choose a head ref

Commits on Jun 21, 2022

  1. Copy the full SHA
    e673dc8 View commit details

Commits on Jun 23, 2022

  1. [Auth] Update user agent detection to better detect iPad (#6379)

    * Update user agent detection to better detect iPad
    
    * Lint
    
    * Changeset
    sam-gc authored Jun 23, 2022
    Copy the full SHA
    8c52a96 View commit details
  2. Upload release tags on behalf of google-oss-bot. (#6380)

    There is another workflow [1] that listens to tag push events.
    
    However, that workflow is not being triggered by new tags
    currently, due to the GitHub Actions limitation that tag push
    commands (`git push <tag-name>`) initiated by GitHub Actions
    bot do not trigger other workflows [2].
    
    Switching to a personal GitHub account (in our case
    the `google-oss-bot`) should fix the problem.
    
    [1] https://github.com/firebase/firebase-js-sdk/blob/master/.github/workflows/health-metrics-release.yml
    [2] https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
    yifanyang authored Jun 23, 2022
    Copy the full SHA
    bf4959b View commit details
  3. Merge branch 'release'

    Release 9.8.4
    dwyfrequency committed Jun 23, 2022
    Copy the full SHA
    47b3455 View commit details
  4. Copy the full SHA
    b60cf76 View commit details
  5. Copy the full SHA
    d3336a9 View commit details

Commits on Jun 24, 2022

  1. Add function setDefaultEventParameters() to set data that will be log…

    …ged on every analytics SDK event (#6367)
    
    * Add initial design
    
    * Update API reports
    
    * Update to checking for wrappedGtagFunction
    
    * Add initialize test for gtag set
    
    * Add test for _setDefaultEventParametersForInit()
    
    * Update formating
    
    * Add tests for setDefaultEventParameters
    
    * remove extra new line
    
    * move defaultEventParametersForInit and funcs to functions file
    
    * Add changeset
    
    * Resolve PR comments
    
    * Capitalize Analytics in changeset
    
    * Remove quotes around Analytics in changeset
    
    * Update setDefaultEventParameters doc string
    dwyfrequency authored Jun 24, 2022
    Copy the full SHA
    69e2ee0 View commit details

Commits on Jun 27, 2022

  1. Copy the full SHA
    b12af44 View commit details
  2. Update dependency protobufjs to v6.11.3 [SECURITY] (#6328)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 27, 2022
    Copy the full SHA
    280c256 View commit details

Commits on Jun 28, 2022

  1. Copy the full SHA
    47fefc2 View commit details

Commits on Jun 29, 2022

  1. Add function setConsent() to set end user consent state for web apps …

    …in Firebase Analytics (#6376)
    
    * Add initial draft of setConsent logic
    
    * Update gtag wrappers to accommodate consent command
    
    * Update API reports
    
    * Add changeset
    
    * Update types, documentation and functionality
    
    * Update API reports
    
    * Update comments and rename type
    
    * Add tests and update public type docs.
    
    * Add back 'set' test
    
    * Update API reports
    
    * Add hyphen after param name in jsdoc
    dwyfrequency authored Jun 29, 2022
    Copy the full SHA
    1d3a34d View commit details

Commits on Jul 1, 2022

  1. Copy the full SHA
    7cad614 View commit details

Commits on Jul 6, 2022

  1. Copy the full SHA
    5edd81f View commit details
  2. Removed uuid as a dependency for @firebase/database (#6410)

    * Removed uuid as a dependency for database
    maneesht authored Jul 6, 2022
    Copy the full SHA
    c187446 View commit details

Commits on Jul 7, 2022

  1. Fix missing token error in GitHub Actions (#6409)

    Fixes issues where forked repositories had failing pipelines.
    maneesht authored Jul 7, 2022
    Copy the full SHA
    a6dc377 View commit details
  2. Copy the full SHA
    ad773fa View commit details
  3. Copy the full SHA
    1261d83 View commit details
  4. Fix options for RTDB on node (#6399)

    * Don't shadow options
    
    * Add changeset
    jsdt authored Jul 7, 2022
    Copy the full SHA
    6a8be13 View commit details
  5. Copy the full SHA
    1355008 View commit details
  6. Copy the full SHA
    26f1539 View commit details
  7. Version Packages (#6424)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    google-oss-bot and github-actions[bot] authored Jul 7, 2022
    Copy the full SHA
    39f4635 View commit details
Showing with 1,146 additions and 342 deletions.
  1. +2 −1 .github/CODEOWNERS
  2. +0 −15 .github/workflows/assign-tech-writers.yml
  3. +4 −1 .github/workflows/health-metrics-pull-request.yml
  4. +6 −1 .github/workflows/label-doc-changes.yml
  5. +1 −0 .github/workflows/release-pr.yml
  6. +1 −1 .github/workflows/release-prod.yml
  7. +4 −1 .github/workflows/test-all.yml
  8. +3 −1 .github/workflows/update-api-reports.yml
  9. +20 −0 common/api-review/analytics.api.md
  10. +4 −1 common/api-review/functions.api.md
  11. +5 −0 common/api-review/util.api.md
  12. +14 −14 integration/compat-interop/package.json
  13. +1 −1 integration/firebase/package.json
  14. +2 −2 integration/firestore/package.json
  15. +1 −1 integration/messaging/package.json
  16. +0 −1 package.json
  17. +9 −0 packages/analytics-compat/CHANGELOG.md
  18. +5 −5 packages/analytics-compat/package.json
  19. +15 −0 packages/analytics/CHANGELOG.md
  20. +5 −5 packages/analytics/package.json
  21. +61 −1 packages/analytics/src/api.test.ts
  22. +40 −2 packages/analytics/src/api.ts
  23. +2 −1 packages/analytics/src/constants.ts
  24. +48 −1 packages/analytics/src/functions.test.ts
  25. +37 −1 packages/analytics/src/functions.ts
  26. +22 −0 packages/analytics/src/helpers.test.ts
  27. +16 −5 packages/analytics/src/helpers.ts
  28. +49 −0 packages/analytics/src/initialize-analytics.test.ts
  29. +19 −0 packages/analytics/src/initialize-analytics.ts
  30. +33 −0 packages/analytics/src/public-types.ts
  31. +11 −1 packages/analytics/src/types.ts
  32. +9 −0 packages/app-check-compat/CHANGELOG.md
  33. +5 −5 packages/app-check-compat/package.json
  34. +8 −0 packages/app-check/CHANGELOG.md
  35. +4 −4 packages/app-check/package.json
  36. +9 −0 packages/app-compat/CHANGELOG.md
  37. +4 −4 packages/app-compat/package.json
  38. +8 −0 packages/app/CHANGELOG.md
  39. +3 −3 packages/app/package.json
  40. +9 −0 packages/auth-compat/CHANGELOG.md
  41. +5 −5 packages/auth-compat/package.json
  42. +12 −0 packages/auth/CHANGELOG.md
  43. +4 −4 packages/auth/package.json
  44. +87 −65 packages/auth/src/core/util/browser.test.ts
  45. +2 −1 packages/auth/src/core/util/browser.ts
  46. +7 −2 packages/auth/src/platform_browser/recaptcha/recaptcha_loader.ts
  47. +7 −0 packages/component/CHANGELOG.md
  48. +2 −2 packages/component/package.json
  49. +10 −0 packages/database-compat/CHANGELOG.md
  50. +6 −6 packages/database-compat/package.json
  51. +5 −3 packages/database-compat/test/query.test.ts
  52. +7 −0 packages/database-types/CHANGELOG.md
  53. +2 −2 packages/database-types/package.json
  54. +14 −0 packages/database/CHANGELOG.md
  55. +5 −6 packages/database/package.json
  56. +0 −17 packages/database/src/core/PersistentConnection.ts
  57. +1 −1 packages/database/src/realtime/WebSocketConnection.ts
  58. +29 −14 packages/database/test/exp/integration.test.ts
  59. +39 −0 packages/firebase/CHANGELOG.md
  60. +18 −0 packages/firebase/compat/installations/index.ts
  61. +7 −0 packages/firebase/compat/installations/package.json
  62. +1 −0 packages/firebase/compat/package.json
  63. +18 −0 packages/firebase/installations/index.ts
  64. +7 −0 packages/firebase/installations/package.json
  65. +43 −25 packages/firebase/package.json
  66. +9 −0 packages/firestore-compat/CHANGELOG.md
  67. +5 −5 packages/firestore-compat/package.json
  68. +10 −0 packages/firestore/CHANGELOG.md
  69. +10 −10 packages/firestore/package.json
  70. +9 −0 packages/functions-compat/CHANGELOG.md
  71. +5 −5 packages/functions-compat/package.json
  72. +15 −9 packages/functions-compat/src/callable.test.ts
  73. +10 −0 packages/functions/CHANGELOG.md
  74. +4 −4 packages/functions/package.json
  75. +2 −2 packages/functions/src/callable.test.ts
  76. +1 −1 packages/functions/src/error.ts
  77. +1 −0 packages/functions/src/index.ts
  78. +25 −18 packages/functions/src/public-types.ts
  79. +9 −0 packages/installations-compat/CHANGELOG.md
  80. +5 −5 packages/installations-compat/package.json
  81. +8 −0 packages/installations/CHANGELOG.md
  82. +4 −4 packages/installations/package.json
  83. +9 −0 packages/messaging-compat/CHANGELOG.md
  84. +5 −5 packages/messaging-compat/package.json
  85. +9 −0 packages/messaging/CHANGELOG.md
  86. +5 −5 packages/messaging/package.json
  87. +9 −0 packages/performance-compat/CHANGELOG.md
  88. +5 −5 packages/performance-compat/package.json
  89. +9 −0 packages/performance/CHANGELOG.md
  90. +5 −5 packages/performance/package.json
  91. +9 −0 packages/remote-config-compat/CHANGELOG.md
  92. +5 −5 packages/remote-config-compat/package.json
  93. +9 −0 packages/remote-config/CHANGELOG.md
  94. +5 −5 packages/remote-config/package.json
  95. +1 −1 packages/rules-unit-testing/src/util.ts
  96. +9 −0 packages/storage-compat/CHANGELOG.md
  97. +6 −6 packages/storage-compat/package.json
  98. +8 −0 packages/storage/CHANGELOG.md
  99. +5 −5 packages/storage/package.json
  100. +1 −1 packages/template/package.json
  101. +6 −0 packages/util/CHANGELOG.md
  102. +1 −0 packages/util/index.node.ts
  103. +1 −0 packages/util/index.ts
  104. +1 −1 packages/util/package.json
  105. +32 −0 packages/util/src/promise.ts
  106. +2 −2 repo-scripts/size-analysis/package.json
  107. +20 −1 yarn.lock
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
# - @lahirumaramba
# - @hsubox76
# - @allspain
# - @dwyfrequency


# ===========================================================
@@ -32,7 +33,7 @@


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

# Database Code
packages/database @maneesht @jsdt @firebase/jssdk-global-approvers
15 changes: 0 additions & 15 deletions .github/workflows/assign-tech-writers.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .github/workflows/health-metrics-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Health Metrics

on: [push, pull_request]
on:
push:
branches: ['**']
pull_request:

env:
GITHUB_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
7 changes: 6 additions & 1 deletion .github/workflows/label-doc-changes.yml
Original file line number Diff line number Diff line change
@@ -33,4 +33,9 @@ jobs:
if: ${{steps.check-doc-changes.outputs.DOC_CHANGED == 'true'}}
with:
labels: doc-changes
github_token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
github_token: ${{ github.token }}
- name: assign techwriters to PR
if: ${{steps.check-doc-changes.outputs.DOC_CHANGED == 'true'}}
uses: kentaro-m/auto-assign-action@v1.2.1
with:
configuration-path: ".github/auto_assign.yml"
1 change: 1 addition & 0 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ jobs:
release:
name: Create Release PR
runs-on: ubuntu-latest
if: ${{ !startsWith(github.event.head_commit.message, 'Version Packages (#') }}
steps:
- name: Checkout Repo
uses: actions/checkout@master
2 changes: 1 addition & 1 deletion .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ jobs:
# Release script requires git history and tags.
fetch-depth: 0
ref: release
token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
- name: Yarn install
run: yarn
- name: Publish to NPM
@@ -31,7 +32,6 @@ jobs:
# TODO: Make these flags defaults in the release script.
run: yarn release --releaseType Production --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}}
5 changes: 4 additions & 1 deletion .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test All Packages

on: push
on:
push:
branches: ['**']

env:
# make chromedriver detect installed Chrome version and download the corresponding driver
DETECT_CHROMEDRIVER_VERSION: true
4 changes: 3 additions & 1 deletion .github/workflows/update-api-reports.yml
Original file line number Diff line number Diff line change
@@ -7,13 +7,15 @@ jobs:
name: Update API reports
runs-on: ubuntu-latest

permissions:
contents: write
steps:
- name: Checkout Repo
uses: actions/checkout@master
with:
# checkout HEAD commit instead of merge commit
ref: ${{ github.event.pull_request.head.sha }}
token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
token: ${{ github.token }}
- name: Set up Node (14)
uses: actions/setup-node@v2
with:
20 changes: 20 additions & 0 deletions common/api-review/analytics.api.md
Original file line number Diff line number Diff line change
@@ -21,6 +21,20 @@ export interface AnalyticsSettings {
config?: GtagConfigParams | EventParams;
}

// @public
export interface ConsentSettings {
// (undocumented)
[key: string]: unknown;
ad_storage?: ConsentStatusString;
analytics_storage?: ConsentStatusString;
functionality_storage?: ConsentStatusString;
personalization_storage?: ConsentStatusString;
security_storage?: ConsentStatusString;
}

// @public
export type ConsentStatusString = 'granted' | 'denied';

// @public
export interface ControlParams {
// (undocumented)
@@ -388,9 +402,15 @@ export interface Promotion {
// @public
export function setAnalyticsCollectionEnabled(analyticsInstance: Analytics, enabled: boolean): void;

// @public
export function setConsent(consentSettings: ConsentSettings): void;

// @public @deprecated
export function setCurrentScreen(analyticsInstance: Analytics, screenName: string, options?: AnalyticsCallOptions): void;

// @public
export function setDefaultEventParameters(customParams: CustomParams): void;

// @public
export function settings(options: SettingsOptions): void;

5 changes: 4 additions & 1 deletion common/api-review/functions.api.md
Original file line number Diff line number Diff line change
@@ -24,7 +24,10 @@ export interface FunctionsError extends FirebaseError {
}

// @public
export type FunctionsErrorCode = 'ok' | 'cancelled' | 'unknown' | 'invalid-argument' | 'deadline-exceeded' | 'not-found' | 'already-exists' | 'permission-denied' | 'resource-exhausted' | 'failed-precondition' | 'aborted' | 'out-of-range' | 'unimplemented' | 'internal' | 'unavailable' | 'data-loss' | 'unauthenticated';
export type FunctionsErrorCode = `functions/${FunctionsErrorCodeCore}`;

// @public
export type FunctionsErrorCodeCore = 'ok' | 'cancelled' | 'unknown' | 'invalid-argument' | 'deadline-exceeded' | 'not-found' | 'already-exists' | 'permission-denied' | 'resource-exhausted' | 'failed-precondition' | 'aborted' | 'out-of-range' | 'unimplemented' | 'internal' | 'unavailable' | 'data-loss' | 'unauthenticated';

// @public
export function getFunctions(app?: FirebaseApp, regionOrCustomDomain?: string): Functions;
5 changes: 5 additions & 0 deletions common/api-review/util.api.md
Original file line number Diff line number Diff line change
@@ -346,6 +346,11 @@ export function ordinal(i: number): string;
// @public (undocumented)
export type PartialObserver<T> = Partial<Observer<T>>;

// Warning: (ae-internal-missing-underscore) The name "promiseWithTimeout" should be prefixed with an underscore because the declaration is marked as @internal
//
// @internal
export function promiseWithTimeout<T>(promise: Promise<T>, timeInMS?: number): Promise<T>;

// Warning: (ae-missing-release-tag) "querystring" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
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.27",
"@firebase/app-compat": "0.1.28",
"@firebase/analytics": "0.7.11",
"@firebase/analytics-compat": "0.1.12",
"@firebase/auth": "0.20.4",
"@firebase/auth-compat": "0.2.17",
"@firebase/functions": "0.8.3",
"@firebase/functions-compat": "0.2.3",
"@firebase/messaging": "0.9.15",
"@firebase/messaging-compat": "0.1.15",
"@firebase/performance": "0.5.11",
"@firebase/performance-compat": "0.1.11",
"@firebase/remote-config": "0.3.10",
"@firebase/remote-config-compat": "0.1.11"
"@firebase/app": "0.7.28",
"@firebase/app-compat": "0.1.29",
"@firebase/analytics": "0.8.0",
"@firebase/analytics-compat": "0.1.13",
"@firebase/auth": "0.20.5",
"@firebase/auth-compat": "0.2.18",
"@firebase/functions": "0.8.4",
"@firebase/functions-compat": "0.2.4",
"@firebase/messaging": "0.9.16",
"@firebase/messaging-compat": "0.1.16",
"@firebase/performance": "0.5.12",
"@firebase/performance-compat": "0.1.12",
"@firebase/remote-config": "0.3.11",
"@firebase/remote-config-compat": "0.1.12"
},
"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.8.4",
"firebase": "9.9.0",
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"chai": "4.3.6",
4 changes: 2 additions & 2 deletions integration/firestore/package.json
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
},
"dependencies": {
"@firebase/app": "0.7.27",
"@firebase/firestore": "3.4.11"
"@firebase/app": "0.7.28",
"@firebase/firestore": "3.4.12"
},
"devDependencies": {
"@types/mocha": "9.1.1",
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.8.4",
"firebase": "9.9.0",
"chai": "4.3.6",
"chromedriver": "98.0.1",
"express": "4.18.1",
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -136,7 +136,6 @@
"mocha": "9.2.2",
"mz": "2.7.0",
"npm-run-all": "4.1.5",
"npm-run-path": "4.0.1",
"nyc": "15.1.0",
"ora": "5.4.1",
"prettier": "2.6.2",
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.13

### Patch Changes

- Updated dependencies [[`b12af44a5`](https://github.com/firebase/firebase-js-sdk/commit/b12af44a5c7500e1192d6cc1a4afc4d77efadbaf), [`1d3a34d7d`](https://github.com/firebase/firebase-js-sdk/commit/1d3a34d7da5bf3c267d014efb587e03c46ff3064), [`69e2ee064`](https://github.com/firebase/firebase-js-sdk/commit/69e2ee064e0729d8da823f1e60f6fb7f3bbe5700)]:
- @firebase/util@1.6.3
- @firebase/analytics@0.8.0
- @firebase/component@0.5.17

## 0.1.12

### 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.12",
"version": "0.1.13",
"description": "",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
@@ -24,7 +24,7 @@
"@firebase/app-compat": "0.x"
},
"devDependencies": {
"@firebase/app-compat": "0.1.28",
"@firebase/app-compat": "0.1.29",
"rollup": "2.72.1",
"@rollup/plugin-json": "4.1.0",
"rollup-plugin-typescript2": "0.31.2",
@@ -53,10 +53,10 @@
},
"typings": "dist/src/index.d.ts",
"dependencies": {
"@firebase/component": "0.5.16",
"@firebase/analytics": "0.7.11",
"@firebase/component": "0.5.17",
"@firebase/analytics": "0.8.0",
"@firebase/analytics-types": "0.7.0",
"@firebase/util": "1.6.2",
"@firebase/util": "1.6.3",
"tslib": "^2.1.0"
},
"nyc": {
15 changes: 15 additions & 0 deletions packages/analytics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @firebase/analytics

## 0.8.0

### Minor Changes

- [`1d3a34d7d`](https://github.com/firebase/firebase-js-sdk/commit/1d3a34d7da5bf3c267d014efb587e03c46ff3064) [#6376](https://github.com/firebase/firebase-js-sdk/pull/6376) - Add function `setConsent()` to set the applicable end user "consent" state.

* [`69e2ee064`](https://github.com/firebase/firebase-js-sdk/commit/69e2ee064e0729d8da823f1e60f6fb7f3bbe5700) [#6367](https://github.com/firebase/firebase-js-sdk/pull/6367) - Add function `setDefaultEventParameters()` to set data that will be logged on every Analytics SDK event

### Patch Changes

- Updated dependencies [[`b12af44a5`](https://github.com/firebase/firebase-js-sdk/commit/b12af44a5c7500e1192d6cc1a4afc4d77efadbaf)]:
- @firebase/util@1.6.3
- @firebase/component@0.5.17
- @firebase/installations@0.5.12

## 0.7.11

### 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.11",
"version": "0.8.0",
"description": "A analytics package for new firebase packages",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
@@ -40,15 +40,15 @@
"@firebase/app": "0.x"
},
"dependencies": {
"@firebase/installations": "0.5.11",
"@firebase/installations": "0.5.12",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.6.2",
"@firebase/component": "0.5.16",
"@firebase/util": "1.6.3",
"@firebase/component": "0.5.17",
"tslib": "^2.1.0"
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.27",
"@firebase/app": "0.7.28",
"rollup": "2.72.1",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-json": "4.1.0",
Loading