stitchkit 0.72.0 → 0.72.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.
- package/llms-full.txt +24 -0
- package/package.json +1 -1
package/llms-full.txt
CHANGED
|
@@ -9441,6 +9441,30 @@ additive** — adopting it changes nothing in your code. (See
|
|
|
9441
9441
|
So upgrading is: read the `### ⚠️ Breaking changes` of every version *above* your
|
|
9442
9442
|
current one *up to* your target, and apply each snippet.
|
|
9443
9443
|
|
|
9444
|
+
## What your range does, and does not, do for you
|
|
9445
|
+
|
|
9446
|
+
A caret range (`"stitchkit": "^0.71.0"`) is a real gate: it resolves `< 0.72.0`,
|
|
9447
|
+
so a plain `install` picks up every patch — fixes, new API, no code changes —
|
|
9448
|
+
and **never** crosses a minor. Crossing one is always something you chose.
|
|
9449
|
+
|
|
9450
|
+
**An exact pin (`"stitchkit": "0.71.0"`) is a different arrangement, and it is
|
|
9451
|
+
easy to mistake for a safer version of the same one.** It does not opt you out
|
|
9452
|
+
of breaking changes; it opts you out of *every* change, patches included. No
|
|
9453
|
+
install will move you, nothing will warn you, and the gap grows quietly — a
|
|
9454
|
+
project pinned exactly for a few months is typically several minors behind and
|
|
9455
|
+
has had no signal at all that this is so. That is a legitimate choice, but it
|
|
9456
|
+
makes one thing your job rather than the resolver's:
|
|
9457
|
+
|
|
9458
|
+
- **Check deliberately.** `npm view stitchkit version` against your pin, on
|
|
9459
|
+
whatever cadence suits the project. Nothing else will raise it.
|
|
9460
|
+
- **Then upgrade across the whole gap at once**, exactly as below: apply the
|
|
9461
|
+
`### ⚠️ Breaking changes` of every version above your pin up to your target,
|
|
9462
|
+
in order. A pin held across four minors is four migrations, not one, and
|
|
9463
|
+
three of them may be a single snippet each.
|
|
9464
|
+
|
|
9465
|
+
The mechanical part is identical either way. Only the *noticing* differs, and an
|
|
9466
|
+
exact pin moves it onto you.
|
|
9467
|
+
|
|
9444
9468
|
## Released migration: 0.72.0
|
|
9445
9469
|
|
|
9446
9470
|
Nothing you *pass* changed. Both items are about types you read or build, and
|
package/package.json
CHANGED