@crossdelta/platform-sdk 0.22.2 → 0.23.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
|
@@ -5,6 +5,20 @@ All notable changes to `@crossdelta/platform-sdk` will be documented in this fil
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.23.0] - 2026-08-24
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **`@crossdelta/infrastructure` is a dependency now, not a peer.** As a peer it was installed by
|
|
12
|
+
nobody: neither `bun add -g` nor `npm i -g` pulls it alongside the CLI, and bun says nothing when
|
|
13
|
+
it is absent. `pf dev` therefore worked inside a workspace, where the monorepo resolves it, and
|
|
14
|
+
failed from a global install, where an old copy or none at all was found. 0.22.2 made that
|
|
15
|
+
failure loud; this release removes it.
|
|
16
|
+
|
|
17
|
+
The reason it was a peer was cost: taking it as a dependency dragged the Pulumi SDK, around
|
|
18
|
+
120 MB, into every CLI install. `@crossdelta/infrastructure@0.15.3` marks `@pulumi/pulumi`
|
|
19
|
+
optional alongside its two already-optional siblings, so that no longer happens. What the CLI
|
|
20
|
+
actually uses, the `/streams` entry, needs none of them.
|
|
21
|
+
|
|
8
22
|
## [0.22.2] - 2026-08-24
|
|
9
23
|
|
|
10
24
|
### Fixed
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@crossdelta/cloudevents": "^0.8.4",
|
|
11
|
-
"@crossdelta/infrastructure": "^0.15.
|
|
11
|
+
"@crossdelta/infrastructure": "^0.15.3",
|
|
12
12
|
"{{scope}}/contracts": "workspace:*",
|
|
13
13
|
"@pulumi/digitalocean": "^4.55.0",
|
|
14
14
|
"@pulumi/kubernetes": "^4.21.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crossdelta/platform-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"description": "Platform toolkit for event-driven microservices — keeping code and infrastructure in lockstep.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -141,10 +141,10 @@
|
|
|
141
141
|
"rimraf": "^6.1.2",
|
|
142
142
|
"terminal-link": "^4.0.0",
|
|
143
143
|
"ts-morph": "^27.0.0",
|
|
144
|
-
"zod": "^4.0.0"
|
|
144
|
+
"zod": "^4.0.0",
|
|
145
|
+
"@crossdelta/infrastructure": "^0.15.3"
|
|
145
146
|
},
|
|
146
147
|
"peerDependencies": {
|
|
147
|
-
"@crossdelta/infrastructure": "^0.15.2",
|
|
148
148
|
"@nestjs/schematics": "^11.0.5",
|
|
149
149
|
"turbo": "^2.0.0"
|
|
150
150
|
},
|