@telorun/http-server 0.6.0 → 0.6.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/CHANGELOG.md +11 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @telorun/http-server
2
2
 
3
+ ## 0.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - adc248b: Loosen the `@telorun/sdk` peer dependency range from an exact pin to `*`.
8
+
9
+ The sdk is a host-provided peer (the kernel supplies the single shared instance, so `Stream` and other sdk class identities stay intact for CEL's runtime type-checker). Pinning it via `workspace:*` published as an exact version, which made every sdk release fall out of range and forced a spurious major bump of all peer-dependents. Declaring the peer range as `*` (with a `workspace:*` devDependency to preserve local linking) keeps the single-instance guarantee while preventing the false major-bump cascade.
10
+
11
+ - Updated dependencies [adc248b]
12
+ - @telorun/http-dispatch@0.4.1
13
+
3
14
  ## 0.6.0
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telorun/http-server",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Telo HTTP Server module - HTTP server and API resource kinds for Telo manifests.",
5
5
  "keywords": [
6
6
  "telo",
@@ -43,15 +43,16 @@
43
43
  "ajv": "^8.17.1",
44
44
  "ajv-formats": "^3.0.1",
45
45
  "fastify": "^5.7.2",
46
- "@telorun/http-dispatch": "0.4.0"
46
+ "@telorun/http-dispatch": "0.4.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/node": "^20.0.0",
50
50
  "typescript": "^5.0.0",
51
- "vitest": "^2.1.8"
51
+ "vitest": "^2.1.8",
52
+ "@telorun/sdk": "0.16.0"
52
53
  },
53
54
  "peerDependencies": {
54
- "@telorun/sdk": "0.13.0"
55
+ "@telorun/sdk": "*"
55
56
  },
56
57
  "scripts": {
57
58
  "build": "tsc -p tsconfig.lib.json",