deepline 0.1.53 → 0.1.54
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/cli/index.js
CHANGED
|
@@ -220,10 +220,10 @@ function resolveConfig(options) {
|
|
|
220
220
|
|
|
221
221
|
// src/release.ts
|
|
222
222
|
var SDK_RELEASE = {
|
|
223
|
-
version: "0.1.
|
|
223
|
+
version: "0.1.54",
|
|
224
224
|
apiContract: "2026-05-run-response-package",
|
|
225
225
|
supportPolicy: {
|
|
226
|
-
latest: "0.1.
|
|
226
|
+
latest: "0.1.54",
|
|
227
227
|
minimumSupported: "0.1.53",
|
|
228
228
|
deprecatedBelow: "0.1.53"
|
|
229
229
|
}
|
package/dist/cli/index.mjs
CHANGED
|
@@ -197,10 +197,10 @@ function resolveConfig(options) {
|
|
|
197
197
|
|
|
198
198
|
// src/release.ts
|
|
199
199
|
var SDK_RELEASE = {
|
|
200
|
-
version: "0.1.
|
|
200
|
+
version: "0.1.54",
|
|
201
201
|
apiContract: "2026-05-run-response-package",
|
|
202
202
|
supportPolicy: {
|
|
203
|
-
latest: "0.1.
|
|
203
|
+
latest: "0.1.54",
|
|
204
204
|
minimumSupported: "0.1.53",
|
|
205
205
|
deprecatedBelow: "0.1.53"
|
|
206
206
|
}
|
package/dist/index.js
CHANGED
|
@@ -216,10 +216,10 @@ function resolveConfig(options) {
|
|
|
216
216
|
|
|
217
217
|
// src/release.ts
|
|
218
218
|
var SDK_RELEASE = {
|
|
219
|
-
version: "0.1.
|
|
219
|
+
version: "0.1.54",
|
|
220
220
|
apiContract: "2026-05-run-response-package",
|
|
221
221
|
supportPolicy: {
|
|
222
|
-
latest: "0.1.
|
|
222
|
+
latest: "0.1.54",
|
|
223
223
|
minimumSupported: "0.1.53",
|
|
224
224
|
deprecatedBelow: "0.1.53"
|
|
225
225
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -170,10 +170,10 @@ function resolveConfig(options) {
|
|
|
170
170
|
|
|
171
171
|
// src/release.ts
|
|
172
172
|
var SDK_RELEASE = {
|
|
173
|
-
version: "0.1.
|
|
173
|
+
version: "0.1.54",
|
|
174
174
|
apiContract: "2026-05-run-response-package",
|
|
175
175
|
supportPolicy: {
|
|
176
|
-
latest: "0.1.
|
|
176
|
+
latest: "0.1.54",
|
|
177
177
|
minimumSupported: "0.1.53",
|
|
178
178
|
deprecatedBelow: "0.1.53"
|
|
179
179
|
}
|
|
@@ -686,8 +686,24 @@ async function createDynamicWorkflowInstance(input: {
|
|
|
686
686
|
});
|
|
687
687
|
}
|
|
688
688
|
|
|
689
|
+
/**
|
|
690
|
+
* Returns the slug-rooted Durable Scope key for the workflow pool DO.
|
|
691
|
+
*
|
|
692
|
+
* The pool DO name is a *shared* (non-runId) key, so without slug-scoping
|
|
693
|
+
* a single Cloudflare account running multiple PR previews would collide
|
|
694
|
+
* on `workflow-pool:v2`. The slug isolates the pool per-preview.
|
|
695
|
+
*
|
|
696
|
+
* See docs/adr/0005-durable-scope.md.
|
|
697
|
+
*/
|
|
698
|
+
function workflowPoolDurableObjectName(env: CoordinatorEnv): string {
|
|
699
|
+
const slug = env.DEEPLINE_PLAY_PREVIEW_SLUG?.trim();
|
|
700
|
+
return slug ? `${slug}:${WORKFLOW_POOL_DO_NAME}` : WORKFLOW_POOL_DO_NAME;
|
|
701
|
+
}
|
|
702
|
+
|
|
689
703
|
function workflowPoolDurableObject(env: CoordinatorEnv): DurableObjectStub {
|
|
690
|
-
return env.PLAY_DEDUP.get(
|
|
704
|
+
return env.PLAY_DEDUP.get(
|
|
705
|
+
env.PLAY_DEDUP.idFromName(workflowPoolDurableObjectName(env)),
|
|
706
|
+
);
|
|
691
707
|
}
|
|
692
708
|
|
|
693
709
|
async function callWorkflowPool<T>(
|
|
@@ -50,10 +50,10 @@ export type SdkRelease = {
|
|
|
50
50
|
};
|
|
51
51
|
|
|
52
52
|
export const SDK_RELEASE = {
|
|
53
|
-
version: '0.1.
|
|
53
|
+
version: '0.1.54',
|
|
54
54
|
apiContract: '2026-05-run-response-package',
|
|
55
55
|
supportPolicy: {
|
|
56
|
-
latest: '0.1.
|
|
56
|
+
latest: '0.1.54',
|
|
57
57
|
minimumSupported: '0.1.53',
|
|
58
58
|
deprecatedBelow: '0.1.53',
|
|
59
59
|
},
|