From f306472d5a0120b95ac2cd4ab798bb508a052fdc Mon Sep 17 00:00:00 2001 From: Tom Limoncelli <6293917+tlimoncelli@users.noreply.github.com> Date: Mon, 24 Nov 2025 20:29:43 -0500 Subject: [PATCH] CHORE: Maintainer changes for OPENSRS and DIGITALOCEAN (#3849) # Issue The maintainers of OPENSRC and DIGITALOCEAN have indicated they would like to step down. @chicks-net has stepped up to take over maintenance of DIGITALOCEAN. # Resolution * Update the `OWNERS` file. * Update the `providerMaintainer` value for the providers. * Update the README file. CC @Deraen @philhug @chicks-net --------- Co-authored-by: Jeffrey Cafferata --- OWNERS | 4 ++-- README.md | 4 ++-- providers/digitalocean/digitaloceanProvider.go | 2 +- providers/opensrs/opensrsProvider.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/OWNERS b/OWNERS index 5058e9d51..ea320dec8 100644 --- a/OWNERS +++ b/OWNERS @@ -11,7 +11,7 @@ providers/cloudns @pragmaton providers/cnr @KaiSchwarz-cnic providers/cscglobal @mikenz providers/desec @D3luxee -providers/digitalocean @Deraen +providers/digitalocean @chicks-net providers/dnsimple @onlyhavecans providers/dnsmadeeasy @vojtad providers/doh @mikenz @@ -40,7 +40,7 @@ providers/namecheap @willpower232 providers/netcup @kordianbruck providers/netlify @SphericalKat providers/ns1 @costasd -providers/opensrs @philhug +# providers/opensrs NEEDS VOLUNTEER providers/oracle @kallsyms providers/ovh @masterzen providers/packetframe @hamptonmoore diff --git a/README.md b/README.md index 8bbcc7bfd..8e0b7b457 100644 --- a/README.md +++ b/README.md @@ -168,10 +168,10 @@ DNSControl can be installed via packages for macOS, Linux and Windows, or from s See [dnscontrol-action](https://github.com/koenrh/dnscontrol-action) or [gacts/install-dnscontrol](https://github.com/gacts/install-dnscontrol). -## Deprecation warnings (updated 2024-03-25) +## Deprecation warnings (updated 2025-11-21) - **REV() will switch from RFC2317 to RFC4183 in v5.0.** This is a breaking change. Warnings are output if your configuration is affected. No date has been announced for v5.0. See https://docs.dnscontrol.org/language-reference/top-level-functions/revcompat -- **NAMEDOTCOM and SOFTLAYER need maintainers!** These providers have no maintainer. Maintainers respond to PRs and fix bugs in a timely manner, and try to stay on top of protocol changes. +- **NAMEDOTCOM, OPENSRS, and SOFTLAYER need maintainers!** These providers have no maintainer. Maintainers respond to PRs and fix bugs in a timely manner, and try to stay on top of protocol changes. Interested in being a hero and adopting them? Contact tlimoncelli at stack overflow dot com. ## More info at our website diff --git a/providers/digitalocean/digitaloceanProvider.go b/providers/digitalocean/digitaloceanProvider.go index 2d70e7612..79fafd69d 100644 --- a/providers/digitalocean/digitaloceanProvider.go +++ b/providers/digitalocean/digitaloceanProvider.go @@ -85,7 +85,7 @@ var features = providers.DocumentationNotes{ func init() { const providerName = "DIGITALOCEAN" - const providerMaintainer = "@Deraen" + const providerMaintainer = "@chicks-net" fns := providers.DspFuncs{ Initializer: NewDo, RecordAuditor: AuditRecords, diff --git a/providers/opensrs/opensrsProvider.go b/providers/opensrs/opensrsProvider.go index f4b677a5f..9a53c9567 100644 --- a/providers/opensrs/opensrsProvider.go +++ b/providers/opensrs/opensrsProvider.go @@ -20,7 +20,7 @@ var features = providers.DocumentationNotes{ func init() { const providerName = "OPENSRS" - const providerMaintainer = "@philhug" + const providerMaintainer = "NEEDS VOLUNTEER" providers.RegisterRegistrarType(providerName, newReg, features) providers.RegisterMaintainer(providerName, providerMaintainer) }