-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from nautobot/main
Sync main to develop post v2.3.0
- Loading branch information
Showing
4 changed files
with
46 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# v2.3 Release Notes | ||
|
||
This document describes all new features and changes in the release `2.3`. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [v2.3.0] - 2024-08-06 | ||
|
||
### Changed | ||
|
||
- [#112](https://github.com/nautobot/cookiecutter-nautobot-app/pull/112) - Replaced `mkdocs-version-annotations` mkdocs plugin with new `markdown-version-annotations` markdown extension. No change in functionality, it's the same package. | ||
- [#106](https://github.com/nautobot/cookiecutter-nautobot-app/pull/106) - Replaced `black` and `flake8` with `ruff` for formatting and linting. | ||
|
||
### Fixed | ||
|
||
- [#101](https://github.com/nautobot/cookiecutter-nautobot-app/pull/101) - Fixed link in README.md. | ||
- [#107](https://github.com/nautobot/cookiecutter-nautobot-app/pull/107) - Fixed SSoT jobs to work with Nautobot v2.0 conventions. | ||
- [#110](https://github.com/nautobot/cookiecutter-nautobot-app/pull/110) - Fixed typo in import statement for SSoT jobs.py. | ||
- [#111](https://github.com/nautobot/cookiecutter-nautobot-app/pull/111) - Fixed command argument causing newer MySQL 8 containers to fail. | ||
- [#132](https://github.com/nautobot/cookiecutter-nautobot-app/pull/132) - Fixed various test failures on newly baked cookies. | ||
|
||
### Removed | ||
|
||
- [#108](https://github.com/nautobot/cookiecutter-nautobot-app/pull/108) - Removed deprecated `version` in docker compose files. | ||
- [#130](https://github.com/nautobot/cookiecutter-nautobot-app/pull/130) - Removed duplicate `tasks.py` from `.dockerignore`. | ||
|
||
### Documentation | ||
|
||
- [#116](https://github.com/nautobot/cookiecutter-nautobot-app/pull/116) - Updated contributing.md to remove reference to Golden Config and general cleanup. |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "cookiecutter-nautobot-app" | ||
version = "1.0.0" | ||
package-mode = false | ||
description = "Cookiecutter template for baking Nautobot App cookies." | ||
authors = ["Network to Code, LLC <[email protected]>"] | ||
readme = "README.md" | ||
|