@interopio/gateway-server 0.10.0-beta.0 → 0.11.0-beta.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.
Files changed (2) hide show
  1. package/changelog.md +19 -1
  2. package/package.json +18 -7
package/changelog.md CHANGED
@@ -2,7 +2,25 @@
2
2
 
3
3
  # Change Log
4
4
 
5
- ## 0.10.0-beta.0 (Unreleased)
5
+ ## 0.11.0-beta.0 (2025-10-01)
6
+ ### Changed
7
+ - bump @interopio/gateway to 0.14.0-beta.0
8
+
9
+ ## 0.10.0-beta.1 (2025-09-30)
10
+
11
+ ### Changed
12
+ - bump undici to 7.16.0
13
+ - bump @interopio/gateway to 0.13.1-beta.0
14
+ - bump @glue42/gateway-ent types to 3.1.4
15
+
16
+ ### Added
17
+ - chore: repository field in package.json
18
+ - chore: generate CTRF reports
19
+
20
+ ### Fixed
21
+ - gateway-ent exports for cjs
22
+
23
+ ## 0.10.0-beta.0 (2025-09-04)
6
24
 
7
25
  ### Changed
8
26
  - http body stream now uses BodyChunk (which is now alias for BlobPart) instead of Uint8Array
package/package.json CHANGED
@@ -1,19 +1,24 @@
1
1
  {
2
2
  "name": "@interopio/gateway-server",
3
- "version": "0.10.0-beta.0",
3
+ "version": "0.11.0-beta.0",
4
4
  "keywords": [
5
5
  "gateway",
6
6
  "server",
7
7
  "mesh",
8
8
  "io.connect",
9
9
  "glue42",
10
- "interop.io"
10
+ "interop.io",
11
+ "metrics"
11
12
  ],
12
13
  "homepage": "https://interop.io/",
13
14
  "author": {
14
15
  "name": "interop.io",
15
16
  "url": "https://interop.io/"
16
17
  },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/InteropIO/gateway.git"
21
+ },
17
22
  "license": "see license in license.md",
18
23
  "scripts": {
19
24
  "start": "node .",
@@ -22,7 +27,7 @@
22
27
  "build": "node scripts/build.mjs",
23
28
  "prepack": "npm run build",
24
29
  "clean": "node scripts/clean.mjs",
25
- "coverage": "c8 --reporter=lcov --src=./src npm run test"
30
+ "coverage": "c8 --reporter=lcovonly --report-dir=./reports --src=./src npm run test"
26
31
  },
27
32
  "exports": {
28
33
  "./package.json": "./package.json",
@@ -52,8 +57,14 @@
52
57
  "types": "./types/gateway-ent.d.ts",
53
58
  "default": "./dist/gateway-ent.js"
54
59
  },
55
- "node": "./dist/gateway-ent.cjs",
56
- "require": "./dist/gateway-ent.cjs"
60
+ "node": {
61
+ "types": "./types/gateway-ent.d.ts",
62
+ "default": "./dist/gateway-ent.cjs"
63
+ },
64
+ "require": {
65
+ "types": "./types/gateway-ent.d.ts",
66
+ "default": "./dist/gateway-ent.cjs"
67
+ }
57
68
  }
58
69
  },
59
70
  "main": "dist/index.js",
@@ -63,13 +74,13 @@
63
74
  "node": ">=20.10 || >= 22.12 || >= 24"
64
75
  },
65
76
  "dependencies": {
66
- "@interopio/gateway": "^0.13.0-beta.0",
77
+ "@interopio/gateway": "^0.14.0-beta.0",
67
78
  "ws": "^8.18.3",
68
79
  "tough-cookie": "^6.0.0",
69
80
  "http-cookie-agent": "^7.0.2"
70
81
  },
71
82
  "peerDependencies": {
72
- "undici": "^7.15.0"
83
+ "undici": "^7.16.0"
73
84
  },
74
85
  "peerDependenciesMeta": {
75
86
  "undici": {