Merge pull request #13338 from Homebrew/dependabot/bundler/Library/Homebrew/msgpack-1.5.2

build(deps): bump msgpack from 1.4.5 to 1.5.2 in /Library/Homebrew
This commit is contained in:
Bo Anderson 2022-05-30 03:20:02 +01:00 committed by GitHub
commit a3fab022ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 39 additions and 11 deletions

View File

@ -57,7 +57,7 @@ GEM
mime-types-data (3.2022.0105) mime-types-data (3.2022.0105)
mini_portile2 (2.8.0) mini_portile2 (2.8.0)
minitest (5.15.0) minitest (5.15.0)
msgpack (1.4.5) msgpack (1.5.2)
mustache (1.1.1) mustache (1.1.1)
net-http-digest_auth (1.4.1) net-http-digest_auth (1.4.1)
net-http-persistent (4.0.1) net-http-persistent (4.0.1)

View File

@ -56,7 +56,10 @@ module Homebrew
"webrobots", # RBI file is bugged "webrobots", # RBI file is bugged
"sorbet-static-and-runtime", # Unnecessary RBI - remove this entry with Tapioca 0.8 "sorbet-static-and-runtime", # Unnecessary RBI - remove this entry with Tapioca 0.8
] ]
tapioca_args = ["--exclude", *excluded_gems] typed_overrides = [
"msgpack:false", # Investigate removing this with Tapioca 0.8
]
tapioca_args = ["--exclude", *excluded_gems, "--typed-overrides", *typed_overrides]
tapioca_args << "--all" if args.all? tapioca_args << "--all" if args.all?
ohai "Updating Tapioca RBI files..." ohai "Updating Tapioca RBI files..."

View File

@ -1,4 +1,4 @@
# typed: true # typed: false
# DO NOT EDIT MANUALLY # DO NOT EDIT MANUALLY
# This is an autogenerated file for types exported from the `msgpack` gem. # This is an autogenerated file for types exported from the `msgpack` gem.
@ -58,15 +58,15 @@ end
module MessagePack module MessagePack
private private
def dump(v, *rest); end def dump(v, io = T.unsafe(nil), options = T.unsafe(nil)); end
def load(src, param = T.unsafe(nil)); end def load(src, param = T.unsafe(nil)); end
def pack(v, *rest); end def pack(v, io = T.unsafe(nil), options = T.unsafe(nil)); end
def unpack(src, param = T.unsafe(nil)); end def unpack(src, param = T.unsafe(nil)); end
class << self class << self
def dump(v, *rest); end def dump(v, io = T.unsafe(nil), options = T.unsafe(nil)); end
def load(src, param = T.unsafe(nil)); end def load(src, param = T.unsafe(nil)); end
def pack(v, *rest); end def pack(v, io = T.unsafe(nil), options = T.unsafe(nil)); end
def unpack(src, param = T.unsafe(nil)); end def unpack(src, param = T.unsafe(nil)); end
end end
end end
@ -75,8 +75,6 @@ module MessagePack::CoreExt
def to_msgpack(packer_or_io = T.unsafe(nil)); end def to_msgpack(packer_or_io = T.unsafe(nil)); end
end end
MessagePack::DEFAULT_EMPTY_PARAMS = T.let(T.unsafe(nil), Hash)
class MessagePack::ExtensionValue < ::Struct class MessagePack::ExtensionValue < ::Struct
include ::MessagePack::CoreExt include ::MessagePack::CoreExt
@ -92,11 +90,38 @@ class MessagePack::Factory
def dump(v, *rest); end def dump(v, *rest); end
def load(src, param = T.unsafe(nil)); end def load(src, param = T.unsafe(nil)); end
def pack(v, *rest); end def pack(v, *rest); end
def pool(size = T.unsafe(nil), **options); end
def registered_types(selector = T.unsafe(nil)); end def registered_types(selector = T.unsafe(nil)); end
def type_registered?(klass_or_type, selector = T.unsafe(nil)); end def type_registered?(klass_or_type, selector = T.unsafe(nil)); end
def unpack(src, param = T.unsafe(nil)); end def unpack(src, param = T.unsafe(nil)); end
end end
class MessagePack::Factory::Pool
def initialize(factory, size, options = T.unsafe(nil)); end
def dump(object); end
def load(data); end
end
class MessagePack::Factory::Pool::AbstractPool
def initialize(size, &block); end
def checkin(member); end
def checkout; end
end
class MessagePack::Factory::Pool::PackerPool < ::MessagePack::Factory::Pool::AbstractPool
private
def reset(packer); end
end
class MessagePack::Factory::Pool::UnpackerPool < ::MessagePack::Factory::Pool::AbstractPool
private
def reset(unpacker); end
end
class MessagePack::Packer class MessagePack::Packer
def registered_types; end def registered_types; end
def type_registered?(klass_or_type); end def type_registered?(klass_or_type); end

View File

@ -13,8 +13,8 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/public_suffix-4.0.7/l
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/addressable-2.8.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/addressable-2.8.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/bindata-2.4.10/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/bindata-2.4.10/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/msgpack-1.4.5" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/msgpack-1.5.2"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/msgpack-1.4.5/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/msgpack-1.5.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/bootsnap-1.11.1" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/x86_64-darwin-14/2.6.0-static/bootsnap-1.11.1"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/bootsnap-1.11.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/bootsnap-1.11.1/lib"
$:.unshift "#{path}/" $:.unshift "#{path}/"