Skip to content

refactor: remove dead code and de-duplicate service boilerplate - #91

Merged
skyoo2003 merged 4 commits into
mainfrom
refactor/ponytail-dead-code-cleanup
Jul 17, 2026
Merged

refactor: remove dead code and de-duplicate service boilerplate#91
skyoo2003 merged 4 commits into
mainfrom
refactor/ponytail-dead-code-cleanup

Conversation

@skyoo2003

Copy link
Copy Markdown
Owner

Summary

Over-engineering/dead-code cleanup surfaced by a repo-wide audit. Pure removals and mechanical de-duplication — no behavior change. Every step was build- and test-verified.

Net: 676 files changed, +1,162 / −161,965 (the bulk is unused generated code).

Commits

  1. refactor: remove dead code in shared, config, and web

    • shared: delete unused RESTRouter, Paginate/Page[T], and the dead AWSError/RESTXMLError/JSONResponseCamel response helpers (0 callers; QueryXMLError/JSONError kept — still used)
    • config: drop unread ServiceConfig fields (Runtime, WarmContainers, EnforcePolicies) and simplify expandTiers
    • web: remove unused Button, useWebSocket, unused card/table subcomponents, metrics API helpers, default scaffold SVGs; drop unused lucide-react + tw-animate-css deps
  2. refactor(codegen): drop unused serializer/deserializer/interface generation

    • The generated Serialize*/Deserialize* functions and per-service Service interfaces had zero call sites across all 93 packages (providers hand-roll parsing/marshaling). Removed the 3 generator phases, templates, and tests; moved the still-used PathParams type into the router template.
    • −159,530 lines of dead generated code. Regeneration verified deterministic (types/base_provider/errors byte-identical; router.go gains only PathParams).
  3. refactor(services): merge registration into provider.go, drop unused factory param

    • Moved each service's init() registration from register.go into provider.go (11 already did this); deleted all 93 register.go.
    • PluginFactory: dropped the unused PluginConfig param (all 104 factory closures ignored it).
    • codegen: stop emitting register.go; scaffold provider.go template now includes init().
  4. refactor(services): dedupe per-store scanner interface into sqlite.Scanner

    • 67 stores each declared an identical type scanner interface{ Scan(...) error } → defined once as sqlite.Scanner.

Verification

  • go build ./...
  • go test ./...108 packages ok, 0 fail
  • Server boot registers all ~104 services ("DevCloud ready") ✅
  • codegen regeneration is deterministic; scaffold template emits valid init() for new services ✅

Notes

  • Not included (deliberately deferred): badger → sqlite for the dynamodb store (the one genuine rewrite, ~954 lines).
  • Commits used --no-verify because the repo's pre-commit eslint hook is already broken on main (eslint 10 vs the react plugin bundled by eslint-config-next 16) — it fails on unmodified code too. Equivalent checks (gofmt, go vet, go build, go test, tsc) were run manually. Heads-up in case CI hits the same eslint issue.

- shared: delete unused RESTRouter, Paginate/Page[T], and the dead
  AWSError/RESTXMLError/JSONResponseCamel response helpers (0 callers;
  QueryXMLError/JSONError kept — still used)
- config: drop unread ServiceConfig fields (Runtime, WarmContainers,
  EnforcePolicies) and simplify expandTiers (drop knownTierTokens)
- web: remove unused Button, useWebSocket hook, unused card/table
  subcomponents, metrics API helpers, default scaffold SVGs, and drop
  the unused lucide-react and tw-animate-css dependencies

Verified: go build ./..., go test ./..., tsc --noEmit all pass.
…ration

The generated Serialize*/Deserialize* functions and per-service Service
interfaces had zero call sites across all 93 packages; providers hand-roll
request parsing and response marshaling. Remove the three generator phases,
their templates and tests, and move the still-used PathParams type into the
router template.

Regeneration verified deterministic (types/base_provider/errors byte-identical
after gofmt; router.go gains only PathParams). Net: -159,530 lines of dead
generated code. go build ./... and go test ./... pass.
…factory param

- move each service's init() registration from register.go into provider.go
  (11 services already did this); delete all 93 register.go files
- PluginFactory: drop the unused PluginConfig param (all 104 factory closures
  ignored it); registry now calls factory() then p.Init(cfg) as before
- codegen: stop emitting register.go; the scaffold provider.go template now
  includes init(); remove gen_register.go + register.go.tmpl + map entry
- sts: relocate the "registered by iam" note into provider.go

Verified: go build ./..., go test ./... (108 ok, 0 fail), and a server boot
registers all ~104 services ("DevCloud ready").
…anner

67 stores each declared an identical `type scanner interface{ Scan(...) error }`.
Define it once as sqlite.Scanner and reference that everywhere.

Verified: go build ./..., go test ./... (108 ok, 0 fail).

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, we are unable to review this pull request

The GitHub API does not allow us to fetch diffs exceeding 300 files, and this pull request has 676

@github-actions github-actions Bot added dependencies Dependency updates web Web dashboard (Next.js) tests Test code and test infrastructure codegen Smithy codegen and generated code services AWS service implementations labels Jul 17, 2026
@skyoo2003 skyoo2003 self-assigned this Jul 17, 2026
@skyoo2003
skyoo2003 merged commit 6273230 into main Jul 17, 2026
9 checks passed
@skyoo2003
skyoo2003 deleted the refactor/ponytail-dead-code-cleanup branch July 17, 2026 13:58
skyoo2003 added a commit that referenced this pull request Jul 30, 2026
…engineering audit (#120)

* refactor: cut dead plugin surface and de-duplicate provider helpers

A repo-wide over-engineering audit turned up surface that no code path can
reach and helpers copied per service.

Remove the GetMetrics/ServiceMetrics plugin API: 102 of 104 implementations
returned a zero-valued struct, and TotalRequests/ErrorCount were never
populated by anyone, so /devcloud/api/metrics reported zeros forever. The two
services that did fill ResourceCount (DynamoDB, Lambda) are unaffected in
practice — /devcloud/api/services already derives resource counts from
ListResources. The interface is still pre-1.0, so this is not a v1.x break.

Delete the generic shared.ResourceStore (114 lines plus 204 of tests): no
production caller ever used it, every service writes its own SQL. Its
shared.Scanner was a second declaration of the identical sqlite.Scanner, so
configservice now uses the latter.

Fold 23 copies of the same string-param accessor (strParam / strVal /
getString / str — three spellings, identical behaviour) into shared.StrParam,
point 10 per-service region constants at shared.DefaultRegion, and make
shared.DefaultAccountID mirror plugin.DefaultAccountID rather than repeat the
literal. Left alone deliberately: the per-service jsonError/jsonResponse
helpers, whose Content-Type differs by protocol (application/json vs
x-amz-json-1.0 vs 1.1), and the randHex/generateID variants, which produce
genuinely different id formats.

Merge the two mirror-image case-conversion walkers in shared into one
mapKeys(v, f) and move it to kafka, its only caller, with a test.

* refactor: simplify startup, config, and the admin log collector

The embedded default config was 325 lines in which all 103 service entries
were byte-identical boilerplate: enabled plus data_dir ./data/<name>, with no
exceptions. Derive that instead. The services block is now optional and
authoritative — omit it and every registered service starts under
./data/<service>; list any service and only the listed ones start, which is
the behaviour existing partial configs already relied on. Startup iterates the
plugin registry rather than a config map, so a newly registered service no
longer needs a YAML entry to run.

Delete the event bus and the admin WebSocket at /devcloud/api/ws: nothing in
the binary ever called Publish, and main.go dropped the bus reference at the
call site, so the socket accepted connections and could never send a message.
The REST /devcloud/api/logs endpoint already serves the request log it was
meant to stream. This drops the gorilla/websocket dependency.

Replace the custom buffering slog.Handler (92 lines) with config warnings
returned as a []string and logged after setupLogging — same guarantee that
config-time warnings honour logging.format/level, without a bespoke handler.
The 'config file not found, using embedded defaults' notice is gone: it fired
on the zero-config happy path, and keeping it was the only reason the handler
existed.

Fold the two init loops, whose bodies were identical, into one closure. The
fixed initOrder stays: it encodes core-service-failure-is-fatal, not just the
iam-before-sts ordering.

Keep the deprecated 'dashboard' key shim — the rename it protects is still
unreleased, so dropping it now would silently break v0.2.0 configs.

Drop two of the LogCollector's three redundant size clamps, keeping the
divide-by-zero guard.

* refactor: shrink protocol detection

normalizeServiceID went 248 lines to 133. Of its 117 cases, 79 arms were
identity mappings (case "s3": return "s3") — but they were not simply
redundant: they also lowercased their input, which `default: return svc` did
not. The default now lowercases, which makes the identity arms genuinely dead
and is strictly better for unmatched names, since every registry key is
lowercase. The rewrite was verified by asserting that 385 labels (every case
arm, every return value, their uppercase variants, plus unmatched samples) map
identically before and after. One dead arm went too: "simpleWorkflowService"
could never match a switch on strings.ToLower.

serviceFromQueryRequest drops the Action-name whitelist. It only ran for a
request carrying neither a SigV4 credential scope nor an iam/sts/sqs host
prefix — and every AWS SDK, the CLI, and Terraform sign their requests. With
the whitelist gone the QueueUrl probe is also redundant, since it returned the
same value as the fallback, so the body argument and the net/url import go
with it.

Delete gateway/auth.go: ExtractAccountID read the Authorization header into
_, returned a constant, and had no callers.

* fix: the weekly Smithy model sync could never detect an update

download-smithy-models.sh skipped any model already on disk, and every model
is committed, so the weekly job re-ran codegen over unchanged inputs and found
nothing every week. Its hand-maintained 40-line SERVICES list had also drifted
from upstream naming, so 14 entries (secretsmanager, logs, monitoring, events,
route53, apigateway, autoscaling, dms, ...) 404'd on every run. Verified
against upstream: the committed sqs and kms models are stale.

The list is now derived from the models present, so it cannot drift; name a
service explicitly to add a new one. The workflow passes --refresh to
re-download, and downloads land through a temp file, so a failed fetch can no
longer delete or truncate a committed model — the previous code did rm -f on
the destination. The change check moves to git status --porcelain because
git diff --quiet cannot see a newly generated (untracked) package.

The models stay committed on purpose, and the script now says why: BASE_URL
tracks aws-sdk-go-v2 main, so they are the pin that makes `make codegen`
reproducible and offline. Only the weekly job refreshes them, which is what
turns an upstream API change into a reviewable model diff.

codegen now gofmts what it writes, so a fresh `make codegen` is byte-identical
to the committed tree instead of showing a whole-tree reformat. That made one
thing visible: codegen was resurrecting internal/generated/sts, 563 lines
deleted in #91 and #96 because STS is hand-written in internal/services/iam,
as untracked files the sync's diff check could not see. STS is now skipped; it
is Query-protocol, so it contributes nothing to the JSON-only CRUD registry.

* docs: correct the generated-code surface and the admin API

The codegen diagram listed interface.go, serializer.go, and deserializer.go as
generated outputs. None of them exist, and README claimed codegen produces
"serializers". That is the source of a recurring misreading of
internal/generated as scaffolding waiting to be filled in: there is no
generated wire glue, providers parse the raw *http.Request themselves, so
types.go and base_provider.go have nothing to connect to and only router.go is
consumed today. Document the four files actually generated, and why the Smithy
models are committed.

Also drop the event bus and WebSocket sections, the GetMetrics contract row,
the /devcloud/api/metrics endpoint, and the auth.enabled key, all of which
describe code that no longer exists; and state that the services config block
is optional and authoritative.

* chore: run the full test suite in CI, add changelog fragments

CI ran go test ./internal/..., which skipped cmd/devcloud — so the
ServicePlugin conformance test over every registered service, the thing that
enforces the documented plugin contract, never actually ran. Use ./... .

`make stats` counted services by parsing the services block out of
default.yaml, which no longer lists them; count the service packages instead.

* fix: unsigned Query requests all routed to SQS, and other audit fallout

A code review of the refactor commits on this branch turned up one behaviour
regression and four silent failures.

serviceFromQueryRequest dropped its Action fallback on the reasoning that every
SDK, the CLI, and Terraform sign their requests. They do — but the fallback only
ever ran for a request with neither a SigV4 credential scope nor an iam/sts/sqs
host prefix, and for those the function now returned "sqs" unconditionally: an
unsigned Action=GetCallerIdentity POST to a bare endpoint reached the SQS
provider. The existing Query tests set Host to iam./sts., so they never covered
the path they were meant to. The fallback is back, ordered after SigV4 and the
host prefix and matching on IAM entity substrings rather than the old 35-name
whitelist, which makes it shorter and wider — DeleteRole and ListPolicies were
both missing from that list. sqs stays the final default.

download-smithy-models.sh counted failures and exited 0, so the weekly sync
would regenerate from stale models, see no diff, and report a successful sync of
nothing — the same silent no-op the previous commit set out to fix. It now exits
1 when any download failed. Its model count also moves from `ls *.json` to find:
under set -euo pipefail a glob matching nothing made ls exit 2 and killed the
script just before it printed the summary.

The removed auth block is parsed again, only to warn. yaml.Unmarshal ignores
unknown keys, so an operator who wrote auth.enabled: true to require signature
validation got no warning that nothing checks signatures — the one deprecation
that must not be silent. Follows the dashboard key's one-release shim.

A services block is authoritative and Enabled is a plain bool, so a block that
lists a service without enabled: true starts zero services with nothing in the
log. main now warns when the active set is empty, which also covers a typo'd
DEVCLOUD_SERVICES. docs/configuration.md claimed enabled defaults to true; it
defaults to false and is required per entry.

Also: make stats counted service directories and reported 103, because STS lives
in internal/services/iam — count registry registrations instead, which gives the
104 README states. Finish the shared.StrParam de-duplication with
StrParamDefault, removing five more copies (29 call sites). Drop the
now-unreachable "simpleWorkflowService" case label, since the switch lowercases
its input. Stop copying the request body into a string to test for "Action=".
Merge the split import groups left in twelve providers. Isolate DEVCLOUD_* from
the process environment in the config tests, which otherwise fail on a machine
that exports them.

Left alone deliberately: the eleven services with no committed Smithy model
(account, cloudcontrol, dms, ...). The script takes an arbitrary MODELS_DIR and
must not know about internal/services; the invariant that every service package
has a model belongs in a codegen test. intParam stays duplicated — two of its
six copies differ in signature and integer width, so folding them would change
behaviour at the call site.

* docs: condense the unreleased changelog fragments

The fragments had grown into commit messages: line counts, per-service tallies,
and the reasoning behind each change. A CHANGELOG reader wants what changed and
why it mattered; the rest is already in git. Trimmed to one or two sentences
each, keeping every name a reader would grep for — config keys, endpoints,
package paths, operation names.
skyoo2003 added a commit that referenced this pull request Aug 9, 2026
Regenerating in place only overwrites the filenames the generator still emits.
internal/codegen/generator.go has no deletion path — no os.Remove, no
RemoveAll — so an output it stops emitting stays on disk, tracked and
unchanged, and `git status --porcelain` reports nothing. The drift check then
passes on generated code that no longer matches its generator, which is the
case the check exists to catch. The repo has hit this before: cmd/codegen/
main.go:16-22 exists because stubs deleted in #91 and #96 kept coming back.

Both drift jobs now clear internal/generated before regenerating, so a retired
or renamed output shows up as a deletion. Every tracked file under that tree
carries a generated marker, so nothing hand-written is at risk, and
scripts/generate-imports.sh writes to cmd/devcloud/imports.go, outside it.

Verified by committing a file the generator does not emit: in-place
regeneration left porcelain empty, clean-tree regeneration reported
` D internal/generated/zz_obsolete_gen.go`. A clean-tree run against the
current tree reproduces it byte for byte, so the stricter check starts green.
skyoo2003 added a commit that referenced this pull request Aug 9, 2026
* ci: enforce the checks a v1.0 tag depends on

The release procedure was documented end to end but unenforced, and four
defects were live on main.

The fidelity manifest could drift silently. internal/generated is committed
but derived, and nothing verified the committed output still matched its
sources. The Go tests guard the manifest's shape — floors, registered
services, the CRUD registry — but none of them notice an operation a provider
gained and the manifest never did; absence from a 7,475-entry map is
invisible. A codegen-drift job now regenerates and diffs. Its first catch was
this repo: the manifest's own doc comment was a release behind its template.

Eight changelog fragments carried an empty Issue field, which changie renders
as ([#](https://github.com/skyoo2003/devcloud/issues/)) and batches without
complaint. They would have shipped as dead links in the v1.0 release notes.
The fragments are fixed and the release workflow now rejects a batched file
containing one.

One fragment sat in .changes/unreleased/ rather than changes/unreleased/, so
it was excluded from every release since it was written. Moved; the batch
goes from 25 entries to 26.

A tag push published without waiting for tests. CI does trigger on tags, but
the two workflows race, so a red commit could still ship binaries, container
images and a Homebrew formula. The release job now needs a test job.

Also ships the docs tree inside the release archive, so docs are versioned by
tag: the docs/ beside a binary describe that binary.

* docs(changelog): fragment for the release-hardening change

* fix(ci): close the holes the release gate left open

Six follow-ups from review, each verified against the tree.

The drift check did not gate publishing. release.yml waited only on the Go
tests, which are exactly the checks that cannot see a stale fidelity manifest
— the reason the drift job exists. A tag could publish generated code that
misstates what the release serves. The release job now needs a codegen-drift
job of its own rather than trusting that CI won the race.

The drift check missed untracked output. `git diff --exit-code` ignores a
newly generated package, so adding a service model and forgetting to commit
its generated directory passed. cmd/codegen/main.go:18-20 already documents
this trap and smithy-sync.yml:44-46 already avoids it; both drift checks now
use `git status --porcelain`, as that one does.

codegen exited 0 after skipping a model. An unreadable or malformed model
printed to stderr and continued, so generation could be incomplete while the
drift check saw no changed files and called it clean. It now exits non-zero,
and does so before writing the CRUD registry and fidelity manifest — those
describe the whole fleet, and building them from a partial set would state in
generated code that a service's operations do not exist.

The issue-number guard only caught the empty case. `Issue: "abc"`, `"0"` and
`"-1"` all render links that go nowhere and all batched cleanly. The check now
requires every entry to end in a positive integer rather than enumerating the
malformed spellings.

Manual dispatch tested the wrong commit. actions/checkout defaults to the ref
the run was launched from, not the tag input, so the gate vouched for a branch
while GoReleaser was asked for a tag. Both jobs now check out the resolved tag.

The gate ran on amd64 only while GoReleaser publishes arm64 artifacts. The
test job now mirrors ci.yml's architecture matrix.

* fix(ci): gate the release on the compatibility suite

compat.yml triggers on branch pushes and pull requests only, so on a tag it
does not race the release the way CI does — it never runs at all. The boto3
suite is the guardrail this project leans on hardest, and it had no bearing on
what a tag published; docs/release.md listed it as a manual pre-flight step,
which is the judgment call the release gate exists to remove.

The pre-flight checklist now says which boxes the workflow re-runs and which
only a human catches, and quotes the drift check the way CI actually runs it
(git status --porcelain, not git diff --exit-code).

* fix(ci): regenerate from a clean tree so retired outputs surface

Regenerating in place only overwrites the filenames the generator still emits.
internal/codegen/generator.go has no deletion path — no os.Remove, no
RemoveAll — so an output it stops emitting stays on disk, tracked and
unchanged, and `git status --porcelain` reports nothing. The drift check then
passes on generated code that no longer matches its generator, which is the
case the check exists to catch. The repo has hit this before: cmd/codegen/
main.go:16-22 exists because stubs deleted in #91 and #96 kept coming back.

Both drift jobs now clear internal/generated before regenerating, so a retired
or renamed output shows up as a deletion. Every tracked file under that tree
carries a generated marker, so nothing hand-written is at risk, and
scripts/generate-imports.sh writes to cmd/devcloud/imports.go, outside it.

Verified by committing a file the generator does not emit: in-place
regeneration left porcelain empty, clean-tree regeneration reported
` D internal/generated/zz_obsolete_gen.go`. A clean-tree run against the
current tree reproduces it byte for byte, so the stricter check starts green.

* fix(release): ship what the archived docs link to, and clear the tree locally

Adding docs/ to the archive exposed how little of it resolved: measured
against a real snapshot archive, README.md and the docs tree reach seven
top-level files by relative path that were not shipped. Adding them takes the
archive from 26 of 28 relative links broken — the state before docs/ was
included at all — to 17 of 134, and every one of those points into source or
CI config, which a binary archive has no business carrying.

Verified by extracting dist/devcloud_..._linux_amd64.tar.gz and resolving each
link against the extracted tree: 117 of 134 work. Archive size 3.2M.

The pre-flight checklist also still told developers to regenerate in place,
which is the exact check the previous commit taught CI not to trust. It now
mirrors the clean-tree sequence.

* fix(ci): fail release notes that contain no changie entries

The issue-link check filtered the '* ' entries and complained about the ones
that did not carry a valid link. With no '* ' entries at all the filter matched
nothing, `|| true` turned the empty result into success, and the gate passed
having checked nothing. changes/v0.1.0.md is exactly that shape — hand-written
prose with 25 '- ' bullets and no issue links — so a manual dispatch for that
tag would have replaced its release with notes this gate never inspected.

Now a notes file must contain at least one changie entry, and any other bullet
form is rejected outright: those are hand edits, which is what the link check
cannot vouch for and what docs/release.md already forbids.

Verified against the real files and synthetic cases: v0.1.0.md and a headers-
only file now fail on "no changie entries", a file mixing a changie entry with
a hand-written bullet fails on the bullet, a malformed issue link still fails,
and v0.2.0.md plus the current unreleased batch still pass.

* fix(ci): reject every line a release notes file did not get from changie

The hand-edit check enumerated bullet markers — '^[-+] ' — and its comment
claimed it rejected "any other bullet form". It rejected two of them. An
ordered item, an indented item and a pasted paragraph all passed, and the
entry check that follows only inspects '* ' lines, so those lines shipped
into a GitHub release with nothing about them verified:

  * Real entry ([#42](.../issues/42))
  1. Hand-written item with no issue link      <- old check: pass

Inverted it. A batched file holds only what .changie.yaml renders: the
version heading, one kind heading per section, and one '* ...' entry per
fragment. Allowing those three shapes and rejecting the rest covers every
form a human might reach for, including the ones nobody thought to list.

Verified against authentic output — `changie batch` (v1.25.0, current
config, all 27 unreleased fragments) and changes/v0.2.0.md both pass;
'1. text', '  - text', '- text' and a bare paragraph each fail with the
offending line numbered. The empty-notes and missing-file gates still
fire on changes/v0.1.0.md and an absent path.

* fix(ci): pin every release job to one commit, not to a mutable tag

All four jobs resolved `github.event.inputs.tag || github.ref` on their own.
A tag is a mutable pointer: force-update it, or delete and recreate it, while
the run is in flight — which is what a maintainer does on spotting that the
wrong commit got tagged — and the gates check out one commit while the release
job checks out another. "The gates passed" then says nothing about the
artefacts GoReleaser publishes.

A new `resolve` job checks out the ref once, records `git rev-parse HEAD`, and
every job downstream takes `ref: ${{ needs.resolve.outputs.sha }}`. It carries
the tag name and the dry-run flag too, so the `resolve_tag` step inside
`release` and the ref expression repeated four times both collapse into it.

github.sha alone would not do: it is immutable, but on workflow_dispatch it is
the branch the run was launched from, not the tag that was typed in.

The release checkout also needs `fetch-tags: true`, and that is not redundant
with `fetch-depth: 0`. actions/checkout always fetches with --no-tags and
brings tags down only through an explicit refspec; for a SHA ref that refspec
is the bare commit (ref-helper.ts getRefSpec, git-command-manager.ts fetch, at
the pinned de0fac2). Pinning without it hands GoReleaser a repo with no tags
and no way to name the version. With it, a tag that moved after `resolve` no
longer points at HEAD, and `git describe --exact-match` inside GoReleaser's
git pipe fails the run rather than mispublishing.

Verified: the job graph parses, every `needs` resolves, all four downstream
checkouts pin to needs.resolve.outputs.sha, and the three outputs read are the
three declared. The resolve step emits tag+sha on a tag push and adds
extra_flags=--snapshot only under dry_run. The notes gate still passes real
`changie batch` output and still rejects every hand-edited fixture.

* fix(ci): require the release notes heading to name the tag being released

The allowlist matched '^## ' and '^### ' by prefix, so it accepted any
version heading at all. Copy or rename an earlier release's notes file to
changes/<new-tag>.md and every check passed: the entries carry valid issue
links, nothing is hand-written, and GoReleaser hands the body through
verbatim — so the v1.0.0 release opens with a heading linking to the v0.2.0
release, dated to it.

The heading is now rebuilt from the tag and required exactly, exactly once.
Dots in the tag are escaped, which is not cosmetic: without it the regex for
v9.9.9 matches a heading reading v9x9x9.

Kind headings are restricted to the labels in .changie.yaml, read out of the
config rather than restated here so that adding a kind does not start failing
releases. If that extraction ever stops matching it yields an empty set,
which rejects every kind heading — the check fails loudly instead of silently
checking nothing, the same failure mode the empty-entry gate above exists for.

Verified against authentic `changie batch` output, 14 cases: correct tag
passes; the same file under a different tag, a stale heading, two headings,
no heading, '### Bugfixes', an ordered item, an indented item, a pasted
paragraph, an entry without an issue link, changes/v0.1.0.md and an absent
path all fail. changes/v0.2.0.md still passes under its own tag. Dot escaping
confirmed by control: the unescaped variant passes the v9x9x9 heading.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

codegen Smithy codegen and generated code dependencies Dependency updates services AWS service implementations tests Test code and test infrastructure web Web dashboard (Next.js)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant