diff --git a/.github/autobump.txt b/.github/autobump.txt index 2ff9b7f9a68c18..58f61422881b79 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2004,6 +2004,7 @@ proto protoc-gen-go protoc-gen-go-grpc protoc-gen-grpc-web +protoc-gen-js protolint prowler proxify diff --git a/Formula/p/protoc-gen-js.rb b/Formula/p/protoc-gen-js.rb index b02f89d404cc51..01992af125da92 100644 --- a/Formula/p/protoc-gen-js.rb +++ b/Formula/p/protoc-gen-js.rb @@ -1,8 +1,8 @@ class ProtocGenJs < Formula desc "Protocol buffers JavaScript generator plugin" homepage "https://github.com/protocolbuffers/protobuf-javascript" - url "https://github.com/protocolbuffers/protobuf-javascript/archive/refs/tags/v3.21.2.tar.gz" - sha256 "35bca1729532b0a77280bf28ab5937438e3dcccd6b31a282d9ae84c896b6f6e3" + url "https://github.com/protocolbuffers/protobuf-javascript/archive/refs/tags/v3.21.4.tar.gz" + sha256 "8cef92b4c803429af0c11c4090a76b6a931f82d21e0830760a17f9c6cb358150" license "BSD-3-Clause" head "https://github.com/protocolbuffers/protobuf-javascript.git", branch: "main" @@ -17,7 +17,7 @@ class ProtocGenJs < Formula end depends_on "bazelisk" => :build - depends_on "protobuf@21" + depends_on "protobuf" def install env_path = "#{HOMEBREW_PREFIX}/bin:/usr/bin:/bin" @@ -38,7 +38,7 @@ def install string name = 2; } EOS - system Formula["protobuf@21"].bin/"protoc", "--js_out=import_style=commonjs:.", "person.proto" + system Formula["protobuf"].bin/"protoc", "--js_out=import_style=commonjs:.", "person.proto" assert_predicate testpath/"person_pb.js", :exist? refute_predicate (testpath/"person_pb.js").size, :zero? end