@theokit/sdk-memory 0.3.0 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog — @theokit/sdk-memory
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8790f70: Refuse a `workspace:` range before it can reach npm.
8
+
9
+ Five of this repo's twelve publishable packages declare internal dependencies as `workspace:^`, which
10
+ is correct on disk and becomes an unrecoverable defect if the publish goes out through a tool that
11
+ does not rewrite it: `pnpm` resolves the protocol while packing, `npm` ships the manifest verbatim.
12
+ A version published that way fails to install for everyone and cannot be corrected — only
13
+ deprecated.
14
+
15
+ Every publishable package now runs the guard in `prepublishOnly`, so it fires whichever way the
16
+ publish is invoked, and `pnpm release` runs it once across the repo before `changeset publish`.
17
+
18
+ Note for anyone reading a published manifest: the `prepublishOnly` entry points at a path inside
19
+ this repository. It never runs for a consumer — the hook only fires when the package itself is
20
+ published — and guarding the entry point that a hand-run `npm publish` actually uses was worth the
21
+ cosmetic wart of shipping the line.
22
+
3
23
  ## 0.3.0
4
24
 
5
25
  ### Minor Changes