From c17d9ff9bed624e660f97dcd8b10588b81b4cd86 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:47:54 +0000 Subject: [PATCH 01/30] openrtsp 2024.10.30 --- Formula/o/openrtsp.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/o/openrtsp.rb b/Formula/o/openrtsp.rb index 973cfb663f79..cdeb10c5ae5d 100644 --- a/Formula/o/openrtsp.rb +++ b/Formula/o/openrtsp.rb @@ -1,10 +1,10 @@ class Openrtsp < Formula desc "Command-line RTSP client" homepage "http://www.live555.com/openRTSP" - url "http://www.live555.com/liveMedia/public/live.2024.10.29.tar.gz" - mirror "https://download.videolan.org/pub/videolan/testing/contrib/live555/live.2024.10.29.tar.gz" + url "http://www.live555.com/liveMedia/public/live.2024.10.30.tar.gz" + mirror "https://download.videolan.org/pub/videolan/testing/contrib/live555/live.2024.10.30.tar.gz" # Keep a mirror as upstream tarballs are removed after each version - sha256 "551ba52f7056251758c554db1248cddb73e193983f1af07faaabdeb629f40db1" + sha256 "1d16fbf44b47b61203e8dce6e91449f024ccb48dd40a38d5f82800340c0961b5" license "LGPL-3.0-or-later" livecheck do From db64f0f90c559088d2d45cee47c416cbeca0c946 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Wed, 30 Oct 2024 15:13:01 -0400 Subject: [PATCH 02/30] plplot: clean up workarounds and build --- Formula/p/plplot.rb | 36 +++++++++--------------------------- 1 file changed, 9 insertions(+), 27 deletions(-) diff --git a/Formula/p/plplot.rb b/Formula/p/plplot.rb index 69574b40515c..1cfe6fdd1927 100644 --- a/Formula/p/plplot.rb +++ b/Formula/p/plplot.rb @@ -37,7 +37,12 @@ class Plplot < Formula end def install - args = std_cmake_args + %w[ + # These example files end up with references to the Homebrew build + # shims unless we tweak them: + inreplace "examples/c/Makefile.examples.in", "@CC@", ENV.cc + inreplace "examples/c++/Makefile.examples.in", "@CXX@", ENV.cxx + + args = %w[ -DPL_HAVE_QHULL=OFF -DENABLE_ada=OFF -DENABLE_d=OFF @@ -55,32 +60,9 @@ def install -DPLD_xwin=OFF ] - # std_cmake_args tries to set CMAKE_INSTALL_LIBDIR to a prefix-relative - # directory, but plplot's cmake scripts don't like that - args.map! { |x| x.start_with?("-DCMAKE_INSTALL_LIBDIR=") ? "-DCMAKE_INSTALL_LIBDIR=#{lib}" : x } - - # Also make sure it already exists: - lib.mkdir - - mkdir "plplot-build" do - system "cmake", "..", *args - system "make" - # These example files end up with references to the Homebrew build - # shims unless we tweak them: - inreplace "examples/c/Makefile.examples", %r{^CC = .*/}, "CC = " - inreplace "examples/c++/Makefile.examples", %r{^CXX = .*/}, "CXX = " - system "make", "install" - end - - # fix rpaths - cd (lib.to_s) do - Dir["*.dylib"].select { |f| File.ftype(f) == "file" }.each do |f| - MachO::Tools.dylibs(f).select { |d| d.start_with?("@rpath") }.each do |d| - d_new = d.sub("@rpath", opt_lib.to_s) - MachO::Tools.change_install_name(f, d, d_new) - end - end - end + system "cmake", "-S", ".", "-B", "build", *args, *std_cmake_args(install_libdir: lib) + system "cmake", "--build", "build" + system "cmake", "--install", "build" end test do From f1efc7b60c6c5bec3f558624a41ea0cc4e445c96 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Wed, 30 Oct 2024 12:56:37 -0700 Subject: [PATCH 03/30] kubeshark 52.3.87 Created by https://github.com/mislav/bump-homebrew-formula-action --- Formula/k/kubeshark.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/kubeshark.rb b/Formula/k/kubeshark.rb index afcb2ac996fd..f22b005970f5 100644 --- a/Formula/k/kubeshark.rb +++ b/Formula/k/kubeshark.rb @@ -1,8 +1,8 @@ class Kubeshark < Formula desc "API Traffic Analyzer providing real-time visibility into Kubernetes network" homepage "https://www.kubeshark.co/" - url "https://github.com/kubeshark/kubeshark/archive/refs/tags/v52.3.86.tar.gz" - sha256 "c7e33253bde9967a11bf983d6ef34d093a98d9ae9a3370e461eb2a824307dc2b" + url "https://github.com/kubeshark/kubeshark/archive/refs/tags/v52.3.87.tar.gz" + sha256 "dea9d66e2fff6a55379a6ccb0820c7c3a97848e7ffc14a255460b2403428a16a" license "Apache-2.0" # Upstream creates releases that use a stable tag (e.g., `v1.2.3`) but are From 997f2f8f75396e936202cae99886e6a0ca11c9ff Mon Sep 17 00:00:00 2001 From: aptos-bot Date: Wed, 30 Oct 2024 13:17:16 -0700 Subject: [PATCH 04/30] aptos aptos-cli-v4.3.0 Created by https://github.com/mislav/bump-homebrew-formula-action From CLI release run https://github.com/aptos-labs/aptos-core/actions/runs/11600283995 --- Formula/a/aptos.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/aptos.rb b/Formula/a/aptos.rb index ec8ebff58ece..3032ff90d37a 100644 --- a/Formula/a/aptos.rb +++ b/Formula/a/aptos.rb @@ -1,8 +1,8 @@ class Aptos < Formula desc "Layer 1 blockchain built to support fair access to decentralized assets for all" homepage "https://aptosfoundation.org/" - url "https://github.com/aptos-labs/aptos-core/archive/refs/tags/aptos-cli-v4.2.6.tar.gz" - sha256 "422ad0c61ac1ca8dd52b093d1e372f08a070c6f9f141b4fe716fd3f1ae106a02" + url "https://github.com/aptos-labs/aptos-core/archive/refs/tags/aptos-cli-v4.3.0.tar.gz" + sha256 "5ff9a9c0920cfc47ace639306a3d12c64f809d3fb83e3a9e64728a31917bbb1d" license "Apache-2.0" head "https://github.com/aptos-labs/aptos-core.git", branch: "main" From cb0ed3c00c3623252b8c1c6a18f56ccf9b8a00a7 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 30 Oct 2024 13:23:28 -0700 Subject: [PATCH 05/30] pgvector 0.8.0 --- Formula/p/pgvector.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/p/pgvector.rb b/Formula/p/pgvector.rb index e44b1250cbfa..02dfe28349aa 100644 --- a/Formula/p/pgvector.rb +++ b/Formula/p/pgvector.rb @@ -1,8 +1,8 @@ class Pgvector < Formula desc "Open-source vector similarity search for Postgres" homepage "https://github.com/pgvector/pgvector" - url "https://github.com/pgvector/pgvector/archive/refs/tags/v0.7.4.tar.gz" - sha256 "0341edf89b1924ae0d552f617e14fb7f8867c0194ed775bcc44fa40288642583" + url "https://github.com/pgvector/pgvector/archive/refs/tags/v0.8.0.tar.gz" + sha256 "867a2c328d4928a5a9d6f052cd3bc78c7d60228a9b914ad32aa3db88e9de27b0" license "PostgreSQL" bottle do From 69ac5bbf9081c6fba3ce24dd2d959fe80a694bce Mon Sep 17 00:00:00 2001 From: flow-bot Date: Wed, 30 Oct 2024 13:25:05 -0700 Subject: [PATCH 06/30] flow 0.251.1 --- Formula/f/flow.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/flow.rb b/Formula/f/flow.rb index c2cbd446c4b2..cc0c264f0913 100644 --- a/Formula/f/flow.rb +++ b/Formula/f/flow.rb @@ -1,8 +1,8 @@ class Flow < Formula desc "Static type checker for JavaScript" homepage "https://flow.org/" - url "https://github.com/facebook/flow/archive/refs/tags/v0.251.0.tar.gz" - sha256 "3d5e0e522572ee1fda3a402131c95bcc731bcd8fa05eef77f5f35695b258584a" + url "https://github.com/facebook/flow/archive/refs/tags/v0.251.1.tar.gz" + sha256 "07d0d439f2f0f339c0b8f7d680d85a47a1edbafecdea793dad399cc1d3baa107" license "MIT" head "https://github.com/facebook/flow.git", branch: "main" From cd6cac25939c5953a65552db0e846537330a0246 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:36:48 +0000 Subject: [PATCH 07/30] kubeshark: update 52.3.87 bottle. --- Formula/k/kubeshark.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/k/kubeshark.rb b/Formula/k/kubeshark.rb index f22b005970f5..e3865a788f13 100644 --- a/Formula/k/kubeshark.rb +++ b/Formula/k/kubeshark.rb @@ -14,12 +14,12 @@ class Kubeshark < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f402e46af70ba00ab5d2405ea2b3fdbab370ff9b778df32d86ba9493c90f3ad0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "aa423c7151f1519600872a22399c16225d250014d9778dd09c5ab825fd96dc07" - sha256 cellar: :any_skip_relocation, arm64_ventura: "0507c4a209956cedda2a66f93488c6b271de0a140ba4f656a1d80ede0606112e" - sha256 cellar: :any_skip_relocation, sonoma: "25804c9e1fe054a442ea55b4fb66cbe6d9f141087951ca1db7b23e1c2bdead18" - sha256 cellar: :any_skip_relocation, ventura: "62abdf671b76178d673494444305179330dfa0678aed6a79b57db5f861af0828" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f77ff1d25bd416b6da2ca43b207abf886fef40aced9d598350ae5eea3a6eb75d" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "88f54432e141f4924a6d7d438ecbf5990eda5a18a1cd8ce99be3304423201e97" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "4b008f15240df27626e16ff91a41d6e969acec9dba975362d68bd93d58835a8b" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0f3f30f0830e9ab88b4b3d67d6591f3238a4437cbc8167e0c340beea535b526c" + sha256 cellar: :any_skip_relocation, sonoma: "ad36de67bd7d5eb00276036a2a4f053c8e1a71e71a9a8d6ddad1b158401038b5" + sha256 cellar: :any_skip_relocation, ventura: "fe49507c64cf2c215ebf56a4395d360c2e8f182afbd277061ab725e081f853ed" + sha256 cellar: :any_skip_relocation, x86_64_linux: "19e0b6a11ecb99c6526f18c41c080b3ac1370973b6dae0411d71c60cbbc937b7" end depends_on "go" => :build From ac1be40cbfdf971358bf1fcc884ea923ba549e39 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:42:48 +0000 Subject: [PATCH 08/30] openrtsp: update 2024.10.30 bottle. --- Formula/o/openrtsp.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/o/openrtsp.rb b/Formula/o/openrtsp.rb index cdeb10c5ae5d..f68c9e58bbbf 100644 --- a/Formula/o/openrtsp.rb +++ b/Formula/o/openrtsp.rb @@ -13,12 +13,12 @@ class Openrtsp < Formula end bottle do - sha256 cellar: :any, arm64_sequoia: "f880854db6482cfbe7bfc8696552764d566238c1cd91209bad89284d797dab0b" - sha256 cellar: :any, arm64_sonoma: "8b6cee391cdb2a5213e6956a20e833356fd043061d9886c62a89e86f9c8005fe" - sha256 cellar: :any, arm64_ventura: "144962eec871d997aaea6537165a3691beea038ac920983eff7b2d3834735081" - sha256 cellar: :any, sonoma: "4f341df8226f801dcf1e30ea9676192f4bb8a488f1c544a456d5927251109163" - sha256 cellar: :any, ventura: "184389b1f729a947eef862cad1c04e494c39c5daf9ba26844065d60023a81298" - sha256 cellar: :any_skip_relocation, x86_64_linux: "12d4302a28ad3bf6f33df969aec28ad7491463fc6c0ad0a777d43b29b1028125" + sha256 cellar: :any, arm64_sequoia: "a3bb6cb59da2f756400ebfd50ee91111356947b7ebfb2f83937dda947ab6ab11" + sha256 cellar: :any, arm64_sonoma: "d158f87cbc890b4165427eac4695d43843aed92e55b66a2293bf9ac859365c4a" + sha256 cellar: :any, arm64_ventura: "822ae9b0ae404e9f16f0cbe44925d86d8e7505cf93bda040fe79a25153bff4c2" + sha256 cellar: :any, sonoma: "1ea5f413cffe2d4fd6c5e02971f7b41dbfef96bb2daabd137b7bd2e591810519" + sha256 cellar: :any, ventura: "299431cf6578450cea1afec244a05f444044659e6df6e82a151c2861b2ca9a65" + sha256 cellar: :any_skip_relocation, x86_64_linux: "5b49c91de04eec292f0098f6b7b4ae55ee9e3806d082b11750055d25433bd22d" end depends_on "openssl@3" From e2031d366fb4166d0cc304b857ade4a69f6c637b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:53:34 +0000 Subject: [PATCH 09/30] pgvector: update 0.8.0 bottle. --- Formula/p/pgvector.rb | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Formula/p/pgvector.rb b/Formula/p/pgvector.rb index 02dfe28349aa..8758a2b9d069 100644 --- a/Formula/p/pgvector.rb +++ b/Formula/p/pgvector.rb @@ -6,13 +6,12 @@ class Pgvector < Formula license "PostgreSQL" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6c15fe20140648ded883016f6edcf606926b1654ecb2b82b73e035c0dfc7bf50" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "fe198adaaa6588303ae2032c61cf8dd535ad06e9860780335dfacd4396ed19a3" - sha256 cellar: :any_skip_relocation, arm64_ventura: "8c7f23fe6998cf78b81613cbe4c0378fae3ce4ef486e10c3bf7eed6323d6b337" - sha256 cellar: :any_skip_relocation, sonoma: "e9f6ed112975cb8a21208609fa5773c37bb74ca6ea112159b4a7f33ca2238c18" - sha256 cellar: :any_skip_relocation, ventura: "b8058a3a989357e9e6ac1bd7784b6bd77f107c960d088da487e716cf1dee2ddb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "e5020858a996ba215f18234bc25e7552edae986911cfe0206980c5c8d0affc45" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "d0ea074a0dd35acc1957c1f2f6d90df297a16d7e47f94368b85e3a309e9540fe" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "01a8036c0a03daa290fca07e915e406356fd36cdbd084117e9246d772955b438" + sha256 cellar: :any_skip_relocation, arm64_ventura: "0d0edb94eda91ef957b4497c0173c33579f860843d6c105d5668f1ceb86d11a7" + sha256 cellar: :any_skip_relocation, sonoma: "b9e229a72dbc9e7b8e4587389823caa307fc1ee0f2338e45140a49e4ece5c4eb" + sha256 cellar: :any_skip_relocation, ventura: "21e40f77e8afca2fae9303cc45216b53ec79d48ebc3f8d7cd79b2fa8a22aa6ac" + sha256 cellar: :any_skip_relocation, x86_64_linux: "7765039d7b20e78006e2ff2c3b197185a9c80e8b930a384b8e5feeb88eaf3afa" end depends_on "postgresql@14" => [:build, :test] From 3742ce84ed0125fccaef3e37f375b64cbd11fee7 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:03:49 +0000 Subject: [PATCH 10/30] aptos: update 4.3.0 bottle. --- Formula/a/aptos.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/aptos.rb b/Formula/a/aptos.rb index 3032ff90d37a..e5db90fa7df3 100644 --- a/Formula/a/aptos.rb +++ b/Formula/a/aptos.rb @@ -12,12 +12,12 @@ class Aptos < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "4571f288810289bd9c4417d0a5893593909db10fab332976bd7a93044040cf6d" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "5014028e10044d83aafa481bb77f5f992af73ae12cc49d526ec72690fbcf0945" - sha256 cellar: :any_skip_relocation, arm64_ventura: "b54d61406286a60361d418d219e88672579d78c0f5b3f32725d6d36a7f34e5b8" - sha256 cellar: :any_skip_relocation, sonoma: "a4e91b462d814fa2f1a48d575a8f84c04965030aa8691e07d7d7b723d941b88b" - sha256 cellar: :any_skip_relocation, ventura: "7050e6a4d5cb8d50ec238a4c7b3f2ca886541354aa4e6193d41957db9272c0fe" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b3dbeba991b224aaa081083f22db1838539cff509d71c97173e5c63eefd4c485" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "ee7fd1a297e94af98b42622fd6714f8a08f3ad613f207c1d95ee3f1961d7a694" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "244f820cd84dff8986f3abb9e3b2bd2c53407f86485a5037e8f8a7d18957a489" + sha256 cellar: :any_skip_relocation, arm64_ventura: "f0f3f33ba38db2afa902fb3155f6047eb80a4acb4f1dc97c65f13d2a65ff215a" + sha256 cellar: :any_skip_relocation, sonoma: "a606435e042953046a7055023591c6e89dd681afccdc76958745e6c0320aaa17" + sha256 cellar: :any_skip_relocation, ventura: "877f7bb11afd47de49c6c7841b9f263889e0e0b8c562faa05de620a34337adda" + sha256 cellar: :any_skip_relocation, x86_64_linux: "b81249c70d2f7eb2fc6e9089e2afc5f84c9860d239597f2809ca0ba7232b6577" end depends_on "cmake" => :build From aab892152997acc10df0302ba4c3281678d0b039 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:08:06 +0000 Subject: [PATCH 11/30] flow: update 0.251.1 bottle. --- Formula/f/flow.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/f/flow.rb b/Formula/f/flow.rb index cc0c264f0913..a56bb3de97da 100644 --- a/Formula/f/flow.rb +++ b/Formula/f/flow.rb @@ -7,12 +7,12 @@ class Flow < Formula head "https://github.com/facebook/flow.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "b90bb6465bcf6ffe6fe046916a1421ff5d9645068981b87dfdc1b7526d542fa7" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ff19682f478b7f686ccf34dd5bd22b6d04a3104b13e31ea888147c81e26eb182" - sha256 cellar: :any_skip_relocation, arm64_ventura: "1f33545a9ee5be73c9539e2dc50a16195e190368b97c1f9722cbf0131d1891cf" - sha256 cellar: :any_skip_relocation, sonoma: "cc9a7e8a323db0a0e42f0478196b5dd42a4b320c6c19dbcb1018b1a541e74cab" - sha256 cellar: :any_skip_relocation, ventura: "eac59d3e61584b1177006f271ae5d529c8d96680cbf53958ea57f2a866151f62" - sha256 cellar: :any_skip_relocation, x86_64_linux: "ed838b986d2388d0603ab7114e8caf89868284024dcd02d614a47dc1c44f27ac" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8989886630f8e33d7f2abbc53031580a49b2d168f30b95a4a2d249eb3bb97f55" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "698be02705f59bd5c94c95c00c036c287f3428657ec2e8ff961c4fd930463fd8" + sha256 cellar: :any_skip_relocation, arm64_ventura: "e377d8c57f1d61ff82038109180ec516969719f68a2e9d0f251b606c732e30f3" + sha256 cellar: :any_skip_relocation, sonoma: "c85bde0bc0b6c5fb6913ec6f284b0cb1a73f631e5761435714c20dbb38cb41cd" + sha256 cellar: :any_skip_relocation, ventura: "afda482370089aca5e29ef9af88bce51d20fb9c1a0bbf230172d1675bdede2c8" + sha256 cellar: :any_skip_relocation, x86_64_linux: "45fc8b0b766483c55e514b8a5354e28055b350bcdba3279bb7494af3a7f9d9fc" end depends_on "ocaml" => :build From 22ec8c329f011728d227ef5c2014e399bce68ab8 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:24:19 +0000 Subject: [PATCH 12/30] awscli 2.18.18 --- Formula/a/awscli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index ed96aee35ead..3bc40eeac591 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -3,8 +3,8 @@ class Awscli < Formula desc "Official Amazon AWS command-line interface" homepage "https://aws.amazon.com/cli/" - url "https://github.com/aws/aws-cli/archive/refs/tags/2.18.17.tar.gz" - sha256 "7410de4b92470f32555184eaace1174aac5d6607407b3f64589b9a625fed7ca0" + url "https://github.com/aws/aws-cli/archive/refs/tags/2.18.18.tar.gz" + sha256 "8ee188df4de9f2435acfa80026388e3325e53b7ad2c8894d1d64650c2d275f0e" license "Apache-2.0" head "https://github.com/aws/aws-cli.git", branch: "v2" From 2b80c05045a28c06f68c0f7a482af38fe3363486 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:29:28 +0000 Subject: [PATCH 13/30] cyctl 0.15.1 --- Formula/c/cyctl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/c/cyctl.rb b/Formula/c/cyctl.rb index 0648647a7ad3..72f6fb5addb3 100644 --- a/Formula/c/cyctl.rb +++ b/Formula/c/cyctl.rb @@ -1,8 +1,8 @@ class Cyctl < Formula desc "Customizable UI for Kubernetes workloads" homepage "https://cyclops-ui.com/" - url "https://github.com/cyclops-ui/cyclops/archive/refs/tags/v0.15.0.tar.gz" - sha256 "041f963cc2e261e976a6e2326ca2ff7186f37152dd94e7ae299f5e3c01e22bae" + url "https://github.com/cyclops-ui/cyclops/archive/refs/tags/v0.15.1.tar.gz" + sha256 "ec6f5128afb7ff09ed0752d2af5e1e527763191dc603e4f5e750a0640514b605" license "Apache-2.0" head "https://github.com/cyclops-ui/cyclops.git", branch: "main" From 7ef24d61727c8e13e955accb6d9b146cb3224812 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:30:07 +0000 Subject: [PATCH 14/30] datafusion 42.1.0 --- Formula/d/datafusion.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/d/datafusion.rb b/Formula/d/datafusion.rb index 960e001e52d7..d0d50c6ddd3d 100644 --- a/Formula/d/datafusion.rb +++ b/Formula/d/datafusion.rb @@ -1,8 +1,8 @@ class Datafusion < Formula desc "Apache Arrow DataFusion and Ballista query engines" homepage "https://arrow.apache.org/datafusion" - url "https://github.com/apache/arrow-datafusion/archive/refs/tags/42.0.0.tar.gz" - sha256 "8c0e0346540f059a5af4facb8a05dc3b41cff7e1d6b0fdf565b3431d6ff4fca0" + url "https://github.com/apache/arrow-datafusion/archive/refs/tags/42.1.0.tar.gz" + sha256 "9b7e8a1b306de2a99f4223bd79180520b47689047405e757382b39fea72c4c48" license "Apache-2.0" head "https://github.com/apache/arrow-datafusion.git", branch: "master" From 298eec08c8545903b801f5f724002446071d67a9 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:32:10 +0000 Subject: [PATCH 15/30] plplot: update 5.15.0_4 bottle. --- Formula/p/plplot.rb | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Formula/p/plplot.rb b/Formula/p/plplot.rb index 1cfe6fdd1927..0f07fe638305 100644 --- a/Formula/p/plplot.rb +++ b/Formula/p/plplot.rb @@ -10,17 +10,13 @@ class Plplot < Formula revision 4 bottle do - sha256 arm64_sequoia: "cf6dacf91be6c1cd99f50b5913882752afdece2476827c44d3d21c236dceba07" - sha256 arm64_sonoma: "38f8a5391d8b19cb448e226be25d6f6b8ccadbfb24fe27ed4cf701dfbc8b54aa" - sha256 arm64_ventura: "486576902b6d2b2e587234bfdaecfc7ee5a58b3f50bf8d622ead6eee8952c091" - sha256 arm64_monterey: "c9a7891722c17ce0ac1243e1400583ff61250a3ede6a1d232c2a6c9aa4a98178" - sha256 arm64_big_sur: "148662ac1efb63325a193e069fb65bed3ccee4c0288613d819c4f821ec3d8ba8" - sha256 sonoma: "14d2949c2de92effaa6a67d3fabfc070ffb9f51746e3cb91044960d0540181de" - sha256 ventura: "4e805b3ba1621186f2fae3e8d2f117915fdfbac9aaaf90678f0676f51956f584" - sha256 monterey: "a2da58214519cf354a3e0e6d5e40b3d2b3e7e0fc654701e8d0fe0520b95f7c9d" - sha256 big_sur: "840dc348629f2e2c23697475587ccc48822c4ad710b5497319340de6d3c6e401" - sha256 catalina: "9edc31f3d0fccb7d70c782da8ebd425cca7e332d4adcd1550e5ff7ed4c67b4f1" - sha256 x86_64_linux: "2bce940b801bd4cf968b7c7a3e220ce1f80ee3c29f6fac58d38de1151669b144" + rebuild 1 + sha256 arm64_sequoia: "9305edca28268f6aed4efa7da578545c70d5feec4c2161da9f0e60aca9d3ace0" + sha256 arm64_sonoma: "bdc0cc407dee50cc18fe7b6b37db420f9331acb5b63b534931337fa151bf1d95" + sha256 arm64_ventura: "93efe317d3c6e9e265061402aec9a37c332d15420261e47faa3a5c3f06a4aa02" + sha256 sonoma: "fe49328f9a4c77b4ef5890371504401147804bb4254525186f1f85a651a740e0" + sha256 ventura: "32fde8a89d5580c4e09d9fac911a5ac0c5ee2c745a967109e1c130600c30fce7" + sha256 x86_64_linux: "91ae9fc5f0d6d1ba8d8bb494bee3304655c35a7c8fa224baad1b9427a3ca3848" end depends_on "cmake" => :build From b8728bf91666c369fcd959e2064c63c9e310421b Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:33:52 +0000 Subject: [PATCH 16/30] firebase-cli 13.23.1 --- Formula/f/firebase-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/f/firebase-cli.rb b/Formula/f/firebase-cli.rb index 05fffbd27bdd..2635a4f65c0b 100644 --- a/Formula/f/firebase-cli.rb +++ b/Formula/f/firebase-cli.rb @@ -1,8 +1,8 @@ class FirebaseCli < Formula desc "Firebase command-line tools" homepage "https://firebase.google.com/docs/cli/" - url "https://registry.npmjs.org/firebase-tools/-/firebase-tools-13.23.0.tgz" - sha256 "9aca257a16e3a548b049c550da3ecaa64cde2de2c56cfe7316a8079376bf8e1c" + url "https://registry.npmjs.org/firebase-tools/-/firebase-tools-13.23.1.tgz" + sha256 "768d0b959b110f9fb929ea9f9c162c1448cd3b34648a664853092030f948545d" license "MIT" head "https://github.com/firebase/firebase-tools.git", branch: "master" From c418c3f7186a7e06b2f189174a1452fbe93e7ae1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:35:23 +0000 Subject: [PATCH 17/30] git-credential-oauth 0.13.3 --- Formula/g/git-credential-oauth.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/git-credential-oauth.rb b/Formula/g/git-credential-oauth.rb index e73515f9df00..59e8f1bc42dd 100644 --- a/Formula/g/git-credential-oauth.rb +++ b/Formula/g/git-credential-oauth.rb @@ -1,8 +1,8 @@ class GitCredentialOauth < Formula desc "Git credential helper that authenticates in browser using OAuth" homepage "https://github.com/hickford/git-credential-oauth" - url "https://github.com/hickford/git-credential-oauth/archive/refs/tags/v0.13.2.tar.gz" - sha256 "ee894f81c63dbfc9ff7fc59affce3cedca85e9ef3d7b10ea6f0af86e712418d7" + url "https://github.com/hickford/git-credential-oauth/archive/refs/tags/v0.13.3.tar.gz" + sha256 "294c101155872d1a440aad31e0e8e85159a41fefa19c83ef86b6d22a5184d189" license "Apache-2.0" head "https://github.com/hickford/git-credential-oauth.git", branch: "main" From 9acf8ff44d5ac94b8f5538f9f33fcd8611e31c44 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:36:48 +0000 Subject: [PATCH 18/30] gql 0.29.1 --- Formula/g/gql.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/g/gql.rb b/Formula/g/gql.rb index 7a2acf5952a0..1a3455653af3 100644 --- a/Formula/g/gql.rb +++ b/Formula/g/gql.rb @@ -1,8 +1,8 @@ class Gql < Formula desc "Git Query language is a SQL like language to perform queries on .git files" homepage "https://github.com/AmrDeveloper/GQL" - url "https://github.com/AmrDeveloper/GQL/archive/refs/tags/0.28.0.tar.gz" - sha256 "405a74d80149f1e05aa9bec9503c462aef8b47a33809267079eb1d3b4da33dfe" + url "https://github.com/AmrDeveloper/GQL/archive/refs/tags/0.29.1.tar.gz" + sha256 "18f716970f91af0cdd634861bb9c5ead1b02c7e70052742ce921e19505dbc682" license "MIT" head "https://github.com/AmrDeveloper/GQL.git", branch: "master" From cee9ceafdb4c913b58ba66174361f6af09aaae95 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:38:12 +0000 Subject: [PATCH 19/30] httpyac 6.16.3 --- Formula/h/httpyac.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/h/httpyac.rb b/Formula/h/httpyac.rb index 9246853120a8..4a5c906782bf 100644 --- a/Formula/h/httpyac.rb +++ b/Formula/h/httpyac.rb @@ -1,8 +1,8 @@ class Httpyac < Formula desc "Quickly and easily send REST, SOAP, GraphQL and gRPC requests" homepage "https://httpyac.github.io/" - url "https://registry.npmjs.org/httpyac/-/httpyac-6.16.2.tgz" - sha256 "6c183c3245b61bcdd46666231b83852be7979c539d3ba2feed4f9fcc60c79462" + url "https://registry.npmjs.org/httpyac/-/httpyac-6.16.3.tgz" + sha256 "ebb0cd3602a4488c8f0e8290ac00bd5646dd2a0158d7061f5791f07050d3ed53" license "MIT" bottle do From a5cf0d26c16ce1cd6602279301efa30c43d32421 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:40:35 +0000 Subject: [PATCH 20/30] ktfmt 0.53 --- Formula/k/ktfmt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/k/ktfmt.rb b/Formula/k/ktfmt.rb index 17c9f353723b..e23c86d82771 100644 --- a/Formula/k/ktfmt.rb +++ b/Formula/k/ktfmt.rb @@ -1,8 +1,8 @@ class Ktfmt < Formula desc "Kotlin code formatter" homepage "https://facebook.github.io/ktfmt/" - url "https://github.com/facebook/ktfmt/archive/refs/tags/v0.52.tar.gz" - sha256 "dc4e97265004e399ea14f49bb82944de88c29d1e8d105ed68caef453e0d8c6e0" + url "https://github.com/facebook/ktfmt/archive/refs/tags/v0.53.tar.gz" + sha256 "351cd93d8742efaedef800c36b6744d8e7d7abf8558333a92b7747d9a364d530" license "Apache-2.0" bottle do From bc48791a59c8366ef50ab79782c666594880a117 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:41:28 +0000 Subject: [PATCH 21/30] lacework-cli 2.1.0 --- Formula/l/lacework-cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/l/lacework-cli.rb b/Formula/l/lacework-cli.rb index 0a7c0311701a..b8abcee5dea5 100644 --- a/Formula/l/lacework-cli.rb +++ b/Formula/l/lacework-cli.rb @@ -2,8 +2,8 @@ class LaceworkCli < Formula desc "CLI for managing Lacework" homepage "https://docs.lacework.com/cli" url "https://github.com/lacework/go-sdk.git", - tag: "v1.54.0", - revision: "2fdeab69e2819e3fc7e3ff385b0ee975b19724be" + tag: "v2.1.0", + revision: "505540c7dc79e8ff01219bdac8eb6073f0a70259" license "Apache-2.0" head "https://github.com/lacework/go-sdk.git", branch: "main" From fa5071c4096d39b0a3c62698e883df5b2e72adfb Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:44:05 +0000 Subject: [PATCH 22/30] cyctl: update 0.15.1 bottle. --- Formula/c/cyctl.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/c/cyctl.rb b/Formula/c/cyctl.rb index 72f6fb5addb3..e37ce198615f 100644 --- a/Formula/c/cyctl.rb +++ b/Formula/c/cyctl.rb @@ -7,12 +7,12 @@ class Cyctl < Formula head "https://github.com/cyclops-ui/cyclops.git", branch: "main" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "e2963cf3aed3c388d1df7c97f1564c9b7d818c1d4de9d64b818d11ae90d986d9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "e2963cf3aed3c388d1df7c97f1564c9b7d818c1d4de9d64b818d11ae90d986d9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "e2963cf3aed3c388d1df7c97f1564c9b7d818c1d4de9d64b818d11ae90d986d9" - sha256 cellar: :any_skip_relocation, sonoma: "db0806ff406593068c9d8ab1191a2cf88ee067849bfc23ff7a72fb770f816bfa" - sha256 cellar: :any_skip_relocation, ventura: "db0806ff406593068c9d8ab1191a2cf88ee067849bfc23ff7a72fb770f816bfa" - sha256 cellar: :any_skip_relocation, x86_64_linux: "991b0a361b3da0e4d33691ca8204cbe6351c95d9218cc3f6beb87a8087f59225" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "c1cb558c2080e650ceada0cbd400e502680e780f6716265cbe5e5f2f51db6b67" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "c1cb558c2080e650ceada0cbd400e502680e780f6716265cbe5e5f2f51db6b67" + sha256 cellar: :any_skip_relocation, arm64_ventura: "c1cb558c2080e650ceada0cbd400e502680e780f6716265cbe5e5f2f51db6b67" + sha256 cellar: :any_skip_relocation, sonoma: "cad412defc4299ea4cdd71eac5ce91d3561433aad2e5d81040aa7714960020e7" + sha256 cellar: :any_skip_relocation, ventura: "cad412defc4299ea4cdd71eac5ce91d3561433aad2e5d81040aa7714960020e7" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f60c4f9d9b5334172e63b1d1ca00569881f3178e22b4a3e58dc243e177ea9ee4" end depends_on "go" => :build From 3a589bbcdaa68ec0cc29ca3cd289ab7b178f8037 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:49:45 +0000 Subject: [PATCH 23/30] git-credential-oauth: update 0.13.3 bottle. --- Formula/g/git-credential-oauth.rb | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Formula/g/git-credential-oauth.rb b/Formula/g/git-credential-oauth.rb index 59e8f1bc42dd..47b2507e9425 100644 --- a/Formula/g/git-credential-oauth.rb +++ b/Formula/g/git-credential-oauth.rb @@ -7,15 +7,12 @@ class GitCredentialOauth < Formula head "https://github.com/hickford/git-credential-oauth.git", branch: "main" bottle do - rebuild 1 - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ff39420fedd201fd8aadd2d2e970820c60e6daaa45eb2498c4d21a51d4beb23c" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "c684c917e7d4382144bc870ae80ee49998b385e788a756ec3bbfa01b7537820f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "99f9738ad51f4efc8f26875f5eeddf24f1c42c098e42d300665d37c46adf2377" - sha256 cellar: :any_skip_relocation, arm64_monterey: "4d26d5207332197586ba00d0225725cceea144e4371657e5fd724b5df2358487" - sha256 cellar: :any_skip_relocation, sonoma: "35fdb037a9fbb443ccdbcbd31da1b8a1a86949b9a060855cfd2c7971bc586e1e" - sha256 cellar: :any_skip_relocation, ventura: "7736b8dec4d2ae0251bc131ce81ee889b266a8d09519bab77d8976f7a062c9b5" - sha256 cellar: :any_skip_relocation, monterey: "69ecc891b5e930f0ec0b2c37bdbccd02232ae2b58b21f6a8f35420e109ebe9c4" - sha256 cellar: :any_skip_relocation, x86_64_linux: "b07ccb69689e7fa321e3e0567612dd2423f83a2b33af12a32ccf0976e0b18dc0" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "a721f6c5816dda4be104c1f39f9f4bffa025777f9277312132cf0f2dea811b49" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "a721f6c5816dda4be104c1f39f9f4bffa025777f9277312132cf0f2dea811b49" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a721f6c5816dda4be104c1f39f9f4bffa025777f9277312132cf0f2dea811b49" + sha256 cellar: :any_skip_relocation, sonoma: "313c9263d6ae9b35174b260203a6ea638609663d2e7d80ce250d1c96d1bc8d13" + sha256 cellar: :any_skip_relocation, ventura: "313c9263d6ae9b35174b260203a6ea638609663d2e7d80ce250d1c96d1bc8d13" + sha256 cellar: :any_skip_relocation, x86_64_linux: "f86a85230ce4f7c854ae3b816ba3c35ffab8aa99b601f4aaedd565a7440ff7bb" end depends_on "go" => :build From 71dd75b142ce9ed50f0ae8a4732a2e5fcb721789 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:56:32 +0000 Subject: [PATCH 24/30] firebase-cli: update 13.23.1 bottle. --- Formula/f/firebase-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/f/firebase-cli.rb b/Formula/f/firebase-cli.rb index 2635a4f65c0b..3809cc1c7aa0 100644 --- a/Formula/f/firebase-cli.rb +++ b/Formula/f/firebase-cli.rb @@ -7,12 +7,12 @@ class FirebaseCli < Formula head "https://github.com/firebase/firebase-tools.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "6894d286e0ac46a66181d15e6c11609680027fb220d5b4d2ab444f0538cfce55" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "6894d286e0ac46a66181d15e6c11609680027fb220d5b4d2ab444f0538cfce55" - sha256 cellar: :any_skip_relocation, arm64_ventura: "6894d286e0ac46a66181d15e6c11609680027fb220d5b4d2ab444f0538cfce55" - sha256 cellar: :any_skip_relocation, sonoma: "b48f12c1e74f149a59d1707976b3bb1af0269f85cc482eec79a334828b4798f5" - sha256 cellar: :any_skip_relocation, ventura: "b48f12c1e74f149a59d1707976b3bb1af0269f85cc482eec79a334828b4798f5" - sha256 cellar: :any_skip_relocation, x86_64_linux: "4fce39dd9a72d6105f8d0244cd44bc1de223bcf9d8d7273d86726e5f4035bb8b" + sha256 arm64_sequoia: "f55453491b9d2b482d70b1ecaf8fa9994882af5bcc6b40353ede22ebc62388d5" + sha256 arm64_sonoma: "5b2f2dc6f0ccf36072c2ee26a511cc1a136750a18484ffc7b4cfc233e57d90a1" + sha256 arm64_ventura: "cb54b978a8157ab929f2a45802b5666c482210e9b45d30d6647af0dfc6e74a7b" + sha256 sonoma: "bef845ae9d77b321bf2cd37f0aff15ec22f4a4dd3d6b5847fb50b4d91aeace73" + sha256 ventura: "64d941102d799c5e3f59baf0b28d0dd32f637d9c4ac1902ffa0d7fb51e4f6535" + sha256 cellar: :any_skip_relocation, x86_64_linux: "802635c84c82e6d21b9c24313007db1968084ab4b643ae134c3204194742396d" end depends_on "node" From a393aec4ad0acdd98c8daedc26c5b8a0da78f653 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:06:05 +0000 Subject: [PATCH 25/30] datafusion: update 42.1.0 bottle. --- Formula/d/datafusion.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/d/datafusion.rb b/Formula/d/datafusion.rb index d0d50c6ddd3d..41974f2bb12c 100644 --- a/Formula/d/datafusion.rb +++ b/Formula/d/datafusion.rb @@ -7,12 +7,12 @@ class Datafusion < Formula head "https://github.com/apache/arrow-datafusion.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "a365d51707c1e07568ebb704f0fd8d38a7ade58603d49dfb9df17b992d4e2bd6" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "11ecafacb0ba617dbfc650017e0c474ab0c0a4f78834f4d5d9b8c8eeb75b8880" - sha256 cellar: :any_skip_relocation, arm64_ventura: "65676c851ffad3be5cfee53f8c8e7235e285395aab845029f1aca75bd5f870c2" - sha256 cellar: :any_skip_relocation, sonoma: "e38861f7d6bce2cd0df8dd138c23c41c131a488f35677842a96cef88f525ae8d" - sha256 cellar: :any_skip_relocation, ventura: "0190a8e92ecf160790309fb9d1feab7d8bd7317fe6376c58d602da2102f1fcab" - sha256 cellar: :any_skip_relocation, x86_64_linux: "bbc71b11aa6956f6deeb118ccddee99b0c035e3ddf5e07f788f5233c2d713b43" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3bff93d29f5ab630525103345dbbc37073a5b82b9bfc2a264aa3a6fe040a35d0" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "28cd8db5da9a5c6dbc4409c160ea41e4fbd1806b8ea69cd1acf25c79f921e3b1" + sha256 cellar: :any_skip_relocation, arm64_ventura: "dce6b9f91c2d447040e30867a71dc1256ce34baf59a873bad4c84850b7539750" + sha256 cellar: :any_skip_relocation, sonoma: "99afe406d8375b42cba98bc8c4eef76b41b1cfa5133289f820847258260cf0c9" + sha256 cellar: :any_skip_relocation, ventura: "75db074f9550d307e8749c126219cb05f1a85c95c3a29096aecbb8362b07bf5d" + sha256 cellar: :any_skip_relocation, x86_64_linux: "8bc098a830df6757e5725af17d3397a23ec91b3ce98733bc09624d82b99820d8" end depends_on "rust" => :build From 6c83938a25abb1a9fb50433a0836bc3f286b2e30 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:06:26 +0000 Subject: [PATCH 26/30] awscli: update 2.18.18 bottle. --- Formula/a/awscli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/a/awscli.rb b/Formula/a/awscli.rb index 3bc40eeac591..5ad0d3f6979a 100644 --- a/Formula/a/awscli.rb +++ b/Formula/a/awscli.rb @@ -9,12 +9,12 @@ class Awscli < Formula head "https://github.com/aws/aws-cli.git", branch: "v2" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "91d3126475a1592c93f3e8c3ece3c52a12f5a98c97d3494de9a3ab10c1068696" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "1ca8ae215efcf77ee089e4dd84f458550d384732c2fd988b4bcd020d54b0944f" - sha256 cellar: :any_skip_relocation, arm64_ventura: "fe55b0cc44ce287220caedd95b8ddfadb2b9a4d52bf542b60078443e6493ec4b" - sha256 cellar: :any_skip_relocation, sonoma: "994de7fdf120901a65f847f31020d3ea577ead81461eebf4ee0c6dcefc00fda8" - sha256 cellar: :any_skip_relocation, ventura: "9d75a3bc5fd51808e5518e87f413271d9759792365c8689a0d02649bed6bc302" - sha256 cellar: :any_skip_relocation, x86_64_linux: "f96027fc9259390c91a889a383634853ab8fac3ad4a64a897270a1bdf47b6e83" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "3c3432ac0fa29e735f66ba4702d3ac25ed238cdaf3458edca1c03cbe0daf23b3" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "53f8aa68faa347acd148e41db1823093367473e412aa01586c41988487b76af4" + sha256 cellar: :any_skip_relocation, arm64_ventura: "67750726b9143c6f3eaf939cd24f8ccd64057e5c0e3e58e011345f19fb081e2c" + sha256 cellar: :any_skip_relocation, sonoma: "ab4c8398f0d61f039fc6f92764077e4d5828ae18760c24573f51419982f90d7e" + sha256 cellar: :any_skip_relocation, ventura: "22c4046a17793e5b1d6abb409608dac641e7d6de41405ad5cca2fc260c8c6003" + sha256 cellar: :any_skip_relocation, x86_64_linux: "3aad3fd2db8c7f18670014bedb39bb06815903a96cf7c4de5dd8ebd95aa1f8f5" end depends_on "cmake" => :build From 6df6c5e7fcabfd4fff93bcb1f300a298b631f12f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:06:58 +0000 Subject: [PATCH 27/30] gql: update 0.29.1 bottle. --- Formula/g/gql.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/g/gql.rb b/Formula/g/gql.rb index 1a3455653af3..56868853a77a 100644 --- a/Formula/g/gql.rb +++ b/Formula/g/gql.rb @@ -7,12 +7,12 @@ class Gql < Formula head "https://github.com/AmrDeveloper/GQL.git", branch: "master" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "ce8eedca8b3bc5eeb386d14405cce1def7913d688e9325c50fc12daf48757fc4" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "ee294854a4ac87230ce38441e3f4b11b3e281bbcb9e79941e7ce68c3e32eb9f9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "c83725cff892f974b7c70056a648dca3cad1d27acda042bc746948d12ef9abfe" - sha256 cellar: :any_skip_relocation, sonoma: "aa3cd77d5a940c910ed8468955ce270df043ee2a6918dd8ac0e108fd940412e0" - sha256 cellar: :any_skip_relocation, ventura: "57e2de748c238882dd90bbbf1d1d12e2cfa293045b53246cca052097d4997e93" - sha256 cellar: :any_skip_relocation, x86_64_linux: "cbe7e65681c6d96cb5e7b501ffaec1dcaa09040f3b3071014f13aecfa4a66e5f" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "6b0ca369779c050c7fa1af292fcd082bef98ccbe12faf0b4ff1511929a76aa88" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "ab6c5090bc9f5a07417f09ba3f141574b2cd88fb2bfe6d8c08433e9f50defacd" + sha256 cellar: :any_skip_relocation, arm64_ventura: "d4850758bd9ee86f0bdb294087fe109e95af6a5975e9e8273e94ef6818b5d1dc" + sha256 cellar: :any_skip_relocation, sonoma: "57ca0afe4f146611f462b09c69a0cb05f12f5bc9b4e976e76ec5287a693d9ab5" + sha256 cellar: :any_skip_relocation, ventura: "49f5219b7ee151ecab1d7cda752c13ad61ba15f6934a1d9b794d5a8fb7e2b5dd" + sha256 cellar: :any_skip_relocation, x86_64_linux: "cee8c31f2f621a03e45208766e927f89f3a36bd4e570f864313579a0e0ee9fb1" end depends_on "cmake" => :build From a7a20853e3659cfd4b68bcc7b0d2b274992b28ea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:07:31 +0000 Subject: [PATCH 28/30] ktfmt: update 0.53 bottle. --- Formula/k/ktfmt.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/k/ktfmt.rb b/Formula/k/ktfmt.rb index e23c86d82771..76bfdfc61656 100644 --- a/Formula/k/ktfmt.rb +++ b/Formula/k/ktfmt.rb @@ -6,14 +6,12 @@ class Ktfmt < Formula license "Apache-2.0" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "96edc276190c92a8d41329b1f227bcab7cc332fe265bb958b58dfe4c45153567" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "7cb3c4429048ca0e1ed17659bc7aefd91d9ffca998a865df7d055cdfca9f390b" - sha256 cellar: :any_skip_relocation, arm64_ventura: "4a6c790dd70506352735b5c57f462a5dbb2110d98a4fdfb18c46cfd93b5112b1" - sha256 cellar: :any_skip_relocation, arm64_monterey: "e7e0fd43e94ad260584746f0a085373582471a27db2724eff7cf7fa1d9713753" - sha256 cellar: :any_skip_relocation, sonoma: "5190b5fb757806cad7a99ad542f0208994e75dd83b95c09a63d12ab4ad69f777" - sha256 cellar: :any_skip_relocation, ventura: "7f04cab89f4c5132d1c2bf1a5eeb221d9b92c7e698521d09e4a69c5edfb5dd49" - sha256 cellar: :any_skip_relocation, monterey: "e00c651910ab4555349263ac7def9060c78e698cbaeafa6b6e49cfc12341b287" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5bc616902973172d2888714b6aac280e042cda25b525c08452ffdb08e0daee88" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "04c740271696dca6e4ed545c504f6536cce5fdb35c04d0230e446f2218910944" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "5ccdf6d7763e922206819075a68c913a1eed34a63222630fc23a2825a0cbc524" + sha256 cellar: :any_skip_relocation, arm64_ventura: "a7608bc9bb59d410ffb3dc77e00e20f310d532be9a3fd487b24f789123f83c7a" + sha256 cellar: :any_skip_relocation, sonoma: "432eb1890dde168f5fe82b7ced7495c15f41d0a83df87e5ba46fcb4c1e9b16a8" + sha256 cellar: :any_skip_relocation, ventura: "83f2e2bdac8a0bba0becfbf23bbc2cd859d737b51fa0933203d93e94e86566c9" + sha256 cellar: :any_skip_relocation, x86_64_linux: "0a816945be162cd48325e41ca32c7df91a5f4a08b7742c5c4ea97fa524e4bd3c" end depends_on "maven" => :build From 11b45e338c1877dbedc4f8ee5c6915838bad28e4 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:07:32 +0000 Subject: [PATCH 29/30] httpyac: update 6.16.3 bottle. --- Formula/h/httpyac.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/h/httpyac.rb b/Formula/h/httpyac.rb index 4a5c906782bf..ecc562dfc492 100644 --- a/Formula/h/httpyac.rb +++ b/Formula/h/httpyac.rb @@ -6,12 +6,12 @@ class Httpyac < Formula license "MIT" bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "f7a0ea3fc665f3780f75761bbfa3588f8b2f58514f82349d536125a2a2d06bd0" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "f7a0ea3fc665f3780f75761bbfa3588f8b2f58514f82349d536125a2a2d06bd0" - sha256 cellar: :any_skip_relocation, arm64_ventura: "f7a0ea3fc665f3780f75761bbfa3588f8b2f58514f82349d536125a2a2d06bd0" - sha256 cellar: :any_skip_relocation, sonoma: "514c8a3b436eede4c40a371352c26c5fda5add5c32c8b3156df8f9529e8f01a8" - sha256 cellar: :any_skip_relocation, ventura: "514c8a3b436eede4c40a371352c26c5fda5add5c32c8b3156df8f9529e8f01a8" - sha256 cellar: :any_skip_relocation, x86_64_linux: "304dbe3acda7ff26f43c3ae94e0e8558347bab7481acf9e07745060139c560f5" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "baeccb8ae345e272c0d330bc2517e3577350b95995f9c3e9bf703a57f509c2e5" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "baeccb8ae345e272c0d330bc2517e3577350b95995f9c3e9bf703a57f509c2e5" + sha256 cellar: :any_skip_relocation, arm64_ventura: "baeccb8ae345e272c0d330bc2517e3577350b95995f9c3e9bf703a57f509c2e5" + sha256 cellar: :any_skip_relocation, sonoma: "4ebcc4d9df6486ef85f93bfac8c85047b5795535d266574080569dc146c810ec" + sha256 cellar: :any_skip_relocation, ventura: "4ebcc4d9df6486ef85f93bfac8c85047b5795535d266574080569dc146c810ec" + sha256 cellar: :any_skip_relocation, x86_64_linux: "a1c1bde93c07dff5e1ab5e4dfc4746007650fea79aca76123f428c5d68fb4ef4" end depends_on "node" From 8e6cd77a6a2f6ec06d24e5945c37a297093f6cf5 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:11:37 +0000 Subject: [PATCH 30/30] lacework-cli: update 2.1.0 bottle. --- Formula/l/lacework-cli.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/l/lacework-cli.rb b/Formula/l/lacework-cli.rb index b8abcee5dea5..d6e5ab061e83 100644 --- a/Formula/l/lacework-cli.rb +++ b/Formula/l/lacework-cli.rb @@ -16,12 +16,12 @@ class LaceworkCli < Formula end bottle do - sha256 cellar: :any_skip_relocation, arm64_sequoia: "64d62170fb9e7960a8a17403e334ca323a835e09b2a198800c5f1d4aa847a9f9" - sha256 cellar: :any_skip_relocation, arm64_sonoma: "64d62170fb9e7960a8a17403e334ca323a835e09b2a198800c5f1d4aa847a9f9" - sha256 cellar: :any_skip_relocation, arm64_ventura: "64d62170fb9e7960a8a17403e334ca323a835e09b2a198800c5f1d4aa847a9f9" - sha256 cellar: :any_skip_relocation, sonoma: "05249e5bd6f702be4d557a14786c8cad6b79073ce1669bfe281c55bb02d082ff" - sha256 cellar: :any_skip_relocation, ventura: "05249e5bd6f702be4d557a14786c8cad6b79073ce1669bfe281c55bb02d082ff" - sha256 cellar: :any_skip_relocation, x86_64_linux: "a414bfdd6018e48437be671e4aa6275d0ea004ac8559e0f84b0de46aa75fec90" + sha256 cellar: :any_skip_relocation, arm64_sequoia: "aa57e8eae429620b9848cb8ec85bc3fab5227738b163719714d1bff5f90adeef" + sha256 cellar: :any_skip_relocation, arm64_sonoma: "aa57e8eae429620b9848cb8ec85bc3fab5227738b163719714d1bff5f90adeef" + sha256 cellar: :any_skip_relocation, arm64_ventura: "aa57e8eae429620b9848cb8ec85bc3fab5227738b163719714d1bff5f90adeef" + sha256 cellar: :any_skip_relocation, sonoma: "85a85e7df0131550ffc6d546846577ec778634fcd7377e85ff494ca289087c1c" + sha256 cellar: :any_skip_relocation, ventura: "85a85e7df0131550ffc6d546846577ec778634fcd7377e85ff494ca289087c1c" + sha256 cellar: :any_skip_relocation, x86_64_linux: "1758a0a6e067bece368ba89d0b6fd4930fcf9a89e7eb2346324a608cb193e9f4" end depends_on "go" => :build