From cd558a744db28a7fb4972612106aee1646f40ec0 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Mon, 28 Oct 2024 15:50:46 -0500 Subject: [PATCH 1/3] Adds Nautobot v2.3 to the test matrix explicitly --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index adb73ac..e2a7314 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: fail-fast: true matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - nautobot-version: ["2.0", "2.1", "2.2", "stable"] + nautobot-version: ["2.0", "2.1", "2.2", "2.3", "stable"] env: PYTHON_VER: "${{ matrix.python-version }}" NAUTOBOT_VER: "${{ matrix.nautobot-version }}" From 61f56f0f9c99dca3ee311c966d5e7e3bd8fb8dae Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Mon, 28 Oct 2024 15:50:56 -0500 Subject: [PATCH 2/3] Minor version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7dfbfc3..9b8e315 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ [tool.poetry] name = "pynautobot" -version = "2.2.1" +version = "2.3.0" description = "Nautobot API client library" authors = ["Network to Code, LLC "] readme = "README.md" From fbdd6c89d4a99d3d4e395a820380cb5639565536 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Mon, 28 Oct 2024 15:51:04 -0500 Subject: [PATCH 3/3] Adds v2.3 docs --- docs/admin/release_notes/version_2.3.md | 22 ++++++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 23 insertions(+) create mode 100644 docs/admin/release_notes/version_2.3.md diff --git a/docs/admin/release_notes/version_2.3.md b/docs/admin/release_notes/version_2.3.md new file mode 100644 index 0000000..ad380bb --- /dev/null +++ b/docs/admin/release_notes/version_2.3.md @@ -0,0 +1,22 @@ +# v2.3.0 + +## Added + +(#213) Added the ability to retrieve App endpoints via `dir` +(#214) Added support for seeing and modifying notes on all models +(#217) Added the ability to provide custom limit and offset parameters +(#233) Added the ability to run saved GraphQL queries + +## Documentation Updates + +(#218) Fixed documentation examples for working with prefixes + +### Changed + +(#224) Changed the `Termination.__str__ ` method to return the display field +(#240) Changed the `.all()` method to accept the same kwargs as `.filter()`, essentially making them redundant of each other +(#243) Updated urllib3 dependency to v2 + +### Housekeeping + +(#220) Added Python 3.12 to test matrix diff --git a/mkdocs.yml b/mkdocs.yml index 4069d57..d151dc7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -141,6 +141,7 @@ nav: - Uninstall: "admin/uninstall.md" - Release Notes: - "admin/release_notes/index.md" + - v2.2: "admin/release_notes/version_2.3.md" - v2.2: "admin/release_notes/version_2.2.md" - v2.1: "admin/release_notes/version_2.1.md" - v2.0: "admin/release_notes/version_2.0.md"