Merged
Conversation
…s for processor behavior
Co-authored-by: Glenn Matthews <glenn.matthews@networktocode.com>
…de/circuit-maintenance-parser into 372-fix_openain_iCal
…-PROCESS instead of CONFIRMED
Co-authored-by: Josh VanDeraa <josh@josh-v.com>
Refactor provider to use OpenAI parser as a fallback and enhance test…
Fix Lumen parser status for scheduled maintenance
Improvements to Google Parser
* Create .cookiecutter.json * add change frag
numpy 2.2.6 lacks Python 3.14 wheels; requires a dependency update first.
Adds python3.13 to the project
…to strip out occurences of \r\n and \r and replace them with \n instead, so that the newlines and carriage returns are formalized. Updated the tests to remove \r\n from the expected output
updating circuit_maintenance_parser/parser.py Html.clean_line method …
Lxml version 602
| - Major features or milestones | ||
| - Changes to compatibility with Nautobot and/or other apps, libraries etc. | ||
|
|
||
| ## [v2.11.0 (2026-04-15)](https://github.com/networktocode/circuit_maintenance_parser/releases/tag/v2.11.0) |
Contributor
There was a problem hiding this comment.
These links are wrong (should be circuit-maintenance-parser, not circuit_maintenance_parser) - try correcting line 150 in pyproject.toml and regenerating these?
Contributor
Author
The towncrier issue_format and template tag URL both used the Python module name (circuit_maintenance_parser) instead of the GitHub repo slug (circuit-maintenance-parser), producing 404 links in the release notes. Corrects the config, the template, and the already-rendered v2.11.0 section of docs/release_notes.md (including the pre-existing #345 link that inherited the same bug).
glennmatthews
approved these changes
Apr 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Release v2.11.0 — primarily an lxml dependency range expansion (
>=4.6.2,<7) to support lxml 6.x, along with accumulated fixes and a new Google subject parser.Highlights
Added
Fixed
text/calendarparts (Enabling OpenAIParser breaks iCalendar parsing #372).IN-PROCESSinstead ofCONFIRMED(Fix Lumen parser status for scheduled maintenance #377). Bug introduced in commit737aa4e9(Aug 2021).Dependencies
>=4.6.2,<7(adding 4.x support to lxml #393).Housekeeping
Process notes
developatd7ac150; follows therelease-vX.Y.Zbranch convention used by prior releases (2.7.0 / 2.8.0 / 2.9.0).poetry run towncrier build --version 2.11.0(equivalent toinvoke generate-release-notes --version 2.11.0).[tool.towncrier] packagemisconfiguration inpyproject.tomlthat was preventing release-notes generation (hyphenated name vs. underscored Python module).changes/377.fixed.rst→changes/377.fixedso towncrier would categorize it correctly.Merge instructions
Per NTC release workflow: use "Create a merge commit" — do not squash merge.
Post-merge todos
v2.11.0on main and publish GitHub releasemain→develop(merge commit)developto2.11.1-betainpyproject.tomlTest plan
poetry run pytest tests/— 375 passed in 9.54s locallypoetry run invoke tests— exit 0 (ruff + pylint + yamllint + pytest)poetry run towncrier buildsucceeds after config fix