apainintheneck 
							
						 
					 
					
						
						
						
						
							
						
						
							85ea7f26f3 
							
						 
					 
					
						
						
							
							dev-cmd/unbottled: fix module resolution error  
						
						 
						
						... 
						
						
						
						The problem here was that it was unable to find the correct namespace.
---Before---
It assumed the `MacOS` module was below the `Homebrew::DevCmd::Unbottled` class.
```rb
kevinrobell@kevinrobell-iMac ~ [1]> brew unbottled --tag arm64_sequoia --dependents -v vtk
==> Populating dependency tree...
==> :arm64_sequoia bottle status
Error: uninitialized constant Homebrew::DevCmd::Unbottled::MacOS
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:242:in `block (2 levels) in output_unbottled'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/set.rb:501:in `each_key'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/set.rb:501:in `each'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/delegate.rb:87:in `all?'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/delegate.rb:87:in `method_missing'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:233:in `block in output_unbottled'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:214:in `each'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:214:in `output_unbottled'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `bind_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `validate_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/_methods.rb:277:in `block in _on_method_added'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:107:in `block in run'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/simulate_system.rb:29:in `with'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `bind_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `validate_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/_methods.rb:277:in `block in _on_method_added'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:67:in `run'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `bind_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `validate_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/_methods.rb:277:in `block in _on_method_added'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/brew.rb:94:in `<main>'
Please report this issue:
  https://docs.brew.sh/Troubleshooting 
```
I tried just adding `::Macos...` and that also caused an error because it seems like the `MacOs = OS::Mac` code had not been loaded.
```
kevinrobell@kevinrobell-iMac ~ [1]> brew unbottled --tag arm64_sequoia --dependents -v vtk
==> Populating dependency tree...
==> :arm64_sequoia bottle status
Error: uninitialized constant MacOS
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:242:in `block (2 levels) in output_unbottled'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/set.rb:501:in `each_key'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/set.rb:501:in `each'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/delegate.rb:87:in `all?'
/home/kevinrobell/.asdf/installs/ruby/3.3.6/lib/ruby/3.3.0/delegate.rb:87:in `method_missing'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:233:in `block in output_unbottled'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:214:in `each'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:214:in `output_unbottled'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `bind_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `validate_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/_methods.rb:277:in `block in _on_method_added'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:107:in `block in run'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/simulate_system.rb:29:in `with'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `bind_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `validate_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/_methods.rb:277:in `block in _on_method_added'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/dev-cmd/unbottled.rb:67:in `run'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `bind_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/call_validation.rb:278:in `validate_call'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/bundle/ruby/3.3.0/gems/sorbet-runtime-0.5.11711/lib/types/private/methods/_methods.rb:277:in `block in _on_method_added'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/brew.rb:94:in `<main>'
Please report this issue:
  https://docs.brew.sh/Troubleshooting 
```
---After---
```
kevinrobell@kevinrobell-iMac ~ [1]> brew unbottled --tag arm64_sequoia --dependents -v vtk
==> Populating dependency tree...
==> :arm64_sequoia bottle status
vtk: doesn't support this macOS
``` 
						
						
							
						
					 
					
						2025-01-12 23:46:30 -08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b6fafba486 
							
						 
					 
					
						
						
							
							Merge pull request  #19036  from Homebrew/sorbet-files-update  
						
						 
						
						... 
						
						
						
						sorbet: Update RBI files. 
						
						
							
  4.4.15
 
						
					 
					
						2025-01-05 02:11:24 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7ebf47a590 
							
						 
					 
					
						
						
							
							Merge pull request  #19034  from Homebrew/sponsors-maintainers-man-completions  
						
						 
						
						... 
						
						
						
						Update manpage and completions. 
						
						
							
						
					 
					
						2025-01-05 02:08:00 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0fb852edb6 
							
						 
					 
					
						
						
							
							sorbet: Update RBI files.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [sorbet](https://github.com/Homebrew/brew/blob/master/.github/workflows/sorbet.yml ) workflow. 
						
						
							
						
					 
					
						2025-01-05 00:27:48 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9260c966b1 
							
						 
					 
					
						
						
							
							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. 
						
						
							
						
					 
					
						2025-01-04 15:38:38 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							683f85f4b0 
							
						 
					 
					
						
						
							
							Merge pull request  #18984  from Homebrew/livecheck-skip-autobumped-formulae  
						
						 
						
						... 
						
						
						
						dev-cmd/livecheck: Skip autobumped formulae 
						
						
							
						
					 
					
						2025-01-04 15:27:16 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ce562c312b 
							
						 
					 
					
						
						
							
							Alphabetical envvars; better variable names; just the one loop  
						
						 
						
						
						
						
							
						
					 
					
						2025-01-04 14:26:05 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8b1470e5bc 
							
						 
					 
					
						
						
							
							Merge pull request  #19029  from Homebrew/dependabot/bundler/Library/Homebrew/sorbet-f899cfae25  
						
						 
						
						... 
						
						
						
						build(deps): bump the sorbet group in /Library/Homebrew with 4 updates 
						
						
							
						
					 
					
						2025-01-04 03:26:16 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							102848cdb7 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
							
						
					 
					
						2025-01-04 03:14:06 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Knibbe 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c9c3b51060 
							
						 
					 
					
						
						
							
							Merge pull request  #19032  from Homebrew/sorbet-files-update  
						
						 
						
						... 
						
						
						
						sorbet: Update RBI files. 
						
						
							
						
					 
					
						2025-01-04 01:39:55 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
						
						
							
						
						
							3d8e6e4c32 
							
						 
					 
					
						
						
							
							sorbet: Update RBI files.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [sorbet](https://github.com/Homebrew/brew/blob/master/.github/workflows/sorbet.yml ) workflow. 
						
						
							
						
					 
					
						2025-01-03 20:25:26 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlo Cabrera 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fa4392c475 
							
						 
					 
					
						
						
							
							Merge pull request  #19031  from Homebrew/sponsors-maintainers-man-completions  
						
						 
						
						... 
						
						
						
						Update sponsors. 
						
						
							
						
					 
					
						2025-01-04 00:43:53 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fe62666b3e 
							
						 
					 
					
						
						
							
							Update sponsors.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml ) workflow. 
						
						
							
						
					 
					
						2025-01-04 00:07:13 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Eric Knibbe 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							20c6c5a1cd 
							
						 
					 
					
						
						
							
							Merge pull request  #19030  from Homebrew/dependabot/bundler/Library/Homebrew/parallel_tests-4.8.0  
						
						 
						
						... 
						
						
						
						build(deps-dev): bump parallel_tests from 4.7.2 to 4.8.0 in /Library/Homebrew 
						
						
							
						
					 
					
						2025-01-03 19:10:49 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f862be5fd6 
							
						 
					 
					
						
						
							
							build(deps-dev): bump parallel_tests in /Library/Homebrew  
						
						 
						
						... 
						
						
						
						Bumps [parallel_tests](https://github.com/grosser/parallel_tests ) from 4.7.2 to 4.8.0.
- [Changelog](https://github.com/grosser/parallel_tests/blob/master/CHANGELOG.md )
- [Commits](https://github.com/grosser/parallel_tests/compare/v4.7.2...v4.8.0 )
---
updated-dependencies:
- dependency-name: parallel_tests
  dependency-type: direct:development
  update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
							
						
					 
					
						2025-01-03 18:10:57 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9b281ab408 
							
						 
					 
					
						
						
							
							build(deps): bump the sorbet group in /Library/Homebrew with 4 updates  
						
						 
						
						... 
						
						
						
						Bumps the sorbet group in /Library/Homebrew with 4 updates: [sorbet-static-and-runtime](https://github.com/sorbet/sorbet ), [sorbet-runtime](https://github.com/sorbet/sorbet ), [sorbet](https://github.com/sorbet/sorbet ) and [sorbet-static](https://github.com/sorbet/sorbet ).
Updates `sorbet-static-and-runtime` from 0.5.11710 to 0.5.11711
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-runtime` from 0.5.11710 to 0.5.11711
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet` from 0.5.11710 to 0.5.11711
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-static` from 0.5.11710 to 0.5.11711
- [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-group: sorbet
- dependency-name: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sorbet
- dependency-name: sorbet
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: sorbet
- dependency-name: sorbet-static
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: sorbet
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
							
						
					 
					
						2025-01-03 18:10:38 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0c268f9234 
							
						 
					 
					
						
						
							
							Merge pull request  #19027  from Homebrew/dependabot/bundler/Library/Homebrew/sorbet-28a4d261c8  
						
						 
						
						... 
						
						
						
						build(deps): bump the sorbet group in /Library/Homebrew with 4 updates 
						
						
							
						
					 
					
						2025-01-02 19:28:36 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1eaabaad74 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
							
						
					 
					
						2025-01-02 19:13:46 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f696be7364 
							
						 
					 
					
						
						
							
							build(deps): bump the sorbet group in /Library/Homebrew with 4 updates  
						
						 
						
						... 
						
						
						
						Bumps the sorbet group in /Library/Homebrew with 4 updates: [sorbet-static-and-runtime](https://github.com/sorbet/sorbet ), [sorbet-runtime](https://github.com/sorbet/sorbet ), [sorbet](https://github.com/sorbet/sorbet ) and [sorbet-static](https://github.com/sorbet/sorbet ).
Updates `sorbet-static-and-runtime` from 0.5.11709 to 0.5.11710
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-runtime` from 0.5.11709 to 0.5.11710
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet` from 0.5.11709 to 0.5.11710
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-static` from 0.5.11709 to 0.5.11710
- [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-group: sorbet
- dependency-name: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sorbet
- dependency-name: sorbet
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: sorbet
- dependency-name: sorbet-static
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: sorbet
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
							
						
					 
					
						2025-01-02 18:50:17 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							296c2b9f3f 
							
						 
					 
					
						
						
							
							Be smarter about finding a tap's autobump.txt  
						
						 
						
						... 
						
						
						
						- Livecheck blocks can exist in taps other than Core and Cask.
- And packages can have the same name in multiple taps. 
						
						
							
						
					 
					
						2025-01-02 17:41:52 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a71786a332 
							
						 
					 
					
						
						
							
							Flag and envvar to include autobumped formulae  
						
						 
						
						... 
						
						
						
						- This is useful for maintainers to check the full range of livecheck functionality. 
						
						
							
						
					 
					
						2025-01-02 17:20:38 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6987133067 
							
						 
					 
					
						
						
							
							Merge pull request  #19026  from Homebrew/dependabot/bundler/Library/Homebrew/sorbet-96098d77c9  
						
						 
						
						... 
						
						
						
						build(deps): bump the sorbet group in /Library/Homebrew with 4 updates 
						
						
							
						
					 
					
						2025-01-01 17:50:54 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a55f018570 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
							
						
					 
					
						2025-01-01 17:40:14 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5e8f28cf5f 
							
						 
					 
					
						
						
							
							build(deps): bump the sorbet group in /Library/Homebrew with 4 updates  
						
						 
						
						... 
						
						
						
						Bumps the sorbet group in /Library/Homebrew with 4 updates: [sorbet-static-and-runtime](https://github.com/sorbet/sorbet ), [sorbet-runtime](https://github.com/sorbet/sorbet ), [sorbet](https://github.com/sorbet/sorbet ) and [sorbet-static](https://github.com/sorbet/sorbet ).
Updates `sorbet-static-and-runtime` from 0.5.11708 to 0.5.11709
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-runtime` from 0.5.11708 to 0.5.11709
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet` from 0.5.11708 to 0.5.11709
- [Release notes](https://github.com/sorbet/sorbet/releases )
- [Commits](https://github.com/sorbet/sorbet/commits )
Updates `sorbet-static` from 0.5.11708 to 0.5.11709
- [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-group: sorbet
- dependency-name: sorbet-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sorbet
- dependency-name: sorbet
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: sorbet
- dependency-name: sorbet-static
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: sorbet
...
Signed-off-by: dependabot[bot] <support@github.com> 
						
						
							
						
					 
					
						2025-01-01 17:38:27 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ddbb497f5a 
							
						 
					 
					
						
						
							
							Merge pull request  #19023  from Homebrew/reduce-opportunistic-linkage  
						
						 
						
						... 
						
						
						
						extend/ENV/super: always set PKG_CONFIG_LIBDIR 
						
						
							
						
					 
					
						2025-01-01 12:23:23 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Michael Cho 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4ff6ac09c2 
							
						 
					 
					
						
						
							
							extend/ENV/super: always set PKG_CONFIG_LIBDIR  
						
						 
						
						... 
						
						
						
						Setting PKG_CONFIG_LIBDIR overrides compiled default. This helps reduce
opportunistic linkage when pkg-config call finds modules installed on
system but not included in a formula's dependency tree. 
						
						
							
						
					 
					
						2024-12-31 20:15:38 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e9b0285c14 
							
						 
					 
					
						
						
							
							Merge pull request  #19022  from Homebrew/sponsors-maintainers-man-completions  
						
						 
						
						... 
						
						
						
						Update sponsors. 
						
						
							
						
					 
					
						2025-01-01 00:44:29 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ed2b78fcdc 
							
						 
					 
					
						
						
							
							Update sponsors.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml ) workflow. 
						
						
							
						
					 
					
						2025-01-01 00:08:12 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c723e2fde3 
							
						 
					 
					
						
						
							
							Merge pull request  #19020  from Homebrew/dependabot/github_actions/ruby/setup-ruby-1.207.0  
						
						 
						
						... 
						
						
						
						build(deps): bump ruby/setup-ruby from 1.206.0 to 1.207.0 
						
						
							
						
					 
					
						2024-12-31 20:11:25 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dependabot[bot] 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							077338ad90 
							
						 
					 
					
						
						
							
							build(deps): bump ruby/setup-ruby from 1.206.0 to 1.207.0  
						
						 
						
						... 
						
						
						
						Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby ) from 1.206.0 to 1.207.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases )
- [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb )
- [Commits](bfefad842b...4a9ddd6f33 )
---
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-12-31 18:20:13 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							eac5720d44 
							
						 
					 
					
						
						
							
							Merge pull request  #19019  from Homebrew/sorbet-files-update  
						
						 
						
						... 
						
						
						
						sorbet: Update RBI files. 
						
						
							
						
					 
					
						2024-12-31 01:27:13 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ruoyu Zhong 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1f7282d9fa 
							
						 
					 
					
						
						
							
							Merge pull request  #19018  from Homebrew/spdx-update  
						
						 
						
						... 
						
						
						
						spdx: update license data. 
						
						
							
						
					 
					
						2024-12-31 01:26:44 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f97db3db04 
							
						 
					 
					
						
						
							
							sorbet: Update RBI files.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [sorbet](https://github.com/Homebrew/brew/blob/master/.github/workflows/sorbet.yml ) workflow. 
						
						
							
						
					 
					
						2024-12-31 00:25:03 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							878f9c12c7 
							
						 
					 
					
						
						
							
							spdx: update license data.  
						
						 
						
						... 
						
						
						
						Autogenerated by [a scheduled GitHub Action](https://github.com/Homebrew/brew/blob/master/.github/workflows/spdx.yml ). 
						
						
							
						
					 
					
						2024-12-31 00:15:10 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0acb113999 
							
						 
					 
					
						
						
							
							Merge pull request  #19017  from Homebrew/sponsors-maintainers-man-completions  
						
						 
						
						... 
						
						
						
						Update manpage and completions. 
						
						
							
						
					 
					
						2024-12-30 19:51:23 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ba7022a63d 
							
						 
					 
					
						
						
							
							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-12-30 16:14:33 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f756ea471b 
							
						 
					 
					
						
						
							
							Merge pull request  #19000  from Moisan/deps-include-implicit  
						
						 
						
						... 
						
						
						
						deps command: add --include-implicit flag 
						
						
							
						
					 
					
						2024-12-30 16:00:53 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f84082963d 
							
						 
					 
					
						
						
							
							Merge pull request  #19009  from Homebrew/fewer_actions_warnings  
						
						 
						
						... 
						
						
						
						cask: fewer GitHub Actions warnings. 
						
						
							
  4.4.14
 
						
					 
					
						2024-12-30 13:07:02 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d490692b26 
							
						 
					 
					
						
						
							
							cask: fewer GitHub Actions warnings.  
						
						 
						
						... 
						
						
						
						- don't care about no checksums being defined for official casks
- don't complain about Gatekeeper being disabled on GitHub Actions as
  it's been globally disabled for the team 
						
						
							
						
					 
					
						2024-12-30 12:55:30 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c60efd943b 
							
						 
					 
					
						
						
							
							cmd/uses: improve flag description.  
						
						 
						
						
						
						
							
						
					 
					
						2024-12-30 12:43:20 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5013c44adf 
							
						 
					 
					
						
						
							
							Merge pull request  #19010  from Homebrew/livecheck/xorg-handle-mesa-urls  
						
						 
						
						... 
						
						
						
						Xorg: Handle archive.mesa3d.org URLs 
						
						
							
						
					 
					
						2024-12-30 12:40:03 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike McQuaid 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							781fb4726f 
							
						 
					 
					
						
						
							
							Merge pull request  #19015  from Homebrew/fix-disabled-envvar-message  
						
						 
						
						... 
						
						
						
						env_config: Improve the deprecated envvar message 
						
						
							
						
					 
					
						2024-12-30 12:39:39 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ae952482a7 
							
						 
					 
					
						
						
							
							env_config: Improve the deprecated envvar message  
						
						 
						
						... 
						
						
						
						Before:
```
❯ HOMEBREW_NO_ANALYTICS=0 brew formula-analytics --days-ago=2
Error: Calling HOMEBREW_NO_ANALYTICS=0 is deprecated! Use If you wish to enable HOMEBREW_NO_ANALYTICS, use HOMEBREW_NO_ANALYTICS=1
If you wish to disable HOMEBREW_NO_ANALYTICS, use HOMEBREW_NO_ANALYTICS= (an empty value). instead.
```
After:
```
❯ HOMEBREW_NO_ANALYTICS=0 brew formula-analytics --days-ago=2
Error: Calling HOMEBREW_NO_ANALYTICS=0 is deprecated! Use HOMEBREW_NO_ANALYTICS=1 to enable and HOMEBREW_NO_ANALYTICS= (an empty value) to disable instead.
``` 
						
						
							
						
					 
					
						2024-12-28 22:34:40 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Issy Long 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9626df0553 
							
						 
					 
					
						
						
							
							Merge pull request  #19014  from chenrui333/fix-typo  
						
						 
						
						... 
						
						
						
						chore: fix typos 
						
						
							
						
					 
					
						2024-12-28 21:13:45 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Rui Chen 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							79ed2c6e61 
							
						 
					 
					
						
						
							
							chore: fix typos  
						
						 
						
						... 
						
						
						
						Signed-off-by: Rui Chen <rui@chenrui.dev> 
						
						
							
						
					 
					
						2024-12-28 15:53:35 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sam Ford 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							260698b1cb 
							
						 
					 
					
						
						
							
							Xorg: Handle archive.mesa3d.org URLs  
						
						 
						
						... 
						
						
						
						The `mesa` formula currently uses a mesa.freedesktop.org/archive/
`stable` URL but it redirects to archive.mesa3d.org. Upstream links
to archive.mesa3d.org as the location to find Mesa releases, so we
should update the formula URLs accordingly.
This updates the `Xorg` strategy to be able to handle
archive.mesa3d.org URLs, so livecheck will continue to be able to
check `mesa` without needing a one-off `livecheck` block. [This would
also work for `mesalib-glw` (which has an archive.mesa3d.org `stable`
URL) but that formula is deprecated.] 
						
						
							
						
					 
					
						2024-12-28 09:55:44 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Patrick Linnane 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							aeed9ef489 
							
						 
					 
					
						
						
							
							Merge pull request  #19011  from Homebrew/dependabot/bundler/Library/Homebrew/rbs-3.8.1  
						
						 
						
						... 
						
						
						
						build(deps-dev): bump rbs from 3.8.0 to 3.8.1 in /Library/Homebrew 
						
						
							
						
					 
					
						2024-12-27 21:54:03 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c2afd756e5 
							
						 
					 
					
						
						
							
							Update RBI files for rbs.  
						
						 
						
						... 
						
						
						
						Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml ) workflow. 
						
						
							
						
					 
					
						2024-12-27 21:43:59 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								BrewTestBot 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e83360877b 
							
						 
					 
					
						
						
							
							brew vendor-gems: commit updates.  
						
						 
						
						
						
						
							
						
					 
					
						2024-12-27 21:43:48 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Thierry Moisan 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2af190363f 
							
						 
					 
					
						
						
							
							fixup! deps command: add --include-implicit flag  
						
						 
						
						
						
						
							
						
					 
					
						2024-12-27 13:11:04 -05:00