@m-kopa/launchpad-cli 0.33.0 → 0.34.0

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/CHANGELOG.md CHANGED
@@ -6,6 +6,40 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
  This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html);
7
7
  pre-1.0 minor bumps may carry breaking changes per ADR 0005.
8
8
 
9
+ ## 0.34.0 — 2026-06-18
10
+
11
+ New verb: **`launchpad redeploy [<slug>]`** (sp-rdpl41) — trigger a fresh
12
+ deployment of an app's **already-live content** so deploy-time config (a
13
+ just-pushed secret, env var, or binding) re-binds, without editing any files.
14
+ Closes the "pushed a secret, `launchpad deploy` says nothing to deploy, the
15
+ secret stays inactive" foot-gun: a Cloudflare Pages app binds env/secrets only
16
+ on a NEW deployment, but `deploy` is content-hash idempotent and no-ops on
17
+ unchanged content.
18
+
19
+ - **Distinct from `deploy` (ADR 0025).** `redeploy` makes **no git commit** and
20
+ never no-ops — it asks the bot to build what's already live. Activation stays
21
+ in the bot trust boundary (it holds the sole CF token); the verb is a thin
22
+ client over `POST /apps/<slug>/redeploy`.
23
+ - **Falsifiable success signal.** Reports the **new Cloudflare deployment id**
24
+ (distinct from the previously-live one — proof the production env was
25
+ re-snapshotted), then served-verifies the live URL. If CF returns the same id
26
+ (no new deployment), it says so and exits non-zero — never a phantom
27
+ activation.
28
+ - **Tier-aware.** Pages apps get a triggered deployment; Worker/container apps
29
+ bind on next invocation, so `redeploy` is an explicit no-op for them.
30
+ - **`secrets push` offers it.** When a push writes a **Pages** surface, `push`
31
+ now ends with a tier-aware next-step: an interactive prompt
32
+ (`Redeploy … now? [y/N]`), `--redeploy`/`--yes` to activate without a prompt,
33
+ or — non-interactively — the `launchpad redeploy <slug>` hint (no silent prod
34
+ deploy; push and deploy stay decoupled). Worker-only pushes don't nag.
35
+ - **Honest react verification.** Served-verify now reports a distinct
36
+ **reachability-only** outcome ("✓ Live and reachable (HTTP 200)") for
37
+ react/react+api apps instead of falsely claiming "serves exactly what you
38
+ shipped" — their build transforms source → output, so byte-equality can't be
39
+ checked. This makes both `deploy` and `redeploy` honest: a redeploy can't
40
+ silently ship a different build to prod under the guise of "just reactivating
41
+ a secret".
42
+
9
43
  ## 0.33.0 — 2026-06-17
10
44
 
11
45
  New verb: **`launchpad watch [<slug>]`** (and `launchpad status <slug> --watch`) —