@checkstack/common 0.14.0 → 0.14.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 +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @checkstack/common
|
|
2
2
|
|
|
3
|
+
## 0.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1fee9da: Republish the platform with correct internal cross-pins.
|
|
8
|
+
|
|
9
|
+
The release pipeline's `version-packages` step ran `changeset version` (bumping every `package.json`) but never refreshed `bun.lock`, so the lockfile kept the pre-bump versions. Because `bun publish` resolves `workspace:*` from the lockfile, every published package pinned the _previous_ version of its `@checkstack/*` siblings (e.g. `@checkstack/backend-api@0.21.1` shipped depending on `@checkstack/cache-api@0.3.9` and `@checkstack/common@0.13.0` instead of `0.3.10` / `0.14.0`). That reintroduced the `backend-api -> cache-api -> backend-api` cycle for registry consumers and pinned `cache-api`/`queue-api` to a `common` version predating the `Logger`/`Migration` types they import.
|
|
10
|
+
|
|
11
|
+
`version-packages` now runs `bun install --lockfile-only` after `changeset version`, so the lockfile matches the bumped versions before publish. This patch bump cascades through the dependency graph so every package republishes with its cross-pins resolved against the freshly-bumped versions.
|
|
12
|
+
|
|
3
13
|
## 0.14.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/common",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"license": "Elastic-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"typescript": "^5.7.2",
|
|
22
22
|
"@checkstack/tsconfig": "0.0.7",
|
|
23
|
-
"@checkstack/scripts": "0.4.
|
|
23
|
+
"@checkstack/scripts": "0.4.2"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"typecheck": "tsgo -b",
|