Compare commits

..

5 commits

Author SHA1 Message Date
5fb8140221 chore(deps): update dependency ruff to v0.6.5
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-14 04:17:11 +02:00
4c8ed1b537 [bot] update changelog 2024-09-12 21:26:13 +00:00
e93cd80242 Bump version 0.3.8 → 0.3.9
All checks were successful
check code / check-code (push) Successful in 18s
update changelog / update-changelog (push) Successful in 8s
build pypackage and create release / release-github (push) Successful in 30s
2024-09-12 23:25:39 +02:00
7b36a68163
Merge pull request #6 from freym/caa_bytes_to_string
All checks were successful
check code / check-code (push) Successful in 20s
caa records: convert bytes values to string
2024-09-12 23:24:18 +02:00
Matthias Frey
5a35e1b51e caa records: convert bytes values to string 2024-09-12 10:22:22 +02:00
4 changed files with 12 additions and 4 deletions

View file

@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). 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 ## [v0.3.8](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/compare/v0.3.7...v0.3.8) - 2024-08-30
### Commits ### Commits

View file

@ -69,7 +69,7 @@ validate = ["cd dev && octodns-validate --debug --config-file sync.yml {args}"]
[tool.hatch.envs.lint] [tool.hatch.envs.lint]
python = "3.11" python = "3.11"
detached = true detached = true
dependencies = ["mypy==1.10.0", "ruff==0.6.4"] dependencies = ["mypy==1.10.0", "ruff==0.6.5"]
[tool.hatch.envs.lint.scripts] [tool.hatch.envs.lint.scripts]
typing = "mypy --non-interactive --install-types {args:src/octodns_netbox_dns}" typing = "mypy --non-interactive --install-types {args:src/octodns_netbox_dns}"

View file

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

View file

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