@absolutejs/mcp 0.19.0 → 0.20.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.
- package/CHANGELOG.md +12 -0
- package/changelog.json +23 -0
- package/dist/apps.js +147 -2
- package/dist/browser/actionWorkflow.d.ts +1 -0
- package/dist/index.js +223 -78
- package/dist/src/actionWorkflow.d.ts +35 -0
- package/dist/src/actionWorkflow.generated.d.ts +1 -0
- package/dist/src/apps.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/docs/host-canaries.md +25 -0
- package/docs/mcp-apps.md +26 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@ This file is generated by `absolute-changelog` from the entries in
|
|
|
6
6
|
`changelog/`. Edit an entry, not this file — and add new ones under
|
|
7
7
|
`changelog/unreleased/`.
|
|
8
8
|
|
|
9
|
+
## 0.20.1 — 2026-09-13
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **Hide approval controls when an action review has no confirmation capability.** (`ActionReview`)
|
|
14
|
+
|
|
15
|
+
## 0.20.0 — 2026-09-13
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- **Add exact-version outbound review tools and rich durable job status with read-only recovery.**
|
|
20
|
+
|
|
9
21
|
## 0.19.0 — 2026-09-13
|
|
10
22
|
|
|
11
23
|
### Added
|
package/changelog.json
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
"contract": 1,
|
|
3
3
|
"name": "@absolutejs/mcp",
|
|
4
4
|
"releases": [
|
|
5
|
+
{
|
|
6
|
+
"changes": [
|
|
7
|
+
{
|
|
8
|
+
"kind": "fixed",
|
|
9
|
+
"summary": "Hide approval controls when an action review has no confirmation capability.",
|
|
10
|
+
"symbols": [
|
|
11
|
+
"ActionReview"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"date": "2026-09-13",
|
|
16
|
+
"version": "0.20.1"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"changes": [
|
|
20
|
+
{
|
|
21
|
+
"kind": "added",
|
|
22
|
+
"summary": "Add exact-version outbound review tools and rich durable job status with read-only recovery."
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"date": "2026-09-13",
|
|
26
|
+
"version": "0.20.0"
|
|
27
|
+
},
|
|
5
28
|
{
|
|
6
29
|
"changes": [
|
|
7
30
|
{
|