Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
jesseduffield/lazygit minor v0.42.0v0.58.0

Release Notes

jesseduffield/lazygit (jesseduffield/lazygit)

v0.58.0

Compare Source

What's Changed
Enhancements 🔥
Fixes 🔧
Docs 📖
I18n 🌎
Performance Improvements 📊
  • Fix annoying UI stalls after refresh (e.g. background fetch) when the reflog is very long by @​stefanhaller in #​5135
New Contributors

Full Changelog: jesseduffield/lazygit@v0.57.0...v0.58.0

v0.57.0

Compare Source

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖
I18n 🌎
Performance Improvements 📊

New Contributors

Full Changelog: jesseduffield/lazygit@v0.56.0...v0.57.0

v0.56.0

Compare Source

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖
I18n 🌎

New Contributors

Full Changelog: jesseduffield/lazygit@v0.55.1...v0.56.0

v0.55.1

Compare Source

This hotfix release fixes two bugs that have crept in in v0.55.0: one is a regression that broke displaying the enter key in the keybindings menu, the other is a problem with a newly added feature that didn't work quite correctly. See below for details.

For the changes in 0.55.0, see https://github.com/jesseduffield/lazygit/releases/tag/v0.55.0.

What's Changed

Fixes 🔧

Full Changelog: jesseduffield/lazygit@v0.55.0...v0.55.1

v0.55.0

Compare Source

Breaking Changes

  • The 'redo' command, which used to be bound to ctrl-z, is now bound to shift-Z instead. This is because ctrl-z is now used for suspending the application; it is a commonly known keybinding for that in the Linux world. If you want to revert this change, you can do so by adding the following to your config:
keybinding:
  universal:
    suspendApp: <disabled>
    redo: <c-z>
  • The git.paging.useConfig option has been removed. If you were relying on it to configure your pager, you'll have to explicitly set the pager again using the git.paging.pager option.

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖
I18n 🌎

New Contributors

Full Changelog: jesseduffield/lazygit@v0.54.2...v0.55.0

v0.54.2

Compare Source

Here's another point release; this one fixes a performance regression in 0.54.0 that made flicking through diffs a little less snappy (or a lot less, in some scenarios) than it could be.

For the changes in 0.54.0, see https://github.com/jesseduffield/lazygit/releases/tag/v0.54.0.

What's Changed

Fixes 🔧
Maintenance ⚙️
Docs 📖

Full Changelog: jesseduffield/lazygit@v0.54.1...v0.54.2

v0.54.1

Compare Source

This hotfix release fixes a regression in 0.54.0 that made lazygit fail on startup when multiple users use it on a single machine.

For the changes in 0.54.0, see https://github.com/jesseduffield/lazygit/releases/tag/v0.54.0.

What's Changed

Fixes 🔧
Maintenance ⚙️
Docs 📖

New Contributors

Full Changelog: jesseduffield/lazygit@v0.54.0...v0.54.1

v0.54.0

Compare Source

Again we don't have any major new features this time (unless you count the support for alt-backspace for deleting words in the commit message editor, which is one of my favorite additions), but lots of smaller quality-of-life improvements and bug fixes. The most notable one is probably the fix for the stale index.lock problem, which was a very long-standing bug that seemed to affect some users much more than others for some reason.

Breaking Changes

  • The default sort order for local and remote branches has changed: it used to be 'recency' (based on reflog) for local branches, and 'alphabetical' for remote branches. Both of these have been changed to 'date' (which means committerdate). If you do liked the old defaults better, you can revert to them with the following config:
git:
  localBranchSortOrder: recency
  remoteBranchSortOrder: alphabetical
  • The default selection mode in the staging and custom patch building views has been changed to hunk mode. This is the more useful mode in most cases, as it usually saves a lot of keystrokes. If you want to switch back to the old line mode default, you can do so by adding the following to your config:
gui:
  useHunkModeInStagingView: false

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖
I18n 🌎
Performance Improvements 📊

New Contributors

Full Changelog: jesseduffield/lazygit@v0.53.0...v0.54.0

v0.53.0

Compare Source

This is the first lazygit release after Jesse passed the maintainership to me (@​stefanhaller), and I'm excited (and a little bit nervous 😄) about it.

No big new features this time, but lots of smaller quality-of-life improvements. The one that makes the biggest difference for me is an improved hunk selection mode in the staging view (in case you didn't know, you can switch from the normal line selection mode to hunk mode by pressing a). This now works a bit more fine-grained, by selecting groups of added or deleted lines rather than entire hunks, which often consist of several such groups. With this change I find that I prefer hunk mode over line mode in most cases, so I added a user config to switch to hunk automatically upon entering the staging view; it is off by default, but I encourage you to enable it (gui.useHunkModeInStagingView) to see if you like it as much as I do. Feedback about this is welcome; please comment on the PR if you have any.

The detailed list of all changes follows:

What's Changed
Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖
I18n 🌎
New Contributors

Full Changelog: jesseduffield/lazygit@v0.52.0...v0.53.0

v0.52.0

Compare Source

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️

New Contributors

Full Changelog: jesseduffield/lazygit@v0.51.1...v0.52.0

v0.51.1

Compare Source

What's Changed

Fixes 🔧

Full Changelog: jesseduffield/lazygit@v0.51.0...v0.51.1

v0.51.0

Compare Source

Breaking Changes

  • The 'subprocess', 'stream', and 'showOutput' fields of custom commands have been replaced by a single 'output' field. This should be transparent, if you used these in your config file it should have been automatically updated for you. There's one notable change though: the 'stream' field used to mean both that the command's output would be streamed to the command log, and that the command would be run in a pseudo terminal (pty). We converted this to 'output: log', which means that the command's output will be streamed to the command log, but not use a pty, on the assumption that this is what most people wanted. If you do actually want to run a command in a pty, you can change this to 'output: logWithPty' instead.

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖

New Contributors

Full Changelog: jesseduffield/lazygit@v0.50.0...v0.51.0

v0.50.0

Compare Source

Breaking Changes

After fetching, main branches now get auto-forwarded to their upstream if they fall behind. This is useful for keeping your main or master branch up to date automatically. If you don't want this, you can disable it by setting the following in your config:

git:
  autoForwardBranches: none

If, on the other hand, you want this even for feature branches, you can set it to 'allBranches' instead.

What's Changed

Enhancements 🔥

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.43.0 Update dependency jesseduffield/lazygit to v0.43.1 Jul 13, 2024
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 6a8e6d8 to 33fc90e Compare July 13, 2024 11:54
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 33fc90e to b87a403 Compare August 7, 2024 14:44
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from b87a403 to cd2bd3d Compare September 7, 2024 03:22
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.43.1 Update dependency jesseduffield/lazygit to v0.44.0 Sep 7, 2024
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from cd2bd3d to d9deee3 Compare September 18, 2024 13:35
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.44.0 Update dependency jesseduffield/lazygit to v0.44.1 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from d9deee3 to c112389 Compare January 11, 2025 06:13
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.44.1 Update dependency jesseduffield/lazygit to v0.45.0 Jan 11, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from c112389 to f6842fc Compare January 17, 2025 16:35
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.45.0 Update dependency jesseduffield/lazygit to v0.45.2 Jan 17, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from f6842fc to 7411d30 Compare February 15, 2025 05:27
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.45.2 Update dependency jesseduffield/lazygit to v0.46.0 Feb 15, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 7411d30 to fe75ae1 Compare February 22, 2025 03:00
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.46.0 Update dependency jesseduffield/lazygit to v0.47.0 Feb 22, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from fe75ae1 to cc96a91 Compare February 22, 2025 14:30
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.47.0 Update dependency jesseduffield/lazygit to v0.47.1 Feb 22, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from cc96a91 to e98f718 Compare February 25, 2025 11:44
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.47.1 Update dependency jesseduffield/lazygit to v0.47.2 Feb 25, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from e98f718 to a2f7dd5 Compare March 1, 2025 05:40
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.47.2 Update dependency jesseduffield/lazygit to v0.48.0 Mar 1, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from a2f7dd5 to e6a23ce Compare April 14, 2025 11:03
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.48.0 Update dependency jesseduffield/lazygit to v0.49.0 Apr 14, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from e6a23ce to 987d147 Compare May 3, 2025 07:01
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.49.0 Update dependency jesseduffield/lazygit to v0.50.0 May 3, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 987d147 to 154d3ff Compare May 22, 2025 13:00
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.50.0 Update dependency jesseduffield/lazygit to v0.51.0 May 22, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 154d3ff to d0cf1c6 Compare May 23, 2025 13:14
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.51.0 Update dependency jesseduffield/lazygit to v0.51.1 May 23, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from d0cf1c6 to d89aa40 Compare June 7, 2025 03:15
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.51.1 Update dependency jesseduffield/lazygit to v0.52.0 Jun 7, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from d89aa40 to 63635a8 Compare July 5, 2025 05:53
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.52.0 Update dependency jesseduffield/lazygit to v0.53.0 Jul 5, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 63635a8 to 37edb30 Compare August 2, 2025 12:15
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.53.0 Update dependency jesseduffield/lazygit to v0.54.0 Aug 2, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 37edb30 to 52cac83 Compare August 6, 2025 13:26
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.54.0 Update dependency jesseduffield/lazygit to v0.54.1 Aug 6, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 52cac83 to 9a32054 Compare August 11, 2025 17:06
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.54.1 Update dependency jesseduffield/lazygit to v0.54.2 Aug 11, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 9a32054 to 94fd985 Compare September 19, 2025 16:05
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.54.2 Update dependency jesseduffield/lazygit to v0.55.1 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from 94fd985 to f5409de Compare November 1, 2025 09:47
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.55.1 Update dependency jesseduffield/lazygit to v0.56.0 Nov 1, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from f5409de to f4d3e91 Compare December 6, 2025 14:13
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.56.0 Update dependency jesseduffield/lazygit to v0.57.0 Dec 6, 2025
@renovate renovate bot force-pushed the renovate/jesseduffield-lazygit-0.x branch from f4d3e91 to adc12d3 Compare January 3, 2026 21:15
@renovate renovate bot changed the title Update dependency jesseduffield/lazygit to v0.57.0 Update dependency jesseduffield/lazygit to v0.58.0 Jan 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant