Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lazygit for openSUSE:Factory checked 
in at 2025-10-21 11:15:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lazygit (Old)
 and      /work/SRC/openSUSE:Factory/.lazygit.new.18484 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lazygit"

Tue Oct 21 11:15:24 2025 rev:11 rq:1312276 version:0.55.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/lazygit/lazygit.changes  2025-09-08 
09:58:19.860405140 +0200
+++ /work/SRC/openSUSE:Factory/.lazygit.new.18484/lazygit.changes       
2025-10-21 11:16:25.502804701 +0200
@@ -1,0 +2,8 @@
+Sat Oct 18 14:26:08 UTC 2025 - Andrea Manzini <[email protected]>
+
+- Update to version 0.55.1:
+  * Fix staging when using the new useExternalDiffGitConfig config
+  * Don't hide keybindings that match the confirmMenu key in the keybindings
+    menu
+
+-------------------------------------------------------------------

Old:
----
  lazygit-0.55.0.tar.gz

New:
----
  lazygit-0.55.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ lazygit.spec ++++++
--- /var/tmp/diff_new_pack.WehWVo/_old  2025-10-21 11:16:26.678854126 +0200
+++ /var/tmp/diff_new_pack.WehWVo/_new  2025-10-21 11:16:26.678854126 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           lazygit
-Version:        0.55.0
+Version:        0.55.1
 Release:        0
 Summary:        Simple terminal UI for git commands
 License:        MIT

++++++ _service ++++++
--- /var/tmp/diff_new_pack.WehWVo/_old  2025-10-21 11:16:26.718855806 +0200
+++ /var/tmp/diff_new_pack.WehWVo/_new  2025-10-21 11:16:26.726856143 +0200
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/jesseduffield/lazygit.git</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">v0.55.0</param>
+    <param name="revision">v0.55.1</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="changesgenerate">enable</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.WehWVo/_old  2025-10-21 11:16:26.750857152 +0200
+++ /var/tmp/diff_new_pack.WehWVo/_new  2025-10-21 11:16:26.754857319 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/jesseduffield/lazygit.git</param>
-              <param 
name="changesrevision">0d5a410114036e2151087e6a8cf5295cca317c16</param></service></servicedata>
+              <param 
name="changesrevision">3de12b7fde56cec5d0fc27b1986180c27e50d971</param></service></servicedata>
 (No newline at EOF)
 

++++++ lazygit-0.55.0.tar.gz -> lazygit-0.55.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lazygit-0.55.0/pkg/commands/git_commands/working_tree.go 
new/lazygit-0.55.1/pkg/commands/git_commands/working_tree.go
--- old/lazygit-0.55.0/pkg/commands/git_commands/working_tree.go        
2025-09-06 09:11:27.000000000 +0200
+++ new/lazygit-0.55.1/pkg/commands/git_commands/working_tree.go        
2025-09-17 20:39:08.000000000 +0200
@@ -267,7 +267,7 @@
        noIndex := !node.GetIsTracked() && !node.GetHasStagedChanges() && 
!cached && node.GetIsFile()
        extDiffCmd := self.UserConfig().Git.Paging.ExternalDiffCommand
        useExtDiff := extDiffCmd != "" && !plain
-       useExtDiffGitConfig := 
self.UserConfig().Git.Paging.UseExternalDiffGitConfig
+       useExtDiffGitConfig := 
self.UserConfig().Git.Paging.UseExternalDiffGitConfig && !plain
 
        cmdArgs := NewGitCmd("diff").
                ConfigIf(useExtDiff, "diff.external="+extDiffCmd).
@@ -305,7 +305,7 @@
 
        extDiffCmd := self.UserConfig().Git.Paging.ExternalDiffCommand
        useExtDiff := extDiffCmd != "" && !plain
-       useExtDiffGitConfig := 
self.UserConfig().Git.Paging.UseExternalDiffGitConfig
+       useExtDiffGitConfig := 
self.UserConfig().Git.Paging.UseExternalDiffGitConfig && !plain
 
        cmdArgs := NewGitCmd("diff").
                Config("diff.noprefix=false").
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lazygit-0.55.0/pkg/gui/controllers/options_menu_action.go 
new/lazygit-0.55.1/pkg/gui/controllers/options_menu_action.go
--- old/lazygit-0.55.0/pkg/gui/controllers/options_menu_action.go       
2025-09-06 09:11:27.000000000 +0200
+++ new/lazygit-0.55.1/pkg/gui/controllers/options_menu_action.go       
2025-09-17 20:39:08.000000000 +0200
@@ -51,6 +51,7 @@
                HideCancel:                true,
                ColumnAlignment:           []utils.Alignment{utils.AlignRight, 
utils.AlignLeft},
                AllowFilteringKeybindings: true,
+               KeepConfirmKeybindings:    true,
        })
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lazygit-0.55.0/pkg/gui/menu_panel.go 
new/lazygit-0.55.1/pkg/gui/menu_panel.go
--- old/lazygit-0.55.0/pkg/gui/menu_panel.go    2025-09-06 09:11:27.000000000 
+0200
+++ new/lazygit-0.55.1/pkg/gui/menu_panel.go    2025-09-17 20:39:08.000000000 
+0200
@@ -35,7 +35,7 @@
                maxColumnSize = max(maxColumnSize, len(item.LabelColumns))
 
                // Remove all item keybindings that are the same as the confirm 
binding
-               if item.Key == confirmKey {
+               if item.Key == confirmKey && !opts.KeepConfirmKeybindings {
                        item.Key = nil
                }
        }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lazygit-0.55.0/pkg/gui/types/common.go 
new/lazygit-0.55.1/pkg/gui/types/common.go
--- old/lazygit-0.55.0/pkg/gui/types/common.go  2025-09-06 09:11:27.000000000 
+0200
+++ new/lazygit-0.55.1/pkg/gui/types/common.go  2025-09-17 20:39:08.000000000 
+0200
@@ -156,6 +156,7 @@
        HideCancel                bool
        ColumnAlignment           []utils.Alignment
        AllowFilteringKeybindings bool
+       KeepConfirmKeybindings    bool // if true, the keybindings that match 
the confirm binding will not be removed from menu items
 }
 
 type CreatePopupPanelOpts struct {

++++++ vendor.tar.gz ++++++

Reply via email to