Bump circuit-maintenance-parser from 2.9.0 to 2.12.0 (ltm) - #375
Bump circuit-maintenance-parser from 2.9.0 to 2.12.0 (ltm)#375michalis1 wants to merge 2 commits into
Conversation
|
Heads up — this PR doesn't actually appear to update Also worth noting: the latest release is now 2.12.0 (2.10.0 is already a few versions behind). Since we'd be re-running the update anyway, do we want to bump straight to 2.12.0 instead of 2.10.0? Happy to redo the lock update either way — just let me know the target version. |
The lock previously still resolved circuit-maintenance-parser to 2.9.0 despite the PR targeting a bump. Ran poetry update to move it to 2.12.0 (latest), which pulls backoff>=2.2.1 as now required by the parser and refreshes lxml, requests, and urllib3 within their existing constraints. Updated the changelog fragment to reflect 2.12.0.
Closes: #373
What's Changed
Bumps
circuit-maintenance-parserfrom 2.9.0 to 2.12.0 inpoetry.lock.Note on the target version
Issue #373 and the original version of this PR targeted 2.10.0. Two corrections were needed:
The lock was not actually updated.
poetry.lockstill resolvedcircuit-maintenance-parserto 2.9.0 — the same as the baseltm-2.4branch — despite the title and changelog fragment saying otherwise. The only lockfile changes were incidental regeneration noise (adillmarker tweak, somePyYAMLcp38 wheel entries). This is consistent withpoetry lockhaving been run instead ofpoetry update circuit-maintenance-parser, so Poetry kept the already-in-constraint 2.9.0 pin.2.10.0 was already several releases behind. Since the update had to be redone anyway, it targets the latest release, 2.12.0.
Lockfile changes
pyproject.tomlis unchanged — the constraint is^2.0.0, so this is a lock-only update. Five packages moved, all within the parser's own dependency subtree:circuit-maintenance-parserbackofflxmlrequestsurllib3The
backoffmajor bump is required by the parser itself — 2.12.0 declaresbackoff = ">=2.2.1,<3.0.0". The rest refreshed within their existing constraints.No packages were added or removed (216 before and after), and
poetry check --lockpasses.