Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package fzf for openSUSE:Factory checked in 
at 2026-05-28 17:26:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fzf (Old)
 and      /work/SRC/openSUSE:Factory/.fzf.new.1937 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fzf"

Thu May 28 17:26:34 2026 rev:82 rq:1355453 version:0.73.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/fzf/fzf.changes  2026-04-28 12:02:36.269042982 
+0200
+++ /work/SRC/openSUSE:Factory/.fzf.new.1937/fzf.changes        2026-05-28 
17:27:54.658132539 +0200
@@ -1,0 +2,30 @@
+Wed May 27 16:27:09 UTC 2026 - Avindra Goolcharan <[email protected]>
+
+ - Update to version 0.73.1:
+   * Bug fixes
+   * Skip $FZF_CURRENT_ITEM export when the item contains a NUL byte;
+     exec(2) rejects the env, breaking preview and other
+     child commands (#4806)
+   * Fixed O(n^2) HTTP body accumulation in --listen; a single ~390 KB
+     request could block the single-threaded server for ~8 s
+- Changes from 0.73.0:
+  * Nushell integration via fzf --nushell and the installer (#4630)
+  * New --preview-window=next position that places the preview adjacent
+    to the input section, on the list side: above the input in the
+    default layout, below it in --layout=reverse (#4798)
+  * Timer-driven every(N) event for --bind, where N is seconds
+  * Added $FZF_IDLE_TIME (whole seconds) and $FZF_IDLE_TIME_MS
+    (milliseconds), holding the elapsed time since the last user activity
+  * Added $FZF_CURRENT_ITEM for shells where quoting {} is awkward (#4802)
+  * fix: Scoring: non-word characters at the start of input or after
+    a delimiter now receive the same boundary bonus as word
+    characters (#4795)
+  * fix: change-preview-window no longer resets wrap / wrap-word state
+    set via toggle-preview-wrap / toggle-preview-wrap-word (#4791)
+  * fix: Stripped UTF-8-encoded C1 control characters from rendered
+    items to prevent terminal control-sequence injection
+  * fix: Fixed integer-overflow panic in FuzzyMatchV2 on 32-bit builds
+  * fix: Fixed bg-transform reload / exclude payloads being dropped
+  * fix: Fixed rendering glitch with preview window on the left combined with 
footer
+
+-------------------------------------------------------------------

Old:
----
  fzf-0.72.0.tar.gz

New:
----
  fzf-0.73.1.tar.gz

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

Other differences:
------------------
++++++ fzf.spec ++++++
--- /var/tmp/diff_new_pack.i6hPPj/_old  2026-05-28 17:27:55.806180061 +0200
+++ /var/tmp/diff_new_pack.i6hPPj/_new  2026-05-28 17:27:55.810180226 +0200
@@ -19,7 +19,7 @@
 
 %global _lto_cflags %{nil}
 Name:           fzf
-Version:        0.72.0
+Version:        0.73.1
 Release:        0
 Summary:        A command-line fuzzy finder
 License:        MIT

++++++ fzf-0.72.0.tar.gz -> fzf-0.73.1.tar.gz ++++++
++++ 3321 lines of diff (skipped)

++++++ vendor.tar.zst ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/github.com/mattn/go-isatty/isatty_others.go 
new/vendor/github.com/mattn/go-isatty/isatty_others.go
--- old/vendor/github.com/mattn/go-isatty/isatty_others.go      2026-04-04 
07:04:34.000000000 +0200
+++ new/vendor/github.com/mattn/go-isatty/isatty_others.go      2026-05-25 
07:35:03.000000000 +0200
@@ -1,5 +1,5 @@
-//go:build (appengine || js || nacl || tinygo || wasm) && !windows
-// +build appengine js nacl tinygo wasm
+//go:build (appengine || js || nacl || tinygo || wasm || wasip1 || wasip2) && 
!windows
+// +build appengine js nacl tinygo wasm wasip1 wasip2
 // +build !windows
 
 package isatty
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/github.com/mattn/go-isatty/isatty_windows.go 
new/vendor/github.com/mattn/go-isatty/isatty_windows.go
--- old/vendor/github.com/mattn/go-isatty/isatty_windows.go     2026-04-04 
07:04:34.000000000 +0200
+++ new/vendor/github.com/mattn/go-isatty/isatty_windows.go     2026-05-25 
07:35:03.000000000 +0200
@@ -31,6 +31,10 @@
        if procGetFileInformationByHandleEx.Find() != nil {
                procGetFileInformationByHandleEx = nil
        }
+       // Check if NtQueryObject is available.
+       if procNtQueryObject.Find() != nil {
+               procNtQueryObject = nil
+       }
 }
 
 // IsTerminal return true if the file descriptor is terminal.
@@ -43,6 +47,7 @@
 // Check pipe name is used for cygwin/msys2 pty.
 // Cygwin/MSYS2 PTY has a name like:
 //   \{cygwin,msys}-XXXXXXXXXXXXXXXX-ptyN-{from,to}-master
+// On Windows 7 a trailing suffix (e.g. "-nat") may be appended.
 func isCygwinPipeName(name string) bool {
        token := strings.Split(name, "-")
        if len(token) < 5 {
@@ -72,13 +77,19 @@
                return false
        }
 
+       for _, t := range token[5:] {
+               if t == "" {
+                       return false
+               }
+       }
+
        return true
 }
 
-// getFileNameByHandle use the undocomented ntdll NtQueryObject to get file 
full name from file handler
+// getFileNameByHandle use the undocumented ntdll NtQueryObject to get file 
full name from file handler
 // since GetFileInformationByHandleEx is not available under windows Vista and 
still some old fashion
 // guys are using Windows XP, this is a workaround for those guys, it will 
also work on system from
-// Windows vista to 10
+// Windows Vista to 10
 // see https://stackoverflow.com/a/18792477 for details
 func getFileNameByHandle(fd uintptr) (string, error) {
        if procNtQueryObject == nil {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/modules.txt new/vendor/modules.txt
--- old/vendor/modules.txt      2026-04-04 07:04:34.000000000 +0200
+++ new/vendor/modules.txt      2026-05-25 07:35:03.000000000 +0200
@@ -52,8 +52,8 @@
 # github.com/lucasb-eyer/go-colorful v1.2.0
 ## explicit; go 1.12
 github.com/lucasb-eyer/go-colorful
-# github.com/mattn/go-isatty v0.0.20
-## explicit; go 1.15
+# github.com/mattn/go-isatty v0.0.22
+## explicit; go 1.21
 github.com/mattn/go-isatty
 # github.com/mattn/go-runewidth v0.0.16
 ## explicit; go 1.9

Reply via email to