|
| 1 | +# shimkit 0.19.0 |
| 2 | + |
| 3 | +Plans tree drained. Two new plans-docs land in `docs/plans/`. No |
| 4 | +source-code changes. |
| 5 | + |
| 6 | +For the full machine-readable changelog, see |
| 7 | +[`CHANGELOG.md`](../../CHANGELOG.md). |
| 8 | + |
| 9 | +--- |
| 10 | + |
| 11 | +## TL;DR |
| 12 | + |
| 13 | +``` |
| 14 | +docs/plans/future-additions.md items with concrete patterns, no demand |
| 15 | +docs/plans/shipping-audit.md what shipped vs what's pending |
| 16 | +``` |
| 17 | + |
| 18 | +Together they answer the question "is there anything in any plan, |
| 19 | +design spec, or doc that's silently orphaned?" — and the answer |
| 20 | +is **no**. |
| 21 | + |
| 22 | +--- |
| 23 | + |
| 24 | +## What got documented |
| 25 | + |
| 26 | +### `future-additions.md` |
| 27 | + |
| 28 | +Items with a clear pattern + LOC estimate but **no current user |
| 29 | +demand**. Graduation rule: "someone is asking for it" — not "it |
| 30 | +would be nice to have." |
| 31 | + |
| 32 | +- More TLS DNS-01 providers (DigitalOcean, Hurricane Electric, |
| 33 | + Google Cloud DNS, Linode, OVH). |
| 34 | +- More framework recipes (Rails, Next.js, Flask). |
| 35 | +- More db engines (valkey, elasticsearch, opensearch, kafka, |
| 36 | + minio, clickhouse). |
| 37 | +- `--on-host` for `stack lemp` — explicitly **rejected** with |
| 38 | + rationale: stack is intrinsically multi-container; the v0.9.0 |
| 39 | + `db --on-host` covers the "local db without Docker" need |
| 40 | + without inheriting the recipe's coupling complexity. |
| 41 | + |
| 42 | +### `shipping-audit.md` |
| 43 | + |
| 44 | +Comprehensive walk through every plan / design spec / doc in the |
| 45 | +repo. Ten sections covering: |
| 46 | + |
| 47 | +| Section | Bucket | Count | |
| 48 | +|---------|--------|-------| |
| 49 | +| A | Migration W1-W9 | 9/9 shipped | |
| 50 | +| B | feature-gap-analysis defer list | 4 shipped + 1 rejected | |
| 51 | +| C | validation-report TODOs | all closed out | |
| 52 | +| D | cleanup-2026-05-14 deferrals | 2 shipped (v0.10 / v0.12) | |
| 53 | +| E | shipping-checklist | all in-code shipped | |
| 54 | +| F | Permanent skips | 16 documented with rationale | |
| 55 | +| G | **User-side actions still pending** | 2 | |
| 56 | +| H | Future additions | cross-ref | |
| 57 | +| I | Chronological release list | 13 releases this session | |
| 58 | +| J | Audit conclusion | "the plans tree is drained" | |
| 59 | + |
| 60 | +--- |
| 61 | + |
| 62 | +## Section G — the only items still genuinely outstanding |
| 63 | + |
| 64 | +These are **not** deferrals. shimkit's code is ready; the |
| 65 | +**human** isn't. |
| 66 | + |
| 67 | +### G.1 — PyPI trusted-publisher config (~10 min) |
| 68 | + |
| 69 | +The `publish-pypi` job has failed on v0.11.0 through v0.18.0 |
| 70 | +because the user-side trusted-publisher config isn't done yet. |
| 71 | +The wheel + sdist are live on the GitHub Release page for every |
| 72 | +version; PyPI is empty. |
| 73 | + |
| 74 | +To fix (see shipping-audit.md G.1 for full step-by-step): |
| 75 | + |
| 76 | +1. PyPI → <https://pypi.org/manage/account/publishing/> → add |
| 77 | + pending publisher with `simtabi` / `shimkit` / `release.yml` |
| 78 | + / Environment `pypi`. |
| 79 | +2. GitHub → Settings → Environments → "New environment" named |
| 80 | + `pypi`. |
| 81 | +3. Re-run failed jobs: |
| 82 | + |
| 83 | + ```bash |
| 84 | + gh run list --workflow=release.yml | grep failure |
| 85 | + # for each failed run id: |
| 86 | + gh run rerun <run-id> --failed |
| 87 | + ``` |
| 88 | + |
| 89 | + That backfills PyPI with the 10+ tags' wheels in ~5 minutes. |
| 90 | + |
| 91 | +### G.2 — Branch protection on `main` (~3 min) |
| 92 | + |
| 93 | +Settings → Branches → Add rule for `main` requiring the named |
| 94 | +status checks (`test (matrix cells)`, `security`, `build`, |
| 95 | +`smoke`). |
| 96 | + |
| 97 | +--- |
| 98 | + |
| 99 | +## Why ship the docs as their own release |
| 100 | + |
| 101 | +The two plans docs were already pushed to `main` as chores |
| 102 | +yesterday. Tagging v0.19.0 today doesn't change the docs |
| 103 | +themselves — it gives the docs-index release-notes table a clear |
| 104 | +"this is the version where the plans-tree audit landed" pointer. |
| 105 | + |
| 106 | +The next maintainer (or future me) reading the GitHub Release |
| 107 | +page can see "v0.19.0 — plans-tree audit" and know exactly where |
| 108 | +the durable record of what's done / what's pending / what's |
| 109 | +rejected lives. |
| 110 | + |
| 111 | +--- |
| 112 | + |
| 113 | +## Stats |
| 114 | + |
| 115 | +- Tests: 1130 (unchanged) |
| 116 | +- Source LOC: 0 changed |
| 117 | +- Doc LOC: ~500 added (across the two plans docs) |
| 118 | +- Gates: pytest, ruff, mypy strict — all green |
| 119 | + |
| 120 | +--- |
| 121 | + |
| 122 | +## Upgrading |
| 123 | + |
| 124 | +```bash |
| 125 | +uv tool upgrade shimkit |
| 126 | +pipx upgrade shimkit |
| 127 | +``` |
| 128 | + |
| 129 | +No behavioural changes. |
0 commit comments