From d898dd87de5cfb1413277869b7650f170402e802 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 11 Sep 2025 14:28:14 -0700
Subject: [PATCH] Bump github.com/junegunn/fzf from 0.65.1 to 0.65.2 (#2322)
Bumps [github.com/junegunn/fzf](https://github.com/junegunn/fzf) from
0.65.1 to 0.65.2.
Release notes
Sourced from github.com/junegunn/fzf's
releases.
0.65.2
- Bug fixes and improvements
- Fix incorrect truncation of
--info-command with
--info=inline-right (#4479)
- [install] Support old uname in macOS (#4492)
- [bash 3] Fix
CTRL-T and ALT-C to preserve
the last yank (#4496)
- Do not unset
FZF_DEFAULT_* variables when using winpty
(#4497)
(#4400)
- Fix rendering of items with tabs when using a non-default ellipsis
(#4505)
- This is the final release to support Windows 7.
- Future versions will be built with the latest Go toolchain, which
has dropped support for Windows 7.
Changelog
Sourced from github.com/junegunn/fzf's
changelog.
0.65.2
- Bug fixes and improvements
- Fix incorrect truncation of
--info-command with
--info=inline-right (#4479)
- [install] Support old uname in macOS (#4492)
- [bash 3] Fix
CTRL-T and ALT-C to preserve
the last yank (#4496)
- Do not unset
FZF_DEFAULT_* variables when using winpty
(#4497)
(#4400)
- Fix rendering of items with tabs when using a non-default ellipsis
(#4505)
- This is the final release to support Windows 7.
- Future versions will be built with the latest Go toolchain, which
has dropped support for Windows 7.
Commits
416aff8
0.65.2
59dc7f1
refactor: replace []byte(fmt.Sprintf) with fmt.Appendf (#4507)
a3c9f8b
Deploying to master from @
junegunn/fzf@5546c65491a26c7cd01e08d4ecc65eaab89b3...
5546c65
Fix rendering of items with tabs when using a non-default ellipsis
f2179f0
Deploying to master from @
junegunn/fzf@9a53d84b9cce3a0be12fb98e313726ecc806f...
9a53d84
Update README.md
0a8ff78
Do not unset FZF_DEFAULT_* variables when using winpty
f9d7877
[bash 3] Fix CTRL-T and ALT-C to preserve the last yank (#4496)
9fe9976
Fix a typo in man page (#4495)
de1824f
[install] Support old uname in macOS (#4492)
- Additional commits viewable in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
go.mod | 2 +-
go.sum | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/go.mod b/go.mod
index c287cf15d..310b22aaa 100644
--- a/go.mod
+++ b/go.mod
@@ -20,7 +20,7 @@ require (
github.com/gorilla/websocket v1.5.3
github.com/invopop/jsonschema v0.13.0
github.com/jmoiron/sqlx v1.4.0
- github.com/junegunn/fzf v0.65.1
+ github.com/junegunn/fzf v0.65.2
github.com/kevinburke/ssh_config v1.2.0
github.com/mattn/go-sqlite3 v1.14.32
github.com/mitchellh/mapstructure v1.5.0
diff --git a/go.sum b/go.sum
index 9b086770c..cd6ab26b9 100644
--- a/go.sum
+++ b/go.sum
@@ -114,8 +114,8 @@ github.com/invopop/jsonschema v0.13.0/go.mod h1:ffZ5Km5SWWRAIN6wbDXItl95euhFz2uO
github.com/jmoiron/sqlx v1.4.0 h1:1PLqN7S1UYp5t4SrVVnt4nUVNemrDAtxlulVe+Qgm3o=
github.com/jmoiron/sqlx v1.4.0/go.mod h1:ZrZ7UsYB/weZdl2Bxg6jCRO9c3YHl8r3ahlKmRT4JLY=
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
-github.com/junegunn/fzf v0.65.1 h1:vOr8+CeNGo38b8SXepDgiBEgjuDRTFAD+mNVyYFg55Q=
-github.com/junegunn/fzf v0.65.1/go.mod h1:0PctWYfS0aCfyLFEIUjtE+PIXD2UFKaHgbIHiECG7Bo=
+github.com/junegunn/fzf v0.65.2 h1:Uz6Qey1K4JoGNMskYlwRDnGuCEu/sAh+NxQ4YdX3yn0=
+github.com/junegunn/fzf v0.65.2/go.mod h1:0PctWYfS0aCfyLFEIUjtE+PIXD2UFKaHgbIHiECG7Bo=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=