Public Access
25 lines
858 B
Markdown
25 lines
858 B
Markdown
# DEVX-157: Add role defaults path to create_dependency_pr search
|
|
|
|
## Problem
|
|
`create_dependency_pr` only searches `pyproject.toml` and the infra images vars file for pinned versions. The sso-bridge role pins its version in its role defaults file via `sso_bridge_version`, which is not searched.
|
|
|
|
## Approach
|
|
Add the sso-bridge role defaults path to the search paths.
|
|
|
|
REQ-1: Add ROLE_DEFAULTS_PATH constant pointing to the sso-bridge role defaults file
|
|
REQ-2: Include ROLE_DEFAULTS_PATH in the search loop
|
|
|
|
## Test Plan
|
|
- Verify existing tests pass
|
|
- Verify find_pinned_version finds sso_bridge_version in the defaults file
|
|
|
|
## Deploy Plan
|
|
- Merge to master, auto-release new devx version
|
|
|
|
## Rollback Plan
|
|
- Revert the merge commit
|
|
|
|
## Acceptance Criteria
|
|
- [x] REQ-1: ROLE_DEFAULTS_PATH constant added
|
|
- [x] REQ-2: search loop includes ROLE_DEFAULTS_PATH
|