fix: restore _config_version to 11 (reverted by stale-branch merge in #4419) (#4440)

PR #4419 was based on pre-credential-pools main where _config_version was 10.
The squash merge downgraded it from 11 (set by #2647) back to 10.
Also fixes the test assertion.
This commit is contained in:
Teknium
2026-04-01 04:34:04 -07:00
committed by GitHub
parent f6ada27d1c
commit e0abf2416d
2 changed files with 2 additions and 2 deletions

View File

@@ -517,7 +517,7 @@ DEFAULT_CONFIG = {
},
# Config schema version - bump this when adding new required fields
"_config_version": 10,
"_config_version": 11,
}
# =============================================================================

View File

@@ -63,4 +63,4 @@ class TestCamofoxConfigDefaults:
from hermes_cli.config import DEFAULT_CONFIG
# managed_persistence is auto-merged by _deep_merge, no version bump needed
assert DEFAULT_CONFIG["_config_version"] == 10
assert DEFAULT_CONFIG["_config_version"] == 11