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

conduit 0.11.0 #180389

Merged
merged 2 commits into from
Aug 8, 2024
Merged
Changes from all commits
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
22 changes: 11 additions & 11 deletions Formula/c/conduit.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Conduit < Formula
desc "Streams data between data stores. Kafka Connect replacement. No JVM required"
homepage "https://conduit.io/"
url "https://github.com/ConduitIO/conduit/archive/refs/tags/v0.10.3.tar.gz"
sha256 "34fea807f78c49603a0fe67107621b3df9bd4ee75ef1a0a1ae531ef8256e9e33"
url "https://github.com/ConduitIO/conduit/archive/refs/tags/v0.11.0.tar.gz"
sha256 "e76fc08c5800881cb72ebb6500600c0c7edaa5aa42b1fbc556f398da2234331c"
license "Apache-2.0"
head "https://github.com/ConduitIO/conduit.git", branch: "main"

Expand All @@ -12,13 +12,13 @@ class Conduit < Formula
end

bottle do
sha256 cellar: :any_skip_relocation, arm64_sonoma: "bfcde85d1b05106f25ab19ab2306e353dd1217953b502ead27d1e152a0244dc9"
sha256 cellar: :any_skip_relocation, arm64_ventura: "e9be41f08c90984da9d2a3fef50196d76a4fc897da6c00b87f416bcd58a717cc"
sha256 cellar: :any_skip_relocation, arm64_monterey: "63696fa74e5d490086be4687a8eb80c90d2c14e4caca5c441271e30daafbedc0"
sha256 cellar: :any_skip_relocation, sonoma: "d869130285a55987ebcfc90d16a13484275d4530aec9f63b06b702d70608512c"
sha256 cellar: :any_skip_relocation, ventura: "5029eaf45bd62f4d33a77a5a939995bc73da1759363413d2fa71ee351f98bcde"
sha256 cellar: :any_skip_relocation, monterey: "ae62e2ad2673739e9d525385377d60434cbcd41b149a6feeb8d2a52c61d8ed3b"
sha256 cellar: :any_skip_relocation, x86_64_linux: "0be92a2554338aa340a3e1b6c7633b96335766d17890a5d21543cee3741ac3aa"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "45135006bad71eae6780bc3b67189f4364e69d8429d35996343bcaa705b73b94"
sha256 cellar: :any_skip_relocation, arm64_ventura: "015a4ba313637f28dd417591e38e5c7ea244c35ea18ace4a5c92ec3ea2a8f097"
sha256 cellar: :any_skip_relocation, arm64_monterey: "d5b9973e94ab8e1023656cff7bcdd351f4ceafd9dccba5783344dba3e008b171"
sha256 cellar: :any_skip_relocation, sonoma: "54360df8410c8e9afd674c417d5b03194ebc74a77389975cbb57f19dfb935f07"
sha256 cellar: :any_skip_relocation, ventura: "95061d7ab9611d98dfe1509840e9aa891de9d329d2229b166b631ebcfd2dcada"
sha256 cellar: :any_skip_relocation, monterey: "b55a4771a9f0735fd524118f564eb480e1a7673fc5e0b1dc731ea7b6688089c5"
sha256 cellar: :any_skip_relocation, x86_64_linux: "8897606ee9784d12be3319e4146d0d59cd59efde28c19841adf6d404d7ec28b9"
end

depends_on "go" => :build
Expand Down Expand Up @@ -46,7 +46,7 @@ def install
# Kill process
Process.kill("SIGKILL", pid)
end
assert_match "grpc server started", (testpath/"output.txt").read
assert_match "http server started", (testpath/"output.txt").read
assert_match "grpc API started", (testpath/"output.txt").read
assert_match "http API started", (testpath/"output.txt").read
end
end
Loading