Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

please reconsider re-publishing 0.1.13 as 0.2.0 #66

Closed
decathorpe opened this issue Sep 4, 2024 · 13 comments · Fixed by #67
Closed

please reconsider re-publishing 0.1.13 as 0.2.0 #66

decathorpe opened this issue Sep 4, 2024 · 13 comments · Fixed by #67

Comments

@decathorpe
Copy link

Issue #55 is striking again. It's now starting to cause real issues for us in Fedora Linux. Projects that depend on unicode-width can now be split into two categories:

  • have not adapted to behaviour changes in 0.1.13 and only work correctly with <0.1.13 (usually depend on unicode-width ^0.1.x where x < 13)
  • have adapted to behaviour changes in 0.1.13 and only work correctly with ^0.1.13 (and depend on unicode-width ^0.1.13)

Even if we did provide packages for both unicode-width <0.1.13 and >=0.1.13 (which would be unprecedented for two versions that are supposedly semver-compatible), we would need to patch all crates that currently pull in 0.1.* to have a dependency like >=0.1.0,<0.1.13 instead.

This would create situations where multiple crates in the same dependency tree pull in unicode-width at conflicting versions (either >=0.1.13 or <0.1.13), and cargo dependency resolution can't find a solution that satisfies both of these requirements. This is exactly the reason why behaviour changes are important when considering SemVer, not only API changes. So, please reconsider publishing 0.1.13+ as 0.2.x 😢

@Manishearth
Copy link
Member

Manishearth commented Sep 4, 2024

At the very least I need to understand the nature of how these crates "only work correctly with the a particular version of the crate". Prior reports have focused on broken tests and those tests were making incorrect assumptions.

The reason I've been holding such a hard line here is twofold:

  • I think this crate should retain the right to make such changes in the future. The underlying Unicode concept is not really pinned down to the level that people keep assuming it to be. I don't want to set precedent for every such change requiring a major release.
  • The breakages I have seen so far are due to incorrect assumptions in the crates using this. I really don't want to set precedence of that being a factor for what constitutes a major release. The crates should be fixed.

This is exactly the reason why behaviour changes are important when considering SemVer, not only API changes.

Yes, however I think that works for behavior changes where the behavior is a core part of the crate contract. This isn't, relying on this kind of behavior not changing is a mistake. I don't wish to encourage that.

This is a common problem for Unicode stuff: people assume more about what a Unicode algorithm means than they should. People have incorrect ideas about how a concept they are used to from their daily interactions with text -- whether it be "character", "letter", "terminal width", "sorting", "equality", etc -- generalizes across all writing systems. In most cases, it doesn't cleanly generalize and you end up with a best-effort approximation that mostly gets things right but will not match a Latin-script user's intuition 100% of the time.

A pervasive assumption about unicode-width is that it provides a 100% accurate answer for terminal width: such an algorithm cannot and does not exist. For ages people kept complaining that the crate would give "incorrect" answers for emoji and we'd have to patiently explain that there is no One True Answer for terminal width obtainable from algorithms like this. We've repeatedly told users of this crate to not assume too much in the past when they've filed bugs about differences between the crate and observed terminal behavior.

We've finally improved the answers here to be a better estimation and now we have people complaining things are broken: but they should not have been relying on this being anything other than an estimation, which has been this crate's stance for ages. Crates that break typically relied upon this in a stronger way and that usually means they were broken already just not in ways they tested.

I'm quite happy to fix actual cases where the estimation provided by this crate is not ideal. It's possible that the 0.1.13 release changed things for the worse. I'm not really in favor of changing the stance that crates should expected to treat the results here as an approximation.

@kwantam
Copy link
Member

kwantam commented Sep 4, 2024

@Manishearth I agree with your thinking here and completely appreciate that you've been holding the fort on this crate for many years.

In this case, however, it might worth making an exception to the policy you've articulated, just as a way of saving a huge amount of downstream work and avoiding the complexity and risk of version checks / etc. in downstream distributions.

I completely understand the issue of death-by-a-thousand-cuts and don't think this should be a regular occurrence, but on balance the amount of work to ship 0.2.0 in this instance appears to be trivial compared to what it saves.

(It goes without saying that I stand by whichever decision you make. You've been the captain of this ship for a long time ❤️)

@Manishearth
Copy link
Member

Thanks!

Still, at the very least I need to understand the nature of these breakages. I don't think it makes sense to just say "0.1.13 is now 0.2.0" without understanding which changes are the actually problematic ones, and how. My concern is not the work involved in shipping 0.2, it's that we'll be in this same situation a year from now after some other similar changes.

Given that my current belief is that the ecosystem has broken assumptions here, I would rather have this opportunity be one for the ecosystem to fix its issues.

A version 0.2 could also be a way for the ecosystem to fix these assumptions, but it's not guaranteed.


Specific questions for @decathorpe:

  • Can you provide as many links as possible to these breakages?
  • Are these test breakages, or something else?
    • If they're test breakages, and if we're convinced the tests are incorrect, can Fedora disable the relevant tests? In general I do think "our tests are broken because we made incorrect assumptions" is not strong enough to affect the release planning of this repo.
  • (I know this may be hard to answer, fine to skip if you have links, but something I need to understand eventually): What are the underlying changes causing the breakages?

For further context: The 0.1.13 update was not a single change: it was many small changes, and we plan to continue making such small changes. If a specific change is causing a lot of disruption, a 0.2.0 might be warranted (or maybe a backout). If it's just the volume of changes, it's hard for me to see this not happening again eventually.

@decathorpe
Copy link
Author

Can you provide as many links as possible to these breakages?

This one fails with unicode-width 0.1.13 and succeeds with 0.1.12. I tried investigating the failures, and from what I can tell, it's not that the hard-coded expected results are based on wrong assumptions, but that the actual line-wrapping logic is broken by the unicode-width update.

Tests fail with unicode-width 0.1.13 and pass with 0.1.12. Failures are not caused by test code, but by non-test-code (for example, the git_delta::ansi::measure_text_width function). I can't decide whether what the function's logic does is wrong or not, but the assumptions it makes affect actual rendering of the TUI, not only comparison with expected output in tests.

Here, changes in unicode-width 0.1.13 broke rendering of the helix TUI, so not wrong assumptions in tests. helix is still pinning to unicode-width 0.1.12 to avoid breaking their UI rendering.

Here, test code needed to be adapted to work with unicode-width 0.1.13, but it is now incompatible with 0.1.12. I can't (quickly) tell if this actually broke the correct alignment of the rendering or not.

To make table rendering work correctly on the console correct with unicode-width 0.1.13, actual code changes needed to be made, and now the application is incompatible with unicode-width 0.1.12 and requires >= 0.1.13. Initial issue report about broken rendering with 0.1.13: lsd-rs/lsd#1063

Tests fail with 0.1.13 due to completely borked table rendering. Looks like logic changes are needed here, not just updating the expected output.

---- tests::test_panic stdout ----
thread 'tests::test_panic' panicked at src/lib.rs:1322:9:
assertion `left == right` failed
  left: "+------+\n| \u{1b}[\u{1b}\0\0 |\n+------+\n"
 right: "+--+\n| \u{1b}[\u{1b}\0\0 |\n+--+\n"

These are all breakages I could find on short notice.

If they're test breakages, and if we're convinced the tests are incorrect, can Fedora disable the relevant tests?

We can skip individual tests during Fedora builds, but all issues I included above point (as far as I can tell) to logic bugs that are caused by unicode-width 0.1.13 behaviour changes. I can't in good conscience update unicode-width to v0.1.13 in Fedora Linux knowing that it will break popular applications like helix or lsd, but other libraries are now starting to adapt to changes in 0.1.13 and require 0.1.13.

In general I do think "our tests are broken because we made incorrect assumptions" is not strong enough to affect the release planning of this repo.

I agree. However, as pointed out above, his is not "just" affecting tests. There's actual bug reports from people that show that what the application is writing to the terminal during use is broken / misaligned / etc.

What are the underlying changes causing the breakages?

As far as I can tell, the change that caused most (if not all) of the problems seen here is that control characters (notably the \n character) are now considered to have width 1 instead of width 0.

th1000s added a commit to th1000s/delta that referenced this issue Sep 10, 2024
v0.1.13 calculates the width of some characters differently, which
causes delta to panic

See unicode-rs/unicode-width#55 and unicode-rs/unicode-width#66
dandavison pushed a commit to dandavison/delta that referenced this issue Sep 11, 2024
v0.1.13 calculates the width of some characters differently, which
causes delta to panic

See unicode-rs/unicode-width#55 and unicode-rs/unicode-width#66
netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this issue Sep 12, 2024
This patch release fixes various panics reported by users that were due to v0.1.13 of the unicode-width crate.
See #1858 and unicode-rs/unicode-width#66.

What's Changed
 - Move AmbiguousDiffMinusCounter to hunk_header by @dandavison in #1825
 - Fix Catppuccin Latte name in LIGHT_SYNTAX_THEMES list by @injust in #1823
 - Handle quoted file paths in hunk headers by @th1000s in #1840
 - Fix clippy warnings by @bash in #1851
 - Allow --dark to override dark/light detected from syntax theme by @bash in #1843
 - Upgrade and pin unicode-width to v0.1.12 by @th1000s in #1858
tmeijn pushed a commit to tmeijn/dotfiles that referenced this issue Sep 13, 2024
This MR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [dandavison/delta](https://github.com/dandavison/delta) | patch | `0.18.1` -> `0.18.2` |

MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot).

**Proposed changes to behavior should be submitted there as MRs.**

---

### Release Notes

<details>
<summary>dandavison/delta (dandavison/delta)</summary>

### [`v0.18.2`](https://github.com/dandavison/delta/releases/tag/0.18.2)

[Compare Source](dandavison/delta@0.18.1...0.18.2)

This patch release fixes various panics reported by users that were due to v0.1.13 of the `unicode-width` crate. See dandavison/delta#1858 and unicode-rs/unicode-width#66.

#### What's Changed

-   Move AmbiguousDiffMinusCounter to hunk_header by [@&#8203;dandavison](https://github.com/dandavison) in dandavison/delta#1825
-   Fix `Catppuccin Latte` name in `LIGHT_SYNTAX_THEMES` list by [@&#8203;injust](https://github.com/injust) in dandavison/delta#1823
-   Handle quoted file paths in hunk headers by [@&#8203;th1000s](https://github.com/th1000s) in dandavison/delta#1840
-   Fix clippy warnings by [@&#8203;bash](https://github.com/bash) in dandavison/delta#1851
-   Allow `--dark` to override dark/light detected from syntax theme by [@&#8203;bash](https://github.com/bash) in dandavison/delta#1843
-   Upgrade and pin unicode-width to v0.1.12 by [@&#8203;th1000s](https://github.com/th1000s) in dandavison/delta#1858

**Full Changelog**: dandavison/delta@0.18.1...0.18.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this MR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiXX0=-->
izumin5210 referenced this issue in izumin5210/dotfiles Sep 15, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [dandavison/delta](https://github.com/dandavison/delta) |
patch | `0.18.1` -> `0.18.2` |

---

### Release Notes

<details>
<summary>dandavison/delta (dandavison/delta)</summary>

###
[`v0.18.2`](https://github.com/dandavison/delta/releases/tag/0.18.2)

[Compare
Source](https://github.com/dandavison/delta/compare/0.18.1...0.18.2)

This patch release fixes various panics reported by users that were due
to v0.1.13 of the `unicode-width` crate. See
[https://github.com/dandavison/delta/pull/1858](https://github.com/dandavison/delta/pull/1858)
and
[https://github.com/unicode-rs/unicode-width/issues/66](https://github.com/unicode-rs/unicode-width/issues/66).

#### What's Changed

- Move AmbiguousDiffMinusCounter to hunk_header by
[@&#8203;dandavison](https://github.com/dandavison) in
[https://github.com/dandavison/delta/pull/1825](https://github.com/dandavison/delta/pull/1825)
- Fix `Catppuccin Latte` name in `LIGHT_SYNTAX_THEMES` list by
[@&#8203;injust](https://github.com/injust) in
[https://github.com/dandavison/delta/pull/1823](https://github.com/dandavison/delta/pull/1823)
- Handle quoted file paths in hunk headers by
[@&#8203;th1000s](https://github.com/th1000s) in
[https://github.com/dandavison/delta/pull/1840](https://github.com/dandavison/delta/pull/1840)
- Fix clippy warnings by
[@&#8203;bash](https://github.com/bash) in
[https://github.com/dandavison/delta/pull/1851](https://github.com/dandavison/delta/pull/1851)
- Allow `--dark` to override dark/light detected from syntax theme by
[@&#8203;bash](https://github.com/bash) in
[https://github.com/dandavison/delta/pull/1843](https://github.com/dandavison/delta/pull/1843)
- Upgrade and pin unicode-width to v0.1.12 by
[@&#8203;th1000s](https://github.com/th1000s) in
[https://github.com/dandavison/delta/pull/1858](https://github.com/dandavison/delta/pull/1858)

**Full Changelog**:
dandavison/delta@0.18.1...0.18.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/izumin5210/dotfiles).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC43NC4xIiwidXBkYXRlZEluVmVyIjoiMzguNzQuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: izumin5210-update-aqua-checksum[bot] <169593670+izumin5210-update-aqua-checksum[bot]@users.noreply.github.com>
renovate bot referenced this issue in d-issy/dotfiles Sep 15, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [dandavison/delta](https://github.com/dandavison/delta) |
patch | `0.18.1` -> `0.18.2` |

---

### Release Notes

<details>
<summary>dandavison/delta (dandavison/delta)</summary>

###
[`v0.18.2`](https://github.com/dandavison/delta/releases/tag/0.18.2)

[Compare
Source](https://github.com/dandavison/delta/compare/0.18.1...0.18.2)

This patch release fixes various panics reported by users that were due
to v0.1.13 of the `unicode-width` crate. See
[https://github.com/dandavison/delta/pull/1858](https://github.com/dandavison/delta/pull/1858)
and
[https://github.com/unicode-rs/unicode-width/issues/66](https://github.com/unicode-rs/unicode-width/issues/66).

#### What's Changed

- Move AmbiguousDiffMinusCounter to hunk_header by
[@&#8203;dandavison](https://github.com/dandavison) in
[https://github.com/dandavison/delta/pull/1825](https://github.com/dandavison/delta/pull/1825)
- Fix `Catppuccin Latte` name in `LIGHT_SYNTAX_THEMES` list by
[@&#8203;injust](https://github.com/injust) in
[https://github.com/dandavison/delta/pull/1823](https://github.com/dandavison/delta/pull/1823)
- Handle quoted file paths in hunk headers by
[@&#8203;th1000s](https://github.com/th1000s) in
[https://github.com/dandavison/delta/pull/1840](https://github.com/dandavison/delta/pull/1840)
- Fix clippy warnings by
[@&#8203;bash](https://github.com/bash) in
[https://github.com/dandavison/delta/pull/1851](https://github.com/dandavison/delta/pull/1851)
- Allow `--dark` to override dark/light detected from syntax theme by
[@&#8203;bash](https://github.com/bash) in
[https://github.com/dandavison/delta/pull/1843](https://github.com/dandavison/delta/pull/1843)
- Upgrade and pin unicode-width to v0.1.12 by
[@&#8203;th1000s](https://github.com/th1000s) in
[https://github.com/dandavison/delta/pull/1858](https://github.com/dandavison/delta/pull/1858)

**Full Changelog**:
dandavison/delta@0.18.1...0.18.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/d-issy/dotfiles).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC43NC4xIiwidXBkYXRlZEluVmVyIjoiMzguNzQuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@Manishearth
Copy link
Member

Apologies for the delay. I've been kind of burnt out on this topic after the way it was brought up the last time on this repo, so it takes me some time to get the energy to properly think about this. I really appreciate your work going through a bunch of the failures!

I think there are a couple routes forward. It does appear to be the case that the primary issue is the newline thing. That's good; it's not a bunch of different things, but one very concrete change that we can talk about.

@Jules-Bertholet how do you feel about special casing newlines, and newlines only, to continue to return zero, given the number of breakages? We discussed this previously in #60, but I'm curious if the number of breakages change your opinion here.

Looking at the crates that are affected by this it does seem that they are probably also suffering from other linewrapping bugs due to this assumption, as sketched out in Jules' comment in #60 (comment) . To some extent this makes me want to stick to the current design as a forcing function for folks to break incorrect Unicode assumptions

The routes I see are:

  1. Do nothing. This is still a valid option in my book: linewrapping code written using this crate really should be applying higher level breaks like \n first.
  2. Just publish a 0.2, making no other changes. This still retains the forcing function, but it makes life easier for distros since they can pin unicode-width 0.1 to 0.1.12. I am rather sympathetic to the cause of having to deal with this problem in bulk, even though at the individual level I would prefer if crates noticed this change and improved their code around this.
  3. Undo the change for \n for 0.1, publish 0.1.14, and then publish 0.2 with the \n = 1 change. Commit to not changing \n behavior in non-major versions.
  4. Undo the change for \n in 0.1, and commit to keeping \n = 0 in the 0.1 stream. Do not publish 0.2,

It is not my preference to publish a new major version of this crate, but we can do it if it would really help distros.

I'd like to have @Jules-Bertholet on board if we decide to go with the Option 3 or 4.

@Jules-Bertholet
Copy link
Contributor

Jules-Bertholet commented Sep 19, 2024

@Manishearth 3 sounds perfectly reasonable to me.

@Manishearth
Copy link
Member

@Jules-Bertholet What do you think about 4? My preference is to not do a new major version, but we could.

@Jules-Bertholet
Copy link
Contributor

@Manishearth I suppose I'd rather there be a version with '\n'=1; but it’s your crate, do as you see fit, it’s not hard to work around either way

@Manishearth
Copy link
Member

@Jules-Bertholet yeah, I was basically trying to gauge the intensity of your preference here, I do care about your position here as well since you've been heavily involved in this crate.

"Not hard to work around either way" makes sense. I'm sad about losing the forcing function: a lot of these crates will have other underlying bugs due to such assumptions, but I think \n specifically is weird anyway.

@Manishearth
Copy link
Member

I've made #67, which is the first step of step 3, or just step 4 if landed on its own.

@decathorpe
Copy link
Author

Thank you for reconsidering this issue! I understand that it's often frustrating to work on stuff like this.

FWIW, options 2, 3, 4 are all OK from my point of view, though without a 0.2.0 release to switch to, projects that have already adapted to changes that were in 0.1.13 will now likely either need to pin their dependency to =0.1.13 or will be broken with ^0.1 because the change was reverted in 0.1.14.

@Manishearth
Copy link
Member

Manishearth commented Sep 19, 2024

@decathorpe yeah, I plan to publish 0.2.0 now, those projects should just switch

(done)

@decathorpe
Copy link
Author

Perfect! Thanks again. This is making my life a whole lot easier. 🙏🏼

renovate bot referenced this issue in scottames/dots Sep 24, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [BurntSushi/ripgrep](https://github.com/BurntSushi/ripgrep) |
patch | `14.1.0` -> `14.1.1` |
| [ajeetdsouza/zoxide](https://github.com/ajeetdsouza/zoxide) |
patch | `v0.9.4` -> `v0.9.5` |
|
[aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry)
| minor | `v4.219.0` -> `v4.220.1` |
| [charmbracelet/gum](https://github.com/charmbracelet/gum) |
patch | `v0.14.4` -> `v0.14.5` |
| [cli/cli](https://github.com/cli/cli) | minor | `v2.55.0` ->
`v2.56.0` |
| [dandavison/delta](https://github.com/dandavison/delta) |
patch | `0.18.1` -> `0.18.2` |
| [eza-community/eza](https://github.com/eza-community/eza) |
patch | `v0.19.2` -> `v0.19.3` |
|
[golangci/golangci-lint](https://github.com/golangci/golangci-lint)
| minor | `v1.60.3` -> `v1.61.0` |
| [helm/helm](https://github.com/helm/helm) | minor | `v3.15.4`
-> `v3.16.1` |
|
[jesseduffield/lazygit](https://github.com/jesseduffield/lazygit)
| minor | `v0.43.1` -> `v0.44.0` |
| [konradsz/igrep](https://github.com/konradsz/igrep) | minor |
`v1.2.0` -> `v1.3.0` |
| [kubernetes/minikube](https://github.com/kubernetes/minikube)
| minor | `v1.33.1` -> `v1.34.0` |
| [nektos/act](https://github.com/nektos/act) | patch |
`v0.2.66` -> `v0.2.67` |
| [snyk/cli](https://github.com/snyk/cli) | patch | `v1.1293.0`
-> `v1.1293.1` |
| [tofuutils/tenv](https://github.com/tofuutils/tenv) | minor |
`v3.1.0` -> `v3.2.2` |
| [twpayne/chezmoi](https://github.com/twpayne/chezmoi) | patch
| `v2.52.1` -> `v2.52.2` |

---

### Release Notes

<details>
<summary>BurntSushi/ripgrep (BurntSushi/ripgrep)</summary>

###
[`v14.1.1`](https://github.com/BurntSushi/ripgrep/blob/HEAD/CHANGELOG.md#1411-2024-09-08)

[Compare
Source](https://github.com/BurntSushi/ripgrep/compare/14.1.0...14.1.1)

\===================
This is a minor release with a bug fix for a matching bug. In
particular, a bug
was found that could cause ripgrep to ignore lines that should match.
That is,
false negatives. It is difficult to characterize the specific set of
regexes
in which this occurs as it requires multiple different optimization
strategies
to collide and produce an incorrect result. But as one reported example,
in
ripgrep, the regex `(?i:e.x|ex)` does not match `e-x` when it should.
(This
bug is a result of an inner literal optimization performed in the
`grep-regex`
crate and not in the `regex` crate.)

Bug fixes:

- [BUG
#&#8203;2884](https://github.com/BurntSushi/ripgrep/issues/2884):
    Fix bug where ripgrep could miss some matches that it should report.

Miscellaneous:

- [MISC
#&#8203;2748](https://github.com/BurntSushi/ripgrep/issues/2748):
Remove ripgrep's `simd-accel` feature because it was frequently broken.

</details>

<details>
<summary>ajeetdsouza/zoxide (ajeetdsouza/zoxide)</summary>

###
[`v0.9.5`](https://github.com/ajeetdsouza/zoxide/releases/tag/v0.9.5):
0.9.5

[Compare
Source](https://github.com/ajeetdsouza/zoxide/compare/v0.9.4...v0.9.5)

##### Added

-   zsh: improved `cd` completions.
-   Lazily delete excluded directories from the database.
-   fish: detect infinite loop when using `alias cd=z`.
- Installer: added flags for `--bin-dir`, `--man-dir`, `--arch`, and
`--sudo`.
-   Nushell: support for v0.94.0+.
-   bash/fish/zsh: support for `z -- dir` style queries.
-   fish: improved Space-Tab completions.
-   ksh: added support for the Korn shell.

##### Changed

- fzf: removed `--select-1` from default options. The interactive
selector will
    now open up even if there is only one match.
-   Enforce that `$_ZO_DATA_DIR` is an absolute path.

##### Fixed

- zsh: Space-Tab completion repeating output multiple times when
matching single
    directory
- fish / Nushell / PowerShell: handle queries that look like args (e.g.
`z -x`).
-   elvish: `z -` now works as expected.
-   fish: generated shell code avoids using aliased builtins.
-   fish: `cd` command is now copied directly from
`$__fish_data_dir/functions/cd.fish`. This should minimize the chances
of an
    infinite loop when aliasing `cd=z`.
- Symlinks not getting added to the database when
`$_ZO_RESOLVE_SYMLINKS=0`.
- Symlinked database files getting replaced instead of the actual files.

</details>

<details>
<summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary>

###
[`v4.220.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.220.1)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.220.0...v4.220.1)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.220.1)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.220.1)
| https://github.com/aquaproj/aqua-registry/compare/v4.220.0...v4.220.1

##### Fixes


[#&#8203;26717](https://github.com/aquaproj/aqua-registry/issues/26717)
tailscale/tailscale: Add the command tailscaled on Linux

###
[`v4.220.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.220.0)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.219.1...v4.220.0)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.220.0)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.220.0)
| https://github.com/aquaproj/aqua-registry/compare/v4.219.1...v4.220.0

##### 🎉 New Packages


[#&#8203;26714](https://github.com/aquaproj/aqua-registry/issues/26714)
[tailscale/tailscale](https://github.com/tailscale/tailscale):
The easiest, most secure way to use WireGuard and 2FA

###
[`v4.219.1`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.219.1)

[Compare
Source](https://github.com/aquaproj/aqua-registry/compare/v4.219.0...v4.219.1)


[Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.219.1)
| [Pull
Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.219.1)
| https://github.com/aquaproj/aqua-registry/compare/v4.219.0...v4.219.1

##### Fixes


[#&#8203;26642](https://github.com/aquaproj/aqua-registry/issues/26642)
fix(sxyazi/yazi): add `ya` command
[@&#8203;wancup](https://github.com/wancup)

Yazi introduced a separate command called ya in Yazi v0.2.5.

https://github.com/sxyazi/yazi/releases/tag/v0.2.5


[#&#8203;26528](https://github.com/aquaproj/aqua-registry/issues/26528)
its-danny/koji: Rename the package to `cococonscious/koji`

The repository was transferred.


[#&#8203;26386](https://github.com/aquaproj/aqua-registry/issues/26386)
zoncoen/scenarigo: Fix scenarigo using vars

:warning: aqua must be
[v2.31.0](https://github.com/aquaproj/aqua/releases/tag/v2.31.0)
or later.

-
[https://github.com/aquaproj/aqua/pull/3052](https://github.com/aquaproj/aqua/pull/3052)

</details>

<details>
<summary>charmbracelet/gum (charmbracelet/gum)</summary>

###
[`v0.14.5`](https://github.com/charmbracelet/gum/releases/tag/v0.14.5)

[Compare
Source](https://github.com/charmbracelet/gum/compare/v0.14.4...v0.14.5)

This is a small maintenance release to bump dependencies, update linter
config, and adjust
[GoReleaser](https://github.com/goreleaser/goreleaser)
configuration.

#### Changelog

##### Bug fixes

-
[`b9611e1`](https://github.com/charmbracelet/gum/commit/b9611e1d8300c9a76380275e87d2862f4779ddf7):
fix: lint issues
([#&#8203;663](https://github.com/charmbracelet/gum/issues/663))
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Dependency updates

-
[`6837ed2`](https://github.com/charmbracelet/gum/commit/6837ed2d4580ed50d18e4e324c750a56ee42e178):
feat(deps): bump github.com/charmbracelet/bubbletea from 0.27.0 to 1.0.0
([#&#8203;661](https://github.com/charmbracelet/gum/issues/661))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`8ab6253`](https://github.com/charmbracelet/gum/commit/8ab6253ca117a625132f5e430c7a5559490e737a):
feat(deps): bump github.com/charmbracelet/bubbletea from 1.0.0 to 1.1.0
([#&#8203;665](https://github.com/charmbracelet/gum/issues/665))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`65e46d6`](https://github.com/charmbracelet/gum/commit/65e46d6e84d8d677fe30f4cd45586e66d3bc088b):
feat(deps): bump github.com/charmbracelet/x/ansi from 0.2.2 to 0.2.3
([#&#8203;656](https://github.com/charmbracelet/gum/issues/656))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])

##### Other work

-
[`a30dda5`](https://github.com/charmbracelet/gum/commit/a30dda54eb0ac32efe017e19e4e3693f078a5fa9):
build: fix goreleaser version
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`1917023`](https://github.com/charmbracelet/gum/commit/19170239015a0a3c865d6f87db2cb286d677964c):
ci: fix dependabot config
([@&#8203;caarlos0](https://github.com/caarlos0))

***

<details>
<summary>Verifying the artifacts</summary>

First, download the [`checksums.txt`
file](https://github.com/charmbracelet/gum/releases/download/0.14.5/checksums.txt),
for example, with `wget`:

```bash
wget 'https://github.com/charmbracelet/gum/releases/download/v0.14.5/checksums.txt'
```

Then, verify it using
[`cosign`](https://github.com/sigstore/cosign):

```bash
cosign verify-blob \
  --certificate-identity 'https://github.com/charmbracelet/meta/.github/workflows/goreleaser.yml@refs/heads/main' \
  --certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
  --cert 'https://github.com/charmbracelet/gum/releases/download/v0.14.5/checksums.txt.pem' \
  --signature 'https://github.com/charmbracelet/gum/releases/download/v0.14.5/checksums.txt.sig' \
  ./checksums.txt
```

If the output is `Verified OK`, you can safely use it to verify the
checksums of other artifacts you downloaded from the release using
`sha256sum`:

```bash
sha256sum --ignore-missing -c checksums.txt
```

Done! You artifacts are now verified!

</details>

<a href="https://charm.sh/"><img alt="The Charm logo"
src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a>

Thoughts? Questions? We love hearing from you. Feel free to reach out on
[Twitter](https://twitter.com/charmcli), [The
Fediverse](https://mastodon.technology/@&#8203;charm), or on
[Discord](https://charm.sh/chat).

</details>

<details>
<summary>cli/cli (cli/cli)</summary>

###
[`v2.56.0`](https://github.com/cli/cli/releases/tag/v2.56.0):
GitHub CLI 2.56.0

[Compare
Source](https://github.com/cli/cli/compare/v2.55.0...v2.56.0)

#### Important note about renewed GPG key

The Debian and RedHat releases have been signed with a new GPG key. If
you are experiencing issues updating your `.deb` or `.rpm` packages,
please read
[cli/cli#9569](https://github.com/cli/cli/issues/9569).

#### What's Changed

- Always print URL scheme to stdout by
[@&#8203;heaths](https://github.com/heaths) in
[https://github.com/cli/cli/pull/9471](https://github.com/cli/cli/pull/9471)
- Quote repo names consistently in `gh repo sync` stdout by
[@&#8203;muzimuzhi](https://github.com/muzimuzhi) in
[https://github.com/cli/cli/pull/9491](https://github.com/cli/cli/pull/9491)
- Fetch bundle from OCI registry for verify by
[@&#8203;ejahnGithub](https://github.com/ejahnGithub) in
[https://github.com/cli/cli/pull/9421](https://github.com/cli/cli/pull/9421)
- Remove `Internal` from `gh repo create` prompt when owner is not an
org by [@&#8203;jtmcg](https://github.com/jtmcg) in
[https://github.com/cli/cli/pull/9465](https://github.com/cli/cli/pull/9465)
- Drop surplus trailing space char in flag names in web by
[@&#8203;muzimuzhi](https://github.com/muzimuzhi) in
[https://github.com/cli/cli/pull/9495](https://github.com/cli/cli/pull/9495)
- fix the trimming of log filenames for `gh run view` by
[@&#8203;benebsiny](https://github.com/benebsiny) in
[https://github.com/cli/cli/pull/9482](https://github.com/cli/cli/pull/9482)
- "offline" verification using the bundle of attestations without any
additional handling of the file by
[@&#8203;aryanbhosale](https://github.com/aryanbhosale) in
[https://github.com/cli/cli/pull/9523](https://github.com/cli/cli/pull/9523)
- build(deps): bump actions/attest-build-provenance from 1.4.1 to 1.4.2
by [@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/cli/cli/pull/9518](https://github.com/cli/cli/pull/9518)
- Fix doc typo for `repo sync` by
[@&#8203;muzimuzhi](https://github.com/muzimuzhi) in
[https://github.com/cli/cli/pull/9509](https://github.com/cli/cli/pull/9509)
- Correct the help message for -F by
[@&#8203;Goooler](https://github.com/Goooler) in
[https://github.com/cli/cli/pull/9525](https://github.com/cli/cli/pull/9525)
- chore: fix some function names by
[@&#8203;crystalstall](https://github.com/crystalstall) in
[https://github.com/cli/cli/pull/9555](https://github.com/cli/cli/pull/9555)
- verify 2nd artifact without swapping order by
[@&#8203;aryanbhosale](https://github.com/aryanbhosale) in
[https://github.com/cli/cli/pull/9532](https://github.com/cli/cli/pull/9532)
- `gh attestation verify` handles empty JSONL files by
[@&#8203;malancas](https://github.com/malancas) in
[https://github.com/cli/cli/pull/9541](https://github.com/cli/cli/pull/9541)
- Enhance Linux installation docs to redirect users to GPG renewal
issue, better troubleshooting support by
[@&#8203;andyfeller](https://github.com/andyfeller) in
[https://github.com/cli/cli/pull/9573](https://github.com/cli/cli/pull/9573)
- Upgrade sigstore-go to v0.6.1 by
[@&#8203;codysoyland](https://github.com/codysoyland) in
[https://github.com/cli/cli/pull/9566](https://github.com/cli/cli/pull/9566)
- Check for nil values to prevent nil dereference panic by
[@&#8203;codysoyland](https://github.com/codysoyland) in
[https://github.com/cli/cli/pull/9578](https://github.com/cli/cli/pull/9578)
- build(deps): bump actions/attest-build-provenance from 1.4.2 to 1.4.3
by [@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/cli/cli/pull/9575](https://github.com/cli/cli/pull/9575)

#### New Contributors

- [@&#8203;aryanbhosale](https://github.com/aryanbhosale) made
their first contribution in
[https://github.com/cli/cli/pull/9523](https://github.com/cli/cli/pull/9523)
- [@&#8203;Goooler](https://github.com/Goooler) made their
first contribution in
[https://github.com/cli/cli/pull/9525](https://github.com/cli/cli/pull/9525)
- [@&#8203;crystalstall](https://github.com/crystalstall) made
their first contribution in
[https://github.com/cli/cli/pull/9555](https://github.com/cli/cli/pull/9555)

**Full Changelog**: https://github.com/cli/cli/compare/v2.55.0...v2.56.0

</details>

<details>
<summary>dandavison/delta (dandavison/delta)</summary>

###
[`v0.18.2`](https://github.com/dandavison/delta/releases/tag/0.18.2)

[Compare
Source](https://github.com/dandavison/delta/compare/0.18.1...0.18.2)

This patch release fixes various panics reported by users that were due
to v0.1.13 of the `unicode-width` crate. See
[https://github.com/dandavison/delta/pull/1858](https://github.com/dandavison/delta/pull/1858)
and
[https://github.com/unicode-rs/unicode-width/issues/66](https://github.com/unicode-rs/unicode-width/issues/66).

#### What's Changed

- Move AmbiguousDiffMinusCounter to hunk_header by
[@&#8203;dandavison](https://github.com/dandavison) in
[https://github.com/dandavison/delta/pull/1825](https://github.com/dandavison/delta/pull/1825)
- Fix `Catppuccin Latte` name in `LIGHT_SYNTAX_THEMES` list by
[@&#8203;injust](https://github.com/injust) in
[https://github.com/dandavison/delta/pull/1823](https://github.com/dandavison/delta/pull/1823)
- Handle quoted file paths in hunk headers by
[@&#8203;th1000s](https://github.com/th1000s) in
[https://github.com/dandavison/delta/pull/1840](https://github.com/dandavison/delta/pull/1840)
- Fix clippy warnings by
[@&#8203;bash](https://github.com/bash) in
[https://github.com/dandavison/delta/pull/1851](https://github.com/dandavison/delta/pull/1851)
- Allow `--dark` to override dark/light detected from syntax theme by
[@&#8203;bash](https://github.com/bash) in
[https://github.com/dandavison/delta/pull/1843](https://github.com/dandavison/delta/pull/1843)
- Upgrade and pin unicode-width to v0.1.12 by
[@&#8203;th1000s](https://github.com/th1000s) in
[https://github.com/dandavison/delta/pull/1858](https://github.com/dandavison/delta/pull/1858)

**Full Changelog**:
https://github.com/dandavison/delta/compare/0.18.1...0.18.2

</details>

<details>
<summary>eza-community/eza (eza-community/eza)</summary>

###
[`v0.19.3`](https://github.com/eza-community/eza/releases/tag/v0.19.3):
eza v0.19.3

[Compare
Source](https://github.com/eza-community/eza/compare/v0.19.2...v0.19.3)

##### Changelog

##### \[0.19.3] - 2024-09-12

##### Bug Fixes

-   Convert empty space to %20 when render hyperlinks
-   Split commit workflows and run no-merge-commits only on PRs
-   Correct naming of commit related workflows

##### Documentation

-   Better version bump commit summary

##### Features

-   Add no-merge-commits job to commits workflow

##### Miscellaneous Tasks

-   Rename justfile
-   Eza v0.19.3 changelogs, version bump

##### Refactor

-   Rename conventional-commits workflow to commits

##### Build

-   Bump DeterminateSystems/nix-installer-action from 13 to 14
-   Bump DeterminateSystems/flake-checker-action from 8 to 9
-   Bump actions/checkout from 3 to 4
-   Bump libc from 0.2.155 to 0.2.158
-   Bump nu-ansi-term from 0.50.0 to 0.50.1

##### Checksums

##### sha256sum

e748eccd34bc570ab77418e58f0f0ff0a9a8f39dadf5711ed2347eeeda8d6b5f
./target/bin-0.19.3/eza_aarch64-unknown-linux-gnu.tar.gz
9aa4ee3e6399e2977c38411a218e95b96c690036215b8f1cb63ce5c096c2ced5
./target/bin-0.19.3/eza_aarch64-unknown-linux-gnu.zip
948c9856f1db1d0a82747468008c736d2aeea1146ba679bdc8cc1d41ad299d89
./target/bin-0.19.3/eza_arm-unknown-linux-gnueabihf.tar.gz
467ab533aff2a6dee2b347fe805fb139b8ff2b13a258f33d9c4d5d6f19af8ff1
./target/bin-0.19.3/eza_arm-unknown-linux-gnueabihf.zip
dd72dd457d3bc57d546381227feb3264afed17c9fe676e16e0746bf67e68bc23
./target/bin-0.19.3/eza.exe_x86_64-pc-windows-gnu.tar.gz
cf67d26bc2e6e38219c7478e302c5a40e46ed6e237f43f1cc86a6a10e43dc652
./target/bin-0.19.3/eza.exe_x86_64-pc-windows-gnu.zip
5f5146b7ec561329c7e6d840500602c282d8b536063e8db465ce406d34710309
./target/bin-0.19.3/eza_x86_64-unknown-linux-gnu.tar.gz
39a650179d58a677cc86240ccc9d3ffd49ae38e2103c34b0992a1ded1b573463
./target/bin-0.19.3/eza_x86_64-unknown-linux-gnu.zip
69224e0f11b66f6bd661e1e97474fa57d2d34415089527ab6bf2b0d656c5008d
./target/bin-0.19.3/eza_x86_64-unknown-linux-musl.tar.gz
d44d768d5a62c22e3d5dc7e61aa172adee0c7e71b4b59b12f6e31133ad60b20e
./target/bin-0.19.3/eza_x86_64-unknown-linux-musl.zip

##### md5sum

60ed736778e430164e177d155dc475ba
./target/bin-0.19.3/eza_aarch64-unknown-linux-gnu.tar.gz
83a61431fbdbecfcff89a6d5e3d9f76c
./target/bin-0.19.3/eza_aarch64-unknown-linux-gnu.zip
8234d08ca67e0150c32f326bde222bb6
./target/bin-0.19.3/eza_arm-unknown-linux-gnueabihf.tar.gz
2b079576e60b1d8711fa2a0ad16d6685
./target/bin-0.19.3/eza_arm-unknown-linux-gnueabihf.zip
bb1730963ee5e887e52b789d00f709a8
./target/bin-0.19.3/eza.exe_x86_64-pc-windows-gnu.tar.gz
8fce0bdb61978b82e1bde84d9ce2d748
./target/bin-0.19.3/eza.exe_x86_64-pc-windows-gnu.zip
ad515cafab69475f08f2a7fcca3326f1
./target/bin-0.19.3/eza_x86_64-unknown-linux-gnu.tar.gz
2403571ceeb10fb6f5276817f8c63333
./target/bin-0.19.3/eza_x86_64-unknown-linux-gnu.zip
35e792666807cd89205b0b93df3e18e6
./target/bin-0.19.3/eza_x86_64-unknown-linux-musl.tar.gz
fc2a3a6aa4537a43e66d0fcc42df4955
./target/bin-0.19.3/eza_x86_64-unknown-linux-musl.zip

##### blake3sum

768b6391e36d079f51ed7279e129430f9321062c4ecf5208f53d298654cecbef
./target/bin-0.19.3/eza_aarch64-unknown-linux-gnu.tar.gz
5512ffe48f353fb5545b2cae94cdf3ec102cd97e72f4f0489751e41c7e32158f
./target/bin-0.19.3/eza_aarch64-unknown-linux-gnu.zip
ee81c074febffc031afbe7555a2a848cbec2bc02237ca7fd469f00eadda2cd73
./target/bin-0.19.3/eza_arm-unknown-linux-gnueabihf.tar.gz
514b8b7024751265894fce93bf56cfab66c839dac97a84f4035880f96c6168bc
./target/bin-0.19.3/eza_arm-unknown-linux-gnueabihf.zip
08aa874af77e3b9d37f80b4e8e5768f39c8b50839075bd32537df2a5df7ef419
./target/bin-0.19.3/eza.exe_x86_64-pc-windows-gnu.tar.gz
568ec4bab7577ddac95fa48de8929754451339c5c4b0388ef3b9ec211c17fc55
./target/bin-0.19.3/eza.exe_x86_64-pc-windows-gnu.zip
a3bea8306162058f0d56b6e3a0d91d9d8f4dbd419344cc3b7bea6ea7c62c8c13
./target/bin-0.19.3/eza_x86_64-unknown-linux-gnu.tar.gz
bcc38a591e2763d1334b26853469331d005a2ade71b66581117216fdd000977b
./target/bin-0.19.3/eza_x86_64-unknown-linux-gnu.zip
b22c3e0d006381dddf1c07894828cba6be927fb451db8f2ca68422fc04f2c75f
./target/bin-0.19.3/eza_x86_64-unknown-linux-musl.tar.gz
79ac8ee01058474516a38091811a73351755cebaa4356840813d6c0eb41056b1
./target/bin-0.19.3/eza_x86_64-unknown-linux-musl.zip

</details>

<details>
<summary>golangci/golangci-lint (golangci/golangci-lint)</summary>

###
[`v1.61.0`](https://github.com/golangci/golangci-lint/compare/v1.60.3...v1.61.0)

[Compare
Source](https://github.com/golangci/golangci-lint/compare/v1.60.3...v1.61.0)

</details>

<details>
<summary>helm/helm (helm/helm)</summary>

###
[`v3.16.1`](https://github.com/helm/helm/compare/v3.16.0-rc.1...v3.16.1)

[Compare
Source](https://github.com/helm/helm/compare/v3.16.0-rc.1...v3.16.1)

###
[`v3.16.0`](https://github.com/helm/helm/compare/v3.15.4...v3.16.0)

[Compare
Source](https://github.com/helm/helm/compare/v3.15.4...v3.16.0-rc.1)

</details>

<details>
<summary>jesseduffield/lazygit (jesseduffield/lazygit)</summary>

###
[`v0.44.0`](https://github.com/jesseduffield/lazygit/releases/tag/v0.44.0)

[Compare
Source](https://github.com/jesseduffield/lazygit/compare/v0.43.1...v0.44.0)

#### What's Changed

Lots of great changes in this release. Thanks to everybody who
contributed!

##### Enhancements 🔥

- Per-repo config files (and reloading of edited config files) by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3787](https://github.com/jesseduffield/lazygit/pull/3787)
- In addition to the global config file you can now create repo-specific
config files in `<repo>/.git/lazygit.yml`. Settings in these files
override settings in the global config file. In addition, files
called `.lazygit.yml` in any of the parent directories of a repo will
also be loaded; this can be useful if you have settings that you want to
apply to a group of repositories.
- We now also automatically apply (most) config changes without the need
to restart lazygit
- Easily view diff across range of commits by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3869](https://github.com/jesseduffield/lazygit/pull/3869)
- If you select a range of commits, we now show the diff across the
range (inclusive). This makes it easy to see the total changes across a
number of commits. Likewise, if you press enter when a range of commits
are selected, we will show the changed files for the range.


https://github.com/user-attachments/assets/6646c78b-5770-41c1-93b9-5442d32404de

- Support hyperlinks from pagers by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3825](https://github.com/jesseduffield/lazygit/pull/3825)
- If you're using delta as a pager (which I highly recommend trying),
you can now click on line numbers to go to that line in your editor by
using the following config:
    ```yaml
    git:
      paging:
        colorArg: always
pager: delta --paging=never --line-numbers --hyperlinks
--hyperlinks-file-link-format="lazygit-edit://{path}:{line}"
    ```


https://github.com/user-attachments/assets/75fef6c4-d437-4595-ab00-b8990215cfed

- Switch to Files panel after popping/applying a stash by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3888](https://github.com/jesseduffield/lazygit/pull/3888)
- This is a nice quality of life improvement. You generally want to go
straight to the files panel after you pop or apply from the stash
- Ask to auto-stage unstaged files when continuing a rebase after
resolving conflicts by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3879](https://github.com/jesseduffield/lazygit/pull/3879)
- Another quality of life improvement: often you resolve some conflicts,
then make another couple changes, then in lazygit you say to continue
and you get an error saying there are unstaged changes. Now instead of
showing an error, lazygit asks if you want to stage those changes and
continue.
- Offer autostash option when creating new branch by
[@&#8203;brandondong](https://github.com/brandondong) in
[https://github.com/jesseduffield/lazygit/pull/3871](https://github.com/jesseduffield/lazygit/pull/3871)
    -   Another great quality of life improvement
- Allow using shell aliases in interactive custom commands by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3793](https://github.com/jesseduffield/lazygit/pull/3793)
- Switch tabs with panel jump keys by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3794](https://github.com/jesseduffield/lazygit/pull/3794)
- If you've already been using the number keys (1-5) for jumping to
specific side panels, you'll be pleased to know that you can now also
use those keys for jumping to tabs within a side panel. E.g. to go to
the reflog panel, you can now press 4 to jump to the commits panel, then
4 again to go to the reflog tab.
- Rename "Custom Command" to "Shell Command" by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3800](https://github.com/jesseduffield/lazygit/pull/3800)
- There are two ways of invoking a 'custom' command in Lazygit: first by
pre-defining a command in your config, and second by pressing ':' and
typing in the command directly. We referred to both of these as 'custom
commands' which was confusing. We now refer to the second approach as
invoking a 'shell command'.
- Improve template placeholders for custom commands by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3809](https://github.com/jesseduffield/lazygit/pull/3809)
- Now you can use `SelectedCommit` to refer to the selected commit
regardless of which commits panel you're in (local commits, reflog, etc)
- Likewise, you can use `SelectedPath` whether you're in the files panel
or the commit-files panel.
- feat(custom command): support multiple contexts within one command by
[@&#8203;yam-liu](https://github.com/yam-liu) in
[https://github.com/jesseduffield/lazygit/pull/3784](https://github.com/jesseduffield/lazygit/pull/3784)
- You can now use a comma-separated list of contexts for which a custom
command can be invoked. For example:
    ```yaml
    customCommands:
      - description: 'Add empty commit'
        key: 'E'
        context: 'commits,files'
    ```
- Improve mouse support for commit message panel by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3836](https://github.com/jesseduffield/lazygit/pull/3836)
- Make auto-staging resolved conflicts optional by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3870](https://github.com/jesseduffield/lazygit/pull/3870)
- If you set `git.autoStageResolvedConflicts` to false in your config,
lazygit will no longer auto-stage files in which you've resolved merge
conflicts.
- Allow using `<`/`>` and `,`/`.` in sticky range select mode in patch
explorer by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3837](https://github.com/jesseduffield/lazygit/pull/3837)
- Add Zed editor support to editorPreset by
[@&#8203;susl](https://github.com/susl) in
[https://github.com/jesseduffield/lazygit/pull/3886](https://github.com/jesseduffield/lazygit/pull/3886)

##### Fixes 🔧

- Allow GPG reword for last commit by
[@&#8203;Neko-Box-Coder](https://github.com/Neko-Box-Coder) in
[https://github.com/jesseduffield/lazygit/pull/3815](https://github.com/jesseduffield/lazygit/pull/3815)
- Don't exit app when GetRepoPaths call fails during startup by
[@&#8203;ppoum](https://github.com/ppoum) in
[https://github.com/jesseduffield/lazygit/pull/3779](https://github.com/jesseduffield/lazygit/pull/3779)
- Fix lack of icon when extension isn't lowercase by
[@&#8203;hasecilu](https://github.com/hasecilu) in
[https://github.com/jesseduffield/lazygit/pull/3810](https://github.com/jesseduffield/lazygit/pull/3810)
- Fix redraw bug (stale content) in commits view by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3783](https://github.com/jesseduffield/lazygit/pull/3783)
- Fix line coloring when using the delta pager by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3820](https://github.com/jesseduffield/lazygit/pull/3820)
- Fix pressing escape after clicking in diff view by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3828](https://github.com/jesseduffield/lazygit/pull/3828)
- Fix fast-forward issue caused by a conflicting tag name
[@&#8203;Neko-Box-Coder](https://github.com/Neko-Box-Coder) in
[https://github.com/jesseduffield/lazygit/pull/3807](https://github.com/jesseduffield/lazygit/pull/3807)
- Fix range select -> stage failure when deleted file is already staged
by [@&#8203;brandondong](https://github.com/brandondong) in
[https://github.com/jesseduffield/lazygit/pull/3631](https://github.com/jesseduffield/lazygit/pull/3631)
- Scroll views up if needed to show all their content by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3839](https://github.com/jesseduffield/lazygit/pull/3839)
- Fix crash when filtering commits by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3838](https://github.com/jesseduffield/lazygit/pull/3838)
- Fix cancelled autostash resulting in stuck inline status by
[@&#8203;brandondong](https://github.com/brandondong) in
[https://github.com/jesseduffield/lazygit/pull/3860](https://github.com/jesseduffield/lazygit/pull/3860)
- Don't allow opening a menu while the search or filter prompt is open
by [@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3878](https://github.com/jesseduffield/lazygit/pull/3878)

##### Maintenance ⚙️

- Reapply "Check for fixup commits on CI" by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3745](https://github.com/jesseduffield/lazygit/pull/3745)
- Some cleanups for APIs related to contexts by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3808](https://github.com/jesseduffield/lazygit/pull/3808)
- Improve fixup commits script by
[@&#8203;jesseduffield](https://github.com/jesseduffield) in
[https://github.com/jesseduffield/lazygit/pull/3853](https://github.com/jesseduffield/lazygit/pull/3853)
- Fix linter warnings by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3854](https://github.com/jesseduffield/lazygit/pull/3854)
- Add codespell support (config, workflow to detect/not fix) and make it
fix few typos by
[@&#8203;yarikoptic](https://github.com/yarikoptic) in
[https://github.com/jesseduffield/lazygit/pull/3751](https://github.com/jesseduffield/lazygit/pull/3751)
- Get rid of a lot of error return values by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3890](https://github.com/jesseduffield/lazygit/pull/3890)
- Add a readme file for the JSON files in pkg/i18n/translations by
[@&#8203;stefanhaller](https://github.com/stefanhaller) in
[https://github.com/jesseduffield/lazygit/pull/3781](https://github.com/jesseduffield/lazygit/pull/3781)

#### New Contributors

- [@&#8203;yam-liu](https://github.com/yam-liu) made their
first contribution in
[https://github.com/jesseduffield/lazygit/pull/3784](https://github.com/jesseduffield/lazygit/pull/3784)
- [@&#8203;ppoum](https://github.com/ppoum) made their first
contribution in
[https://github.com/jesseduffield/lazygit/pull/3779](https://github.com/jesseduffield/lazygit/pull/3779)
- [@&#8203;Neko-Box-Coder](https://github.com/Neko-Box-Coder)
made their first contribution in
[https://github.com/jesseduffield/lazygit/pull/3815](https://github.com/jesseduffield/lazygit/pull/3815)
- [@&#8203;yarikoptic](https://github.com/yarikoptic) made
their first contribution in
[https://github.com/jesseduffield/lazygit/pull/3751](https://github.com/jesseduffield/lazygit/pull/3751)
- [@&#8203;susl](https://github.com/susl) made their first
contribution in
[https://github.com/jesseduffield/lazygit/pull/3886](https://github.com/jesseduffield/lazygit/pull/3886)

**Full Changelog**:
https://github.com/jesseduffield/lazygit/compare/v0.43.1...v0.44.0

</details>

<details>
<summary>konradsz/igrep (konradsz/igrep)</summary>

###
[`v1.3.0`](https://github.com/konradsz/igrep/blob/HEAD/CHANGELOG.md#v130-2024-09-08)

[Compare
Source](https://github.com/konradsz/igrep/compare/v1.2.0...v1.3.0)

***

-   locate editor executable using `which` crate
-   add `-w`/`--word-regexp` arg
-   add option to open Context Viewer at startup
-   add follow symlinks option
-   ability to specify custom command
-   read custom editor from environment
-   add `less` as an editor option
-   add a keybindings popup
-   add keybindings for changing context viewer size
-   fix flushing infinitely when opening nvim with no results found

</details>

<details>
<summary>kubernetes/minikube (kubernetes/minikube)</summary>

###
[`v1.34.0`](https://github.com/kubernetes/minikube/releases/tag/v1.34.0)

[Compare
Source](https://github.com/kubernetes/minikube/compare/v1.33.1...v1.34.0)

📣😀 **Please fill out our [fast 5-question
survey](https://forms.gle/Gg3hG5ZySw8c1C24A)** so that we can learn how
& why you use minikube, and what improvements we should make. Thank you!
💃🎉

#### Release Notes

#### Version 1.34.0 - 2024-09-04

Breaking Changes:

- Bump minimum podman version to 4.9.0
[#&#8203;19457](https://github.com/kubernetes/minikube/pull/19457)
- Disallow using Docker Desktop 4.34.0
[#&#8203;19576](https://github.com/kubernetes/minikube/pull/19576)

Features:

- Bump default Kubernetes version to v1.31.0
[#&#8203;19435](https://github.com/kubernetes/minikube/pull/19435)
- Add new driver for macOS: vfkit
[#&#8203;19423](https://github.com/kubernetes/minikube/pull/19423)
- Add Parallels driver support for darwin/arm64
[#&#8203;19373](https://github.com/kubernetes/minikube/pull/19373)
- Add new volcano addon
[#&#8203;18602](https://github.com/kubernetes/minikube/pull/18602)
- Addons ingress-dns: Added support for all architectures
[#&#8203;19198](https://github.com/kubernetes/minikube/pull/19198)
- Support privileged ports on WSL
[#&#8203;19370](https://github.com/kubernetes/minikube/pull/19370)
- VM drivers with docker container-runtime now use docker-buildx for
image building
[#&#8203;19339](https://github.com/kubernetes/minikube/pull/19339)
- Support running x86 QEMU on arm64
[#&#8203;19228](https://github.com/kubernetes/minikube/pull/19228)
- Add `-o json` option for `addon images` command
[#&#8203;19364](https://github.com/kubernetes/minikube/pull/19364)

Improvements:

- add -d shorthand for --driver
[#&#8203;19356](https://github.com/kubernetes/minikube/pull/19356)
- add -c shorthand for --container-runtime
[#&#8203;19217](https://github.com/kubernetes/minikube/pull/19217)
- kvm2: Don't delete the "default" libvirt network
[#&#8203;18920](https://github.com/kubernetes/minikube/pull/18920)
- Update MINIKUBE_HOME usage
[#&#8203;18648](https://github.com/kubernetes/minikube/pull/18648)
- CNI: Updated permissions to support network policies on kindnet
[#&#8203;19360](https://github.com/kubernetes/minikube/pull/19360)
- GPU: Set `NVIDIA_DRIVER_CAPABILITIES` to `all` when GPU is enabled
[#&#8203;19345](https://github.com/kubernetes/minikube/pull/19345)
- Improved error message when trying to use `mount` on system missing 9P
[#&#8203;18995](https://github.com/kubernetes/minikube/pull/18995)
- Improved error message when enabling KVM addons on non-KVM cluster
[#&#8203;19195](https://github.com/kubernetes/minikube/pull/19195)
- Added warning when loading image with wrong arch
[#&#8203;19229](https://github.com/kubernetes/minikube/pull/19229)
- `profile list --output json` handle empty config folder
[#&#8203;16900](https://github.com/kubernetes/minikube/pull/16900)
- Check connectivity outside minikube when connectivity issuse
[#&#8203;18859](https://github.com/kubernetes/minikube/pull/18859)

Bugs:

- Fix not creating API server tunnel for QEMU w/ builtin network
[#&#8203;19191](https://github.com/kubernetes/minikube/pull/19191)
- Fix waiting for user input on firewall unblock when
`--interactive=false`
[#&#8203;19531](https://github.com/kubernetes/minikube/pull/19531)
- Fix network retry check when subnet already in use for podman
[#&#8203;17779](https://github.com/kubernetes/minikube/pull/17779)
- Fix empty tarball when generating image save
[#&#8203;19312](https://github.com/kubernetes/minikube/pull/19312)
- Fix missing permission for kong-serviceaccount
[#&#8203;19002](https://github.com/kubernetes/minikube/pull/19002)

Version Upgrades:

- Addon cloud-spanner: Update cloud-spanner-emulator/emulator image from
1.5.17 to 1.5.23
[#&#8203;19341](https://github.com/kubernetes/minikube/pull/19341)
[#&#8203;19501](https://github.com/kubernetes/minikube/pull/19501)
- Addon headlamp: Update headlamp-k8s/headlamp image from v0.23.2 to
v0.25.0
[#&#8203;18992](https://github.com/kubernetes/minikube/pull/18992)
[#&#8203;19152](https://github.com/kubernetes/minikube/pull/19152)
[#&#8203;19349](https://github.com/kubernetes/minikube/pull/19349)
- Addon kong: Update kong image from 3.6.1 to 3.7.1
[#&#8203;19046](https://github.com/kubernetes/minikube/pull/19046)
[#&#8203;19124](https://github.com/kubernetes/minikube/pull/19124)
- Addon kubevirt: Update bitnami/kubectl image from 1.30.0 to 1.31.0
[#&#8203;18929](https://github.com/kubernetes/minikube/pull/18929)
[#&#8203;19087](https://github.com/kubernetes/minikube/pull/19087)
[#&#8203;19313](https://github.com/kubernetes/minikube/pull/19313)
[#&#8203;19479](https://github.com/kubernetes/minikube/pull/19479)
- Addon ingress: Update ingress-nginx/controller image from v1.10.1 to
v1.11.2
[#&#8203;19302](https://github.com/kubernetes/minikube/pull/19302)
[#&#8203;19461](https://github.com/kubernetes/minikube/pull/19461)
- Addon inspektor-gadget: Update inspektor-gadget image from v0.27.0 to
v0.32.0
[#&#8203;18872](https://github.com/kubernetes/minikube/pull/18872)
[#&#8203;18931](https://github.com/kubernetes/minikube/pull/18931)
[#&#8203;19011](https://github.com/kubernetes/minikube/pull/19011)
[#&#8203;19166](https://github.com/kubernetes/minikube/pull/19166)
[#&#8203;19411](https://github.com/kubernetes/minikube/pull/19411)
[#&#8203;19554](https://github.com/kubernetes/minikube/pull/19554)
- Addon istio-provisioner: Update istio/operator image from 1.21.2 to
1.23.0
[#&#8203;18932](https://github.com/kubernetes/minikube/pull/18932)
[#&#8203;19052](https://github.com/kubernetes/minikube/pull/19052)
[#&#8203;19167](https://github.com/kubernetes/minikube/pull/19167)
[#&#8203;19283](https://github.com/kubernetes/minikube/pull/19283)
[#&#8203;19450](https://github.com/kubernetes/minikube/pull/19450)
- Addon nvidia-device-plugin: Update nvidia/k8s-device-plugin image from
v0.15.0 to v0.16.2
[#&#8203;19162](https://github.com/kubernetes/minikube/pull/19162)
[#&#8203;19266](https://github.com/kubernetes/minikube/pull/19266)
[#&#8203;19336](https://github.com/kubernetes/minikube/pull/19336)
[#&#8203;19409](https://github.com/kubernetes/minikube/pull/19409)
- Addon metrics-server: Update metrics-server/metrics-server image from
v0.7.1 to v0.7.2
[#&#8203;19529](https://github.com/kubernetes/minikube/pull/19529)
- Addon YAKD: bump marcnuri/yakd image from 0.0.4 to 0.0.5
[#&#8203;19145](https://github.com/kubernetes/minikube/pull/19145)
- CNI: Update calico from v3.27.3 to v3.28.1
[#&#8203;18870](https://github.com/kubernetes/minikube/pull/18870)
[#&#8203;19377](https://github.com/kubernetes/minikube/pull/19377)
- CNI: Update cilium from v1.15.3 to v1.16.1
[#&#8203;18925](https://github.com/kubernetes/minikube/pull/18925)
[#&#8203;19084](https://github.com/kubernetes/minikube/pull/19084)
[#&#8203;19247](https://github.com/kubernetes/minikube/pull/19247)
[#&#8203;19337](https://github.com/kubernetes/minikube/pull/19337)
[#&#8203;19476](https://github.com/kubernetes/minikube/pull/19476)
- CNI: Update kindnetd from v20240202-8f1494ea to v20240813-c6f155d6
[#&#8203;18933](https://github.com/kubernetes/minikube/pull/18933)
[#&#8203;19252](https://github.com/kubernetes/minikube/pull/19252)
[#&#8203;19265](https://github.com/kubernetes/minikube/pull/19265)
[#&#8203;19307](https://github.com/kubernetes/minikube/pull/19307)
[#&#8203;19378](https://github.com/kubernetes/minikube/pull/19378)
[#&#8203;19446](https://github.com/kubernetes/minikube/pull/19446)
- CNI: Update flannel from v0.25.1 to v0.25.6
[#&#8203;18966](https://github.com/kubernetes/minikube/pull/18966)
[#&#8203;19008](https://github.com/kubernetes/minikube/pull/19008)
[#&#8203;19085](https://github.com/kubernetes/minikube/pull/19085)
[#&#8203;19297](https://github.com/kubernetes/minikube/pull/19297)
[#&#8203;19522](https://github.com/kubernetes/minikube/pull/19522)
- Kicbase: Update nerdctld from 0.6.0 to 0.6.1
[#&#8203;19282](https://github.com/kubernetes/minikube/pull/19282)
- Kicbase: Bump ubuntu:jammy from
[`2024042`](https://github.com/kubernetes/minikube/commit/20240427)
to
[`2024080`](https://github.com/kubernetes/minikube/commit/20240808)
[#&#8203;19068](https://github.com/kubernetes/minikube/pull/19068)
[#&#8203;19184](https://github.com/kubernetes/minikube/pull/19184)
[#&#8203;19478](https://github.com/kubernetes/minikube/pull/19478)
- Kicbase/ISO: Update buildkit from v0.13.1 to v0.15.2
[#&#8203;19024](https://github.com/kubernetes/minikube/pull/19024)
[#&#8203;19116](https://github.com/kubernetes/minikube/pull/19116)
[#&#8203;19264](https://github.com/kubernetes/minikube/pull/19264)
[#&#8203;19355](https://github.com/kubernetes/minikube/pull/19355)
[#&#8203;19452](https://github.com/kubernetes/minikube/pull/19452)
- Kicbase/ISO: Update cni-plugins from v1.4.1 to v1.5.1
[#&#8203;19044](https://github.com/kubernetes/minikube/pull/19044)
[#&#8203;19128](https://github.com/kubernetes/minikube/pull/19128)
- Kicbase/ISO: Update containerd from v1.7.15 to v1.7.21
[#&#8203;18934](https://github.com/kubernetes/minikube/pull/18934)
[#&#8203;19106](https://github.com/kubernetes/minikube/pull/19106)
[#&#8203;19186](https://github.com/kubernetes/minikube/pull/19186)
[#&#8203;19298](https://github.com/kubernetes/minikube/pull/19298)
[#&#8203;19521](https://github.com/kubernetes/minikube/pull/19521)
- Kicbase/ISO: Update cri-dockerd from v0.3.12 to v0.3.15
[#&#8203;19199](https://github.com/kubernetes/minikube/pull/19199)
[#&#8203;19249](https://github.com/kubernetes/minikube/pull/19249)
- Kicbase/ISO: Update crun from 1.14.4 to 1.16.1
[#&#8203;19112](https://github.com/kubernetes/minikube/pull/19112)
[#&#8203;19389](https://github.com/kubernetes/minikube/pull/19389)
[#&#8203;19443](https://github.com/kubernetes/minikube/pull/19443)
- Kicbase/ISO: Update docker from 26.0.2 to 27.2.0
[#&#8203;18993](https://github.com/kubernetes/minikube/pull/18993)
[#&#8203;19038](https://github.com/kubernetes/minikube/pull/19038)
[#&#8203;19142](https://github.com/kubernetes/minikube/pull/19142)
[#&#8203;19153](https://github.com/kubernetes/minikube/pull/19153)
[#&#8203;19175](https://github.com/kubernetes/minikube/pull/19175)
[#&#8203;19319](https://github.com/kubernetes/minikube/pull/19319)
[#&#8203;19326](https://github.com/kubernetes/minikube/pull/19326)
[#&#8203;19429](https://github.com/kubernetes/minikube/pull/19429)
[#&#8203;19530](https://github.com/kubernetes/minikube/pull/19530)
- Kicbase/ISO: Update nerdctl from 1.7.5 to 1.7.6
[#&#8203;18869](https://github.com/kubernetes/minikube/pull/18869)
- Kicbase/ISO: Update runc from v1.1.12 to v1.1.13
[#&#8203;19104](https://github.com/kubernetes/minikube/pull/19104)

For a more detailed changelog, including changes occurring in
pre-release versions, see
[CHANGELOG.md](https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md).

Thank you to our contributors for this release!

-   Anders F Björklund
-   Anjali Chaturvedi
-   Artem Basalaev
-   Benjamin P. Jung
-   Daniel Iwaniec
-   Dylan Piergies
-   Gabriel Pelouze
-   Hritesh Mondal
-   Jack Brown
-   Jeff MAURY
-   Marc Nuri
-   Matteo Mortari
-   Medya Ghazizadeh
-   Nir Soffer
-   Philippe Miossec
-   Predrag Rogic
-   Radoslaw Smigielski
-   Raghavendra Talur
-   Sandipan Panda
-   Steven Powell
-   Sylvester Carolan
-   Tom McLaughlin
-   Tony-Sol
-   aiyijing
-   chubei
-   daniel-iwaniec
-   hritesh04
-   joaquimrocha
-   ljtian
-   mitchell amihod
-   shixiuguo
-   sunyuxuan
-   thomasjm
-   tianlijun
-   tianlj
-   錦南路之花
-   锦南路之花

Thank you to our PR reviewers for this release!

-   spowelljr (67 comments)
-   medyagh (53 comments)
-   nirs (14 comments)
-   cfergeau (4 comments)
-   liangyuanpeng (2 comments)
-   ComradeProgrammer (1 comments)
-   afbjorklund (1 comments)
-   aojea (1 comments)
-   bobsira (1 comments)

Thank you to our triage members for this release!

-   kundan2707 (55 comments)
-   medyagh (29 comments)
-   afbjorklund (28 comments)
-   T-Lakshmi (20 comments)
-   Ritikaa96 (16 comments)

Check out our [contributions
leaderboard](https://minikube.sigs.k8s.io/docs/contrib/leaderboard/v1.34.0/)
for this release!

#### Installation

See [Getting Started](https://minikube.sigs.k8s.io/docs/start/)

#### Binary Checksums

darwin-amd64:
`0f73648ab726c6d7822444536e7a5d7eb4d8b0c193ecfc17771d4811c4efa5c0`
darwin-arm64:
`d760e65502017b716dec55c17e2c94c8e7a739d30650ffa698f4f4104a18314c`
linux-amd64:
`c4a625f9b4a4523e74b745b6aac8b0bf45062472be72cd38a23c91ec04d534c9`
linux-arm:
`19172329d564e68e6379e90de1a653aa445d7a91e3521ed9b8a3bfbbb257bbae`
linux-arm64:
`fbe55f563ac33328320d64c319f635386fe020eedf25cba8ebf3850048deb7ae`
linux-ppc64le:
`e1bd56569a49713eec99f931cb755b4836163321f1744480099387250e12b127`
linux-s390x:
`cca05a534ad7454bb07e6c27fd206988b1ad20b4f194d8d73a6e8165d4a70952`
windows-amd64.exe:
`cb80b30202901c10baf207441bf5c7a18b33e11618a2a474a9403eabdf2de26b`

#### ISO Checksums

amd64:
`0da9cfaa98f2c9f37b401519d846145fccdd8bf0cae46b32c0b8a4c054a4c070`\
arm64:
`526783ddba495fe611bc38e937a53f8f2c4d77de243b469185f611ba80908f17`

</details>

<details>
<summary>nektos/act (nektos/act)</summary>

###
[`v0.2.67`](https://github.com/nektos/act/releases/tag/v0.2.67)

[Compare
Source](https://github.com/nektos/act/compare/v0.2.66...v0.2.67)

#### Changelog

##### Bug fixes

- [`4143017`](https://github.com/nektos/act/commit/4143017)
fix: schema validation for job if functions
([#&#8203;2446](https://github.com/nektos/act/issues/2446))
- [`32b6bb7`](https://github.com/nektos/act/commit/32b6bb7)
fix: artifact v4 upload above 8MB
([#&#8203;2402](https://github.com/nektos/act/issues/2402))

##### Other

- [`f75a2d8`](https://github.com/nektos/act/commit/f75a2d8)
chore: bump VERSION to 0.2.67
- [`d8b6f61`](https://github.com/nektos/act/commit/d8b6f61)
build(deps): bump golang.org/x/term from 0.23.0 to 0.24.0
([#&#8203;2442](https://github.com/nektos/act/issues/2442))

</details>

<details>
<summary>snyk/cli (snyk/cli)</summary>

###
[`v1.1293.1`](https://github.com/snyk/cli/releases/tag/v1.1293.1)

[Compare
Source](https://github.com/snyk/cli/compare/v1.1293.0...v1.1293.1)

The Snyk CLI is being deployed to different deployment channels, users
can select the stability level according to their needs. For details
please see [this
documentation](https://docs.snyk.io/snyk-cli/releases-and-channels-for-the-snyk-cli)

##### News

- Starting with this version, Snyk cli binaries will be distributed via
`downloads.snyk.io` instead of `static.snyk.io`. This includes
intallation from `npm`.

</details>

<details>
<summary>tofuutils/tenv (tofuutils/tenv)</summary>

###
[`v3.2.2`](https://github.com/tofuutils/tenv/releases/tag/v3.2.2)

[Compare
Source](https://github.com/tofuutils/tenv/compare/v3.2.1...v3.2.2)

#### What's Changed

- Fix : read iac files from WorkPath (chdir proxy flag) by
[@&#8203;dvaumoron](https://github.com/dvaumoron) in
[https://github.com/tofuutils/tenv/pull/250](https://github.com/tofuutils/tenv/pull/250)

**Full Changelog**:
https://github.com/tofuutils/tenv/compare/v3.2.1...v3.2.2

###
[`v3.2.1`](https://github.com/tofuutils/tenv/releases/tag/v3.2.1)

[Compare
Source](https://github.com/tofuutils/tenv/compare/v3.1.0...v3.2.1)

#### What's Changed

- fix : skip all cosign tests by
[@&#8203;dvaumoron](https://github.com/dvaumoron) in
[https://github.com/tofuutils/tenv/pull/248](https://github.com/tofuutils/tenv/pull/248)

**Full Changelog**:
https://github.com/tofuutils/tenv/compare/v3.2.0...v3.2.1

</details>

<details>
<summary>twpayne/chezmoi (twpayne/chezmoi)</summary>

###
[`v2.52.2`](https://github.com/twpayne/chezmoi/releases/tag/v2.52.2)

[Compare
Source](https://github.com/twpayne/chezmoi/compare/v2.52.1...v2.52.2)

#### Changelog

##### Features

-
[`7aee332`](https://github.com/twpayne/chezmoi/commit/7aee332250ebde2b20be4b2f938c1adb1f406b38)
feat: Support YubiKeys in KeePassXC open mode

##### Documentation updates

-
[`f67e048`](https://github.com/twpayne/chezmoi/commit/f67e048b73e2c2c24cbae300e7799675f7604d49)
docs: Add home page section on getting help
-
[`ea8d95d`](https://github.com/twpayne/chezmoi/commit/ea8d95d031f62769117b4bb1796e4d58557d72cb)
docs: Add Stack Overflow to social media links
-
[`37eab81`](https://github.com/twpayne/chezmoi/commit/37eab816d118c914779ad626c39951dcc5d0416b)
docs: Add FAQ entry on using delta as the diff tool
-
[`fdb2065`](https://github.com/twpayne/chezmoi/commit/fdb2065f166daec64a9df59fcdf7ad7d8f68710f)
docs: Add FAQ entry on running scripts periodically
-
[`a3de4a8`](https://github.com/twpayne/chezmoi/commit/a3de4a83a22bd248f83a7ab5fa15345ce226bada)
docs: Add FAQ entry on running a script when a git-repo external changes
-
[`b56a600`](https://github.com/twpayne/chezmoi/commit/b56a6005e871d1ba3abe60bd8b923f1ec2ce42f7)
docs: Add FAQ entry on literal {{ and }} in templates
-
[`d414e0f`](https://github.com/twpayne/chezmoi/commit/d414e0fc7839ca97d20b82904a290ff444c4575c)
docs: Add warning on using externals for large files or archives
-
[`d9f4717`](https://github.com/twpayne/chezmoi/commit/d9f471784e354f8230c3d2a5e69edb04b15e6f2c)
docs: Add how to use VSCode as the diff and merge tool
-
[`2a64e42`](https://github.com/twpayne/chezmoi/commit/2a64e42821988400257e1214e755bfa65a790f5a)
docs: Make features and portability more prominent on home page
-
[`3a17101`](https://github.com/twpayne/chezmoi/commit/3a171018f76c814f0e1c88136058e5627f2d8d35)
docs: Add links to articles
-
[`0355a62`](https://github.com/twpayne/chezmoi/commit/0355a62a8afdb820ffa22291e56e0dafec6f49c0)
docs: Add link to blog
-
[`1ac3014`](https://github.com/twpayne/chezmoi/commit/1ac30149615b248b17dc82f38ca2d19a7f9a180a)
docs: Add github.com/b3nj5m1n/xdg-ninja to related software

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 4pm on thursday" in timezone
America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/scottames/dots).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC43NC4xIiwidXBkYXRlZEluVmVyIjoiMzguNzQuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: scottames-github-bot[bot] <162828115+scottames-github-bot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants