@objectstack/connector-openapi 16.0.0-rc.0 → 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.
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +80 -0
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @objectstack/connector-openapi@16.0.0
|
|
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
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[34mCJS[39m Build start
|
|
13
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m12.94 KB[39m
|
|
14
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m39.15 KB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in 83ms
|
|
16
13
|
[32mCJS[39m [1mdist/index.js [22m[32m14.22 KB[39m
|
|
17
14
|
[32mCJS[39m [1mdist/index.js.map [22m[32m40.70 KB[39m
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 126ms
|
|
16
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m12.94 KB[39m
|
|
17
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m39.15 KB[39m
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 139ms
|
|
19
19
|
[34mDTS[39m Build start
|
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 14561ms
|
|
21
21
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m9.35 KB[39m
|
|
22
22
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m9.35 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,85 @@
|
|
|
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
|
+
|
|
71
|
+
## 16.0.0-rc.1
|
|
72
|
+
|
|
73
|
+
### Patch Changes
|
|
74
|
+
|
|
75
|
+
- Updated dependencies [6289ec3]
|
|
76
|
+
- Updated dependencies [8efa395]
|
|
77
|
+
- Updated dependencies [bfa3c3f]
|
|
78
|
+
- Updated dependencies [62a2117]
|
|
79
|
+
- Updated dependencies [06ff734]
|
|
80
|
+
- @objectstack/spec@16.0.0-rc.1
|
|
81
|
+
- @objectstack/core@16.0.0-rc.1
|
|
82
|
+
|
|
3
83
|
## 16.0.0-rc.0
|
|
4
84
|
|
|
5
85
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/connector-openapi",
|
|
3
|
-
"version": "16.0.0
|
|
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
|
|
17
|
-
"@objectstack/spec": "16.0.0
|
|
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
|
|
23
|
+
"@objectstack/service-automation": "16.0.0"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"objectstack",
|