Skip to content

Commit d07091a

Browse files
authored
Merge pull request #71 from dougbw/fix-soa
fix SOA record
2 parents b95279a + a145445 commit d07091a

File tree

6 files changed

+103
-107
lines changed

6 files changed

+103
-107
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# docker buildx use multiplatform
1010
# docker buildx inspect --bootstrap
1111

12-
FROM --platform=$BUILDPLATFORM golang:1.22-bookworm as builder
12+
FROM --platform=$BUILDPLATFORM golang:1.24-bookworm as builder
1313
ARG TARGETOS TARGETARCH
1414
RUN apt update
1515
RUN apt install git curl jq -y

go.mod

Lines changed: 23 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
module github.com/dougbw/coredns_omada
22

3-
go 1.22.7
4-
5-
toolchain go1.23.5
3+
go 1.24.0
64

75
require (
86
github.com/coredns/caddy v1.1.2-0.20241029205200-8de985351a98
9-
github.com/coredns/coredns v1.12.0
10-
github.com/dougbw/go-omada v0.6.1
11-
github.com/go-playground/validator/v10 v10.24.0
12-
github.com/miekg/dns v1.1.63
7+
github.com/coredns/coredns v1.12.3
8+
github.com/dougbw/go-omada v0.6.2
9+
github.com/go-playground/validator/v10 v10.27.0
10+
github.com/miekg/dns v1.1.68
1311
github.com/stretchr/testify v1.10.0
1412
)
1513

@@ -19,36 +17,32 @@ require (
1917
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2018
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2119
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
22-
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
20+
github.com/gabriel-vasile/mimetype v1.4.10 // indirect
2321
github.com/go-playground/locales v0.14.1 // indirect
2422
github.com/go-playground/universal-translator v0.18.1 // indirect
25-
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
2623
github.com/golang/protobuf v1.5.4 // indirect
27-
github.com/google/pprof v0.0.0-20250125003558-7fdb3d7e6fa0 // indirect
2824
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
2925
github.com/kr/text v0.2.0 // indirect
3026
github.com/leodido/go-urn v1.4.0 // indirect
3127
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
3228
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
33-
github.com/onsi/ginkgo/v2 v2.22.2 // indirect
3429
github.com/opentracing/opentracing-go v1.2.0 // indirect
35-
github.com/pmezard/go-difflib v1.0.0 // indirect
36-
github.com/prometheus/client_golang v1.20.5 // indirect
37-
github.com/prometheus/client_model v0.6.1 // indirect
38-
github.com/prometheus/common v0.62.0 // indirect
39-
github.com/prometheus/procfs v0.15.1 // indirect
40-
github.com/quic-go/quic-go v0.49.0 // indirect
41-
go.uber.org/mock v0.5.0 // indirect
42-
golang.org/x/crypto v0.32.0 // indirect
43-
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
44-
golang.org/x/mod v0.22.0 // indirect
45-
golang.org/x/net v0.34.0 // indirect
46-
golang.org/x/sync v0.10.0 // indirect
47-
golang.org/x/sys v0.29.0 // indirect
48-
golang.org/x/text v0.21.0 // indirect
49-
golang.org/x/tools v0.29.0 // indirect
50-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250127172529-29210b9bc287 // indirect
51-
google.golang.org/grpc v1.70.0 // indirect
52-
google.golang.org/protobuf v1.36.4 // indirect
30+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
31+
github.com/prometheus/client_golang v1.23.0 // indirect
32+
github.com/prometheus/client_model v0.6.2 // indirect
33+
github.com/prometheus/common v0.65.0 // indirect
34+
github.com/prometheus/procfs v0.17.0 // indirect
35+
github.com/quic-go/quic-go v0.54.0 // indirect
36+
go.uber.org/mock v0.6.0 // indirect
37+
golang.org/x/crypto v0.41.0 // indirect
38+
golang.org/x/mod v0.27.0 // indirect
39+
golang.org/x/net v0.43.0 // indirect
40+
golang.org/x/sync v0.16.0 // indirect
41+
golang.org/x/sys v0.35.0 // indirect
42+
golang.org/x/text v0.28.0 // indirect
43+
golang.org/x/tools v0.36.0 // indirect
44+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250826171959-ef028d996bc1 // indirect
45+
google.golang.org/grpc v1.75.0 // indirect
46+
google.golang.org/protobuf v1.36.8 // indirect
5347
gopkg.in/yaml.v3 v3.0.1 // indirect
5448
)

0 commit comments

Comments
 (0)