@salesforce/lds-drafts 1.278.0 → 1.280.0

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/dist/ldsDrafts.js CHANGED
@@ -868,7 +868,12 @@ class DurableDraftQueue {
868
868
  }
869
869
  finally {
870
870
  this.replacingAction = undefined;
871
- await this.startQueueSafe();
871
+ try {
872
+ await this.startQueueSafe();
873
+ }
874
+ catch (_a) {
875
+ // An error starting the queue should not bubble up from this method
876
+ }
872
877
  }
873
878
  return updatedTarget;
874
879
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-drafts",
3
- "version": "1.278.0",
3
+ "version": "1.280.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Drafts",
6
6
  "main": "dist/ldsDrafts.js",
@@ -24,8 +24,8 @@
24
24
  "release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-drafts"
25
25
  },
26
26
  "dependencies": {
27
- "@luvio/engine": "0.154.12",
28
- "@luvio/environments": "0.154.12",
29
- "@salesforce/lds-utils-adapters": "^1.278.0"
27
+ "@luvio/engine": "0.154.14",
28
+ "@luvio/environments": "0.154.14",
29
+ "@salesforce/lds-utils-adapters": "^1.280.0"
30
30
  }
31
31
  }