@checkstack/dependency-backend 1.4.5 → 1.4.7
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 +21 -0
- package/package.json +6 -6
- package/src/ai/dependency.projection.test.ts +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @checkstack/dependency-backend
|
|
2
2
|
|
|
3
|
+
## 1.4.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [2428bfc]
|
|
8
|
+
- @checkstack/ai-backend@0.2.0
|
|
9
|
+
- @checkstack/automation-backend@0.5.7
|
|
10
|
+
- @checkstack/catalog-backend@1.4.7
|
|
11
|
+
- @checkstack/healthcheck-backend@1.6.7
|
|
12
|
+
|
|
13
|
+
## 1.4.6
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [f9cfdae]
|
|
18
|
+
- @checkstack/dependency-common@1.2.5
|
|
19
|
+
- @checkstack/ai-backend@0.1.6
|
|
20
|
+
- @checkstack/automation-backend@0.5.6
|
|
21
|
+
- @checkstack/catalog-backend@1.4.6
|
|
22
|
+
- @checkstack/healthcheck-backend@1.6.6
|
|
23
|
+
|
|
3
24
|
## 1.4.5
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/dependency-backend",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.7",
|
|
4
4
|
"license": "Elastic-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@checkstack/backend-api": "0.21.5",
|
|
19
|
-
"@checkstack/ai-backend": "0.
|
|
20
|
-
"@checkstack/automation-backend": "0.5.
|
|
21
|
-
"@checkstack/dependency-common": "1.2.
|
|
19
|
+
"@checkstack/ai-backend": "0.2.0",
|
|
20
|
+
"@checkstack/automation-backend": "0.5.7",
|
|
21
|
+
"@checkstack/dependency-common": "1.2.5",
|
|
22
22
|
"@checkstack/catalog-common": "2.3.4",
|
|
23
|
-
"@checkstack/catalog-backend": "1.4.
|
|
23
|
+
"@checkstack/catalog-backend": "1.4.7",
|
|
24
24
|
"@checkstack/healthcheck-common": "1.5.4",
|
|
25
|
-
"@checkstack/healthcheck-backend": "1.6.
|
|
25
|
+
"@checkstack/healthcheck-backend": "1.6.7",
|
|
26
26
|
"@checkstack/maintenance-common": "1.4.4",
|
|
27
27
|
"@checkstack/incident-common": "1.4.4",
|
|
28
28
|
"@checkstack/notification-common": "1.3.3",
|
|
@@ -32,8 +32,10 @@ describe("dependency.list projection", () => {
|
|
|
32
32
|
expect(tool.effect).toBe("read");
|
|
33
33
|
});
|
|
34
34
|
|
|
35
|
-
test("inherits the source procedure's qualified
|
|
36
|
-
//
|
|
37
|
-
|
|
35
|
+
test("inherits the source procedure's qualified map access rule", () => {
|
|
36
|
+
// getAllDependencies (the full graph) is gated by the non-public map rule,
|
|
37
|
+
// so the AI projection inherits it too: `${pluginId}.${rule.id}` where
|
|
38
|
+
// rule.id = `map.read`. The full topology is map-access-only, not public.
|
|
39
|
+
expect(tool.requiredAccessRules).toEqual(["dependency.map.read"]);
|
|
38
40
|
});
|
|
39
41
|
});
|