@checkstack/dependency-backend 1.4.5 → 1.4.6

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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # @checkstack/dependency-backend
2
2
 
3
+ ## 1.4.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [f9cfdae]
8
+ - @checkstack/dependency-common@1.2.5
9
+ - @checkstack/ai-backend@0.1.6
10
+ - @checkstack/automation-backend@0.5.6
11
+ - @checkstack/catalog-backend@1.4.6
12
+ - @checkstack/healthcheck-backend@1.6.6
13
+
3
14
  ## 1.4.5
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/dependency-backend",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
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.1.5",
20
- "@checkstack/automation-backend": "0.5.5",
21
- "@checkstack/dependency-common": "1.2.4",
19
+ "@checkstack/ai-backend": "0.1.6",
20
+ "@checkstack/automation-backend": "0.5.6",
21
+ "@checkstack/dependency-common": "1.2.5",
22
22
  "@checkstack/catalog-common": "2.3.4",
23
- "@checkstack/catalog-backend": "1.4.5",
23
+ "@checkstack/catalog-backend": "1.4.6",
24
24
  "@checkstack/healthcheck-common": "1.5.4",
25
- "@checkstack/healthcheck-backend": "1.6.5",
25
+ "@checkstack/healthcheck-backend": "1.6.6",
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 read access rule", () => {
36
- // qualifyAccessRuleId: `${pluginId}.${rule.id}` where rule.id = `dependency.read`.
37
- expect(tool.requiredAccessRules).toEqual(["dependency.dependency.read"]);
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
  });