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.2
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.3
Choose a head ref
  • 14 commits
  • 135 files changed
  • 8 contributors

Commits on Jan 7, 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
    26b197f 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
    f873ad4 View commit details

Commits on Jan 10, 2022

  1. Merge branch 'release'

    Release 9.6.2
    hsubox76 committed Jan 10, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dd764b0 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
    b5084fb View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    044a8d7 View commit details
  4. Update dependency lodash to v4.17.21 [SECURITY] (#5876)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jan 10, 2022

    Verified

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

Commits on Jan 11, 2022

  1. Update dependency http-server to v14 (#5651)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jan 11, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e0f23d6 View commit details
  2. Add a header comment to devsite md files. (#5865)

    * Add a header comment to devsite md files.
    
    * formatting
    hsubox76 authored Jan 11, 2022

    Verified

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

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

Commits on Jan 12, 2022

  1. Fix message id parsing (#5881)

    * Fix message id parsing
    * Create unlucky-bottles-wait.md (Changeset)
    zwu52 authored Jan 12, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3c20727 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
    3105541 View commit details

Commits on Jan 13, 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
    ff2f7d4 View commit details
  2. Copy the full SHA
    88d43ec View commit details
  3. Version Packages (#5882)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    google-oss-bot and github-actions[bot] authored Jan 13, 2022
    Copy the full SHA
    daa666b View commit details
Showing with 14,891 additions and 3,317 deletions.
  1. +4 −4 integration/compat-interop/package.json
  2. +1 −1 integration/firebase/package.json
  3. +12 −35 integration/firestore/firebase_export.ts
  4. +10 −17 integration/firestore/gulpfile.js
  5. +5 −2 integration/firestore/package.json
  6. +1 −1 integration/messaging/package.json
  7. +2 −2 package.json
  8. +1 −1 packages/analytics-compat/package.json
  9. +1 −1 packages/analytics/package.json
  10. +1 −1 packages/app-check-compat/package.json
  11. +1 −1 packages/app-check/package.json
  12. +7 −0 packages/app-compat/CHANGELOG.md
  13. +2 −2 packages/app-compat/package.json
  14. +6 −0 packages/app/CHANGELOG.md
  15. +1 −1 packages/app/package.json
  16. +1 −1 packages/auth-compat/package.json
  17. +1 −1 packages/auth/package.json
  18. +2 −2 packages/auth/src/core/strategies/email_link.ts
  19. +1 −1 packages/database-compat/package.json
  20. +1 −1 packages/database/package.json
  21. +12 −0 packages/firebase/CHANGELOG.md
  22. +7 −7 packages/firebase/package.json
  23. +18 −0 packages/firestore-compat/.idea/runConfigurations/Integration_Tests__Emulator_.xml
  24. +7 −0 packages/firestore-compat/CHANGELOG.md
  25. +18 −0 packages/firestore-compat/babel-register.js
  26. +7 −0 packages/firestore-compat/babel.config.json
  27. +3 −17 packages/firestore-compat/karma.conf.js
  28. +10 −6 packages/firestore-compat/package.json
  29. +240 −0 packages/firestore-compat/test/array_transforms.test.ts
  30. +378 −0 packages/firestore-compat/test/batch_writes.test.ts
  31. +31 −0 packages/firestore-compat/test/bootstrap.ts
  32. +252 −0 packages/firestore-compat/test/bundle.test.ts
  33. +312 −0 packages/firestore-compat/test/cursor.test.ts
  34. +1,690 −0 packages/firestore-compat/test/database.test.ts
  35. +453 −0 packages/firestore-compat/test/fields.test.ts
  36. +606 −0 packages/firestore-compat/test/get_options.test.ts
  37. +224 −0 packages/firestore-compat/test/numeric_transforms.test.ts
  38. +1,216 −0 packages/firestore-compat/test/query.test.ts
  39. +299 −0 packages/firestore-compat/test/server_timestamp.test.ts
  40. +169 −0 packages/firestore-compat/test/smoke.test.ts
  41. +663 −0 packages/firestore-compat/test/transactions.test.ts
  42. +171 −0 packages/firestore-compat/test/type.test.ts
  43. +177 −0 packages/firestore-compat/test/util/equality_matcher.ts
  44. +117 −0 packages/firestore-compat/test/util/events_accumulator.ts
  45. +82 −0 packages/firestore-compat/test/util/firebase_export.ts
  46. +276 −0 packages/firestore-compat/test/util/helpers.ts
  47. +38 −0 packages/firestore-compat/test/util/promise.ts
  48. +62 −0 packages/firestore-compat/test/util/settings.ts
  49. +1,425 −0 packages/firestore-compat/test/validation.test.ts
  50. +8 −0 packages/firestore/CHANGELOG.md
  51. +4 −7 packages/firestore/package.json
  52. +1 −29 packages/firestore/rollup.config.js
  53. +1 −13 packages/firestore/rollup.config.lite.js
  54. +0 −18 packages/firestore/scripts/prepare-test.js
  55. +0 −84 packages/firestore/scripts/prepare-test.ts
  56. +6 −6 packages/firestore/src/api/snapshot.ts
  57. +7 −8 packages/firestore/src/lite-api/query.ts
  58. +2 −2 packages/firestore/src/lite-api/snapshot.ts
  59. +2 −2 packages/firestore/src/lite-api/user_data_reader.ts
  60. +5 −19 packages/firestore/src/platform/node/load_protos.ts
  61. +1 −1 packages/firestore/src/protos/google/api/annotations.proto
  62. +17 −12 packages/firestore/src/protos/google/api/http.proto
  63. +3 −4 packages/firestore/src/protos/google/firestore/v1/common.proto
  64. +3 −4 packages/firestore/src/protos/google/firestore/v1/document.proto
  65. +216 −77 packages/firestore/src/protos/google/firestore/v1/firestore.proto
  66. +6 −7 packages/firestore/src/protos/google/firestore/v1/query.proto
  67. +5 −5 packages/firestore/src/protos/google/firestore/v1/write.proto
  68. +8 −53 packages/firestore/src/protos/google/rpc/status.proto
  69. +4 −38 packages/firestore/src/protos/google/type/latlng.proto
  70. +2,650 −0 packages/firestore/src/protos/protos.json
  71. +21 −6 packages/firestore/src/protos/update.sh
  72. +46 −48 packages/firestore/test/integration/api/array_transforms.test.ts
  73. +202 −218 packages/firestore/test/integration/api/batch_writes.test.ts
  74. +52 −39 packages/firestore/test/integration/api/bundle.test.ts
  75. +97 −86 packages/firestore/test/integration/api/cursor.test.ts
  76. +517 −492 packages/firestore/test/integration/api/database.test.ts
  77. +94 −96 packages/firestore/test/integration/api/fields.test.ts
  78. +147 −176 packages/firestore/test/integration/api/get_options.test.ts
  79. +52 −39 packages/firestore/test/integration/api/numeric_transforms.test.ts
  80. +319 −282 packages/firestore/test/integration/api/query.test.ts
  81. +68 −69 packages/firestore/test/integration/api/server_timestamp.test.ts
  82. +81 −80 packages/firestore/test/integration/api/smoke.test.ts
  83. +164 −180 packages/firestore/test/integration/api/transactions.test.ts
  84. +34 −25 packages/firestore/test/integration/api/type.test.ts
  85. +406 −391 packages/firestore/test/integration/api/validation.test.ts
  86. +17 −11 packages/firestore/test/integration/api_internal/database.test.ts
  87. +7 −6 packages/firestore/test/integration/api_internal/idle_timeout.test.ts
  88. +44 −42 packages/firestore/test/integration/api_internal/transaction.test.ts
  89. +0 −1 packages/firestore/test/integration/bootstrap.ts
  90. +18 −12 packages/firestore/test/integration/browser/indexeddb.test.ts
  91. +9 −5 packages/firestore/test/integration/prime_backend.test.ts
  92. +3 −4 packages/firestore/test/integration/util/events_accumulator.ts
  93. +9 −36 packages/firestore/test/integration/util/firebase_export.ts
  94. +55 −49 packages/firestore/test/integration/util/helpers.ts
  95. +22 −23 packages/firestore/test/integration/util/internal_helpers.ts
  96. +2 −2 packages/firestore/test/integration/util/settings.ts
  97. +0 −6 packages/firestore/test/register.ts
  98. +6 −6 packages/firestore/test/unit/api/{blob.test.ts → bytes.test.ts}
  99. +135 −135 packages/firestore/test/unit/api/database.test.ts
  100. +1 −1 packages/firestore/test/unit/api/document_change.test.ts
  101. +21 −14 packages/firestore/test/unit/api/field_value.test.ts
  102. +2 −4 packages/firestore/test/unit/core/query.test.ts
  103. +17 −24 packages/firestore/test/unit/local/local_store.test.ts
  104. +59 −53 packages/firestore/test/unit/model/mutation.test.ts
  105. +24 −20 packages/firestore/test/unit/remote/serializer.helper.ts
  106. +2 −2 packages/firestore/test/unit/specs/spec_builder.ts
  107. +28 −68 packages/firestore/test/util/api_helpers.ts
  108. +16 −13 packages/firestore/test/util/helpers.ts
  109. +1 −1 packages/functions-compat/package.json
  110. +1 −1 packages/functions/package.json
  111. +1 −1 packages/installations-compat/package.json
  112. +1 −1 packages/installations/package.json
  113. +7 −0 packages/messaging-compat/CHANGELOG.md
  114. +3 −3 packages/messaging-compat/package.json
  115. +8 −0 packages/messaging/CHANGELOG.md
  116. +8 −3 packages/messaging/package.json
  117. +14 −0 packages/messaging/rollup.config.js
  118. +3 −3 packages/messaging/src/helpers/externalizePayload.test.ts
  119. +1 −1 packages/messaging/src/helpers/externalizePayload.ts
  120. +2 −2 packages/messaging/src/helpers/logToFirelog.ts
  121. +1 −2 packages/messaging/src/interfaces/internal-message-payload.ts
  122. +1 −1 packages/messaging/src/listeners/sw-listeners.test.ts
  123. +1 −0 packages/messaging/sw/package.json
  124. +1 −1 packages/performance-compat/package.json
  125. +1 −1 packages/performance/package.json
  126. +1 −1 packages/remote-config-compat/package.json
  127. +1 −1 packages/remote-config/package.json
  128. +1 −1 packages/storage-compat/package.json
  129. +1 −1 packages/storage/package.json
  130. +1 −1 packages/template/package.json
  131. +2 −1 packages/util/package.json
  132. +1 −1 packages/util/src/errors.ts
  133. +1 −1 repo-scripts/size-analysis/package.json
  134. +22 −0 scripts/docgen/docgen.ts
  135. +35 −30 yarn.lock
8 changes: 4 additions & 4 deletions integration/compat-interop/package.json
Original file line number Diff line number Diff line change
@@ -8,16 +8,16 @@
"test:debug": "karma start --browsers Chrome --auto-watch"
},
"dependencies": {
"@firebase/app": "0.7.12",
"@firebase/app-compat": "0.1.13",
"@firebase/app": "0.7.13",
"@firebase/app-compat": "0.1.14",
"@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/messaging": "0.9.6",
"@firebase/messaging-compat": "0.1.6",
"@firebase/performance": "0.5.5",
"@firebase/performance-compat": "0.1.5",
"@firebase/remote-config": "0.3.4",
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.2",
"firebase": "9.6.3",
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"chai": "4.3.4",
47 changes: 12 additions & 35 deletions integration/firestore/firebase_export.ts
Original file line number Diff line number Diff line change
@@ -15,10 +15,12 @@
* limitations under the License.
*/

import firebase from '@firebase/app-compat';
import '@firebase/firestore-compat';
import { FirebaseApp } from '@firebase/app-types';
import { Settings, FirebaseFirestore } from '@firebase/firestore-types';
import { FirebaseApp, initializeApp } from '@firebase/app';
import {
Firestore,
FirestoreSettings,
initializeFirestore
} from '@firebase/firestore';

// This file replaces "packages/firestore/test/integration/util/firebase_export"
// and depends on the minified sources.
@@ -28,43 +30,18 @@ let appCount = 0;
export function newTestFirestore(
projectId: string,
nameOrApp?: string | FirebaseApp,
settings?: Settings
): FirebaseFirestore {
settings?: FirestoreSettings
): Firestore {
if (nameOrApp === undefined) {
nameOrApp = 'test-app-' + appCount++;
}
const app =
typeof nameOrApp === 'string'
? firebase.initializeApp({ apiKey: 'fake-api-key', projectId }, nameOrApp)
? initializeApp({ apiKey: 'fake-api-key', projectId }, nameOrApp)
: nameOrApp;

const firestore = firebase.firestore(app);
if (settings) {
firestore.settings(settings);
}
return firestore;
return initializeFirestore(app, settings || {});
}

export function usesFunctionalApi(): false {
return false;
}

const Blob = firebase.firestore.Blob;
const DocumentReference = firebase.firestore.DocumentReference;
const FieldPath = firebase.firestore.FieldPath;
const FieldValue = firebase.firestore.FieldValue;
const Firestore = firebase.firestore.Firestore;
const GeoPoint = firebase.firestore.GeoPoint;
const QueryDocumentSnapshot = firebase.firestore.QueryDocumentSnapshot;
const Timestamp = firebase.firestore.Timestamp;
export * from '@firebase/firestore';

export {
Blob,
DocumentReference,
FieldPath,
FieldValue,
Firestore,
GeoPoint,
QueryDocumentSnapshot,
Timestamp
};
export type PrivateSettings = Record<string, any>;
27 changes: 10 additions & 17 deletions integration/firestore/gulpfile.js
Original file line number Diff line number Diff line change
@@ -53,25 +53,18 @@ function copyTests() {
.pipe(
replace(
/**
* This regex is designed to match the following statement used in our
* firestore integration test suites:
*
* import * as firebaseExport from '../../util/firebase_export';
*
* It will handle variations in whitespace, single/double quote
* differences, as well as different paths to a valid firebase_export
* This regex is designed to match the Firebase import in our
* integration tests.
*/
/import\s+\* as firebaseExport\s+from\s+('|")[^\1]+firebase_export\1;?/,
`import * as firebaseExport from '${resolve(
__dirname,
'./firebase_export'
)}';
/\s+from '\.(\.\/util)?\/firebase_export';/,
` from '${resolve(__dirname, './firebase_export')}';
if (typeof process === 'undefined') {
process = { env: { INCLUDE_FIRESTORE_PERSISTENCE: '${isPersistenceEnabled()}' } } as any;
} else {
process.env.INCLUDE_FIRESTORE_PERSISTENCE = '${isPersistenceEnabled()}';
}`
if (typeof process === 'undefined') {
process = { env: { INCLUDE_FIRESTORE_PERSISTENCE: '${isPersistenceEnabled()}' } } as any;
} else {
process.env.INCLUDE_FIRESTORE_PERSISTENCE = '${isPersistenceEnabled()}';
}
`
)
)
.pipe(
7 changes: 5 additions & 2 deletions integration/firestore/package.json
Original file line number Diff line number Diff line change
@@ -6,16 +6,19 @@
"build:deps": "lerna run --scope @firebase/'{app,firestore}' --include-dependencies build",
"build:persistence": "INCLUDE_FIRESTORE_PERSISTENCE=true gulp compile-tests",
"build:memory": "INCLUDE_FIRESTORE_PERSISTENCE=false gulp compile-tests",
"prettier": "prettier --write '*.js' '*.ts'",
"test": "yarn build:memory; karma start --single-run; yarn build:persistence; karma start --single-run;",
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test",
"test:persistence": " yarn build:persistence; karma start --single-run",
"test:persistence:debug": "yarn build:persistence; karma start --auto-watch --browsers Chrome",
"test:memory": "yarn build:memory; karma start --single-run",
"test:memory:debug": "yarn build:memory; karma start --auto-watch --browsers Chrome"
},
"dependencies": {
"@firebase/app": "0.7.13",
"@firebase/firestore": "3.4.3"
},
"devDependencies": {
"@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.2",
"firebase": "9.6.3",
"chai": "4.3.4",
"chromedriver": "94.0.0",
"express": "4.17.1",
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@
"firebase-tools": "9.23.0",
"git-rev-sync": "3.0.1",
"glob": "7.2.0",
"http-server": "13.0.2",
"http-server": "14.1.0",
"indexeddbshim": "8.0.0",
"inquirer": "8.1.5",
"istanbul-instrumenter-loader": "3.0.1",
@@ -130,7 +130,7 @@
"lcov-result-merger": "3.1.0",
"lerna": "4.0.0",
"listr": "0.14.3",
"lodash": "4.17.20",
"lodash": "4.17.21",
"long": "3.2.0",
"merge2": "1.4.1",
"mkdirp": "1.0.4",
2 changes: 1 addition & 1 deletion packages/analytics-compat/package.json
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
"@firebase/app-compat": "0.x"
},
"devDependencies": {
"@firebase/app-compat": "0.1.13",
"@firebase/app-compat": "0.1.14",
"rollup": "2.57.0",
"@rollup/plugin-json": "4.1.0",
"rollup-plugin-typescript2": "0.30.0",
2 changes: 1 addition & 1 deletion packages/analytics/package.json
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.12",
"@firebase/app": "0.7.13",
"rollup": "2.57.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-json": "4.1.0",
2 changes: 1 addition & 1 deletion packages/app-check-compat/package.json
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app-compat": "0.1.13",
"@firebase/app-compat": "0.1.14",
"rollup": "2.57.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-json": "4.1.0",
2 changes: 1 addition & 1 deletion packages/app-check/package.json
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.12",
"@firebase/app": "0.7.13",
"rollup": "2.57.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-json": "4.1.0",
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.14

### Patch Changes

- Updated dependencies []:
- @firebase/app@0.7.13

## 0.1.13

### Patch Changes
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.13",
"version": "0.1.14",
"description": "The primary entrypoint to the Firebase JS SDK",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
@@ -39,7 +39,7 @@
},
"license": "Apache-2.0",
"dependencies": {
"@firebase/app": "0.7.12",
"@firebase/app": "0.7.13",
"@firebase/util": "1.4.3",
"@firebase/logger": "0.3.2",
"@firebase/component": "0.5.10",
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.13

### Patch Changes

- Update SDK_VERSION.

## 0.7.12

### Patch Changes
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.12",
"version": "0.7.13",
"description": "The primary entrypoint to the Firebase JS SDK",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"main": "dist/index.cjs.js",
2 changes: 1 addition & 1 deletion packages/auth-compat/package.json
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app-compat": "0.1.13",
"@firebase/app-compat": "0.1.14",
"@rollup/plugin-json": "4.1.0",
"rollup": "2.57.0",
"rollup-plugin-replace": "2.2.0",
2 changes: 1 addition & 1 deletion packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -84,7 +84,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@firebase/app": "0.7.12",
"@firebase/app": "0.7.13",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-strip": "2.1.0",
"chromedriver": "96.0.0",
4 changes: 2 additions & 2 deletions packages/auth/src/core/strategies/email_link.ts
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ import { getModularInstance } from '@firebase/util';
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
* // Obtain emailLink from the user.
* if(isSignInWithEmailLink(auth, emailLink)) {
* await signInWithEmailLink('user@example.com', 'user@example.com', emailLink);
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
* }
* ```
*
@@ -132,7 +132,7 @@ export function isSignInWithEmailLink(auth: Auth, emailLink: string): boolean {
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
* // Obtain emailLink from the user.
* if(isSignInWithEmailLink(auth, emailLink)) {
* await signInWithEmailLink('user@example.com', 'user@example.com', emailLink);
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
* }
* ```
*
2 changes: 1 addition & 1 deletion packages/database-compat/package.json
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@
"tslib": "^2.1.0"
},
"devDependencies": {
"@firebase/app-compat": "0.1.13"
"@firebase/app-compat": "0.1.14"
},
"repository": {
"directory": "packages/database-compat",
2 changes: 1 addition & 1 deletion packages/database/package.json
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@
"tslib": "^2.1.0"
},
"devDependencies": {
"@firebase/app": "0.7.12",
"@firebase/app": "0.7.13",
"rollup": "2.57.0",
"rollup-plugin-typescript2": "0.30.0",
"typescript": "4.2.2"
12 changes: 12 additions & 0 deletions packages/firebase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# firebase

## 9.6.3

### Patch Changes

- Updated dependencies [[`044a8d7f9`](https://github.com/firebase/firebase-js-sdk/commit/044a8d7f95a0ba0d34123ff5fd7a4bcb1bd3d328), [`ff2f7d4c8`](https://github.com/firebase/firebase-js-sdk/commit/ff2f7d4c85c0bda94b14d66237faa0e5da93bfa4), [`88d43ec00`](https://github.com/firebase/firebase-js-sdk/commit/88d43ec0027ff857923ab41255b3650e666fa29e), [`3c20727d8`](https://github.com/firebase/firebase-js-sdk/commit/3c20727d83f2d68edc108e8112b06d3232a7d310)]:
- @firebase/app@0.7.13
- @firebase/firestore@3.4.3
- @firebase/messaging@0.9.6
- @firebase/app-compat@0.1.14
- @firebase/firestore-compat@0.1.12
- @firebase/messaging-compat@0.1.6

## 9.6.2

### Patch Changes
14 changes: 7 additions & 7 deletions packages/firebase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firebase",
"version": "9.6.2",
"version": "9.6.3",
"description": "Firebase JavaScript library for web and Node.js",
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
"license": "Apache-2.0",
@@ -219,20 +219,20 @@
"test:ci": "echo 'No test suite for firebase wrapper'"
},
"dependencies": {
"@firebase/app": "0.7.12",
"@firebase/app-compat": "0.1.13",
"@firebase/app": "0.7.13",
"@firebase/app-compat": "0.1.14",
"@firebase/app-types": "0.7.0",
"@firebase/auth": "0.19.5",
"@firebase/auth-compat": "0.2.5",
"@firebase/database": "0.12.5",
"@firebase/database-compat": "0.1.5",
"@firebase/firestore": "3.4.2",
"@firebase/firestore-compat": "0.1.11",
"@firebase/firestore": "3.4.3",
"@firebase/firestore-compat": "0.1.12",
"@firebase/functions": "0.7.7",
"@firebase/functions-compat": "0.1.8",
"@firebase/installations": "0.5.5",
"@firebase/messaging": "0.9.5",
"@firebase/messaging-compat": "0.1.5",
"@firebase/messaging": "0.9.6",
"@firebase/messaging-compat": "0.1.6",
"@firebase/polyfill": "0.3.36",
"@firebase/storage": "0.9.1",
"@firebase/storage-compat": "0.1.9",

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading