From eabd7059d94a32747be5d1017e47498d70d675bc Mon Sep 17 00:00:00 2001 From: emil User Date: Wed, 26 Aug 2026 20:33:06 +0000 Subject: [PATCH] GRM-168: chore: bump devx from v0.51.0 to v0.51.9 Co-authored-by: emil User --- docs/specs/GRM-168.md | 21 +++++++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 docs/specs/GRM-168.md diff --git a/docs/specs/GRM-168.md b/docs/specs/GRM-168.md new file mode 100644 index 0000000..ea0cf6e --- /dev/null +++ b/docs/specs/GRM-168.md @@ -0,0 +1,21 @@ +# GRM-168: Bump devx to v0.51.9 + +## Problem +grm pins devx@v0.51.0 which rejects `deps:` as a conventional commit type, +causing post-merge CI failures on dependency bump commits. + +## Approach +REQ-1: Bump devx from v0.51.0 to v0.51.9 in pyproject.toml + +## Test Plan +- `make lint-all` passes +- `make pytest-cov` passes + +## Deploy Plan +- Merge to master + +## Rollback Plan +- Revert the merge commit + +## Acceptance Criteria +- [x] REQ-1: Bump devx from v0.51.0 to v0.51.9 in pyproject.toml diff --git a/pyproject.toml b/pyproject.toml index 087a968..91a26bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ ci = [ "build==1.5.1", "twine==6.2.0", # Reusable CI/CD and dev tools (auto-merge, pr-review, pre-push checks, etc.) - "devx @ git+https://git.oblachno.oblachno.fyi/oblachno-oss/devx.git@v0.51.0", + "devx @ git+https://git.oblachno.oblachno.fyi/oblachno-oss/devx.git@v0.51.9", ] # Lint and type-checking tools (validate job) lint = [ @@ -56,7 +56,7 @@ molecule = [ dev = [ "grm[ci,lint,molecule]", # Reusable CI/CD and dev tools (pre-push hooks, create-task, create-pr) - "devx @ git+https://git.oblachno.oblachno.fyi/oblachno-oss/devx.git@v0.51.0", + "devx @ git+https://git.oblachno.oblachno.fyi/oblachno-oss/devx.git@v0.51.9", # Non-Python dev dependency: checkmake (Makefile linter) # Install via: go install github.com/checkmake/checkmake/cmd/checkmake@latest ]