Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

coredns: add go1.21.0 build patch #139455

Merged
merged 2 commits into from
Aug 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions Formula/coredns.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
class Coredns < Formula
desc "DNS server that chains plugins"
homepage "https://coredns.io/"
url "https://github.com/coredns/coredns/archive/v1.11.0.tar.gz"
sha256 "967c12d2b170b7eb46314edf01013d1547932f62e963a68b5e57cc4c10f966b6"
license "Apache-2.0"
head "https://github.com/coredns/coredns.git", branch: "master"

stable do
url "https://github.com/coredns/coredns/archive/v1.11.0.tar.gz"
sha256 "967c12d2b170b7eb46314edf01013d1547932f62e963a68b5e57cc4c10f966b6"

# quic-go patch for go 1.21.0
patch do
url "https://github.com/coredns/coredns/commit/93139841965d8a4e6791dbe2e4d154991fc6a59b.patch?full_index=1"
sha256 "74f86412ec909879cb690958bc1efe387df045c9f7e6143dc258c1db0673fd88"
end
end

livecheck do
url :stable
strategy :github_latest
Expand Down
Loading