Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/smoke-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ async function exercisePackedCompilation(projectDirectory) {
const headSha256 = "1".repeat(64);
const statusPath = `/v1/projects/${projectId}/compilations/${compilationId}`;
const artifactPath = `${statusPath}/artifact`;
const compilerRelease = "foundation-plan-rails/compiler-scalar-2026-07";
const target = { id: "rails", profile: "rails-sketch/2026-07" };
const compilerRelease = "foundation-plan-rails/compiler-scalar-2026-08";
const target = { id: "rails", profile: "rails-sketch/2026-08" };
const contents = Buffer.from("class Movie < ApplicationRecord\nend\n");
const file = {
path: "app/models/movie.rb",
Expand Down Expand Up @@ -293,7 +293,7 @@ async function exercisePackedCompilation(projectDirectory) {
},
analysis: {
id: analysisId,
release: "foundation-plan-rails/scalar-2026-07",
release: "foundation-plan-rails/scalar-2026-08",
},
compiler_release: compilerRelease,
target,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/plan-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function emptyPlan(applicationKey, name) {
format: "firstdraft.foundation-plan.sketch/0.19",
target: {
id: "rails",
profile: "rails-sketch/2026-07",
profile: "rails-sketch/2026-08",
},
application: {
key: applicationKey,
Expand Down
8 changes: 4 additions & 4 deletions test/compilation-artifact.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const COMPILATION_ID = "01900000-0000-7000-8000-000000000802";
const ANALYSIS_ID = "01900000-0000-7000-8000-000000000803";
const SUBJECT_ID = "01900000-0000-7000-8000-000000000804";
const HEAD_SHA256 = "1".repeat(64);
const COMPILER_RELEASE = "foundation-plan-rails/compiler-scalar-2026-07";
const TARGET = { id: "rails", profile: "rails-sketch/2026-07" };
const COMPILER_RELEASE = "foundation-plan-rails/compiler-scalar-2026-08";
const TARGET = { id: "rails", profile: "rails-sketch/2026-08" };
const EXPECTED = {
projectId: PROJECT_ID,
compilationId: COMPILATION_ID,
Expand Down Expand Up @@ -167,7 +167,7 @@ test("pins every available provenance identity", () => {
provenance: {
analysis: {
id: "01900000-0000-7000-8000-000000000899",
release: "foundation-plan-rails/scalar-2026-07",
release: "foundation-plan-rails/scalar-2026-08",
},
},
}),
Expand Down Expand Up @@ -360,7 +360,7 @@ function artifactFixture(changes = {}) {
},
analysis: {
id: ANALYSIS_ID,
release: "foundation-plan-rails/scalar-2026-07",
release: "foundation-plan-rails/scalar-2026-08",
},
compiler_release: COMPILER_RELEASE,
target: TARGET,
Expand Down
6 changes: 3 additions & 3 deletions test/plan-compile.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const COMPLETED_AT = "2026-07-30T12:00:02.000Z";
const STATUS_PATH = `/v1/projects/${PROJECT_ID}/compilations/${COMPILATION_ID}`;
const CANCEL_PATH = `${STATUS_PATH}/cancel`;
const ARTIFACT_PATH = `${STATUS_PATH}/artifact`;
const COMPILER_RELEASE = "foundation-plan-rails/compiler-scalar-2026-07";
const TARGET = { id: "rails", profile: "rails-sketch/2026-07" };
const COMPILER_RELEASE = "foundation-plan-rails/compiler-scalar-2026-08";
const TARGET = { id: "rails", profile: "rails-sketch/2026-08" };
const PLAN_COMPILE_HELP = `First Draft CLI

Usage:
Expand Down Expand Up @@ -866,7 +866,7 @@ function artifactFixture() {
},
analysis: {
id: ANALYSIS_ID,
release: "foundation-plan-rails/scalar-2026-07",
release: "foundation-plan-rails/scalar-2026-08",
},
compiler_release: COMPILER_RELEASE,
target: TARGET,
Expand Down
2 changes: 1 addition & 1 deletion test/plan-init.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const EXPECTED_PLAN = `{
"format": "firstdraft.foundation-plan.sketch/0.19",
"target": {
"id": "rails",
"profile": "rails-sketch/2026-07"
"profile": "rails-sketch/2026-08"
},
"application": {
"key": "oscar_party",
Expand Down