Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							073e739005 
							
						 
					 
					
						
						
							
							Use the debug gem from portable Ruby  
						
						 
						
						... 
						
						
						
						- This is cleaner than vendoring a whole bunch of new gems and pinning `psych`.
- Thanks for the pointer, Bo!
- It doesn't work, though?
```
❯ brew tests --only=migrator --debug
Error: cannot load such file -- debug/debug.so
Warning: Removed Sorbet lines from backtrace!
Rerun with `--verbose` to see the original backtrace
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug/frame_info.rb:16:in `require'
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug/frame_info.rb:16:in `rescue in <module:DEBUGGER__>'
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug/frame_info.rb:13:in `<module:DEBUGGER__>'
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug/frame_info.rb:3:in `<top (required)>'
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug/session.rb:31:in `require_relative'
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug/session.rb:31:in `<top (required)>'
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug.rb:3:in `require_relative'
/opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.1.4/lib/ruby/gems/3.1.0/gems/debug-1.6.3/lib/debug.rb:3:in `<top (required)>'
/opt/homebrew/Library/Homebrew/dev-cmd/tests.rb:48:in `require'
/opt/homebrew/Library/Homebrew/dev-cmd/tests.rb:48:in `run'
/opt/homebrew/Library/Homebrew/brew.rb:89:in `<main>'
``` 
						
						
					 
					
						2024-04-17 23:26:40 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							621e51a6c9 
							
						 
					 
					
						
						
							
							Don't require "debug" in brew tests - it's in our RSpec config  
						
						 
						
						
						
						
					 
					
						2024-04-17 22:25:12 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f2a64f3808 
							
						 
					 
					
						
						
							
							Fix RuboCop and exclude psych from RBI generation  
						
						 
						
						
						
						
					 
					
						2024-04-17 22:25:12 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1daeb5bee0 
							
						 
					 
					
						
						
							
							Set up the debug gem for test debugging  
						
						 
						
						... 
						
						
						
						- This processed that we'd requested a debugger, but didn't drop us into
  a debugging console until I
  [stopped the stdin disablement](https://github.com/Homebrew/brew/issues/16708#issuecomment-1953483970 ).
Usage:
```
❯ git diff
diff --git a/Library/Homebrew/test/migrator_spec.rb b/Library/Homebrew/test/migrator_spec.rb
index 87fadd5e95..db4700810a 100644
--- a/Library/Homebrew/test/migrator_spec.rb
+++ b/Library/Homebrew/test/migrator_spec.rb
@@ -69,6 +69,8 @@ RSpec.describe Migrator do
       tab.source["tap"] = "homebrew/core"
       tab.write
+      binding.break
+
       expect do
         described_class.new(new_formula, "oldname")
       end.to raise_error(Migrator::MigratorDifferentTapsError)
issyl0 at pictor in /opt/homebrew on bye-byebug
❯ brew tests --only=migrator --debug
Randomized with seed 59158
1 process for 1 spec, ~ 1 spec per process
.==> Relinking newname
.==> Unlinking oldname
...==> Moving oldname versions to /private/tmp/homebrew-tests-20240403-85464-3uogqr/cellar/newname
....==> Migrating formula oldname to newname
==> Unlinking oldname
==> Moving oldname versions to /private/tmp/homebrew-tests-20240403-85464-3uogqr/cellar/newname
==> Relinking newname
....[67, 76] in ~/migrator_spec.rb
    67|       tab = Tab.empty
    68|       tab.tabfile = HOMEBREW_CELLAR/"oldname/0.1/INSTALL_RECEIPT.json"
    69|       tab.source["tap"] = "homebrew/core"
    70|       tab.write
    71|
=>  72|       binding.break
    73|
    74|       expect do
    75|         described_class.new(new_formula, "oldname")
    76|       end.to raise_error(Migrator::MigratorDifferentTapsError)
=>#0    block in <top (required)> (3 levels) at ~/migrator_spec.rb:72
  #1     [C] BasicObject#instance_exec at /opt/homebrew/Library/Homebrew/vendor/bundle/ruby/3.1.0/gems/rspec-core-3.13.0/lib/rspec/core/example.rb:263
  # and 68 frames (use `bt' command for all frames)
(rdbg@/opt/homebrew/Library/Homebrew/vendor/bundle/ruby/3.1.0/bin/rspec#85464) p tab
(rdbg@/opt/homebrew/Library/Homebrew/vendor/bundle/ruby/3.1.0/bin/rspec#85464) p    # command(rdbg@/opt/homebrew/Library/Homebrew/vendor/bundle/ruby/3.1.0/bin/rspec#85464) p     # command t    # command ta    # command tab    # command(rdbg@/opt/homebrew/Library/Homebrew/vendor/bundle/ruby/3.1.0/bin/rspec#85464) p tab    # command
=> #<Tab:0x0000000107156be0 @aliases=[], @arch=nil, @built_as_bottle=false, @built_on={"os"=>"Macintosh", "os_version"=>"macOS 14", "cpu_family"=>"arm_firestorm_icestorm"}, @compiler=:clang, @homebrew_version="4.2.16-55-gc8f60ec-dirty", @installed_as_dependency=false, @installed_on_request=false, @loaded_from_api=false, @poured_from_bottle=false, @runtime_dependencies=nil, @source={"path"=>nil, "tap"=>"homebrew/core", "tap_git_head"=>nil, "spec"=>"stable", "versions"=>{"stable"=>nil, "head"=>nil, "version_scheme"=>0}}, @source_modified_time=0, @stdlib=nil, @tabfile=#<Pathname:/private/tmp/homebrew-tests-20240403-85464-3uogqr/cellar/oldname/0.1/INSTALL_RECEIPT.json>, @time=nil, @unused_options=[], @used_options=[]>
(rdbg@/opt/homebrew/Library/Homebrew/vendor/bundle/ruby/3.1.0/bin/rspec#85464)
``` 
						
						
					 
					
						2024-04-17 22:25:12 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							58fbaecedb 
							
						 
					 
					
						
						
							
							Add the debug gem for test debugging  
						
						 
						
						
						
						
					 
					
						2024-04-17 22:25:10 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							11c1960729 
							
						 
					 
					
						
						
							
							Remove byebug since it doesn't work in tests anymore  
						
						 
						
						... 
						
						
						
						- Byebug was introduced in [2020](https://github.com/Homebrew/brew/pull/7577 ) for hooking into tests for debugging.
- It does not work anymore in so far as it does not stop at breakpoints when following the instructions to trigger them in tests. 
						
						
					 
					
						2024-04-17 22:24:21 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							929995c810 
							
						 
					 
					
						
						
							
							Merge pull request  #17100  from krehel/array-alphabetization-blank-line-fix  
						
						 
						
						
						
						
					 
					
						2024-04-17 11:33:00 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6b2c5f4447 
							
						 
					 
					
						
						
							
							Merge pull request  #17101  from Homebrew/dependabot/bundler/Library/Homebrew/multi-37fc522a2f  
						
						 
						
						
						
						
					 
					
						2024-04-17 11:23:17 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Justin Krehel 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							36cc201616 
							
						 
					 
					
						
						
							
							rubocops/cask/array_alphabetization: skip blank lines when sorting  
						
						 
						
						
						
						
					 
					
						2024-04-17 14:22:48 -04:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c293f96a80 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
					 
					
						2024-04-17 18:11:40 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d33e0e0b09 
							
						 
					 
					
						
						
							
							build(deps): bump sorbet-static-and-runtime and sorbet-runtime  
						
						 
						
						... 
						
						
						
						Bumps [sorbet-static-and-runtime](https://github.com/sorbet/sorbet ) and [sorbet-runtime](https://github.com/sorbet/sorbet ). These dependencies needed to be updated together.
Updates `sorbet-static-and-runtime` from 0.5.11347 to 0.5.11349
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-runtime` from 0.5.11347 to 0.5.11349
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
---
updated-dependencies:
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:development
  update-type: version-update:semver-patch
- dependency-name: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2024-04-17 18:10:51 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlo Cabrera 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2548b75132 
							
						 
					 
					
						
						
							
							Merge pull request  #17099  from Homebrew/sponsors-maintainers-man-completions  
						
						 
						
						
						
						
					 
					
						2024-04-18 00:59:55 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							84d731888e 
							
						 
					 
					
						
						
							
							Merge pull request  #17097  from ZhongRuoyu/artifact-actions-v4  
						
						 
						
						... 
						
						
						
						pr-pull: support globbing artifacts 
						
						
					 
					
						2024-04-18 00:58:44 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c98629560d 
							
						 
					 
					
						
						
							
							Update manpage and completions  
						
						 
						
						
						
						
					 
					
						2024-04-18 00:47:05 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								William Woodruff 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a6b17e3631 
							
						 
					 
					
						
						
							
							README: William is now an active maintainer  
						
						 
						
						
						
						
					 
					
						2024-04-18 00:46:06 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8feae3645a 
							
						 
					 
					
						
						
							
							Update maintainers.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml ) workflow. 
						
						
					 
					
						2024-04-17 16:40:30 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4cf42f7c18 
							
						 
					 
					
						
						
							
							pr-pull: simplify  
						
						 
						
						
						
						
					 
					
						2024-04-17 07:37:02 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9ad60fe437 
							
						 
					 
					
						
						
							
							utils/github: avoid returning artifacts with the same name  
						
						 
						
						
						
						
					 
					
						2024-04-17 07:35:40 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							135db8c559 
							
						 
					 
					
						
						
							
							Update manpage and completions  
						
						 
						
						
						
						
					 
					
						2024-04-17 06:15:18 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							dd92ad8e1b 
							
						 
					 
					
						
						
							
							Update default artifact pattern to avoid migration problems  
						
						 
						
						
						
						
					 
					
						2024-04-17 06:15:14 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d6d1b7d4e9 
							
						 
					 
					
						
						
							
							Update manpage and completions  
						
						 
						
						
						
						
					 
					
						2024-04-17 03:37:42 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1a1a466e9d 
							
						 
					 
					
						
						
							
							pr-pull: support globbing artifacts  
						
						 
						
						... 
						
						
						
						Artifact actions v3 is deprecated and will soon be unavailable [^1].
This adds support for v4 by allowing `brew pr-pull` to accept a glob
pattern for artifact names, like actions/download-artifact does [^2].
[^1]: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ 
[^2]: https://github.com/actions/download-artifact/tree/v4/#usage  
						
						
					 
					
						2024-04-17 03:36:43 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0df71ea6a3 
							
						 
					 
					
						
						
							
							utils/github: support globbing artifacts  
						
						 
						
						
						
						
					 
					
						2024-04-17 03:34:42 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							726d65c0ab 
							
						 
					 
					
						
						
							
							Merge pull request  #17096  from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-1.63.2  
						
						 
						
						
						
						
					 
					
						2024-04-16 12:13:45 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							815baf9d8d 
							
						 
					 
					
						
						
							
							Merge pull request  #17095  from Homebrew/dependabot/bundler/Library/Homebrew/multi-3e5e486c6c  
						
						 
						
						
						
						
					 
					
						2024-04-16 12:13:27 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							22d1801c22 
							
						 
					 
					
						
						
							
							Merge pull request  #17094  from Homebrew/dependabot/github_actions/ruby/setup-ruby-1.174.0  
						
						 
						
						
						
						
					 
					
						2024-04-16 12:13:08 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7b09db5a9b 
							
						 
					 
					
						
						
							
							Update RBI files for rubocop.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml ) workflow. 
						
						
					 
					
						2024-04-16 18:50:50 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b07a76c71b 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
					 
					
						2024-04-16 18:50:22 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							872c136472 
							
						 
					 
					
						
						
							
							build(deps-dev): bump rubocop from 1.63.1 to 1.63.2 in /Library/Homebrew  
						
						 
						
						... 
						
						
						
						Bumps [rubocop](https://github.com/rubocop/rubocop ) from 1.63.1 to 1.63.2.
- [Release notes](https://github.com/rubocop/rubocop/releases )
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rubocop/rubocop/compare/v1.63.1...v1.63.2 )
---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2024-04-16 18:49:29 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ec0355beef 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
					 
					
						2024-04-16 18:48:59 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							50a66652e5 
							
						 
					 
					
						
						
							
							build(deps): bump sorbet-runtime and sorbet-static-and-runtime  
						
						 
						
						... 
						
						
						
						Bumps [sorbet-runtime](https://github.com/sorbet/sorbet ) and [sorbet-static-and-runtime](https://github.com/sorbet/sorbet ). These dependencies needed to be updated together.
Updates `sorbet-runtime` from 0.5.11346 to 0.5.11347
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-static-and-runtime` from 0.5.11346 to 0.5.11347
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
---
updated-dependencies:
- dependency-name: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2024-04-16 18:48:08 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2a627890c8 
							
						 
					 
					
						
						
							
							build(deps): bump ruby/setup-ruby from 1.173.0 to 1.174.0  
						
						 
						
						... 
						
						
						
						Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby ) from 1.173.0 to 1.174.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases )
- [Commits](5f19ec79ce...6bd3d993c6 )
---
updated-dependencies:
- dependency-name: ruby/setup-ruby
  dependency-type: direct:production
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2024-04-16 18:46:06 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5517894523 
							
						 
					 
					
						
						
							
							Merge pull request  #17092  from Homebrew/sponsors-maintainers-man-completions  
						
						 
						
						... 
						
						
						
						Update manpage and completions. 
						
						
					 
					
						2024-04-16 08:18:19 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3951cfe347 
							
						 
					 
					
						
						
							
							Update manpage and completions.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml ) workflow. 
						
						
					 
					
						2024-04-16 00:05:54 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d5d380e1f4 
							
						 
					 
					
						
						
							
							Merge pull request  #17091  from Homebrew/revert-16941-elf-avoid-ldd  
						
						 
						
						... 
						
						
						
						Revert "os/linux/elf: avoid using ldd for listing dynamic dependencies" 
						
						
					 
					
						2024-04-16 03:22:26 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							852c5acb65 
							
						 
					 
					
						
						
							
							Revert "os/linux/elf: avoid using ldd for listing dynamic dependencies"  
						
						 
						
						
						
						
					 
					
						2024-04-16 02:50:12 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a553f96c96 
							
						 
					 
					
						
						
							
							Merge pull request  #17090  from Homebrew/dependabot/bundler/Library/Homebrew/tapioca-0.13.3  
						
						 
						
						
						
						
					 
					
						2024-04-15 11:32:43 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a2f56fc353 
							
						 
					 
					
						
						
							
							Merge pull request  #17089  from Homebrew/dependabot/bundler/Library/Homebrew/method_source-1.1.0  
						
						 
						
						
						
						
					 
					
						2024-04-15 11:32:33 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a4bc5a82ff 
							
						 
					 
					
						
						
							
							Update RBI files for tapioca.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml ) workflow. 
						
						
					 
					
						2024-04-15 18:22:26 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6aa30a99c8 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
					 
					
						2024-04-15 18:22:12 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f58dc9c6b2 
							
						 
					 
					
						
						
							
							Update RBI files for method_source.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml ) workflow. 
						
						
					 
					
						2024-04-15 18:21:40 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cb1125e137 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
					 
					
						2024-04-15 18:21:28 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e2d4097643 
							
						 
					 
					
						
						
							
							build(deps-dev): bump tapioca from 0.13.2 to 0.13.3 in /Library/Homebrew  
						
						 
						
						... 
						
						
						
						Bumps [tapioca](https://github.com/Shopify/tapioca ) from 0.13.2 to 0.13.3.
- [Release notes](https://github.com/Shopify/tapioca/releases )
- [Commits](https://github.com/Shopify/tapioca/compare/v0.13.2...v0.13.3 )
---
updated-dependencies:
- dependency-name: tapioca
  dependency-type: direct:development
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2024-04-15 18:21:19 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4689442ede 
							
						 
					 
					
						
						
							
							build(deps-dev): bump method_source in /Library/Homebrew  
						
						 
						
						... 
						
						
						
						Bumps [method_source](https://github.com/banister/method_source ) from 1.0.0 to 1.1.0.
- [Changelog](https://github.com/banister/method_source/blob/master/CHANGELOG.md )
- [Commits](https://github.com/banister/method_source/compare/v1.0.0...v1.1.0 )
---
updated-dependencies:
- dependency-name: method_source
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
					 
					
						2024-04-15 18:20:37 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bo Anderson 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fe876e225f 
							
						 
					 
					
						
						
							
							Merge pull request  #17088  from Homebrew/docs-install-head-url  
						
						 
						
						... 
						
						
						
						docs/Installation: use HEAD similar to install repo README.md 
						
						
					 
					
						2024-04-15 18:31:18 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Cho 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2cbeb10b4a 
							
						 
					 
					
						
						
							
							docs/Installation: use HEAD similar to install repo README.md  
						
						 
						
						... 
						
						
						
						Signed-off-by: Michael Cho <michael@michaelcho.dev> 
						
						
					 
					
						2024-04-15 13:00:30 -04:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							40d2f5c23a 
							
						 
					 
					
						
						
							
							Merge pull request  #17087  from cho-m/keg-python2.7-refs-deprecate  
						
						 
						
						... 
						
						
						
						keg: comment to odeprecated some Python 2 related methods 
						
						
					 
					
						2024-04-15 08:46:17 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							03bb1edbcd 
							
						 
					 
					
						
						
							
							Merge pull request  #17086  from Moisan/pin_setup-ruby_action  
						
						 
						
						... 
						
						
						
						workflow/docs.yml: pin setup-ruby action 
						
						
					 
					
						2024-04-15 08:43:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c44bf6f432 
							
						 
					 
					
						
						
							
							Merge pull request  #16817  from cho-m/virtualenv-basic-resource-order-args  
						
						 
						
						... 
						
						
						
						language/python: order args for `virtualenv_install_with_resources` 
						
						
					 
					
						2024-04-15 08:37:08 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4c0a1c7a02 
							
						 
					 
					
						
						
							
							keg: remove unused python methods.  
						
						 
						
						
						
						
					 
					
						2024-04-15 08:35:32 +01:00