Compare commits

..

1 commit

Author SHA1 Message Date
e4d85ac5e1 chore(deps): update dependency pytest to v8.3.3
All checks were successful
build pypackage and create release / release-github (pull_request) Successful in 13s
check code / check-code (pull_request) Successful in 18s
2024-09-11 04:16:10 +02:00
5 changed files with 5 additions and 13 deletions

View file

@ -7,14 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
## [v0.3.9](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/compare/v0.3.8...v0.3.9) - 2024-09-12
### Commits
- caa records: convert bytes values to string [`5a35e1b`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/5a35e1b51e4ba8e9b1c9e172d11ae8684e344eb9)
- fix changelog action [`015745f`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/015745f353cd29861c2b6a4927e8f3cdf137f4ec)
- chore(deps): update lscr.io/linuxserver/netbox docker tag to v4.1.0 [`d04d72b`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/d04d72bad043b37ac745d055f2e482493b7e962b)
## [v0.3.8](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/compare/v0.3.7...v0.3.8) - 2024-08-30
### Commits

View file

@ -1,4 +1,4 @@
FROM lscr.io/linuxserver/netbox:4.1.2
FROM lscr.io/linuxserver/netbox:4.1.0
RUN pip install -U \
wheel \

View file

@ -45,7 +45,7 @@ packages = ["src/octodns_netbox_dns"]
[tool.hatch.envs.default]
python = "3.11"
dependencies = [
"pytest==8.2.2",
"pytest==8.3.3",
"coverage==7.5.3",
"octodns==1.9.1",
"octodns-spf==0.0.2",

View file

@ -1 +1 @@
__version__ = "0.3.9"
__version__ = "0.3.8"

View file

@ -165,8 +165,8 @@ class NetBoxDNSProvider(octodns.provider.base.BaseProvider):
case "CAA":
value = {
"flags": rdata.flags,
"tag": rdata.tag.decode(),
"value": rdata.value.decode(),
"tag": rdata.tag,
"value": rdata.value,
}
case "LOC":