@luvio/environments 0.152.0 → 0.152.2

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.
@@ -735,12 +735,12 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
735
735
  }
736
736
  return environment.getNode(key, stagingStore);
737
737
  };
738
- const wrapNormalizedGraphNode = function (normalized) {
738
+ const wrapNormalizedGraphNode = function (normalized, key) {
739
739
  validateNotDisposed();
740
740
  if (stagingStore === null) {
741
741
  stagingStore = buildIngestStagingStore(environment);
742
742
  }
743
- return environment.wrapNormalizedGraphNode(normalized, stagingStore);
743
+ return environment.wrapNormalizedGraphNode(normalized, key, stagingStore);
744
744
  };
745
745
  const rebuildSnapshot = function (snapshot, onRebuild) {
746
746
  validateNotDisposed();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luvio/environments",
3
- "version": "0.152.0",
3
+ "version": "0.152.2",
4
4
  "description": "Luvio Environments",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,7 +27,7 @@
27
27
  "watch": "yarn build --watch"
28
28
  },
29
29
  "dependencies": {
30
- "@luvio/engine": "^0.152.0"
30
+ "@luvio/engine": "^0.152.2"
31
31
  },
32
32
  "volta": {
33
33
  "extends": "../../../package.json"