@broberg/mail-core 0.8.0 → 0.8.1

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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -253,6 +253,20 @@ own previous build, which is a different artefact.
253
253
  light brand. That is what the marker is for: you need to be able to tell "my
254
254
  template changed" from "the shared shell changed".
255
255
 
256
+ ### Upgrading: raise your shell-version floor in the SAME commit
257
+
258
+ If your code checks `SHELL_VERSION` — and it should — **move the floor to `3` in
259
+ the same commit that adopts 0.8.0.** cms found this while rolling back their own
260
+ workaround, and it is the sharpest thing in their report:
261
+
262
+ > roll the local patch back, leave the requirement at `>= 2`, and a downgrade to
263
+ > 0.7 gives you a white label on gold at 1.74:1 — **and nothing fails.**
264
+
265
+ Code that assumes shell 3 while accepting shell 2 is a silent bomb: the
266
+ workaround that used to compensate is gone, the version that needs compensating
267
+ is still allowed, and the only symptom is a mail nobody can read. The rollback
268
+ and the floor are one change, not two.
269
+
256
270
  ### Two things worth stealing
257
271
 
258
272
  **Do not measure against white.** The footer sits on `#f4f4f5`. `#767676` clears
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@broberg/mail-core",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Branded HTML email shell + primitives for the broberg.ai fleet — renderShell, heading/paragraph/cta/factBox/signOff, eyebrow/noteBox, a three-tier signOff, and a CID logo-attachment helper. No sending (@broberg/mail) and no template storage (that lives in cardmem) — layer 1 (visual structure) only. Every brand value is a caller-supplied param.",
5
5
  "type": "module",
6
6
  "license": "MIT",