Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.3.1 #330

Merged
merged 7 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update .cookiecutter.json (#328)
* Update .cookiecutter.json

Due to the way that Drift Manager uses the .cookiecutter.json file, we need to change the model_class_name to a valid model in BGP models to help us track drift in files that would be removed if the model_class_name=None.

* Changelog fragment
  • Loading branch information
smk4664 authored Oct 23, 2024
commit d51cd977f18d04130ca307b2df1f2145759aa9ce
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"max_nautobot_version": "2.9999",
"camel_name": "NautobotCircuitMaintenance",
"project_short_description": "Nautobot App that automatically manages network circuit maintenance notifications. Dynamically reads email inboxes (or APIs) and updates Nautobot mapping circuit maintenances to devices",
"model_class_name": "None",
"model_class_name": "CircuitMaintenance",
"open_source_license": "Apache-2.0",
"docs_base_url": "https://docs.nautobot.com",
"docs_app_url": "https://docs.nautobot.com/projects/circuit-maintenance/en/latest",
Expand Down
1 change: 1 addition & 0 deletions changes/328.housekeeping
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Changed model_class_name in .cookiecutter.json to a valid model to help with drift management.
Loading