@objectstack/connector-openapi 16.0.0-rc.1 → 16.1.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.
@@ -1,22 +1,22 @@
1
1
 
2
- > @objectstack/connector-openapi@16.0.0-rc.1 build /home/runner/work/framework/framework/packages/connectors/connector-openapi
2
+ > @objectstack/connector-openapi@16.1.0 build /home/runner/work/objectstack/objectstack/packages/connectors/connector-openapi
3
3
  > tsup --config ../../../tsup.config.ts
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.5.1
8
- CLI Using tsup config: /home/runner/work/framework/framework/tsup.config.ts
8
+ CLI Using tsup config: /home/runner/work/objectstack/objectstack/tsup.config.ts
9
9
  CLI Target: es2020
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- CJS dist/index.js 14.22 KB
14
- CJS dist/index.js.map 40.70 KB
15
- CJS ⚡️ Build success in 105ms
16
13
  ESM dist/index.mjs 12.94 KB
17
14
  ESM dist/index.mjs.map 39.15 KB
18
- ESM ⚡️ Build success in 105ms
15
+ ESM ⚡️ Build success in 89ms
16
+ CJS dist/index.js 14.22 KB
17
+ CJS dist/index.js.map 40.70 KB
18
+ CJS ⚡️ Build success in 90ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 10817ms
20
+ DTS ⚡️ Build success in 14018ms
21
21
  DTS dist/index.d.mts 9.35 KB
22
22
  DTS dist/index.d.ts 9.35 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,82 @@
1
1
  # @objectstack/connector-openapi
2
2
 
3
+ ## 16.1.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9e45b63]
8
+ - Updated dependencies [b20201f]
9
+ - @objectstack/spec@16.1.0
10
+ - @objectstack/core@16.1.0
11
+
12
+ ## 16.0.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 41e703b: feat(connector-openapi): degrade + retry on an unreachable remote spec URL (#3049 follow-up)
17
+
18
+ The `openapi` provider fetches `providerConfig.spec` when it is an http(s) URL.
19
+ That fetch previously threw plain on any failure, so a momentarily-unreachable
20
+ spec endpoint aborted the whole app boot. It now classifies the fault the same
21
+ way `connector-mcp` classifies its connect path (ADR-0097):
22
+
23
+ - **Network error** (DNS / connection refused / timeout) or a **transient HTTP
24
+ status** (`408` / `429` / `5xx`, mirroring the `retryableStatusCodes`
25
+ convention) throws `ConnectorUpstreamUnavailableError` — the materializer
26
+ degrades the instance (`state: 'degraded'` on `GET /connectors`, dispatch
27
+ fails clearly) and retries with backoff plus on every `metadata:reloaded`.
28
+ - A **wrong URL** (non-retryable `4xx`) or an **unparseable document** stays a
29
+ plain, fatal configuration fault.
30
+
31
+ Inline and file-path (`#3016`) specs do no boot I/O and are unaffected.
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [f972574]
36
+ - Updated dependencies [6289ec3]
37
+ - Updated dependencies [22013aa]
38
+ - Updated dependencies [3ad3dd5]
39
+ - Updated dependencies [8efa395]
40
+ - Updated dependencies [3a18b60]
41
+ - Updated dependencies [a8aa34c]
42
+ - Updated dependencies [e057f42]
43
+ - Updated dependencies [a3823b2]
44
+ - Updated dependencies [43a3efb]
45
+ - Updated dependencies [524696a]
46
+ - Updated dependencies [bfa3c3f]
47
+ - Updated dependencies [5e3301d]
48
+ - Updated dependencies [dd9f223]
49
+ - Updated dependencies [46e876c]
50
+ - Updated dependencies [5f05de2]
51
+ - Updated dependencies [021ba4c]
52
+ - Updated dependencies [158aa14]
53
+ - Updated dependencies [62a2117]
54
+ - Updated dependencies [d2723e2]
55
+ - Updated dependencies [fefcd54]
56
+ - Updated dependencies [beaf2de]
57
+ - Updated dependencies [369eb6e]
58
+ - Updated dependencies [06ff734]
59
+ - Updated dependencies [b659111]
60
+ - Updated dependencies [5754a23]
61
+ - Updated dependencies [6c270a6]
62
+ - Updated dependencies [290e2f0]
63
+ - Updated dependencies [668dd17]
64
+ - Updated dependencies [8abf133]
65
+ - Updated dependencies [e0859b1]
66
+ - Updated dependencies [04ecd4e]
67
+ - Updated dependencies [4d5a892]
68
+ - Updated dependencies [16cebeb]
69
+ - Updated dependencies [86d30af]
70
+ - Updated dependencies [8923843]
71
+ - Updated dependencies [a2795f6]
72
+ - Updated dependencies [f16b492]
73
+ - Updated dependencies [4b6fde8]
74
+ - Updated dependencies [2018df9]
75
+ - Updated dependencies [fc5a3a2]
76
+ - Updated dependencies [8ff9210]
77
+ - @objectstack/spec@16.0.0
78
+ - @objectstack/core@16.0.0
79
+
3
80
  ## 16.0.0-rc.1
4
81
 
5
82
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/connector-openapi",
3
- "version": "16.0.0-rc.1",
3
+ "version": "16.1.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "OpenAPI 3.x connector generator for ObjectStack — turns a declarative OpenAPI document into connector actions on the automation engine's registry, with a self-contained static-auth HTTP transport (ADR-0023).",
6
6
  "main": "dist/index.js",
@@ -13,14 +13,14 @@
13
13
  }
14
14
  },
15
15
  "dependencies": {
16
- "@objectstack/core": "16.0.0-rc.1",
17
- "@objectstack/spec": "16.0.0-rc.1"
16
+ "@objectstack/core": "16.1.0",
17
+ "@objectstack/spec": "16.1.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/node": "^26.1.1",
21
21
  "typescript": "^6.0.3",
22
22
  "vitest": "^4.1.10",
23
- "@objectstack/service-automation": "16.0.0-rc.1"
23
+ "@objectstack/service-automation": "16.1.0"
24
24
  },
25
25
  "keywords": [
26
26
  "objectstack",