Compare commits

..

No commits in common. "main" and "v0.3.8" have entirely different histories.
main ... v0.3.8

6 changed files with 6 additions and 26 deletions

View file

@ -30,7 +30,7 @@ jobs:
with:
go-version: ">=1.20"
- name: install hatch
- name: install hatc h
run: pip install -U hatch hatchling
- name: build package

View file

@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
ref: master
- name: install auto-changelog
run: npm install auto-changelog

View file

@ -7,26 +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
- add examples [`1283d83`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/1283d83060ca0728fe399bccbc01a1a5f27452ce)
- fix cicd files [`8e168c4`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/8e168c4d88de25da1a68eff15d955968daa6b23a)
- update version matrix [`00a6ff6`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/00a6ff600beeeb25e432e5ccac774c43e1fdd3fb)
- set SUPPORTS_DYNAMIC to true [`cb3ea58`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/cb3ea583e1ab126b49f3f31055cec8f541d78716)
- chore(deps): update lscr.io/linuxserver/netbox docker tag to v4.0.10 [`e07b905`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/e07b9054eab1e9baf7676ac36a8989a00ab23c80)
- chore(deps): update lscr.io/linuxserver/netbox docker tag to v4.0.9 [`6b4baff`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/6b4bafff5ace100d3de651c50c5d25063907819b)
- chore(deps): update actions/setup-go action to v5 [`1cce3ee`](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/commit/1cce3eee7376c56ef89528e35384c75dc5a279e6)
## [v0.3.7](https://git.44net.ch/olofvndrhr/octodns-netbox-dns/compare/v0.3.6...v0.3.7) - 2024-08-09
### Commits

View file

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

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":