1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Release v3.13.0 (#1310)

* Remove length checking from TxtNoMultipleStrings

All functions in should test for only one condition. There already is a
function that tests for long TXT records: TxtNoLongStrings.
Add calls to TxtNoLongStrings in all providers that use
TxtNoMultipleStrings, to keep functionality, except for NS1 and ClouDNS,
which allow for any TXT record length, but not for multiple strings per
TXT.

* Release v3.13.0

* Release v3.13.0

Co-authored-by: Norman Stetter <norman.stetter@zeit.de>
This commit is contained in:
Tom Limoncelli
2021-11-27 14:46:37 -05:00
committed by GitHub
parent 2cfd2f403b
commit 215f6ed525
4 changed files with 49 additions and 48 deletions

View File

@@ -198,7 +198,7 @@ If you are at Stack Overflow:
List out-of-date modules and update any that seem worth updating:
```
go get github.com/oligot/go-mod-upgrade
go install github.com/oligot/go-mod-upgrade
go-mod-upgrade
go mod tidy
```
@@ -206,13 +206,11 @@ go mod tidy
OLD WAY:
```
go get -u github.com/psampaz/go-mod-outdated
go install github.com/psampaz/go-mod-outdated
go list -mod=mod -u -m -json all | go-mod-outdated -update -direct
# If any are out of date, update via:
go get -u
or
go get -u module/path
# Once the updates are complete, tidy up: