@firebase/database 0.13.4-canary.dc7574e0f → 0.13.5-20220816211541

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,5 +1,14 @@
1
1
  # Unreleased
2
2
 
3
+ ## 0.13.5-20220816211541
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a5d9e1083`](https://github.com/firebase/firebase-js-sdk/commit/a5d9e10831c2877e9d15c8a33b15557e4251c4de) [#6497](https://github.com/firebase/firebase-js-sdk/pull/6497) - Fix issue with how get results for filtered queries are added to cache.
8
+ Fix issue with events not getting propagated to listeners by get.
9
+
10
+ * [`fcd4b8ac3`](https://github.com/firebase/firebase-js-sdk/commit/fcd4b8ac36636a60d83cd3370969ff9192f9e6ad) [#6508](https://github.com/firebase/firebase-js-sdk/pull/6508) - Fixed faulty transaction bug causing filtered index queries to override default queries.
11
+
3
12
  ## 0.13.4
4
13
 
5
14
  ### Patch Changes
@@ -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.4-canary.dc7574e0f";
7
+ const version = "0.13.5-20220816211541";
8
8
 
9
9
  /**
10
10
  * @license
@@ -9135,7 +9135,7 @@ function viewProcessorApplyServerMerge(viewProcessor, viewCache, path, changedCh
9135
9135
  });
9136
9136
  viewMergeTree.children.inorderTraversal((childKey, childMergeTree) => {
9137
9137
  const isUnknownDeepMerge = !viewCache.serverCache.isCompleteForChild(childKey) &&
9138
- childMergeTree.value === undefined;
9138
+ childMergeTree.value === null;
9139
9139
  if (!serverNode.hasChild(childKey) && !isUnknownDeepMerge) {
9140
9140
  const serverChild = viewCache.serverCache
9141
9141
  .getNode()