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