Track Az.Resources as a monitored collision source
GAP-002 — Track Az.Resources as a monitored collision source¶
Status¶
Current status: Resolved.
Problem¶
Az.Resources is the observed source of the #193 Microsoft.Extensions.* collision, but it is not currently included in the monitored module set used by the upstream inventory and conflict-surface drift process.
Why this matters¶
The existing regression guard keeps the blocked Microsoft.Extensions.* transitives out of the DLLPickle bundle, but the upstream drift model does not directly observe future Az.Resources changes. A future Az.Resources dependency shift could matter without appearing in the current monitored-module inventory.
Current evidence¶
docs/Architecture.mdrecordsAz.Resourcesas the #193 collision source.docs/Architecture.mdalso records thatAz.Resourcesis not inmonitoredModules.dependency-policy.jsoncurrently tracks the blocked transitives withtrackingScopeevidence, but does not inventoryAz.Resourcesdirectly.
Desired end state¶
The repository either monitors Az.Resources directly or documents a deliberate decision not to do so with a compensating guard.
Acceptance criteria¶
- [x] Decide whether
Az.Resourcesshould be added tomonitoredModules. - [x] If added, update
build/dependency-policy.jsonand refresh the baseline/fingerprint using the established upstream inventory process. - [x] If not added, document the rationale and compensating guard in this gap and
docs/Architecture.md. - [x] Update or add tests so future workflow/policy changes preserve the decision.
- [x] Update
docs/DEPENDENCIES.mdif the monitored-module lifecycle changes. - [x] Update
docs/gaps/README.mdand this file when resolved or superseded.
Implementation notes for Codex¶
- Read
docs/Architecture.md§3, §5, §8, §9, and §10 before changing policy. - Read
build/dependency-policy.jsonand identify the currentmonitoredModules, blocked entries, andbaseline.conflictSurfacefields. - Treat changes to monitoring scope as policy changes that require review.
- Prefer an automated guard in
tests/Unit/WorkflowGuardrails.Tests.ps1or an equivalent policy test if the decision can be expressed structurally. - Do not mark this gap
resolvedunless the monitoring decision and related documentation are updated.
Resolution notes¶
Az.Resources was added to monitoredModules in build/dependency-policy.json, with baseline capture metadata refreshed and #193 tracking-scope notes updated to reflect direct monitoring.
Structural guardrails were added in tests/Unit/DependencyPolicy.Tests.ps1 to enforce the monitoring decision and preserve Az.Resources-linked blocked-transitive expectations.
Documentation was updated in docs/DEPENDENCIES.md so monitored-module lifecycle guidance aligns with the policy decision.