sst 2.13.7 → 2.13.8

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.
@@ -33,6 +33,7 @@ function create(cb, name) {
33
33
  },
34
34
  reset() {
35
35
  resetDependencies(id);
36
+ state.contexts.delete(id);
36
37
  },
37
38
  provide(value) {
38
39
  // If a new request has started, automatically clear all contexts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.13.7",
4
+ "version": "2.13.8",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
package/sst.mjs CHANGED
@@ -61,6 +61,7 @@ function create(cb, name) {
61
61
  },
62
62
  reset() {
63
63
  resetDependencies(id);
64
+ state.contexts.delete(id);
64
65
  },
65
66
  provide(value) {
66
67
  const requestID = global[Symbol.for("aws.lambda.runtime.requestId")];