deepline 0.1.244 → 0.1.245
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/bundling-sources/sdk/src/release.ts +4 -7
- package/dist/cli/index.js +1 -2
- package/dist/cli/index.mjs +1 -2
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
* happens at publish time: on push to main, `.github/workflows/sdk-release.yml`
|
|
6
6
|
* (via `scripts/sdk-release-autobump.ts`) compares the built package against
|
|
7
7
|
* the latest published npm tarball and, when the content changed, stamps the
|
|
8
|
-
* next unpublished patch into `version`
|
|
9
|
-
*
|
|
8
|
+
* next unpublished patch into `version` in the CI workspace only and
|
|
9
|
+
* publishes it in the same run. That patch stamp is not
|
|
10
10
|
* committed back to main; production endpoints read npm metadata when they
|
|
11
11
|
* need the newest patch-level SDK/CLI version.
|
|
12
12
|
*
|
|
13
13
|
* Edit THIS file by hand only for deliberate release decisions:
|
|
14
|
-
* - minor/major version bumps (set `version`
|
|
14
|
+
* - minor/major version bumps (set `version`),
|
|
15
15
|
* - `apiContract` cutovers (see `docs/sdk-runtime-compatibility.md`),
|
|
16
16
|
* - support-window moves (`minimumSupported` / `deprecatedBelow`).
|
|
17
17
|
* The automation never touches `apiContract`, `minimumSupported`, or
|
|
@@ -36,8 +36,6 @@
|
|
|
36
36
|
export type SdkReleaseChannel = 'latest' | 'next' | 'beta';
|
|
37
37
|
|
|
38
38
|
export type SdkSupportPolicy = {
|
|
39
|
-
/** Checked-in latest policy value; publish-time patch latest is read from npm. */
|
|
40
|
-
latest: string;
|
|
41
39
|
/**
|
|
42
40
|
* Anything strictly below this returns `status: "unsupported"` from
|
|
43
41
|
* `/api/v2/sdk/compat` and the CLI must hard-fail with the update command.
|
|
@@ -115,10 +113,9 @@ export const SDK_RELEASE = {
|
|
|
115
113
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
116
114
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
117
115
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
118
|
-
version: '0.1.
|
|
116
|
+
version: '0.1.245',
|
|
119
117
|
apiContract: '2026-07-cjs-absurd-only-play-runtime-hard-cutover',
|
|
120
118
|
supportPolicy: {
|
|
121
|
-
latest: '0.1.244',
|
|
122
119
|
minimumSupported: '0.1.53',
|
|
123
120
|
deprecatedBelow: '0.1.219',
|
|
124
121
|
commandMinimumSupported: [
|
package/dist/cli/index.js
CHANGED
|
@@ -632,10 +632,9 @@ var SDK_RELEASE = {
|
|
|
632
632
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
633
633
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
634
634
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
635
|
-
version: "0.1.
|
|
635
|
+
version: "0.1.245",
|
|
636
636
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
637
637
|
supportPolicy: {
|
|
638
|
-
latest: "0.1.244",
|
|
639
638
|
minimumSupported: "0.1.53",
|
|
640
639
|
deprecatedBelow: "0.1.219",
|
|
641
640
|
commandMinimumSupported: [
|
package/dist/cli/index.mjs
CHANGED
|
@@ -617,10 +617,9 @@ var SDK_RELEASE = {
|
|
|
617
617
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
618
618
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
619
619
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
620
|
-
version: "0.1.
|
|
620
|
+
version: "0.1.245",
|
|
621
621
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
622
622
|
supportPolicy: {
|
|
623
|
-
latest: "0.1.244",
|
|
624
623
|
minimumSupported: "0.1.53",
|
|
625
624
|
deprecatedBelow: "0.1.219",
|
|
626
625
|
commandMinimumSupported: [
|
package/dist/index.js
CHANGED
|
@@ -431,10 +431,9 @@ var SDK_RELEASE = {
|
|
|
431
431
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
432
432
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
433
433
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
434
|
-
version: "0.1.
|
|
434
|
+
version: "0.1.245",
|
|
435
435
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
436
436
|
supportPolicy: {
|
|
437
|
-
latest: "0.1.244",
|
|
438
437
|
minimumSupported: "0.1.53",
|
|
439
438
|
deprecatedBelow: "0.1.219",
|
|
440
439
|
commandMinimumSupported: [
|
package/dist/index.mjs
CHANGED
|
@@ -361,10 +361,9 @@ var SDK_RELEASE = {
|
|
|
361
361
|
// runtime intentionally no longer compiles at publish or launch time.
|
|
362
362
|
// 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
|
|
363
363
|
// deploy-time artifact migration. Play authoring now has one CJS contract.
|
|
364
|
-
version: "0.1.
|
|
364
|
+
version: "0.1.245",
|
|
365
365
|
apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
|
|
366
366
|
supportPolicy: {
|
|
367
|
-
latest: "0.1.244",
|
|
368
367
|
minimumSupported: "0.1.53",
|
|
369
368
|
deprecatedBelow: "0.1.219",
|
|
370
369
|
commandMinimumSupported: [
|