repo stringlengths 5 53 | pr_number int32 1 321k | task_type stringclasses 2
values | issue_text stringlengths 0 81.2k | pr_title stringlengths 1 319 | pr_body stringlengths 0 105k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | gold_diff stringlengths 0 202M | changed_files listlengths 0 100 | review_threads listlengths 0 100 | test_patch stringlengths 0 23.4M | merged bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
Homebrew/brew | 22,702 | issue_to_patch | `Upgraded n outdated packages` includes packages whose upgrades failed
### `brew doctor` output
```shell
Warning: Calling string comparison format for `depends_on macos:` is deprecated! Use `depends_on macos: :sonoma` instead.
Please report this issue to the saltpi/homebrew-tap tap (not Homebrew/* repositories), or e... | Report only successful upgrades | Fixes https://github.com/Homebrew/brew/issues/22698
- Fixes the final `brew upgrade` summary for partial failures.
- Records only successful cask and formula upgrades after real runs.
- Covers failed cask and formula upgrades with regression tests.
-----
<!-- Do not tick a checkbox if you haven’t performed i... | c20ffd44732d30349418a9151a45fb8dd6e495ef | 22ba10e9d942ecd2d9b7a42b71fc0f324bc6098f | diff --git a/Library/Homebrew/cask/upgrade.rb b/Library/Homebrew/cask/upgrade.rb
index 3e8573af71d5a..e0c1980f4b046 100644
--- a/Library/Homebrew/cask/upgrade.rb
+++ b/Library/Homebrew/cask/upgrade.rb
@@ -213,7 +213,7 @@ def self.upgrade_casks!(
cask_upgrades = upgradable_casks.map do |(old_cask, new_cask)|
... | [
"Library/Homebrew/cask/upgrade.rb",
"Library/Homebrew/cmd/upgrade.rb",
"Library/Homebrew/test/cask/upgrade_spec.rb",
"Library/Homebrew/test/cmd/upgrade_spec.rb",
"Library/Homebrew/upgrade.rb"
] | [
{
"comment": "`record_formula_upgrade_summary` now builds the deprecated/disabled lists from `upgrade_formulae` derived from the (optionally) passed `formulae_installer`. When this method is called after a real run with `formulae_installer: upgraded_formula_installers`, any formula whose upgrade failed will no ... | diff --git a/Library/Homebrew/test/cask/upgrade_spec.rb b/Library/Homebrew/test/cask/upgrade_spec.rb
index 6e98a9d88d2e5..dd921e09cac06 100644
--- a/Library/Homebrew/test/cask/upgrade_spec.rb
+++ b/Library/Homebrew/test/cask/upgrade_spec.rb
@@ -643,6 +643,7 @@ def write_info_plist(path, short_version:, bundle_version:)... | true |
Homebrew/brew | 22,702 | comment_to_fix | Report only successful upgrades | `record_formula_upgrade_summary` now builds the deprecated/disabled lists from `upgrade_formulae` derived from the (optionally) passed `formulae_installer`. When this method is called after a real run with `formulae_installer: upgraded_formula_installers`, any formula whose upgrade failed will no longer be reported as ... | c20ffd44732d30349418a9151a45fb8dd6e495ef | 22ba10e9d942ecd2d9b7a42b71fc0f324bc6098f | diff --git a/Library/Homebrew/cmd/upgrade.rb b/Library/Homebrew/cmd/upgrade.rb
index da79100d7eaaf..99621f05290a3 100644
--- a/Library/Homebrew/cmd/upgrade.rb
+++ b/Library/Homebrew/cmd/upgrade.rb
@@ -506,13 +506,23 @@ def final_upgrade_summary
@final_upgrade_summary
end
- sig { params(context: F... | [
"Library/Homebrew/cmd/upgrade.rb"
] | [
{
"comment": "`record_formula_upgrade_summary` now builds the deprecated/disabled lists from `upgrade_formulae` derived from the (optionally) passed `formulae_installer`. When this method is called after a real run with `formulae_installer: upgraded_formula_installers`, any formula whose upgrade failed will no ... | true | ||
Homebrew/brew | 22,702 | comment_to_fix | Report only successful upgrades | The `version_changes` selection uses `upgraded_formula_installers.include?(formula_installer)` inside an `each_with_index` loop, making this O(n*m) for large upgrade sets. This is easy to make O(n) by precomputing a hash (or set) for membership checks. | c20ffd44732d30349418a9151a45fb8dd6e495ef | 22ba10e9d942ecd2d9b7a42b71fc0f324bc6098f | diff --git a/Library/Homebrew/cmd/upgrade.rb b/Library/Homebrew/cmd/upgrade.rb
index da79100d7eaaf..99621f05290a3 100644
--- a/Library/Homebrew/cmd/upgrade.rb
+++ b/Library/Homebrew/cmd/upgrade.rb
@@ -506,13 +506,23 @@ def final_upgrade_summary
@final_upgrade_summary
end
- sig { params(context: F... | [
"Library/Homebrew/cmd/upgrade.rb"
] | [
{
"comment": "The `version_changes` selection uses `upgraded_formula_installers.include?(formula_installer)` inside an `each_with_index` loop, making this O(n*m) for large upgrade sets. This is easy to make O(n) by precomputing a hash (or set) for membership checks.",
"path": "Library/Homebrew/cmd/upgrade.r... | true | ||
Homebrew/brew | 22,660 | issue_to_patch | sandbox: deny all of $HOME except Homebrew dirs | - `HOMEBREW_CACHE` and `HOMEBREW_LOGS` live under `$HOME` by
default, so `deny_read_home` always took its selective branch
and left most of `$HOME` readable to build and install scripts
- enumerating individual secret files cannot keep pace with what
supply-chain attacks steal (SSH keys, cloud and registry
... | 9a3e38b003f94086a732a5c6146eba32105e7963 | 080ffb3d1bdeeea3213650d0382cd3095285176c | diff --git a/Library/Homebrew/extend/os/mac/sandbox.rb b/Library/Homebrew/extend/os/mac/sandbox.rb
index 886e461ba6cd6..313a5a1b52a6c 100644
--- a/Library/Homebrew/extend/os/mac/sandbox.rb
+++ b/Library/Homebrew/extend/os/mac/sandbox.rb
@@ -53,8 +53,7 @@ def allow_write_temp_and_cache
# Xcode projects expect acc... | [
"Library/Homebrew/extend/os/mac/sandbox.rb",
"Library/Homebrew/sandbox.rb",
"Library/Homebrew/test/sandbox_shared_spec.rb"
] | [
{
"comment": "`deny_read_home_except` recurses into any non-symlink path that is an ancestor of a required path, but it doesn’t check `child.directory?`. If a required path’s ancestor exists as a non-directory (or becomes unreadable), this can raise (e.g. `ENOTDIR`/`EACCES`) from `children` and abort sandbox se... | diff --git a/Library/Homebrew/test/sandbox_shared_spec.rb b/Library/Homebrew/test/sandbox_shared_spec.rb
index 537160694b705..4642c3abf6479 100644
--- a/Library/Homebrew/test/sandbox_shared_spec.rb
+++ b/Library/Homebrew/test/sandbox_shared_spec.rb
@@ -225,25 +225,32 @@ def executable_usable?(candidate)
expect(s... | true | |
Homebrew/brew | 22,660 | comment_to_fix | sandbox: deny all of $HOME except Homebrew dirs | `deny_read_home_except` recurses into any non-symlink path that is an ancestor of a required path, but it doesn’t check `child.directory?`. If a required path’s ancestor exists as a non-directory (or becomes unreadable), this can raise (e.g. `ENOTDIR`/`EACCES`) from `children` and abort sandbox setup. Also, `dir.childr... | 9a3e38b003f94086a732a5c6146eba32105e7963 | 080ffb3d1bdeeea3213650d0382cd3095285176c | diff --git a/Library/Homebrew/sandbox.rb b/Library/Homebrew/sandbox.rb
index fc837e80a6a02..0a855198eab70 100644
--- a/Library/Homebrew/sandbox.rb
+++ b/Library/Homebrew/sandbox.rb
@@ -190,7 +190,7 @@ def deny_read_path(path)
sig { void }
def deny_read_home
home = Pathname(Dir.home(ENV.fetch("USER"))).realpa... | [
"Library/Homebrew/sandbox.rb"
] | [
{
"comment": "`deny_read_home_except` recurses into any non-symlink path that is an ancestor of a required path, but it doesn’t check `child.directory?`. If a required path’s ancestor exists as a non-directory (or becomes unreadable), this can raise (e.g. `ENOTDIR`/`EACCES`) from `children` and abort sandbox se... | true | ||
Homebrew/brew | 22,660 | comment_to_fix | sandbox: deny all of $HOME except Homebrew dirs | The test currently creates `~/.netrc` using `mkpath`, which makes it a directory. Since `.netrc` is a file in practice, this doesn’t accurately exercise the file case for `deny_read_home` and is a bit confusing in a security-focused spec. | 9a3e38b003f94086a732a5c6146eba32105e7963 | 080ffb3d1bdeeea3213650d0382cd3095285176c | diff --git a/Library/Homebrew/test/sandbox_shared_spec.rb b/Library/Homebrew/test/sandbox_shared_spec.rb
index 537160694b705..4642c3abf6479 100644
--- a/Library/Homebrew/test/sandbox_shared_spec.rb
+++ b/Library/Homebrew/test/sandbox_shared_spec.rb
@@ -225,25 +225,32 @@ def executable_usable?(candidate)
expect(s... | [
"Library/Homebrew/test/sandbox_shared_spec.rb"
] | [
{
"comment": "The test currently creates `~/.netrc` using `mkpath`, which makes it a directory. Since `.netrc` is a file in practice, this doesn’t accurately exercise the file case for `deny_read_home` and is a bit confusing in a security-focused spec.",
"path": "Library/Homebrew/test/sandbox_shared_spec.rb... | true | ||
Homebrew/brew | 22,352 | issue_to_patch | Omit aliases from completions | Fixes https://github.com/orgs/Homebrew/discussions/6836
- Avoid suggesting internal aliases because they duplicate canonical commands.
- Keep alias expansion for option completion after users type an alias.
- Regenerate bash, fish, zsh and internal command completion data.
-----
<!-- Do not tick a checkbox i... | 06ccb519e3045306e1bde5d388db90fa89b52be7 | 25bfa00af926e73e47bf60f7ba6913842059c656 | diff --git a/Library/Homebrew/commands.rb b/Library/Homebrew/commands.rb
index a29fc714ee26e..e54625eb494d2 100644
--- a/Library/Homebrew/commands.rb
+++ b/Library/Homebrew/commands.rb
@@ -190,7 +190,7 @@ def self.find_commands(path)
def self.rebuild_internal_commands_completion_list
require "completions"
- ... | [
"Library/Homebrew/commands.rb",
"Library/Homebrew/completions.rb",
"Library/Homebrew/completions/bash.erb",
"Library/Homebrew/completions/fish.erb",
"Library/Homebrew/test/commands_spec.rb",
"Library/Homebrew/test/completions_spec.rb",
"completions/bash/brew",
"completions/fish/brew.fish",
"completi... | [] | diff --git a/Library/Homebrew/test/commands_spec.rb b/Library/Homebrew/test/commands_spec.rb
index a49890eadac92..5d79347a138a1 100644
--- a/Library/Homebrew/test/commands_spec.rb
+++ b/Library/Homebrew/test/commands_spec.rb
@@ -77,6 +77,34 @@
end
end
+ describe "::rebuild_internal_commands_completion_list" ... | true | |
Homebrew/brew | 22,688 | issue_to_patch | build(deps): bump the bundler group across 2 directories with 11 updates | Bumps the bundler group with 2 updates in the /Library/Homebrew directory: [rubocop](https://github.com/rubocop/rubocop) and [sorbet-static-and-runtime](https://github.com/sorbet/sorbet).
Bumps the bundler group with 6 updates in the /docs directory:
| Package | From | To |
| --- | --- | --- |
| [sorbet-runtime](https... | f2f6a135be7775d98bd92c87cda6d5cc7d02efdc | 39c9ef9385b1893b2dabf9224d4a8cf45afaeca6 | diff --git a/.licenses/bundler/rubocop.dep.yml b/.licenses/bundler/rubocop.dep.yml
index 00df10fe0907d..ea0a87b40672b 100644
--- a/.licenses/bundler/rubocop.dep.yml
+++ b/.licenses/bundler/rubocop.dep.yml
@@ -1,6 +1,6 @@
---
name: rubocop
-version: 1.86.2
+version: 1.87.0
type: bundler
summary: Automatic Ruby code ... | [
".licenses/bundler/rubocop.dep.yml",
".licenses/bundler/sorbet-runtime.dep.yml",
".licenses/bundler/sorbet-static-and-runtime.dep.yml",
".licenses/bundler/sorbet-static.dep.yml",
".licenses/bundler/sorbet.dep.yml",
"Library/Homebrew/Gemfile.lock",
"Library/Homebrew/sorbet/rbi/gems/rubocop@1.87.0.rbi",
... | [] | true | ||
Homebrew/brew | 22,689 | issue_to_patch | build(deps): bump the github-actions group across 1 directory with 2 updates | Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action).
Updates `actions/checkout` from 6.0.2 to 6.0.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://g... | 5a5367f32636c17ff2a715b5c81420e5f7f77c39 | b47a8ccc40484d5610e907023b554f461adaaff0 | diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml
index 448f54caaffad..f1543b1ad6b6a 100644
--- a/.github/workflows/actionlint.yml
+++ b/.github/workflows/actionlint.yml
@@ -51,7 +51,7 @@ jobs:
if: github.repository == 'Homebrew/formulae.brew.sh'
run: brew install action... | [
".github/workflows/actionlint.yml",
".github/workflows/codeql-analysis.yml",
".github/workflows/docker.yml",
".github/workflows/docs.yml",
".github/workflows/reject-conventional-commits.yml",
".github/workflows/release.yml",
".github/workflows/sync-default-branches.yml"
] | [] | true | ||
Homebrew/brew | 22,690 | issue_to_patch | Update sponsors. | Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml) workflow.
| 5a5367f32636c17ff2a715b5c81420e5f7f77c39 | 9727fcefaef38a09ec06aee7c548b743f0772226 | diff --git a/README.md b/README.md
index a69fab3124af8..a1f7b472ce020 100644
--- a/README.md
+++ b/README.md
@@ -112,6 +112,6 @@ Secure password storage and syncing is provided by [1Password for Teams](https:/
[](https://dnsimple.com/resolvin... | [
"README.md"
] | [] | true | ||
Homebrew/brew | 22,686 | issue_to_patch | codex/hooks: return JSON. | Codex needs this, Claude does not.
-----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- Do not delete these checkbo... | 109191be4988470b51a60a5ef1998520aa24c01b | 31face5ea1a55d70f20e568a04eebd450c557730 | diff --git a/.codex/hooks.json b/.codex/hooks.json
index 75c947cdca1ca..5374b0e628cce 100644
--- a/.codex/hooks.json
+++ b/.codex/hooks.json
@@ -5,7 +5,7 @@
"hooks": [
{
"type": "command",
- "command": "./bin/brew lgtm",
+ "command": "./bin/brew lgtm >&2 && printf ... | [
".codex/hooks.json"
] | [
{
"comment": "The hook prints JSON via `printf` but without an explicit format string or newline terminator. Using `printf '%s\\\\n' ...` avoids accidental format-string interpretation and ensures the JSON response is line-delimited for more robust parsing by hook runners.",
"path": ".codex/hooks.json",
... | true | ||
Homebrew/brew | 22,686 | comment_to_fix | codex/hooks: return JSON. | The hook prints JSON via `printf` but without an explicit format string or newline terminator. Using `printf '%s\\n' ...` avoids accidental format-string interpretation and ensures the JSON response is line-delimited for more robust parsing by hook runners. | 109191be4988470b51a60a5ef1998520aa24c01b | 31face5ea1a55d70f20e568a04eebd450c557730 | diff --git a/.codex/hooks.json b/.codex/hooks.json
index 75c947cdca1ca..5374b0e628cce 100644
--- a/.codex/hooks.json
+++ b/.codex/hooks.json
@@ -5,7 +5,7 @@
"hooks": [
{
"type": "command",
- "command": "./bin/brew lgtm",
+ "command": "./bin/brew lgtm >&2 && printf ... | [
".codex/hooks.json"
] | [
{
"comment": "The hook prints JSON via `printf` but without an explicit format string or newline terminator. Using `printf '%s\\\\n' ...` avoids accidental format-string interpretation and ensures the JSON response is line-delimited for more robust parsing by hook runners.",
"path": ".codex/hooks.json",
... | true | ||
Homebrew/brew | 22,683 | issue_to_patch | `brew upgrade --dry-run`/`--ask`: Confusing/untrue output about pinned dependencies
<details>
<summary><h3><code>brew doctor</code> output</h3></summary>
```shell
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
w... | Handle pinned dependency failures in upgrade previews | Closes #22676.
This fixes brew upgrade --dry-run/--ask output when a formula upgrade is bloxked by an unsatisfied pinned dependency.
Previously, the dry-run/ask preview could still include a formula in the upgrade summary even though the real upgrade would later fail with CannotInstallFormulaError because one of ... | 109191be4988470b51a60a5ef1998520aa24c01b | 7d153019827a70e4d9d238084cb1d505c31889d0 | diff --git a/AGENTS.md b/AGENTS.md
index 7f2bbccc56db2..8271a8a608263 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -62,5 +62,6 @@ Do not use conventional commit prefixes such as `feat:`, `fix:`, `chore:`, `refa
9. Inline new or existing methods as methods or local variables unless they are reused 2+ times or needed for u... | [
"AGENTS.md",
"Library/Homebrew/cmd/upgrade.rb",
"Library/Homebrew/test/cmd/upgrade_spec.rb",
"Library/Homebrew/upgrade.rb"
] | [
{
"comment": "`to not_to_output(...)` is not standard RSpec syntax and is likely a typo unless this repo defines a custom `not_to_output` matcher. If it’s unintended, use the built-in negated output matcher form (e.g., `not_to output(...).to_stdout`) or an equivalent supported matcher so the test assertion is r... | diff --git a/Library/Homebrew/test/cmd/upgrade_spec.rb b/Library/Homebrew/test/cmd/upgrade_spec.rb
index 1b16fbe0a38e4..16af6dd2625af 100644
--- a/Library/Homebrew/test/cmd/upgrade_spec.rb
+++ b/Library/Homebrew/test/cmd/upgrade_spec.rb
@@ -48,6 +48,20 @@ class #{Formulary.class_s(name)} < Formula
end
end
+ ... | true |
Homebrew/brew | 22,683 | comment_to_fix | Handle pinned dependency failures in upgrade previews | `to not_to_output(...)` is not standard RSpec syntax and is likely a typo unless this repo defines a custom `not_to_output` matcher. If it’s unintended, use the built-in negated output matcher form (e.g., `not_to output(...).to_stdout`) or an equivalent supported matcher so the test assertion is reliable. | 109191be4988470b51a60a5ef1998520aa24c01b | 7d153019827a70e4d9d238084cb1d505c31889d0 | diff --git a/Library/Homebrew/test/cmd/upgrade_spec.rb b/Library/Homebrew/test/cmd/upgrade_spec.rb
index 1b16fbe0a38e4..16af6dd2625af 100644
--- a/Library/Homebrew/test/cmd/upgrade_spec.rb
+++ b/Library/Homebrew/test/cmd/upgrade_spec.rb
@@ -48,6 +48,20 @@ class #{Formulary.class_s(name)} < Formula
end
end
+ ... | [
"Library/Homebrew/test/cmd/upgrade_spec.rb"
] | [
{
"comment": "`to not_to_output(...)` is not standard RSpec syntax and is likely a typo unless this repo defines a custom `not_to_output` matcher. If it’s unintended, use the built-in negated output matcher form (e.g., `not_to output(...).to_stdout`) or an equivalent supported matcher so the test assertion is r... | true | ||
Homebrew/brew | 22,683 | comment_to_fix | Handle pinned dependency failures in upgrade previews | Passing the exception object directly to `ofail` may produce a less user-friendly message (e.g., including the exception class) depending on how `ofail` stringifies arguments. Consider reporting `e.message` (or the same formatting used elsewhere for `CannotInstallFormulaError`) so the output is consistently actionable ... | 109191be4988470b51a60a5ef1998520aa24c01b | 7d153019827a70e4d9d238084cb1d505c31889d0 | diff --git a/Library/Homebrew/upgrade.rb b/Library/Homebrew/upgrade.rb
index 6ae19233e6c53..1014f5afa093e 100644
--- a/Library/Homebrew/upgrade.rb
+++ b/Library/Homebrew/upgrade.rb
@@ -112,17 +112,28 @@ def formula_installers(
installers.filter_map do |fi|
fi.determine_bottle_tab_attributes
- ... | [
"Library/Homebrew/upgrade.rb"
] | [
{
"comment": "Passing the exception object directly to `ofail` may produce a less user-friendly message (e.g., including the exception class) depending on how `ofail` stringifies arguments. Consider reporting `e.message` (or the same formatting used elsewhere for `CannotInstallFormulaError`) so the output is co... | true | ||
Homebrew/brew | 22,681 | issue_to_patch | rubocops/lines: add JavaVersions cop | -----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- Do not delete these checkboxes or this pull request will be close... | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb",
"Library/Homebrew/sorbet/rbi/dsl/rubo_cop/cop/formula_audit/java_versions.rbi",
"Library/Homebrew/test/rubocops/text/java_versions_spec.rb"
] | [
{
"comment": "## Potentially uninitialized local variable\n\nLocal variable <a class=\"Link\" href=\"/Homebrew/brew/blob/c350dbf294bd16c905f2df0d9c19c1591a953795/Library/Homebrew/rubocops/lines.rb#L544-L544\">java_version</a> may be used before it is initialized.\n\n---\n\nInitialize <code>java_version</code> e... | diff --git a/Library/Homebrew/test/rubocops/text/java_versions_spec.rb b/Library/Homebrew/test/rubocops/text/java_versions_spec.rb
new file mode 100644
index 0000000000000..956df02794d63
--- /dev/null
+++ b/Library/Homebrew/test/rubocops/text/java_versions_spec.rb
@@ -0,0 +1,242 @@
+# typed: true
+# frozen_string_liter... | true | |
Homebrew/brew | 22,681 | comment_to_fix | rubocops/lines: add JavaVersions cop | ## Potentially uninitialized local variable
Local variable <a class="Link" href="/Homebrew/brew/blob/c350dbf294bd16c905f2df0d9c19c1591a953795/Library/Homebrew/rubocops/lines.rb#L544-L544">java_version</a> may be used before it is initialized.
---
Initialize <code>java_version</code> explicitly at the start of each <... | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb"
] | [
{
"comment": "## Potentially uninitialized local variable\n\nLocal variable <a class=\"Link\" href=\"/Homebrew/brew/blob/c350dbf294bd16c905f2df0d9c19c1591a953795/Library/Homebrew/rubocops/lines.rb#L544-L544\">java_version</a> may be used before it is initialized.\n\n---\n\nInitialize <code>java_version</code> e... | true | ||
Homebrew/brew | 22,681 | comment_to_fix | rubocops/lines: add JavaVersions cop | `java_home_method_call` treats `when nil` as “no argument”, but an explicit `nil` argument is a `nil` AST node, so it currently falls into `else` and is skipped. That means `Language::Java.*(nil)` won’t be corrected/flagged even when the formula depends on versioned `openjdk@…`, which defeats the purpose of ensuring th... | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb"
] | [
{
"comment": "`java_home_method_call` treats `when nil` as “no argument”, but an explicit `nil` argument is a `nil` AST node, so it currently falls into `else` and is skipped. That means `Language::Java.*(nil)` won’t be corrected/flagged even when the formula depends on versioned `openjdk@…`, which defeats the ... | true | ||
Homebrew/brew | 22,681 | comment_to_fix | rubocops/lines: add JavaVersions cop | In the `bin.write_jar_script` handling, `java_version_node` can be `nil` when the final hash doesn’t include a `:java_version` pair; the current `else` branch calls `java_version_node.nil_type?`, which will raise `NoMethodError` on `nil`. Also, `java_version`/`java_version_node` aren’t initialized per call, so a previo... | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb"
] | [
{
"comment": "In the `bin.write_jar_script` handling, `java_version_node` can be `nil` when the final hash doesn’t include a `:java_version` pair; the current `else` branch calls `java_version_node.nil_type?`, which will raise `NoMethodError` on `nil`. Also, `java_version`/`java_version_node` aren’t initialized... | true | ||
Homebrew/brew | 22,681 | comment_to_fix | rubocops/lines: add JavaVersions cop | `java_version` is only assigned when the RHS is a string. If the assignment is `java_version = nil`, `java_version` can retain a previous value from earlier in `audit_formula`, causing incorrect comparisons against `openjdk_version` (false positives/negatives). | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb"
] | [
{
"comment": "`java_version` is only assigned when the RHS is a string. If the assignment is `java_version = nil`, `java_version` can retain a previous value from earlier in `audit_formula`, causing incorrect comparisons against `openjdk_version` (false positives/negatives).",
"path": "Library/Homebrew/rubo... | true | ||
Homebrew/brew | 22,681 | comment_to_fix | rubocops/lines: add JavaVersions cop | The autocorrect branch that inserts a missing `java_version:` (when `java_version_node.nil?`) isn’t exercised by these specs. Given this cop intends to handle common `write_jar_script` variations and this PR also touches insertion logic, it would be good to add a spec covering a `bin.write_jar_script ...` call where th... | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb"
] | [
{
"comment": "The autocorrect branch that inserts a missing `java_version:` (when `java_version_node.nil?`) isn’t exercised by these specs. Given this cop intends to handle common `write_jar_script` variations and this PR also touches insertion logic, it would be good to add a spec covering a `bin.write_jar_scr... | true | ||
Homebrew/brew | 22,681 | comment_to_fix | rubocops/lines: add JavaVersions cop | The auto-correction for `Language::Java.*(nil)` with an unversioned `openjdk` dependency removes only the `nil` token (`corrector.remove(java_version_node.source_range)`), which leaves an empty argument list like `Language::Java.java_home_env()` (and can also leave trailing whitespace for non-parenthesized calls like `... | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb"
] | [
{
"comment": "The auto-correction for `Language::Java.*(nil)` with an unversioned `openjdk` dependency removes only the `nil` token (`corrector.remove(java_version_node.source_range)`), which leaves an empty argument list like `Language::Java.java_home_env()` (and can also leave trailing whitespace for non-pare... | true | ||
Homebrew/brew | 22,681 | comment_to_fix | rubocops/lines: add JavaVersions cop | When the dependency is unversioned `openjdk` (`openjdk_version` is nil), the cop currently reports `Java version argument should match the specified dependency (`openjdk`)` for non-nil arguments (e.g. `java_home("17")` / `java_version: "25"`). Since there is no version string that can “match” an unversioned dependency ... | 109191be4988470b51a60a5ef1998520aa24c01b | 1e8a93f20cd939263cd0c892f181f688cdb36899 | diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb
index eacd0fee9d3f0..ebaa42871c75c 100644
--- a/Library/Homebrew/rubocops/lines.rb
+++ b/Library/Homebrew/rubocops/lines.rb
@@ -455,6 +455,127 @@ def audit_formula(formula_nodes)
EOS
end
+ # This cop makes sure t... | [
"Library/Homebrew/rubocops/lines.rb"
] | [
{
"comment": "When the dependency is unversioned `openjdk` (`openjdk_version` is nil), the cop currently reports `Java version argument should match the specified dependency (`openjdk`)` for non-nil arguments (e.g. `java_home(\"17\")` / `java_version: \"25\"`). Since there is no version string that can “match” ... | true | ||
Homebrew/brew | 22,682 | issue_to_patch | os/mac/hardware/cpu: fallback to generic CPU detection if sysctl fails | This fixes sandboxes misbehaving and doing network requests because it thinks the arch is `:dunno` when sysctl is blocked
-----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click ... | be2b9ef99346a6e2259c04999685b87db4374088 | f4fc044e29d66834af4af0b19f228e9624fd8655 | diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb
index 45a55b4533083..8ca1ada909e91 100644
--- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb
+++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb
@@ -20,7 +20,7 @@ def type
when MachO::Headers::CP... | [
"Library/Homebrew/extend/os/mac/hardware/cpu.rb",
"Library/Homebrew/test/hardware/cpu_spec.rb"
] | [] | diff --git a/Library/Homebrew/test/hardware/cpu_spec.rb b/Library/Homebrew/test/hardware/cpu_spec.rb
index a0f9b885f7e03..45f1ddc9e17e7 100644
--- a/Library/Homebrew/test/hardware/cpu_spec.rb
+++ b/Library/Homebrew/test/hardware/cpu_spec.rb
@@ -17,6 +17,13 @@
it "returns the current CPU's type as a symbol, or :dun... | true | |
Homebrew/brew | 22,680 | issue_to_patch | brew bundle install with tap & root-level formula in that tap reports failure but succeeds
### `brew doctor` output
```shell
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or fil... | bundle/parallel_installer: install taps before packages | Fixes #22672
`build_dependency_map` does not work and spams errors if you don't already have the tap installed. Therefore we need to install the taps before we can correctly check the package dependency tree.
-----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a ... | 535e421df97401e8939ceaaf4f2fd849db99425c | ec8a25cb0d2c65528fba99eac46bf7b852ef3322 | diff --git a/Library/Homebrew/bundle/parallel_installer.rb b/Library/Homebrew/bundle/parallel_installer.rb
index 03ae23b89217f..84ef54ad65e8e 100644
--- a/Library/Homebrew/bundle/parallel_installer.rb
+++ b/Library/Homebrew/bundle/parallel_installer.rb
@@ -37,13 +37,19 @@ def initialize(entries, jobs:, no_upgrade:, ver... | [
"Library/Homebrew/bundle/parallel_installer.rb",
"Library/Homebrew/bundle/tap.rb",
"Library/Homebrew/test/bundle/installer_spec.rb",
"Library/Homebrew/test/bundle/tap_spec.rb"
] | [
{
"comment": "`build_dependency_map` now requires an `entries` argument, but there are existing call sites (e.g. specs) that call it with no arguments. As-is, this will raise `ArgumentError` and break the test suite. Consider keeping the ability to call it without arguments by defaulting to `@entries`, while st... | diff --git a/Library/Homebrew/test/bundle/installer_spec.rb b/Library/Homebrew/test/bundle/installer_spec.rb
index bafaa50614837..fc157da1aa468 100644
--- a/Library/Homebrew/test/bundle/installer_spec.rb
+++ b/Library/Homebrew/test/bundle/installer_spec.rb
@@ -287,10 +287,11 @@
allow(Homebrew::Bundle::Brew).to r... | true |
Homebrew/brew | 22,680 | comment_to_fix | bundle/parallel_installer: install taps before packages | `build_dependency_map` now requires an `entries` argument, but there are existing call sites (e.g. specs) that call it with no arguments. As-is, this will raise `ArgumentError` and break the test suite. Consider keeping the ability to call it without arguments by defaulting to `@entries`, while still passing `pending_e... | 535e421df97401e8939ceaaf4f2fd849db99425c | ec8a25cb0d2c65528fba99eac46bf7b852ef3322 | diff --git a/Library/Homebrew/bundle/parallel_installer.rb b/Library/Homebrew/bundle/parallel_installer.rb
index 03ae23b89217f..84ef54ad65e8e 100644
--- a/Library/Homebrew/bundle/parallel_installer.rb
+++ b/Library/Homebrew/bundle/parallel_installer.rb
@@ -37,13 +37,19 @@ def initialize(entries, jobs:, no_upgrade:, ver... | [
"Library/Homebrew/bundle/parallel_installer.rb"
] | [
{
"comment": "`build_dependency_map` now requires an `entries` argument, but there are existing call sites (e.g. specs) that call it with no arguments. As-is, this will raise `ArgumentError` and break the test suite. Consider keeping the ability to call it without arguments by defaulting to `@entries`, while st... | true | ||
Homebrew/brew | 22,680 | comment_to_fix | bundle/parallel_installer: install taps before packages | `Homebrew::Bundle::Tap.install!` now calls `::Tap.fetch(name)`, but this file doesn’t `require "tap"` in that code path. In tests (and potentially in other call paths where `installed_taps` is stubbed/memoized), this can raise `NameError: uninitialized constant Tap`. Requiring `tap` here makes the dependency explicit a... | 535e421df97401e8939ceaaf4f2fd849db99425c | ec8a25cb0d2c65528fba99eac46bf7b852ef3322 | diff --git a/Library/Homebrew/bundle/tap.rb b/Library/Homebrew/bundle/tap.rb
index 5e80459815f94..1def0b0bcbece 100644
--- a/Library/Homebrew/bundle/tap.rb
+++ b/Library/Homebrew/bundle/tap.rb
@@ -71,6 +71,8 @@ def install!(name, preinstall: true, no_upgrade: false, verbose: false, force: f
return false
... | [
"Library/Homebrew/bundle/tap.rb"
] | [
{
"comment": "`Homebrew::Bundle::Tap.install!` now calls `::Tap.fetch(name)`, but this file doesn’t `require \"tap\"` in that code path. In tests (and potentially in other call paths where `installed_taps` is stubbed/memoized), this can raise `NameError: uninitialized constant Tap`. Requiring `tap` here makes t... | true | ||
Homebrew/brew | 22,677 | issue_to_patch | `brew search` does not show matching casks on linux
### `brew doctor` output
```shell
linuxbrew@4585e5188d0e:~$ brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file... | Include cask tap in core taps on all platforms | -----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- Do not delete these checkboxes or this pull request will be close... | 39dc982f371ce4a9d014699501c54a3e271050c3 | 0f0b07d8e74731e6d6c649274024bc821e5969d3 | diff --git a/Library/Homebrew/extend/os/mac/tap.rb b/Library/Homebrew/extend/os/mac/tap.rb
deleted file mode 100644
index 2213a4f757d22..0000000000000
--- a/Library/Homebrew/extend/os/mac/tap.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# typed: strict
-# frozen_string_literal: true
-
-module OS
- module Mac
- module Tap
- ... | [
"Library/Homebrew/extend/os/mac/tap.rb",
"Library/Homebrew/extend/os/tap.rb",
"Library/Homebrew/tap.rb",
"Library/Homebrew/test/search_spec.rb",
"Library/Homebrew/test/tap_spec.rb"
] | [] | diff --git a/Library/Homebrew/test/search_spec.rb b/Library/Homebrew/test/search_spec.rb
index f0c5e6714b08a..85dee0b6b2313 100644
--- a/Library/Homebrew/test/search_spec.rb
+++ b/Library/Homebrew/test/search_spec.rb
@@ -139,6 +139,10 @@
expect(described_class.search_casks(/testball/)).to eq([])
end
+ ... | true |
Homebrew/brew | 22,678 | issue_to_patch | `brew bundle` drops `trusted: true` on `tap` entries without a custom remote (option parsed into `clone_target`)
### `brew doctor` output
```shell
Your system is ready to brew.
```
### Verification
- [x] I ran `brew update` twice and am still able to reproduce my issue.
- [x] My "`brew doctor` output" above says `Y... | bundle/dsl: fix kwargs handling for taps | Fixes #22668.
For backwards compatibility reasons, the hash positional argument is still accepted. I'll follow up with a deprecation plan for that.
-----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done be... | bee00beb6dab95d11923c3c5861df7aa0381b1f8 | 720dfe1cd2494bbeab3e0aaa045f20bb76af7e54 | diff --git a/Library/Homebrew/bundle/dsl.rb b/Library/Homebrew/bundle/dsl.rb
index bf4c6072435cc..b00a462ddf211 100644
--- a/Library/Homebrew/bundle/dsl.rb
+++ b/Library/Homebrew/bundle/dsl.rb
@@ -83,8 +83,16 @@ def cask(name, options = {})
@entries << Entry.new(:cask, name, options)
end
- sig { ... | [
"Library/Homebrew/bundle/dsl.rb",
"Library/Homebrew/test/bundle/dsl_spec.rb"
] | [
{
"comment": "Sorbet signature for `**keyword_options` is incorrect: `keyword_options` is a keyword splat Hash, but the sig types it as `Homebrew::Bundle::EntryOption` (a single option value). This should be an options hash type (e.g. `Homebrew::Bundle::EntryOptions`) or Sorbet will fail typechecking for this m... | diff --git a/Library/Homebrew/test/bundle/dsl_spec.rb b/Library/Homebrew/test/bundle/dsl_spec.rb
index 3385a73311452..f7c8e4ffd8641 100644
--- a/Library/Homebrew/test/bundle/dsl_spec.rb
+++ b/Library/Homebrew/test/bundle/dsl_spec.rb
@@ -66,6 +66,13 @@ def dsl_from_string(string)
end
end
+ context "with tap e... | true |
Homebrew/brew | 22,678 | comment_to_fix | bundle/dsl: fix kwargs handling for taps | Sorbet signature for `**keyword_options` is incorrect: `keyword_options` is a keyword splat Hash, but the sig types it as `Homebrew::Bundle::EntryOption` (a single option value). This should be an options hash type (e.g. `Homebrew::Bundle::EntryOptions`) or Sorbet will fail typechecking for this method. | bee00beb6dab95d11923c3c5861df7aa0381b1f8 | 720dfe1cd2494bbeab3e0aaa045f20bb76af7e54 | diff --git a/Library/Homebrew/bundle/dsl.rb b/Library/Homebrew/bundle/dsl.rb
index bf4c6072435cc..b00a462ddf211 100644
--- a/Library/Homebrew/bundle/dsl.rb
+++ b/Library/Homebrew/bundle/dsl.rb
@@ -83,8 +83,16 @@ def cask(name, options = {})
@entries << Entry.new(:cask, name, options)
end
- sig { ... | [
"Library/Homebrew/bundle/dsl.rb"
] | [
{
"comment": "Sorbet signature for `**keyword_options` is incorrect: `keyword_options` is a keyword splat Hash, but the sig types it as `Homebrew::Bundle::EntryOption` (a single option value). This should be an options hash type (e.g. `Homebrew::Bundle::EntryOptions`) or Sorbet will fail typechecking for this m... | true | ||
Homebrew/brew | 22,669 | issue_to_patch | formula_installer: simplify bubblewrap handling | * Fixes sandbox not being used on tier 1 systems when installing certain formulae
* Fixes `brew install ca-certificates` not working at all - i.e. fixes double install of bubblewrap (dependency collector adds it as a dependency)
* Adds a warning when the sandbox isn't enabled
-----
<!-- Do not tick a checkbox i... | 39dc982f371ce4a9d014699501c54a3e271050c3 | a25274ac8b18ab75372e9eadb9910d0eb8fbf656 | diff --git a/Library/Homebrew/extend/os/linux/dependency_collector.rb b/Library/Homebrew/extend/os/linux/dependency_collector.rb
index ff72bb205a4de..90cef201fb518 100644
--- a/Library/Homebrew/extend/os/linux/dependency_collector.rb
+++ b/Library/Homebrew/extend/os/linux/dependency_collector.rb
@@ -59,7 +59,10 @@ def ... | [
"Library/Homebrew/extend/os/linux/dependency_collector.rb",
"Library/Homebrew/formula_installer.rb",
"Library/Homebrew/test/formula_installer_spec.rb",
"Library/Homebrew/test/os/linux/dependency_collector_spec.rb"
] | [
{
"comment": "`global_deps_for` memoizes only by `name`, but the returned dependency list also depends on `include_build`. If the method is first called with `include_build: false`, later calls with `include_build: true` will incorrectly reuse the cached value and omit build deps. Additionally, `@global_deps_fo... | diff --git a/Library/Homebrew/test/formula_installer_spec.rb b/Library/Homebrew/test/formula_installer_spec.rb
index 669f57ec073fe..dfd8039222d54 100644
--- a/Library/Homebrew/test/formula_installer_spec.rb
+++ b/Library/Homebrew/test/formula_installer_spec.rb
@@ -237,32 +237,6 @@ def temporary_install(formula, **optio... | true | |
Homebrew/brew | 22,669 | comment_to_fix | formula_installer: simplify bubblewrap handling | `global_deps_for` memoizes only by `name`, but the returned dependency list also depends on `include_build`. If the method is first called with `include_build: false`, later calls with `include_build: true` will incorrectly reuse the cached value and omit build deps. Additionally, `@global_deps_for` is typed as `T::Arr... | 39dc982f371ce4a9d014699501c54a3e271050c3 | a25274ac8b18ab75372e9eadb9910d0eb8fbf656 | diff --git a/Library/Homebrew/extend/os/linux/dependency_collector.rb b/Library/Homebrew/extend/os/linux/dependency_collector.rb
index ff72bb205a4de..90cef201fb518 100644
--- a/Library/Homebrew/extend/os/linux/dependency_collector.rb
+++ b/Library/Homebrew/extend/os/linux/dependency_collector.rb
@@ -59,7 +59,10 @@ def ... | [
"Library/Homebrew/extend/os/linux/dependency_collector.rb"
] | [
{
"comment": "`global_deps_for` memoizes only by `name`, but the returned dependency list also depends on `include_build`. If the method is first called with `include_build: false`, later calls with `include_build: true` will incorrectly reuse the cached value and omit build deps. Additionally, `@global_deps_fo... | true | ||
Homebrew/brew | 22,669 | comment_to_fix | formula_installer: simplify bubblewrap handling | The dependency installation loop was removed from `install_dependencies`, so this method no longer installs any dependencies (it only prints a header). This would cause `brew install` to skip installing required dependencies entirely. | 39dc982f371ce4a9d014699501c54a3e271050c3 | a25274ac8b18ab75372e9eadb9910d0eb8fbf656 | diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index e92d8f6fd05e8..8c7e6f0cb3171 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -435,7 +435,20 @@ def check_install_sanity
if Homebrew::EnvConfig.developer?
# `recu... | [
"Library/Homebrew/formula_installer.rb"
] | [
{
"comment": "The dependency installation loop was removed from `install_dependencies`, so this method no longer installs any dependencies (it only prints a header). This would cause `brew install` to skip installing required dependencies entirely.",
"path": "Library/Homebrew/formula_installer.rb",
"hun... | true | ||
Homebrew/brew | 22,665 | issue_to_patch | Self-updating casks with hyphenated version/build strings can be marked outdated even when the app bundle is current
### `brew doctor` output
```shell
Your system is ready to brew.
```
### Verification
- [x] I ran `brew update` twice and am still able to reproduce my issue.
- [x] My "`brew doctor` output" above say... | Handle split cask bundle versions | Fixes https://github.com/Homebrew/brew/issues/22663
- Avoid reinstalling self-updating casks when `Info.plist` splits marketing and build versions across separate fields.
- Cover stale `installed_version` metadata matching a current bundle.
-----
<!-- Do not tick a checkbox if you haven’t performed its action... | 1cd9e81cc250a12f586b590ebbff64bb07771d83 | e4cd53e9e6c06a8bc17dfbd70a8c2860f7abb626 | diff --git a/Library/Homebrew/cask/cask.rb b/Library/Homebrew/cask/cask.rb
index 3cd4a246c84ad..6d5a05b9aebbb 100644
--- a/Library/Homebrew/cask/cask.rb
+++ b/Library/Homebrew/cask/cask.rb
@@ -748,6 +748,16 @@ def auto_updates_bundle_outdated?
installed_short_version = nil if AUTO_UPDATES_BAD_BUNDLE_VERSIONS.inc... | [
"Library/Homebrew/cask/cask.rb",
"Library/Homebrew/test/cask/cask_spec.rb"
] | [
{
"comment": "The split-short/bundle special-case only handles an exact match. If the app has auto-updated to a newer build (e.g. installed bundle version 2058 while the tap is 2.61-2057), `short_comparison == -1` will still mark it outdated and trigger a reinstall. Consider comparing the combined installed ver... | diff --git a/Library/Homebrew/test/cask/cask_spec.rb b/Library/Homebrew/test/cask/cask_spec.rb
index b4257f7b11d55..6becad87758a2 100644
--- a/Library/Homebrew/test/cask/cask_spec.rb
+++ b/Library/Homebrew/test/cask/cask_spec.rb
@@ -333,6 +333,24 @@ def write_auto_updates_cask(path, version:, artifacts:, token: "auto-u... | true |
Homebrew/brew | 22,665 | comment_to_fix | Handle split cask bundle versions | The split-short/bundle special-case only handles an exact match. If the app has auto-updated to a newer build (e.g. installed bundle version 2058 while the tap is 2.61-2057), `short_comparison == -1` will still mark it outdated and trigger a reinstall. Consider comparing the combined installed version against the tap c... | 1cd9e81cc250a12f586b590ebbff64bb07771d83 | e4cd53e9e6c06a8bc17dfbd70a8c2860f7abb626 | diff --git a/Library/Homebrew/cask/cask.rb b/Library/Homebrew/cask/cask.rb
index 3cd4a246c84ad..6d5a05b9aebbb 100644
--- a/Library/Homebrew/cask/cask.rb
+++ b/Library/Homebrew/cask/cask.rb
@@ -748,6 +748,16 @@ def auto_updates_bundle_outdated?
installed_short_version = nil if AUTO_UPDATES_BAD_BUNDLE_VERSIONS.inc... | [
"Library/Homebrew/cask/cask.rb"
] | [
{
"comment": "The split-short/bundle special-case only handles an exact match. If the app has auto-updated to a newer build (e.g. installed bundle version 2058 while the tap is 2.61-2057), `short_comparison == -1` will still mark it outdated and trigger a reinstall. Consider comparing the combined installed ver... | true | ||
Homebrew/brew | 22,665 | comment_to_fix | Handle split cask bundle versions | This new spec covers the exact combined-version match, but it doesn’t cover the analogous case where the bundle has auto-updated to a *newer* build than the tap (which should also not be considered outdated, consistent with the existing CSV build tests below). Adding a test case for a higher combined build would protec... | 1cd9e81cc250a12f586b590ebbff64bb07771d83 | e4cd53e9e6c06a8bc17dfbd70a8c2860f7abb626 | diff --git a/Library/Homebrew/test/cask/cask_spec.rb b/Library/Homebrew/test/cask/cask_spec.rb
index b4257f7b11d55..6becad87758a2 100644
--- a/Library/Homebrew/test/cask/cask_spec.rb
+++ b/Library/Homebrew/test/cask/cask_spec.rb
@@ -333,6 +333,24 @@ def write_auto_updates_cask(path, version:, artifacts:, token: "auto-u... | [
"Library/Homebrew/test/cask/cask_spec.rb"
] | [
{
"comment": "This new spec covers the exact combined-version match, but it doesn’t cover the analogous case where the bundle has auto-updated to a *newer* build than the tap (which should also not be considered outdated, consistent with the existing CSV build tests below). Adding a test case for a higher combi... | true | ||
Homebrew/brew | 22,240 | issue_to_patch | Add Linux Bubblewrap sandbox | - Use `bwrap` to translate shared sandbox rules into rootless namespace execution.
- Gate the backend behind `HOMEBREW_SANDBOX_LINUX` while the Linux policy is still experimental.
- Reuse preinstall diagnostics to tell opt-in users when `bubblewrap` is missing.
- Install `bubblewrap` in Linux CI and Docker images so... | 174e0d81affb6f9a2da517d3af3d72cacc9475a9 | 936f0b2a02e77c9ef17c094c082fe5622fe3aa32 | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 88d793bd9c589..e32ef2c2b789f 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -274,6 +274,21 @@ jobs:
workflow-key: tests-tests-macos
uninstall: true
+ - name: Install brew tests Linux ... | [
".github/workflows/tests.yml",
"Dockerfile",
"Library/Homebrew/build.rb",
"Library/Homebrew/dev-cmd/test.rb",
"Library/Homebrew/dev-cmd/tests.rb",
"Library/Homebrew/env_config.rb",
"Library/Homebrew/extend/os/linux/dev-cmd/tests.rb",
"Library/Homebrew/extend/os/linux/sandbox.rb",
"Library/Homebrew/e... | [
{
"comment": "`Sandbox#run` executes the sandbox wrapper from within the per-run `tmpdir` (via `Utils.safe_fork(directory: tmpdir, ...)`), but the bwrap backend forcibly sets `--chdir /`, which changes that behavior and makes the `tmpdir` argument effectively unused here. This can break commands that rely on th... | diff --git a/Library/Homebrew/test/dev-cmd/tests_spec.rb b/Library/Homebrew/test/dev-cmd/tests_spec.rb
index cc6ac2ba400a9..757f72027bc8b 100644
--- a/Library/Homebrew/test/dev-cmd/tests_spec.rb
+++ b/Library/Homebrew/test/dev-cmd/tests_spec.rb
@@ -1,4 +1,4 @@
-# typed: strict
+# typed: false
# frozen_string_literal: ... | true | |
Homebrew/brew | 22,240 | comment_to_fix | Add Linux Bubblewrap sandbox | `Sandbox#run` executes the sandbox wrapper from within the per-run `tmpdir` (via `Utils.safe_fork(directory: tmpdir, ...)`), but the bwrap backend forcibly sets `--chdir /`, which changes that behavior and makes the `tmpdir` argument effectively unused here. This can break commands that rely on the current working dire... | 174e0d81affb6f9a2da517d3af3d72cacc9475a9 | 936f0b2a02e77c9ef17c094c082fe5622fe3aa32 | diff --git a/Library/Homebrew/extend/os/linux/sandbox.rb b/Library/Homebrew/extend/os/linux/sandbox.rb
new file mode 100644
index 0000000000000..2e6d03aea0d3b
--- /dev/null
+++ b/Library/Homebrew/extend/os/linux/sandbox.rb
@@ -0,0 +1,306 @@
+# typed: strict
+# frozen_string_literal: true
+
+require "fileutils"
+require... | [
"Library/Homebrew/extend/os/linux/sandbox.rb"
] | [
{
"comment": "`Sandbox#run` executes the sandbox wrapper from within the per-run `tmpdir` (via `Utils.safe_fork(directory: tmpdir, ...)`), but the bwrap backend forcibly sets `--chdir /`, which changes that behavior and makes the `tmpdir` argument effectively unused here. This can break commands that rely on th... | true | ||
Homebrew/brew | 22,546 | issue_to_patch | Improve JSON API for Install Performance Improvements
### Verification
- [x] This issue's title and/or description do not reference a single formula e.g. `brew install wget`. If they do, open an issue at https://github.com/Homebrew/homebrew-core/issues/new/choose instead.
### Provide a detailed description of the pr... | Default to internal API | Fixes https://github.com/Homebrew/brew/issues/19204
- Avoid the regular JSON API at runtime now that the internal package data is the supported default.
- Keep public and internal JSON generation separate so website data continues to be produced.
- Hide `HOMEBREW_USE_INTERNAL_API` because it is only an internal co... | 000e6748643d49610fcb19ae443a22725e9b5fee | 745385a90a7838d2c6647043f504add861488ac5 | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index bf76c8e28e57c..e5c78078b1fe6 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -117,18 +117,7 @@ jobs:
package_api_cache="${RUNNER_TEMP}/homebrew-api-cache"
rm -rvf ~/Library/Caches/Hom... | [
".github/workflows/release.yml",
"Library/Homebrew/api.rb",
"Library/Homebrew/brew.sh",
"Library/Homebrew/cask/cask_loader.rb",
"Library/Homebrew/cmd/update.sh",
"Library/Homebrew/env_config.rb",
"Library/Homebrew/formulary.rb",
"Library/Homebrew/search.rb",
"Library/Homebrew/sorbet/rbi/dsl/homebrew... | [
{
"comment": "The example name doesn’t match what the spec is actually asserting: `use_internal_api?` no longer depends on `HOMEBREW_NO_INSTALL_FROM_API`, so this test is really verifying that `HOMEBREW_USE_INTERNAL_API` is **not disabled** when `HOMEBREW_NO_INSTALL_FROM_API` is set. Renaming the example will a... | diff --git a/Library/Homebrew/test/api/cask_spec.rb b/Library/Homebrew/test/api/cask_spec.rb
index b89acb3b803a3..87a8df93a5fab 100644
--- a/Library/Homebrew/test/api/cask_spec.rb
+++ b/Library/Homebrew/test/api/cask_spec.rb
@@ -57,7 +57,17 @@ def mock_curl_download(stdout:)
end
before do
- allow(Homeb... | true |
Homebrew/brew | 22,546 | comment_to_fix | Default to internal API | The example name doesn’t match what the spec is actually asserting: `use_internal_api?` no longer depends on `HOMEBREW_NO_INSTALL_FROM_API`, so this test is really verifying that `HOMEBREW_USE_INTERNAL_API` is **not disabled** when `HOMEBREW_NO_INSTALL_FROM_API` is set. Renaming the example will avoid confusion for fut... | 000e6748643d49610fcb19ae443a22725e9b5fee | 745385a90a7838d2c6647043f504add861488ac5 | diff --git a/Library/Homebrew/test/env_config_spec.rb b/Library/Homebrew/test/env_config_spec.rb
index b608636a2ab4c..46aa07f1cfa48 100644
--- a/Library/Homebrew/test/env_config_spec.rb
+++ b/Library/Homebrew/test/env_config_spec.rb
@@ -360,34 +360,4 @@
expect(env_config.no_require_tap_trust?).to be(true)
e... | [
"Library/Homebrew/test/env_config_spec.rb"
] | [
{
"comment": "The example name doesn’t match what the spec is actually asserting: `use_internal_api?` no longer depends on `HOMEBREW_NO_INSTALL_FROM_API`, so this test is really verifying that `HOMEBREW_USE_INTERNAL_API` is **not disabled** when `HOMEBREW_NO_INSTALL_FROM_API` is set. Renaming the example will a... | true | ||
Homebrew/brew | 22,664 | issue_to_patch | simulate_system: add missing require | Fixes various commands being broken on Linux:
```
Error: uninitialized constant #<Class:Homebrew::SimulateSystem>::Hardware
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/simulate_system.rb:90:in 'Homebrew::SimulateSystem.current_arch'
/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/simulate_system.rb:... | 1cd9e81cc250a12f586b590ebbff64bb07771d83 | 6a773bb245db27c021f3eca40eddc5fe261e375d | diff --git a/Library/Homebrew/simulate_system.rb b/Library/Homebrew/simulate_system.rb
index b36f479b08cb6..9fb8c67dbe550 100644
--- a/Library/Homebrew/simulate_system.rb
+++ b/Library/Homebrew/simulate_system.rb
@@ -1,6 +1,7 @@
# typed: strict
# frozen_string_literal: true
+require "hardware"
require "macos_versi... | [
"Library/Homebrew/simulate_system.rb"
] | [] | true | ||
Homebrew/brew | 22,661 | issue_to_patch | Remove note on Homebrew sandboxing for Linux | Removed note about Homebrew's lack of sandboxing on Linux since 6.0.0 added it
-----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after cr... | 3d9e344622974a7f96da927fd0407e08581eb437 | edd968e27512484b6b753e0dfd6d34b59684fbc3 | diff --git a/docs/Homebrew-on-Linux.md b/docs/Homebrew-on-Linux.md
index 5bf0090b0193d..a71e76d763521 100644
--- a/docs/Homebrew-on-Linux.md
+++ b/docs/Homebrew-on-Linux.md
@@ -46,9 +46,6 @@ brew install hello
If you're using an older distribution of Linux, installing your first package will also install a recent ve... | [
"docs/Homebrew-on-Linux.md"
] | [
{
"comment": "The PR metadata/description is empty, so it’s unclear why the sandboxing note was removed. Please add a brief PR description (or a short note in the doc near this section) explaining the reason for removal to avoid regressions in user guidance (e.g., behavior changed, note was inaccurate/outdated,... | true | ||
Homebrew/brew | 22,661 | comment_to_fix | Remove note on Homebrew sandboxing for Linux | The PR metadata/description is empty, so it’s unclear why the sandboxing note was removed. Please add a brief PR description (or a short note in the doc near this section) explaining the reason for removal to avoid regressions in user guidance (e.g., behavior changed, note was inaccurate/outdated, or guidance moved els... | 3d9e344622974a7f96da927fd0407e08581eb437 | edd968e27512484b6b753e0dfd6d34b59684fbc3 | diff --git a/docs/Homebrew-on-Linux.md b/docs/Homebrew-on-Linux.md
index 5bf0090b0193d..a71e76d763521 100644
--- a/docs/Homebrew-on-Linux.md
+++ b/docs/Homebrew-on-Linux.md
@@ -46,9 +46,6 @@ brew install hello
If you're using an older distribution of Linux, installing your first package will also install a recent ve... | [
"docs/Homebrew-on-Linux.md"
] | [
{
"comment": "The PR metadata/description is empty, so it’s unclear why the sandboxing note was removed. Please add a brief PR description (or a short note in the doc near this section) explaining the reason for removal to avoid regressions in user guidance (e.g., behavior changed, note was inaccurate/outdated,... | true | ||
Homebrew/brew | 22,592 | issue_to_patch | Preliminary macOS 27 (Golden Gate) support | Pending:
* Do we need to do anything to handle Intel's deprecation?
- Probably not because of Rosetta, so still will have `golden_gate` and `arm64_golden_gate` tags.
- macOS 28 is probably when we can really do this
* Apple Clang version
* Library versions in macOS 27 SDK
* Do we need to release a new ruby-... | 7a8fca0d891be0f49b74b9a89bbf5d6662363b36 | 7750fa03645dc7b72f35dfde2d766bea3b006866 | diff --git a/Library/Homebrew/api.rb b/Library/Homebrew/api.rb
index ce1397ede380b..3ad64b223ea66 100644
--- a/Library/Homebrew/api.rb
+++ b/Library/Homebrew/api.rb
@@ -79,10 +79,14 @@ def self.fetch_json_api_file(endpoint, target: HOMEBREW_CACHE_API/endpoint,
odie "Need to download #{url} but cannot as root! ... | [
"Library/Homebrew/api.rb",
"Library/Homebrew/api/internal.rb",
"Library/Homebrew/cmd/update.sh",
"Library/Homebrew/extend/os/api/internal.rb",
"Library/Homebrew/extend/os/mac/api/internal.rb",
"Library/Homebrew/macos_version.rb",
"Library/Homebrew/os/mac/pkgconfig/27/bzip2.pc",
"Library/Homebrew/os/ma... | [
{
"comment": "`kernel_major_version` now returns the macOS major version for 27+, but still returns `version_major - 1` for 26. That makes the kernel major jump from 25 (macOS 26) to 27 (macOS 27), which is inconsistent with the existing mapping logic and the current spec expectation that macOS 26 => 25. This w... | diff --git a/Library/Homebrew/test/cask/cask_spec.rb b/Library/Homebrew/test/cask/cask_spec.rb
index f4d837156f312..1f24ace1ee609 100644
--- a/Library/Homebrew/test/cask/cask_spec.rb
+++ b/Library/Homebrew/test/cask/cask_spec.rb
@@ -655,6 +655,9 @@ def write_auto_updates_cask(path, version:, artifacts:, token: "auto-up... | true | |
Homebrew/brew | 22,592 | comment_to_fix | Preliminary macOS 27 (Golden Gate) support | `kernel_major_version` now returns the macOS major version for 27+, but still returns `version_major - 1` for 26. That makes the kernel major jump from 25 (macOS 26) to 27 (macOS 27), which is inconsistent with the existing mapping logic and the current spec expectation that macOS 26 => 25. This will likely produce an ... | 7a8fca0d891be0f49b74b9a89bbf5d6662363b36 | 7750fa03645dc7b72f35dfde2d766bea3b006866 | diff --git a/Library/Homebrew/macos_version.rb b/Library/Homebrew/macos_version.rb
index 19506bdc1ab7a..257468a7aba70 100644
--- a/Library/Homebrew/macos_version.rb
+++ b/Library/Homebrew/macos_version.rb
@@ -21,21 +21,24 @@ def initialize(version)
# to `DEPRECATED_MACOS_VERSIONS` in `MacOSRequirement`.
# N... | [
"Library/Homebrew/macos_version.rb"
] | [
{
"comment": "`kernel_major_version` now returns the macOS major version for 27+, but still returns `version_major - 1` for 26. That makes the kernel major jump from 25 (macOS 26) to 27 (macOS 27), which is inconsistent with the existing mapping logic and the current spec expectation that macOS 26 => 25. This w... | true | ||
Homebrew/brew | 22,592 | comment_to_fix | Preliminary macOS 27 (Golden Gate) support | Resetting `Homebrew.failed` inside this retry path can clear failure state set earlier in the current command and potentially lead to an incorrect 0 exit status. Since this code is only switching tags and retrying the download, it should not mutate global failure state. | 7a8fca0d891be0f49b74b9a89bbf5d6662363b36 | 7750fa03645dc7b72f35dfde2d766bea3b006866 | diff --git a/Library/Homebrew/api/internal.rb b/Library/Homebrew/api/internal.rb
index 28e44fe02499c..a366886d73234 100644
--- a/Library/Homebrew/api/internal.rb
+++ b/Library/Homebrew/api/internal.rb
@@ -20,9 +20,19 @@ module Internal
private_class_method :cache
+ sig { returns(Utils::Bottles::Tag) }
+... | [
"Library/Homebrew/api/internal.rb"
] | [
{
"comment": "Resetting `Homebrew.failed` inside this retry path can clear failure state set earlier in the current command and potentially lead to an incorrect 0 exit status. Since this code is only switching tags and retrying the download, it should not mutate global failure state.",
"path": "Library/Home... | true | ||
Homebrew/brew | 22,655 | issue_to_patch | Can't "trust" custom brew tap via SSH on personal server
### `brew doctor` output
```shell
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Than... | Trust taps with scp-style remotes without a user | Fixes https://github.com/Homebrew/brew/issues/22651
- `brew trust user/tap` resolved a custom remote to its scp URL (`host:/srv/...`) but `remote_reference?` only matched scp syntax with an explicit `user@`, so the bare `host:path` form was treated as a tap name and raised `Invalid tap name`
- detect scp syntax the... | 1f42f25e4ffba6a5323e666dfc0f28f3c4e0a1a3 | 40577817fd7824170796a491648275585b20b0ab | diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb
index 392c923b059e1..4d1ab4b1fea90 100644
--- a/Library/Homebrew/tap.rb
+++ b/Library/Homebrew/tap.rb
@@ -134,12 +134,12 @@ def self.forbidden_taps
# Whether an allow/forbid/trust list reference is a remote URL or local path rather than a
# `user/re... | [
"Library/Homebrew/tap.rb",
"Library/Homebrew/test/tap_spec.rb"
] | [
{
"comment": "`remote_reference?` currently treats a bare `host:` (empty path) as a remote reference because the regex only requires a `:` before any `/`. That string does not match the documented `[user@]host:path` form and would allow `brew trust host:` to succeed and persist an unusable entry instead of reje... | diff --git a/Library/Homebrew/test/tap_spec.rb b/Library/Homebrew/test/tap_spec.rb
index 9979e433f2c66..58f764eace248 100644
--- a/Library/Homebrew/test/tap_spec.rb
+++ b/Library/Homebrew/test/tap_spec.rb
@@ -172,6 +172,28 @@ def setup_completion(link:)
end
end
+ describe "::remote_reference?" do
+ it "re... | true |
Homebrew/brew | 22,655 | comment_to_fix | Trust taps with scp-style remotes without a user | `remote_reference?` currently treats a bare `host:` (empty path) as a remote reference because the regex only requires a `:` before any `/`. That string does not match the documented `[user@]host:path` form and would allow `brew trust host:` to succeed and persist an unusable entry instead of rejecting it. | 1f42f25e4ffba6a5323e666dfc0f28f3c4e0a1a3 | 40577817fd7824170796a491648275585b20b0ab | diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb
index 392c923b059e1..4d1ab4b1fea90 100644
--- a/Library/Homebrew/tap.rb
+++ b/Library/Homebrew/tap.rb
@@ -134,12 +134,12 @@ def self.forbidden_taps
# Whether an allow/forbid/trust list reference is a remote URL or local path rather than a
# `user/re... | [
"Library/Homebrew/tap.rb"
] | [
{
"comment": "`remote_reference?` currently treats a bare `host:` (empty path) as a remote reference because the regex only requires a `:` before any `/`. That string does not match the documented `[user@]host:path` form and would allow `brew trust host:` to succeed and persist an unusable entry instead of reje... | true | ||
Homebrew/brew | 22,655 | comment_to_fix | Trust taps with scp-style remotes without a user | Add a regression test to ensure a `host:` string with an empty path is not treated as a remote reference (matching the documented `[user@]host:path` requirement). This will prevent accidentally accepting unusable trust-list entries like `brew trust host:`. | 1f42f25e4ffba6a5323e666dfc0f28f3c4e0a1a3 | 40577817fd7824170796a491648275585b20b0ab | diff --git a/Library/Homebrew/test/tap_spec.rb b/Library/Homebrew/test/tap_spec.rb
index 9979e433f2c66..58f764eace248 100644
--- a/Library/Homebrew/test/tap_spec.rb
+++ b/Library/Homebrew/test/tap_spec.rb
@@ -172,6 +172,28 @@ def setup_completion(link:)
end
end
+ describe "::remote_reference?" do
+ it "re... | [
"Library/Homebrew/test/tap_spec.rb"
] | [
{
"comment": "Add a regression test to ensure a `host:` string with an empty path is not treated as a remote reference (matching the documented `[user@]host:path` requirement). This will prevent accidentally accepting unusable trust-list entries like `brew trust host:`.",
"path": "Library/Homebrew/test/tap_... | true | ||
Homebrew/brew | 22,657 | issue_to_patch | Add software supply chain security docs | - explain recent npm and PyPI supply-side incidents and patterns
- contrast Homebrew's reviewed, checksummed, bottled trust model
- note most protections predate the current supply-chain focus
- document mitigations: sandboxing, environment filtering, cooldowns
- note maintainer vetting, inactivity removal and 2FA ... | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 6f0d765be48cbfcaaeef92f1cd6e31400ba60ae2 | diff --git a/docs/AGENTS.md b/docs/AGENTS.md
index 686affe28443a..8f605042455e5 100644
--- a/docs/AGENTS.md
+++ b/docs/AGENTS.md
@@ -1,5 +1,5 @@
---
-last_review_date: "2026-04-05"
+last_review_date: "2026-06-10"
---
# Agent Instructions for Homebrew/brew docs
@@ -15,6 +15,17 @@ These instructions apply when worki... | [
"docs/AGENTS.md",
"docs/FAQ.md",
"docs/Interesting-Taps-and-Forks.md",
"docs/Rakefile",
"docs/Supply-Chain-Security.md",
"docs/Tap-Trust.md",
"docs/index.md"
] | [
{
"comment": "The `ignore_urls` regex for PyPI does not escape the dot in `pypi.org`, so it will also match unintended domains like `pypiXorg` and can hide broken-link regressions. Escape the dot to keep the ignore rule precise.",
"path": "docs/Rakefile",
"hunk": "@@ -61,6 +61,7 @@ task test: :build do\... | true | ||
Homebrew/brew | 22,657 | comment_to_fix | Add software supply chain security docs | The `ignore_urls` regex for PyPI does not escape the dot in `pypi.org`, so it will also match unintended domains like `pypiXorg` and can hide broken-link regressions. Escape the dot to keep the ignore rule precise. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 6f0d765be48cbfcaaeef92f1cd6e31400ba60ae2 | diff --git a/docs/Rakefile b/docs/Rakefile
index 1ebc8a746a62f..c280f1412e760 100644
--- a/docs/Rakefile
+++ b/docs/Rakefile
@@ -61,6 +61,7 @@ task test: :build do
"https://metacpan.org/pod/local::lib",
"https://www.gnu.org/software/bash/",
%r{https://www\.virustotal\.com/?},
+ %r{https://pypi... | [
"docs/Rakefile"
] | [
{
"comment": "The `ignore_urls` regex for PyPI does not escape the dot in `pypi.org`, so it will also match unintended domains like `pypiXorg` and can hide broken-link regressions. Escape the dot to keep the ignore rule precise.",
"path": "docs/Rakefile",
"hunk": "@@ -61,6 +61,7 @@ task test: :build do\... | true | ||
Homebrew/brew | 22,657 | comment_to_fix | Add software supply chain security docs | This updated paragraph contains two sentences on a single line. `docs/AGENTS.md` (added in this PR) specifies one sentence per line (semantic line breaks), so this should be split to keep diffs consistent and readable. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 6f0d765be48cbfcaaeef92f1cd6e31400ba60ae2 | diff --git a/docs/FAQ.md b/docs/FAQ.md
index e3389ae6f4fa9..cde04c48c5ade 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -1,5 +1,5 @@
---
-last_review_date: "2026-04-10"
+last_review_date: "2026-06-10"
---
# FAQ (Frequently Asked Questions)
@@ -136,6 +136,7 @@ Homebrew refuses to work using sudo.
You should only e... | [
"docs/FAQ.md"
] | [
{
"comment": "This updated paragraph contains two sentences on a single line. `docs/AGENTS.md` (added in this PR) specifies one sentence per line (semantic line breaks), so this should be split to keep diffs consistent and readable.",
"path": "docs/FAQ.md",
"hunk": "@@ -135,7 +135,7 @@ Homebrew refuses ... | true | ||
Homebrew/brew | 22,657 | comment_to_fix | Add software supply chain security docs | This sentence is split across two lines (line break between “to” and the link). With the docs style guide (semantic line breaks), line breaks should occur between sentences, not within them. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 6f0d765be48cbfcaaeef92f1cd6e31400ba60ae2 | diff --git a/docs/Tap-Trust.md b/docs/Tap-Trust.md
index cc9f77b70d4e1..9ebdf84f5bd94 100644
--- a/docs/Tap-Trust.md
+++ b/docs/Tap-Trust.md
@@ -1,5 +1,5 @@
---
-last_review_date: "2026-06-01"
+last_review_date: "2026-06-10"
---
# Tap Trust
@@ -29,6 +29,8 @@ commands that are loaded just because their tap is prese... | [
"docs/Tap-Trust.md"
] | [
{
"comment": "This sentence is split across two lines (line break between “to” and the link). With the docs style guide (semantic line breaks), line breaks should occur between sentences, not within them.",
"path": "docs/Tap-Trust.md",
"hunk": "@@ -29,6 +29,9 @@ commands that are loaded just because the... | true | ||
Homebrew/brew | 22,657 | comment_to_fix | Add software supply chain security docs | This new warning paragraph is written as three sentences on a single line. The docs style guide (added in this PR) asks for one sentence per line, so this should be split to keep diffs small and readable. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 6f0d765be48cbfcaaeef92f1cd6e31400ba60ae2 | diff --git a/docs/Interesting-Taps-and-Forks.md b/docs/Interesting-Taps-and-Forks.md
index d91a329bce841..8e5dc202dace1 100644
--- a/docs/Interesting-Taps-and-Forks.md
+++ b/docs/Interesting-Taps-and-Forks.md
@@ -1,5 +1,5 @@
---
-last_review_date: "2025-02-08"
+last_review_date: "2026-06-10"
---
# Interesting Taps... | [
"docs/Interesting-Taps-and-Forks.md"
] | [
{
"comment": "This new warning paragraph is written as three sentences on a single line. The docs style guide (added in this PR) asks for one sentence per line, so this should be split to keep diffs small and readable.",
"path": "docs/Interesting-Taps-and-Forks.md",
"hunk": "@@ -10,6 +10,8 @@ Homebrew h... | true | ||
Homebrew/brew | 22,657 | comment_to_fix | Add software supply chain security docs | The new Markdown style guidelines wrap mid-sentence in a couple of bullets, which conflicts with the “one sentence per line” rule being introduced here. Adjust these bullets so line breaks happen between sentences, not inside them. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 6f0d765be48cbfcaaeef92f1cd6e31400ba60ae2 | diff --git a/docs/AGENTS.md b/docs/AGENTS.md
index 686affe28443a..8f605042455e5 100644
--- a/docs/AGENTS.md
+++ b/docs/AGENTS.md
@@ -1,5 +1,5 @@
---
-last_review_date: "2026-04-05"
+last_review_date: "2026-06-10"
---
# Agent Instructions for Homebrew/brew docs
@@ -15,6 +15,17 @@ These instructions apply when worki... | [
"docs/AGENTS.md"
] | [
{
"comment": "The new Markdown style guidelines wrap mid-sentence in a couple of bullets, which conflicts with the “one sentence per line” rule being introduced here. Adjust these bullets so line breaks happen between sentences, not inside them.",
"path": "docs/AGENTS.md",
"hunk": "@@ -15,6 +15,18 @@ Th... | true | ||
Homebrew/brew | 22,656 | issue_to_patch | Add Responsible AI Usage documentation | - explain the principles behind our AI/LLM usage rules for maintainers and contributors rather than just the requirements
- riff off Administrate's "AI at Administrate" guidance: human in the loop, trust appropriately, use AI to improve AI, try things
- cross-link from the index, `CONTRIBUTING` guide, pull request te... | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 9569699c928bfa1669a2a728dba2fe06cf7864eb | diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 4ba58c2121af1..f145ffc938d1f 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -14,6 +14,6 @@
- [ ] AI was used to generate or assist with generating this PR.
-<!-- If ticked, explain below ... | [
".github/PULL_REQUEST_TEMPLATE.md",
"CONTRIBUTING.md",
"docs/How-To-Open-a-Homebrew-Pull-Request.md",
"docs/Maintainer-Guidelines.md",
"docs/New-Maintainer-Checklist.md",
"docs/Rakefile",
"docs/Responsible-AI-Usage.md",
"docs/index.md"
] | [
{
"comment": "Grammar: “exist so to make” is incorrect and reads awkwardly. Consider rephrasing to “exist to make…”.",
"path": "docs/Responsible-AI-Usage.md",
"hunk": "@@ -0,0 +1,65 @@\n+---\n+last_review_date: \"2026-06-10\"\n+---\n+\n+# Responsible AI Usage\n+\n+This guide is for maintainers and contr... | true | ||
Homebrew/brew | 22,656 | comment_to_fix | Add Responsible AI Usage documentation | Grammar: “exist so to make” is incorrect and reads awkwardly. Consider rephrasing to “exist to make…”. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 9569699c928bfa1669a2a728dba2fe06cf7864eb | diff --git a/docs/Responsible-AI-Usage.md b/docs/Responsible-AI-Usage.md
new file mode 100644
index 0000000000000..5c260fd33b4dc
--- /dev/null
+++ b/docs/Responsible-AI-Usage.md
@@ -0,0 +1,65 @@
+---
+last_review_date: "2026-06-10"
+---
+
+# Responsible AI Usage
+
+This guide is for maintainers and contributors who use... | [
"docs/Responsible-AI-Usage.md"
] | [
{
"comment": "Grammar: “exist so to make” is incorrect and reads awkwardly. Consider rephrasing to “exist to make…”.",
"path": "docs/Responsible-AI-Usage.md",
"hunk": "@@ -0,0 +1,65 @@\n+---\n+last_review_date: \"2026-06-10\"\n+---\n+\n+# Responsible AI Usage\n+\n+This guide is for maintainers and contr... | true | ||
Homebrew/brew | 22,656 | comment_to_fix | Add Responsible AI Usage documentation | Grammar: “trusted … than that of humans” should be “than those of humans” (or similar) to refer back to “AI tools” in plural. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 9569699c928bfa1669a2a728dba2fe06cf7864eb | diff --git a/docs/Responsible-AI-Usage.md b/docs/Responsible-AI-Usage.md
new file mode 100644
index 0000000000000..5c260fd33b4dc
--- /dev/null
+++ b/docs/Responsible-AI-Usage.md
@@ -0,0 +1,65 @@
+---
+last_review_date: "2026-06-10"
+---
+
+# Responsible AI Usage
+
+This guide is for maintainers and contributors who use... | [
"docs/Responsible-AI-Usage.md"
] | [
{
"comment": "Grammar: “trusted … than that of humans” should be “than those of humans” (or similar) to refer back to “AI tools” in plural.",
"path": "docs/Responsible-AI-Usage.md",
"hunk": "@@ -0,0 +1,65 @@\n+---\n+last_review_date: \"2026-06-10\"\n+---\n+\n+# Responsible AI Usage\n+\n+This guide is fo... | true | ||
Homebrew/brew | 22,656 | comment_to_fix | Add Responsible AI Usage documentation | Grammar: “when prompting an AI needs” is ungrammatical; “prompting an AI” is the act, and it “requires” repeated corrections. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 9569699c928bfa1669a2a728dba2fe06cf7864eb | diff --git a/docs/Responsible-AI-Usage.md b/docs/Responsible-AI-Usage.md
new file mode 100644
index 0000000000000..5c260fd33b4dc
--- /dev/null
+++ b/docs/Responsible-AI-Usage.md
@@ -0,0 +1,65 @@
+---
+last_review_date: "2026-06-10"
+---
+
+# Responsible AI Usage
+
+This guide is for maintainers and contributors who use... | [
"docs/Responsible-AI-Usage.md"
] | [
{
"comment": "Grammar: “when prompting an AI needs” is ungrammatical; “prompting an AI” is the act, and it “requires” repeated corrections.",
"path": "docs/Responsible-AI-Usage.md",
"hunk": "@@ -0,0 +1,65 @@\n+---\n+last_review_date: \"2026-06-10\"\n+---\n+\n+# Responsible AI Usage\n+\n+This guide is fo... | true | ||
Homebrew/brew | 22,656 | comment_to_fix | Add Responsible AI Usage documentation | Minor grammar: “responsible for output” reads a bit off; adding “the” improves clarity. | 01b5b42b4350b52e238c3483ee69ea14676d10e1 | 9569699c928bfa1669a2a728dba2fe06cf7864eb | diff --git a/docs/Maintainer-Guidelines.md b/docs/Maintainer-Guidelines.md
index bdca191000fb2..b206eea3a231b 100644
--- a/docs/Maintainer-Guidelines.md
+++ b/docs/Maintainer-Guidelines.md
@@ -44,6 +44,7 @@ Relatedly:
If you don't have time or can't be bothered: you probably don't have the time to review the PR prop... | [
"docs/Maintainer-Guidelines.md"
] | [
{
"comment": "Minor grammar: “responsible for output” reads a bit off; adding “the” improves clarity.",
"path": "docs/Maintainer-Guidelines.md",
"hunk": "@@ -44,6 +44,7 @@ Relatedly:\n If you don't have time or can't be bothered: you probably don't have the time to review the PR properly.\n - We're a ... | true | ||
Homebrew/homebrew-cask | 269,625 | issue_to_patch | feedflow 1.14.0 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | ede4736ad4e7d249eafb1ea3288c6850baee0700 | ed6744ad5825a79e8a858b6637f089939e0e1281 | diff --git a/Casks/f/feedflow.rb b/Casks/f/feedflow.rb
index 258986c3d7784..7d988386b04ae 100644
--- a/Casks/f/feedflow.rb
+++ b/Casks/f/feedflow.rb
@@ -1,6 +1,6 @@
cask "feedflow" do
- version "1.13.1,all"
- sha256 "173f0dea2b37bff07ecf229fb6072b560e631864a4b624693504b00be2756638"
+ version "1.14.0,all"
+ sha256 ... | [
"Casks/f/feedflow.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,626 | issue_to_patch | firefox@nightly 153.0a1,2026-06-14-09-31-00 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | ede4736ad4e7d249eafb1ea3288c6850baee0700 | bf504f73983d89a5177718d13211e7368846e932 | diff --git a/Casks/f/firefox@nightly.rb b/Casks/f/firefox@nightly.rb
index c8043221eb562..69dc06014c630 100644
--- a/Casks/f/firefox@nightly.rb
+++ b/Casks/f/firefox@nightly.rb
@@ -1,72 +1,72 @@
cask "firefox@nightly" do
- version "153.0a1,2026-06-13-20-58-37"
+ version "153.0a1,2026-06-14-09-31-00"
language "c... | [
"Casks/f/firefox@nightly.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,613 | issue_to_patch | qlc+ 5.2.2 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | a732c42898695ce4677f4eb41ee4f5fb767468f0 | 6f69c279dfebf31597d6025a5e6f97d3a60cc137 | diff --git a/Casks/q/qlc+.rb b/Casks/q/qlc+.rb
index be80731e7af3a..6ccb4102c7883 100644
--- a/Casks/q/qlc+.rb
+++ b/Casks/q/qlc+.rb
@@ -1,9 +1,16 @@
cask "qlc+" do
arch arm: "arm64", intel: "x86_64"
- version "5.2.1"
- sha256 arm: "c29b60d5fb23607b9ee7f13fb681e66adb8b84138214567521c6f267db982cf4",
- ... | [
"Casks/q/qlc+.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,600 | issue_to_patch | basecamp 5.0.8 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | c4923a9f20c09764876d2eb355491c94225863cf | diff --git a/Casks/b/basecamp.rb b/Casks/b/basecamp.rb
index e74ad14e83aaa..f8ec553010149 100644
--- a/Casks/b/basecamp.rb
+++ b/Casks/b/basecamp.rb
@@ -1,29 +1,25 @@
cask "basecamp" do
- arch arm: "_arm64"
+ arch arm: "arm64", intel: "x64"
+ livecheck_arch = on_arch_conditional arm: "_arm64"
- version "3,2.5.2"... | [
"Casks/b/basecamp.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,622 | issue_to_patch | thunderbird@daily 153.0a1,2026-06-13-22-32-31 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 7393244a4e9f13675f8abd95f04468189afb6d5a | a86eebf1b72b591e416feff525100c46554b0b91 | diff --git a/Casks/t/thunderbird@daily.rb b/Casks/t/thunderbird@daily.rb
index fd5527175710e..34c707bad9735 100644
--- a/Casks/t/thunderbird@daily.rb
+++ b/Casks/t/thunderbird@daily.rb
@@ -1,68 +1,68 @@
cask "thunderbird@daily" do
- version "153.0a1,2026-06-13-06-50-21"
+ version "153.0a1,2026-06-13-22-32-31"
l... | [
"Casks/t/thunderbird@daily.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,624 | issue_to_patch | vibeproxy 1.8.193 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 7393244a4e9f13675f8abd95f04468189afb6d5a | fdd22fc47a94b8a8c8450f7631db5a8a06f66af8 | diff --git a/Casks/v/vibeproxy.rb b/Casks/v/vibeproxy.rb
index 6dcf69243a916..ff72dc33057ad 100644
--- a/Casks/v/vibeproxy.rb
+++ b/Casks/v/vibeproxy.rb
@@ -1,6 +1,6 @@
cask "vibeproxy" do
- version "1.8.192"
- sha256 "bde27cc990858917d37156cb495b4912abe96dc0a8292c6218ec7b3b6a6b2834"
+ version "1.8.193"
+ sha256 "... | [
"Casks/v/vibeproxy.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,621 | issue_to_patch | svp 4.7.321 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 7393244a4e9f13675f8abd95f04468189afb6d5a | cc47b34567a63ff82e342b0699ae1be4449659e1 | diff --git a/Casks/s/svp.rb b/Casks/s/svp.rb
index bfe3af237d6b6..d4f34b63a3421 100644
--- a/Casks/s/svp.rb
+++ b/Casks/s/svp.rb
@@ -1,6 +1,6 @@
cask "svp" do
- version "4.7.320"
- sha256 "0d1bdb84000ae03eb574c8be7f649c0082c0ff0d20147132daf192c745233873"
+ version "4.7.321"
+ sha256 "1925a6bc3f913957fab9a0acd9a333... | [
"Casks/s/svp.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,623 | issue_to_patch | typora 1.13.8 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 7393244a4e9f13675f8abd95f04468189afb6d5a | 2f74be283ed6983a2c0561fcaa367e70123773da | diff --git a/Casks/t/typora.rb b/Casks/t/typora.rb
index 866dca3a8f979..c098accb17184 100644
--- a/Casks/t/typora.rb
+++ b/Casks/t/typora.rb
@@ -1,6 +1,6 @@
cask "typora" do
- version "1.13.7"
- sha256 "756e4f64818958b5d9d291c467f7a9dddef90a7df9d0e9ead70ba3f746f4aa9b"
+ version "1.13.8"
+ sha256 "bea6c1d7c8ab13863... | [
"Casks/t/typora.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,617 | issue_to_patch | piclist 3.5.0 | -----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- In the following questions `<cask>` is the token of the cask you'... | c27151466fdddda2b98023b200c5e074ec1c63c8 | 3f1b878567a8c0169f4e7b82a4852a77dbbdeb8c | diff --git a/Casks/p/piclist.rb b/Casks/p/piclist.rb
index efe6cd8c37889..e4d7bc7cc597a 100644
--- a/Casks/p/piclist.rb
+++ b/Casks/p/piclist.rb
@@ -1,9 +1,9 @@
cask "piclist" do
arch arm: "arm64", intel: "x64"
- version "3.4.0"
- sha256 arm: "38b1864be67c80b88294dea3ce48d2f97682f1971f370e26487cf252963e5eab",... | [
"Casks/p/piclist.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,620 | issue_to_patch | nuclear 1.40.1 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 7393244a4e9f13675f8abd95f04468189afb6d5a | 146fbe7ebaa10aa036f1e9f96c634e4acce88591 | diff --git a/Casks/n/nuclear.rb b/Casks/n/nuclear.rb
index 677bdb8486539..07d7539bf2d14 100644
--- a/Casks/n/nuclear.rb
+++ b/Casks/n/nuclear.rb
@@ -1,9 +1,9 @@
cask "nuclear" do
arch arm: "aarch64", intel: "x64"
- version "1.40.0"
- sha256 arm: "adb4ac1d83139ab1f263f29e3176a9c50b08118cc4fecb243b7f22393f14056... | [
"Casks/n/nuclear.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,535 | issue_to_patch | ctivo 3.6.5 (new cask) | -----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- In the following questions `<cask>` is the token of the cask you'... | 5ca4016d824876d42101c1c9eee7dbb6766b343f | dc11efc105e77650e40f4f0965d2518c545bb33a | diff --git a/Casks/c/ctivo.rb b/Casks/c/ctivo.rb
new file mode 100644
index 0000000000000..7e37fdc76871a
--- /dev/null
+++ b/Casks/c/ctivo.rb
@@ -0,0 +1,29 @@
+cask "ctivo" do
+ version "3.6.5"
+ sha256 "4c9ff3ace390bd4afc4f988fd2830435d9afa0ae2a052a12771fe61789bd309f"
+
+ url "https://github.com/mackworth/cTiVo/rel... | [
"Casks/c/ctivo.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,618 | issue_to_patch | dolphin@dev 2603-415 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | c27151466fdddda2b98023b200c5e074ec1c63c8 | 1effd595d43f059801d77b0c67d2ee13eef2e6bc | diff --git a/Casks/d/dolphin@dev.rb b/Casks/d/dolphin@dev.rb
index 93bd918237975..eac281fa7dbea 100644
--- a/Casks/d/dolphin@dev.rb
+++ b/Casks/d/dolphin@dev.rb
@@ -1,6 +1,6 @@
cask "dolphin@dev" do
- version "2603-412,e0,72"
- sha256 "476d36d8b3740d082dc50f6b9434e67b9bdc2b9f431431528cfb223a2f620a73"
+ version "260... | [
"Casks/d/dolphin@dev.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,619 | issue_to_patch | dropshare 6.13 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | c27151466fdddda2b98023b200c5e074ec1c63c8 | 0ef0fda31709302bcee8ff6a255c7ee66751dd00 | diff --git a/Casks/d/dropshare.rb b/Casks/d/dropshare.rb
index 56a520a7f571f..4888a0b722ac1 100644
--- a/Casks/d/dropshare.rb
+++ b/Casks/d/dropshare.rb
@@ -1,6 +1,6 @@
cask "dropshare" do
- version "6.12,6227"
- sha256 "6f36425693093ad3fb1536051f761f152fca373198e0befaa5d8579ae7a73c7f"
+ version "6.13,6249"
+ sha2... | [
"Casks/d/dropshare.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,616 | issue_to_patch | zettlr 4.6.0 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | a732c42898695ce4677f4eb41ee4f5fb767468f0 | fc11eb2627d023baf6b800766285880fa3176ced | diff --git a/Casks/z/zettlr.rb b/Casks/z/zettlr.rb
index ad20795cd5b27..dfbe847a1a1b6 100644
--- a/Casks/z/zettlr.rb
+++ b/Casks/z/zettlr.rb
@@ -8,11 +8,11 @@
url_end = on_system_conditional linux: ".AppImage", macos: ".dmg"
- version "4.5.0"
- sha256 arm: "fd1e964378f4130703754ceee48ad99db57a5917e7d9... | [
"Casks/z/zettlr.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,614 | issue_to_patch | strawberry 0.1.9 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | c78fbb0743197cf89165f04ff158b29fcf2a7d12 | c6702bb5fcea47772f81e29a7d0733c38fe699f2 | diff --git a/Casks/s/strawberry.rb b/Casks/s/strawberry.rb
index 628bf1f4e1a61..3a335d9e0e068 100644
--- a/Casks/s/strawberry.rb
+++ b/Casks/s/strawberry.rb
@@ -1,6 +1,6 @@
cask "strawberry" do
- version "0.1.8"
- sha256 "0937f97cf7ea4ef72fcd34cdc6f8ef4d6ffc1636fcfc612b7efa1bd990a103c9"
+ version "0.1.9"
+ sha256 ... | [
"Casks/s/strawberry.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,615 | issue_to_patch | syncovery 11.15.15 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | c78fbb0743197cf89165f04ff158b29fcf2a7d12 | 125cec140f2c02afc1bbf6c75e0c81c950388144 | diff --git a/Casks/s/syncovery.rb b/Casks/s/syncovery.rb
index aae7cae97a023..f7e8e046990b2 100644
--- a/Casks/s/syncovery.rb
+++ b/Casks/s/syncovery.rb
@@ -1,9 +1,9 @@
cask "syncovery" do
arch arm: "-Apple"
- version "11.15.14"
- sha256 arm: "45ffff57cc7e5619ebd8cd67dd6ad3e492bc81a6fa0060c7bf4e4cac8c7638ad",... | [
"Casks/s/syncovery.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,601 | issue_to_patch | gitx 1.5 | Bump gitx to 1.5 | 8099b34575bf6571936905dca6e8273e04b70d6d | a30b47aff07817a3b710acdbf8dd614eb857065a | diff --git a/Casks/g/gitx.rb b/Casks/g/gitx.rb
index 414eb204b75c1..93b2544bbfe29 100644
--- a/Casks/g/gitx.rb
+++ b/Casks/g/gitx.rb
@@ -1,9 +1,9 @@
cask "gitx" do
arch arm: "arm64", intel: "x86_64"
- version "1.4"
- sha256 arm: "f9f06f4f8cea7f548dfec863cd08c12ba9856ff48ecb579f18b3ee6c843aafcf",
- int... | [
"Casks/g/gitx.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,612 | issue_to_patch | notchi 1.1.4 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | 2c6a40f7fc66be953a9c94c3ad060223e8587746 | diff --git a/Casks/n/notchi.rb b/Casks/n/notchi.rb
index ff258699e7bd3..931271d48cef2 100644
--- a/Casks/n/notchi.rb
+++ b/Casks/n/notchi.rb
@@ -1,6 +1,6 @@
cask "notchi" do
- version "1.1.3"
- sha256 "c760089dd31ae8dc5bf13a1ac73693ad160ef7b456dceda12b27c93dee19fa36"
+ version "1.1.4"
+ sha256 "5a257baf184a5f1d634... | [
"Casks/n/notchi.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,610 | issue_to_patch | hive-app 1.1.28 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | 7f53ad64fe1cc4ce6ff566bd0de0e4d0d5a6deb6 | diff --git a/Casks/h/hive-app.rb b/Casks/h/hive-app.rb
index 83cef8082df52..eba806b27d02c 100644
--- a/Casks/h/hive-app.rb
+++ b/Casks/h/hive-app.rb
@@ -1,9 +1,9 @@
cask "hive-app" do
arch arm: "-arm64"
- version "1.1.27"
- sha256 arm: "5749bfac1735b3c6167e2318bca2181503ff32521327e1f6b90a13f8a0fe9c08",
- ... | [
"Casks/h/hive-app.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,611 | issue_to_patch | maa 6.12.2 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | 002cc36596699fc7b01494af8417780ac8f5e462 | diff --git a/Casks/m/maa.rb b/Casks/m/maa.rb
index a3ebb77b5c2e1..82afd25d77b9f 100644
--- a/Casks/m/maa.rb
+++ b/Casks/m/maa.rb
@@ -1,6 +1,6 @@
cask "maa" do
- version "6.12.1"
- sha256 "c7b2372b1e9f015a3ce21ce1a12570426ff4114dd344778c6fb57695acd7dbe7"
+ version "6.12.2"
+ sha256 "0d6366942c90d49d80f31ac39eed9c75... | [
"Casks/m/maa.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,609 | issue_to_patch | gopher64 1.1.26 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | 2470a6e5463cb8209b5471f8db52b1cd14f4a0e7 | diff --git a/Casks/g/gopher64.rb b/Casks/g/gopher64.rb
index cf37179e3bba6..0485bd609bca2 100644
--- a/Casks/g/gopher64.rb
+++ b/Casks/g/gopher64.rb
@@ -1,6 +1,6 @@
cask "gopher64" do
- version "1.1.24"
- sha256 "d2b60fc29f37fc250be7a9b07dfec69da4e655dc441453a88e2dcb34684f9a6b"
+ version "1.1.26"
+ sha256 "0073157... | [
"Casks/g/gopher64.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,607 | issue_to_patch | element@nightly 2026061401 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | 2a94a0676aa4bf1f8e33f7adb125254a9ba94d00 | diff --git a/Casks/e/element@nightly.rb b/Casks/e/element@nightly.rb
index e2a97c1327a51..8315732d26f50 100644
--- a/Casks/e/element@nightly.rb
+++ b/Casks/e/element@nightly.rb
@@ -1,6 +1,6 @@
cask "element@nightly" do
- version "2026061301"
- sha256 "61d40830f9ac386b799e8e7724a7a2e914c87676b07312379943b617f376907b"... | [
"Casks/e/element@nightly.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,608 | issue_to_patch | free-ruler 2.0.18 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | 1d6ec1af0d392306f09179a748b7ea64d58f4b3e | diff --git a/Casks/f/free-ruler.rb b/Casks/f/free-ruler.rb
index 24c142b4851e1..a1ed5b22317f7 100644
--- a/Casks/f/free-ruler.rb
+++ b/Casks/f/free-ruler.rb
@@ -1,6 +1,6 @@
cask "free-ruler" do
- version "2.0.17"
- sha256 "58f6750e5057e3b1a9ce9da11a8a67a59750966aedc7a38bc9de8432d26bd600"
+ version "2.0.18"
+ sha25... | [
"Casks/f/free-ruler.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,606 | issue_to_patch | boltai 2.13.4 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 8099b34575bf6571936905dca6e8273e04b70d6d | 997e3666fec6b9d1ef8d28b26059cfd6245f29b1 | diff --git a/Casks/b/boltai.rb b/Casks/b/boltai.rb
index 7a0e9ff93912b..eda7f7392404d 100644
--- a/Casks/b/boltai.rb
+++ b/Casks/b/boltai.rb
@@ -1,6 +1,6 @@
cask "boltai" do
- version "2.13.3"
- sha256 "70d0256157ab1568c7bd85ac9227acc33bfb07abdbcb80ffe3f62112ebaa66c4"
+ version "2.13.4"
+ sha256 "5465bead0350daee7... | [
"Casks/b/boltai.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,599 | issue_to_patch | opencat Update `zap` stanza | -----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- In the following questions `<cask>` is the token of the cask you'... | 0367eb0126f79ce768eca967cf5ea5ddf3e0df08 | 892f5f42567650400dc5e2bf6310d43ec457e55c | diff --git a/Casks/o/opencat.rb b/Casks/o/opencat.rb
index e831608c5fcbf..688f0f9548bad 100644
--- a/Casks/o/opencat.rb
+++ b/Casks/o/opencat.rb
@@ -21,9 +21,19 @@
app "OpenCat.app"
zap trash: [
- "~/Library/Application Scripts/tech.baye.OpenCat",
+ "~/Library/Application Scripts/group.tech.baye.openai",
... | [
"Casks/o/opencat.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,604 | issue_to_patch | lobehub 2.2.4 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 2fd82a7f04972ca91e1d69e06ddde48e6acf63f1 | 41a0dfa823b6998def9fa380bd9b6eb6c2407bdb | diff --git a/Casks/l/lobehub.rb b/Casks/l/lobehub.rb
index 7c84bd831d9fa..2f7ad2dceae79 100644
--- a/Casks/l/lobehub.rb
+++ b/Casks/l/lobehub.rb
@@ -1,9 +1,9 @@
cask "lobehub" do
arch arm: "-arm64"
- version "2.2.3"
- sha256 arm: "f87c6e7b5d396cacaeab8167de47d2a39a64748a8bc312f8297d248ec2e5dc88",
- in... | [
"Casks/l/lobehub.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,602 | issue_to_patch | freelens@nightly 1.10.0-0-nightly-2026-06-14 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 2fd82a7f04972ca91e1d69e06ddde48e6acf63f1 | 434c177fb05ead321a7712a47c0facfea2b0abfc | diff --git a/Casks/f/freelens@nightly.rb b/Casks/f/freelens@nightly.rb
index 4b27132065fae..6a1214b4416e4 100644
--- a/Casks/f/freelens@nightly.rb
+++ b/Casks/f/freelens@nightly.rb
@@ -1,9 +1,9 @@
cask "freelens@nightly" do
arch arm: "arm64", intel: "amd64"
- version "1.10.0-0-nightly-2026-06-13"
- sha256 arm: ... | [
"Casks/f/freelens@nightly.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,603 | issue_to_patch | keyguard 2.14.1 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 2fd82a7f04972ca91e1d69e06ddde48e6acf63f1 | 52bb0445ac8098391ead4783556625a35d4932b4 | diff --git a/Casks/k/keyguard.rb b/Casks/k/keyguard.rb
index f1386948eb1b2..8dff5d0dad077 100644
--- a/Casks/k/keyguard.rb
+++ b/Casks/k/keyguard.rb
@@ -1,9 +1,9 @@
cask "keyguard" do
arch arm: "apple", intel: "intel"
- version "2.14.0,20260606.1"
- sha256 arm: "8b6bd8da3299756d28b3a3c9332f25e97efed06ef5e0475... | [
"Casks/k/keyguard.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,605 | issue_to_patch | mediahuman-youtube-downloader 3.9.21 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 2fd82a7f04972ca91e1d69e06ddde48e6acf63f1 | 4ce54eb9d12f65e7d66c5948b1f307b055a3746b | diff --git a/Casks/m/mediahuman-youtube-downloader.rb b/Casks/m/mediahuman-youtube-downloader.rb
index 620c79d249af8..6efa454c49446 100644
--- a/Casks/m/mediahuman-youtube-downloader.rb
+++ b/Casks/m/mediahuman-youtube-downloader.rb
@@ -1,7 +1,7 @@
cask "mediahuman-youtube-downloader" do
arch arm: "-arm"
- versi... | [
"Casks/m/mediahuman-youtube-downloader.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 268,453 | issue_to_patch | codex: use package release asset | Switch the Codex cask from the bare `codex-#{arch}-#{os}.tar.gz`
release asset to `codex-package-#{arch}-#{os}.tar.gz`.
The bare asset only contains the Codex binary. Codex also publishes a
package asset containing the package layout used by the CLI to discover
bundled resources:
- `bin/codex`
- `codex-package.json`
... | 5c0e5bee11729f4fe53a8afebcae4a2de472ec08 | 438ccb78e8010c70df51a879914a082d73146210 | diff --git a/Casks/c/codex.rb b/Casks/c/codex.rb
index b6a92c94ac07f..4127e0c376a79 100644
--- a/Casks/c/codex.rb
+++ b/Casks/c/codex.rb
@@ -3,12 +3,12 @@
os macos: "apple-darwin", linux: "unknown-linux-musl"
version "0.139.0"
- sha256 arm: "c28344255844d83a728c084c2d9e21e168b5d217f6049d3a9a36827903f1... | [
"Casks/c/codex.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 268,446 | issue_to_patch | ubports-installer: fix macOS download | -----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- In the following questions `<cask>` is the token of the cask you'... | ee6b15b2bb066311f7efcde71645ff9bb65ac1e5 | 3a5a53089070b9654b2cbd215f82099379cd617e | diff --git a/Casks/u/ubports-installer.rb b/Casks/u/ubports-installer.rb
index 3182450c4bd6f..b03dbe8c933a9 100644
--- a/Casks/u/ubports-installer.rb
+++ b/Casks/u/ubports-installer.rb
@@ -1,9 +1,14 @@
cask "ubports-installer" do
arch arm: "arm64", intel: "x64"
- version "0.11.2"
- sha256 arm: "21f40396f8f8d1... | [
"Casks/u/ubports-installer.rb"
] | [
{
"comment": "The `livecheck` shouldn't be skipped here, it should interpolate over release assets to find a match. You can search `github_releases` in the repo to find some similar examples.",
"path": "Casks/u/ubports-installer.rb",
"hunk": "@@ -1,22 +1,31 @@\n cask \"ubports-installer\" do\n arch ar... | true | ||
Homebrew/homebrew-cask | 268,446 | comment_to_fix | ubports-installer: fix macOS download | The `livecheck` shouldn't be skipped here, it should interpolate over release assets to find a match. You can search `github_releases` in the repo to find some similar examples. | ee6b15b2bb066311f7efcde71645ff9bb65ac1e5 | 3a5a53089070b9654b2cbd215f82099379cd617e | diff --git a/Casks/u/ubports-installer.rb b/Casks/u/ubports-installer.rb
index 3182450c4bd6f..b03dbe8c933a9 100644
--- a/Casks/u/ubports-installer.rb
+++ b/Casks/u/ubports-installer.rb
@@ -1,9 +1,14 @@
cask "ubports-installer" do
arch arm: "arm64", intel: "x64"
- version "0.11.2"
- sha256 arm: "21f40396f8f8d1... | [
"Casks/u/ubports-installer.rb"
] | [
{
"comment": "The `livecheck` shouldn't be skipped here, it should interpolate over release assets to find a match. You can search `github_releases` in the repo to find some similar examples.",
"path": "Casks/u/ubports-installer.rb",
"hunk": "@@ -1,22 +1,31 @@\n cask \"ubports-installer\" do\n arch ar... | true | ||
Homebrew/homebrew-cask | 268,446 | comment_to_fix | ubports-installer: fix macOS download | ```suggestion
regex(/^ubports-installer[._-]v?(\d+(?:\.\d+)+)[._-]mac[._-]#{arch}\.dmg$/i)
```
This change replaces the separators with `[._-]` and prepends the version with the optional `v?` per our usual pattern.
We keep the `regex` less strict so it continues to match new versions if upstream makes slight chan... | ee6b15b2bb066311f7efcde71645ff9bb65ac1e5 | 3a5a53089070b9654b2cbd215f82099379cd617e | diff --git a/Casks/u/ubports-installer.rb b/Casks/u/ubports-installer.rb
index 3182450c4bd6f..b03dbe8c933a9 100644
--- a/Casks/u/ubports-installer.rb
+++ b/Casks/u/ubports-installer.rb
@@ -1,9 +1,14 @@
cask "ubports-installer" do
arch arm: "arm64", intel: "x64"
- version "0.11.2"
- sha256 arm: "21f40396f8f8d1... | [
"Casks/u/ubports-installer.rb"
] | [
{
"comment": "```suggestion\n regex(/^ubports-installer[._-]v?(\\d+(?:\\.\\d+)+)[._-]mac[._-]#{arch}\\.dmg$/i)\n```\n\nThis change replaces the separators with `[._-]` and prepends the version with the optional `v?` per our usual pattern.\n\nWe keep the `regex` less strict so it continues to match new versio... | true | ||
Homebrew/homebrew-cask | 269,598 | issue_to_patch | zen@twilight 1.22t,20260613112411 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 47e1a65feac9db531b289238b3acd7622c464066 | 7f6b5635e260853711c76b173ccab0796b2325dd | diff --git a/Casks/z/zen@twilight.rb b/Casks/z/zen@twilight.rb
index 5a23c3191e586..a602513129505 100644
--- a/Casks/z/zen@twilight.rb
+++ b/Casks/z/zen@twilight.rb
@@ -1,5 +1,5 @@
cask "zen@twilight" do
- version "1.22t,20260609112811"
+ version "1.22t,20260613112411"
sha256 :no_check
url "https://github.co... | [
"Casks/z/zen@twilight.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,597 | issue_to_patch | youtube-to-mp3 3.9.21 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 47e1a65feac9db531b289238b3acd7622c464066 | 6a47556bb574edc51647e7050d44de65f6de013f | diff --git a/Casks/y/youtube-to-mp3.rb b/Casks/y/youtube-to-mp3.rb
index b98c05ef8d755..76ce455c6eee4 100644
--- a/Casks/y/youtube-to-mp3.rb
+++ b/Casks/y/youtube-to-mp3.rb
@@ -2,7 +2,7 @@
# NOTE: "3" is not a version number, but an intrinsic part of the product name
arch arm: "-arm"
- version "3.9.20"
+ vers... | [
"Casks/y/youtube-to-mp3.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,596 | issue_to_patch | vlc@nightly 4.0.0,20260614-0416,c84ef1ed | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 4d7295ba2822e479ce2b97cc1e00d0e1da58a499 | fd93fb413873d6c1edfcde2b39b345d4a6bf8976 | diff --git a/Casks/v/vlc@nightly.rb b/Casks/v/vlc@nightly.rb
index d0c5ffcf55885..f4cdc9a3ffe51 100644
--- a/Casks/v/vlc@nightly.rb
+++ b/Casks/v/vlc@nightly.rb
@@ -3,12 +3,12 @@
livecheck_arch = on_arch_conditional arm: "arm64", intel: "intel64"
on_arm do
- version "4.0.0,20260613-0416,546e18e5"
- sha256... | [
"Casks/v/vlc@nightly.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,594 | issue_to_patch | baidunetdisk 8.5.2 | -----
<!-- Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process. -->
<!-- Use [x] to mark item done before creation, or just click the checkboxes with device pointer after creation -->
<!-- In the following questions `<cask>` is the token of the cask you'... | 3b80c807070b45d4daf70dafe6dfb25c0399692b | 6b44a654a9a231deca35674874a1d0fff22f7546 | diff --git a/Casks/b/baidunetdisk.rb b/Casks/b/baidunetdisk.rb
index 0ef14fc423258..5cd4472e68a84 100644
--- a/Casks/b/baidunetdisk.rb
+++ b/Casks/b/baidunetdisk.rb
@@ -1,9 +1,9 @@
cask "baidunetdisk" do
- arch arm: "_arm64"
+ arch arm: "_arm64", intel: "_x64"
- version "8.3.9"
- sha256 arm: "362987e7171046615... | [
"Casks/b/baidunetdisk.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,595 | issue_to_patch | outline 6.2606.2 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | 382715358c74e2235e86aa58bb7dd72d48a47511 | 84266c6325b965fa43db3de025e9b3168d20f41c | diff --git a/Casks/o/outline.rb b/Casks/o/outline.rb
index 64d72c723a4ac..afcbbff5835d8 100644
--- a/Casks/o/outline.rb
+++ b/Casks/o/outline.rb
@@ -1,6 +1,6 @@
cask "outline" do
- version "6.2606.0"
- sha256 "4ba2e46851a84a2ef13de84a873423a084e92941f130c11fdf0c900d5eaeb192"
+ version "6.2606.2"
+ sha256 "3fd22420... | [
"Casks/o/outline.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,588 | issue_to_patch | font-iosevka-ss13 34.6.3 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | bf8a69a2afae1167d00afe25ff8111966dc3c88d | d628332b157225ae61cccac92f2a179a09e30184 | diff --git a/Casks/font/font-i/font-iosevka-ss13.rb b/Casks/font/font-i/font-iosevka-ss13.rb
index 9e0ead6cfdd5a..3688ee357757b 100644
--- a/Casks/font/font-i/font-iosevka-ss13.rb
+++ b/Casks/font/font-i/font-iosevka-ss13.rb
@@ -1,6 +1,6 @@
cask "font-iosevka-ss13" do
- version "34.6.2"
- sha256 "bc10c7320df6c360a03... | [
"Casks/font/font-i/font-iosevka-ss13.rb"
] | [] | true | ||
Homebrew/homebrew-cask | 269,577 | issue_to_patch | font-iosevka-ss02 34.6.3 | Created by `brew bump`
---
Created with `brew bump-cask-pr`. | bf8a69a2afae1167d00afe25ff8111966dc3c88d | 80ca32e0b98a9b62d83d4000b4549d92bc24aa63 | diff --git a/Casks/font/font-i/font-iosevka-ss02.rb b/Casks/font/font-i/font-iosevka-ss02.rb
index 49e05e90203f3..652997735f9d8 100644
--- a/Casks/font/font-i/font-iosevka-ss02.rb
+++ b/Casks/font/font-i/font-iosevka-ss02.rb
@@ -1,6 +1,6 @@
cask "font-iosevka-ss02" do
- version "34.6.2"
- sha256 "6e26dcdfb19e06d224e... | [
"Casks/font/font-i/font-iosevka-ss02.rb"
] | [] | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.