Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default owner(s) of all files in this repository
* @itdependsnetworks @jeffkala @qduk
* @itdependsnetworks @jeffkala
1 change: 0 additions & 1 deletion changes/845.added

This file was deleted.

1 change: 0 additions & 1 deletion changes/845.dependencies

This file was deleted.

18 changes: 18 additions & 0 deletions docs/admin/release_notes/version_1.18.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

# v1.18 Release Notes

This document describes all new features and changes in the release. 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).

## Release Overview

- Added the `sanitize_config_jinja` function to render each replacement as a Jinja2 template. Requires the optional `jinja2` dependency (`pip install netutils[optionals]`).

## [v1.18.0 (2026-07-30)](https://github.com/networktocode/netutils/releases/tag/v1.18.0)

### Added

- [#845](https://github.com/networktocode/netutils/issues/845) - Added `sanitize_config_jinja` to render each replacement as a Jinja2 template. Requires the optional `jinja2` dependency (`pip install netutils[optionals]`).

### Dependencies

- [#845](https://github.com/networktocode/netutils/issues/845) - Added `jinja2` as an optional dependency.
2 changes: 1 addition & 1 deletion docs/dev/release_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ For major versions, use `major`:
Bumping version from 1.0.0-beta.2 to 1.0.0
```

For patch versions, use `minor`:
For minor versions, use `minor`:

```no-highlight
> poetry version minor
Expand Down
2,247 changes: 1,369 additions & 878 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "netutils"
version = "1.17.4a0"
version = "1.18.1a0"
description = "Common helper functions useful in network automation."
authors = ["Network to Code, LLC <opensource@networktocode.com>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -180,7 +180,7 @@ show_error_codes = true
[tool.towncrier]
package = "netutils"
directory = "changes"
filename = "docs/admin/release_notes/version_1.17.md"
filename = "docs/admin/release_notes/version_1.18.md"
template = "towncrier_template.j2"
start_string = "<!-- towncrier release notes start -->"
issue_format = "[#{issue}](https://github.com/networktocode/netutils/issues/{issue})"
Expand Down
Loading