@firebase/database 0.13.3-20220707184205 → 0.13.3-canary.1703bb31a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Unreleased
2
2
 
3
- ## 0.13.3-20220707184205
3
+ ## 0.13.3
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -8,9 +8,11 @@
8
8
 
9
9
  * [`b12af44a5`](https://github.com/firebase/firebase-js-sdk/commit/b12af44a5c7500e1192d6cc1a4afc4d77efadbaf) [#6340](https://github.com/firebase/firebase-js-sdk/pull/6340) (fixes [#6036](https://github.com/firebase/firebase-js-sdk/issues/6036)) - Forced `get()` to wait until db is online to resolve.
10
10
 
11
- * Updated dependencies [[`b12af44a5`](https://github.com/firebase/firebase-js-sdk/commit/b12af44a5c7500e1192d6cc1a4afc4d77efadbaf)]:
12
- - @firebase/util@1.6.3-20220707184205
13
- - @firebase/component@0.5.17-20220707184205
11
+ - [`6a8be1337`](https://github.com/firebase/firebase-js-sdk/commit/6a8be1337f19a49db40e0c757f571f42b5b4d494) [#6399](https://github.com/firebase/firebase-js-sdk/pull/6399) - Fix setting of headers on Node.
12
+
13
+ - Updated dependencies [[`b12af44a5`](https://github.com/firebase/firebase-js-sdk/commit/b12af44a5c7500e1192d6cc1a4afc4d77efadbaf)]:
14
+ - @firebase/util@1.6.3
15
+ - @firebase/component@0.5.17
14
16
 
15
17
  ## 0.13.2
16
18
 
@@ -4,7 +4,7 @@ import { stringify, jsonEval, contains, assert, isNodeSdk, base64, stringToByteA
4
4
  import { Logger, LogLevel } from '@firebase/logger';
5
5
 
6
6
  const name = "@firebase/database";
7
- const version = "0.13.3-20220707184205";
7
+ const version = "0.13.3-canary.1703bb31a";
8
8
 
9
9
  /**
10
10
  * @license
@@ -1852,7 +1852,7 @@ class WebSocketConnection {
1852
1852
  if (isNodeSdk()) {
1853
1853
  const device = this.nodeAdmin ? 'AdminNode' : 'Node';
1854
1854
  // UA Format: Firebase/<wire_protocol>/<sdk_version>/<platform>/<device>
1855
- const options = {
1855
+ options = {
1856
1856
  headers: {
1857
1857
  'User-Agent': `Firebase/${PROTOCOL_VERSION}/${SDK_VERSION}/${process.platform}/${device}`,
1858
1858
  'X-Firebase-GMPID': this.applicationId || ''