-
- This rollup covers __COVERED_VERSIONS_PROSE__. Head to the{' '}
- Sencho docs for setup guides and
- full feature walkthroughs.
-
-
- What's in this release
-__ADDED_BLOCK__
-__FIXED_BLOCK__
-__CHANGED_BLOCK__
-
- ),
-}
diff --git a/.github/scripts/scaffold-release-post.mjs b/.github/scripts/scaffold-release-post.mjs
deleted file mode 100644
index 5754add6..00000000
--- a/.github/scripts/scaffold-release-post.mjs
+++ /dev/null
@@ -1,408 +0,0 @@
-#!/usr/bin/env node
-// Scaffolds a release blog post in the Sencho website repo when the tag that
-// triggered this run completes a run of 5 releases since the last post's anchor.
-// Invoked by .github/workflows/release-blog-scaffold.yml. See website/CLAUDE.md
-// for the cadence rules this script enforces.
-//
-// Auto-publish mode: the script generates a complete, TODO-free post and the
-// workflow commits it directly to website main. No PR is created or required.
-
-import { execFileSync } from 'node:child_process'
-import { readFileSync, writeFileSync, readdirSync, existsSync, mkdirSync } from 'node:fs'
-import { join, dirname } from 'node:path'
-import { fileURLToPath } from 'node:url'
-
-const HERE = dirname(fileURLToPath(import.meta.url))
-const REPO_ROOT = join(HERE, '..', '..')
-const TEMPLATE_PATH = join(REPO_ROOT, '.github', 'release-blog-template.tsx.tmpl')
-
-const WINDOW_SIZE = 5
-// Section names come from release-please-config.json's changelog-sections.
-// Security gets its own bucket so hardening items do not get lost.
-const SECTION_MAP = {
- Added: 'added',
- Fixed: 'fixed',
- Changed: 'changed',
- Security: 'fixed',
-}
-
-function parseArgs(argv) {
- const args = { dryRun: false }
- for (let i = 0; i < argv.length; i++) {
- const a = argv[i]
- if (a === '--dry-run') args.dryRun = true
- else if (a === '--tag') args.tag = argv[++i]
- else if (a === '--changelog') args.changelog = argv[++i]
- else if (a === '--website') args.website = argv[++i]
- }
- if (!args.tag || !args.changelog || !args.website) {
- throw new Error('Usage: --tag vX.Y.Z --changelog