Skip to content
This repository has been archived by the owner on Jul 21, 2024. It is now read-only.

chore(deps): update dependency junegunn/fzf to v0.54.1 #78

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Dec 25, 2022

Mend Renovate

This PR contains the following updates:

Package Update Change
junegunn/fzf minor 0.28.0 -> v0.54.1

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

junegunn/fzf (junegunn/fzf)

v0.54.1: 0.54.1

Compare Source

v0.54.0: 0.54.0

Compare Source

Release highlights: https://junegunn.github.io/fzf/releases/0.54.0/

  • Implemented line wrap of long items
    • --wrap option enables line wrap
    • --wrap-sign customizes the sign for wrapped lines (default: )
    • toggle-wrap action toggles line wrap
      history | fzf --tac --wrap --bind 'ctrl-/:toggle-wrap' --wrap-sign $'\t'
    • fzf by default binds CTRL-/ and ALT-/ to toggle-wrap
  • Updated shell integration scripts to leverage line wrap
    • CTRL-R binding includes --wrap-sign $'\t↳ ' to indent wrapped lines
    • kill ** completion uses --wrap to show the whole line by default instead of showing it in the preview window
  • Added --info-command option for customizing the info line

Prepend the current cursor position in yellow

fzf --info-command='echo -e "\x1b[33;1m$FZF_POS\x1b[m/$FZF_INFO 💛"'

  - `$FZF_INFO` is set to the original info text
  - ANSI color codes are supported
- Pointer and marker signs can be set to empty strings
```sh
### Minimal style
fzf --pointer '' --marker '' --prompt '' --info hidden
  • Better cache management and improved rendering for --tail
  • Improved --sync behavior
    • When --sync is provided, fzf will not render the interface until the initial filtering and the associated actions (bound to any of start, load, result, or focus) are complete.

fzf will not render intermediate states

  (sleep 1; seq 1000000; sleep 1) |
    fzf --sync --query 5 --listen --bind start:up,load:up,result:up,focus:change-header:Ready
  ```
  • GET endpoint is now available from execute and transform actions (it used to timeout due to lock conflict)
    fzf --listen --sync --bind 'focus:transform-header:curl -s localhost:$FZF_PORT?limit=0 | jq .'
  • Added offset-middle action to place the current item is in the middle of the screen
  • fzf will not start the initial reader when reload or reload-sync is bound to start event. fzf < /dev/null or : | fzf are no longer required and extraneous load event will not fire due to the empty list.

Now this will work as expected. Previously, this would print an invalid header line.

fzf < /dev/null or : | fzf would fix the problem, but then an extraneous

load event would fire and the header would be prematurely updated.

fzf --header 'Loading ...' --header-lines 1
--bind 'start:reload:sleep 1; ps -ef'
--bind 'load:change-header:Loaded!'

- Fixed mouse support on Windows
- Fixed crash when using `--tiebreak=end` with very long items
- zsh 5.0 compatibility (thanks to @&#8203;LangLangBart)
- Fixed `--walker-skip` to also skip symlinks to directories
- Fixed `result` event not fired when input stream is not complete
- Built-in reader of the Windows binary will print forward slashes on MSYS and WSL (thanks to @&#8203;charlievieth)
- New tags will have `v` prefix so that they are available on https://proxy.golang.org/

v0.53.0

Compare Source

Release highlights: https://junegunn.github.io/fzf/releases/0.53.0/

All bash functions, highlighted

  declare -f | perl -0777 -pe 's/^}\n/}\0/gm' |
    bat --plain --language bash --color always |
    fzf --read0 --ansi --reverse --multi --highlight-line

Ripgrep multi-line output

  rg --pretty bash | perl -0777 -pe 's/\n\n/\n\0/gm' |
    fzf --read0 --ansi --multi --highlight-line --reverse --tmux 70%
  ```
    - To disable multi-line display, use `--no-multi-line`
- CTRL-R bindings of bash, zsh, and fish have been updated to leverage multi-line display
- The default `--pointer` and `--marker` have been changed from `>` to Unicode bar characters as they look better with multi-line items
- Added `--marker-multi-line` to customize the select marker for multi-line entries with the default set to `╻┃╹`
  ```
  ╻First line
  ┃...
  ╹Last line
  ```
  • Native tmux integration
    • Added --tmux option to replace fzf-tmux script and simplify distribution

--tmux [center|top|bottom|left|right][,SIZE[%]][,SIZE[%]]

Center, 100% width and 70% height

  fzf --tmux 100%,70% --border horizontal --padding 1,2

Left, 30% width

  fzf --tmux left,30%

Bottom, 50% height

  fzf --tmux bottom,50%
  ```
    - To keep the implementation simple, it only uses popups. You need tmux 3.3 or later.
- To use `--tmux` in Vim plugin:
  ```vim
  let g:fzf_layout = { 'tmux': '100%,70%' }
  ```
  • Added support for endless input streams
    • See Browsing log stream with fzf
    • Added --tail=NUM option to limit the number of items to keep in memory. This is useful when you want to browse an endless stream of data (e.g. log stream) with fzf while limiting memory usage.

Interactive filtering of a log stream

  tail -f *.log | fzf --tail 100000 --tac --no-sort --exact
  ```
  • Better Windows Support
    • fzf now works on Git bash (mintty) out of the box via winpty integration
    • Many fixes and improvements for Windows
  • man page is now embedded in the binary; fzf --man to see it
  • Changed the default --scroll-off to 3, as we think it's a better default
  • Process started by execute action now directly writes to and reads from /dev/tty. Manual /dev/tty redirection for interactive programs is no longer required.

v0.52.1

Compare Source

  • Fixed a critical bug in the Windows version
    • Windows users are strongly encouraged to upgrade to this version

v0.52.0

Compare Source

  • Added --highlight-line to highlight the whole current line (à la set cursorline of Vim)
  • Added color names for selected lines: selected-fg, selected-bg, and selected-hl
    fzf --border --multi --info inline-right --layout reverse --marker ▏ --pointer ▌ --prompt ''  \
        --highlight-line --color gutter:-1,selected-bg:238,selected-fg:146,current-fg:189
  • Added click-header event that is triggered when the header section is clicked. When the event is triggered, $FZF_CLICK_HEADER_COLUMN and $FZF_CLICK_HEADER_LINE are set.
    fd --type f |
      fzf --header $'[Files] [Directories]' --header-first \
          --bind 'click-header:transform:
            (( FZF_CLICK_HEADER_COLUMN <= 7 )) && echo "reload(fd --type f)"
            (( FZF_CLICK_HEADER_COLUMN >= 9 )) && echo "reload(fd --type d)"
          '
  • Add $FZF_COMPLETION_{DIR,PATH}_OPTS for separately customizing the behavior of fuzzy completion

v0.51.0

Compare Source

  • Added a new environment variable $FZF_POS exported to the child processes. It's the vertical position of the cursor in the list starting from 1.

v0.50.0

Compare Source

  • Search performance optimization. You can observe 50%+ improvement in some scenarios.
    $ rg --line-number --no-heading --smart-case . > $DATA

    $ wc < $DATA
     5520118 26862362 897487793
    
    $ hyperfine -w 1 -L bin fzf-0.49.0,fzf-7ce6452,fzf-a5447b8,fzf '{bin} --filter "///" < $DATA | head -30'
    Summary
      fzf --filter "///" < $DATA | head -30 ran
        1.16 ± 0.03 times faster than fzf-a5447b8 --filter "///" < $DATA | head -30
        1.23 ± 0.03 times faster than fzf-7ce6452 --filter "///" < $DATA | head -30
        1.52 ± 0.03 times faster than fzf-0.49.0 --filter "///" < $DATA | head -30
    
  • Added jump and jump-cancel events that are triggered when leaving jump mode

v0.49.0

Compare Source

  • Ingestion performance improved by around 40% (more or less depending on options)
  • --info=hidden and --info=inline-right will no longer hide the horizontal separator by default. This gives you more flexibility in customizing the layout.
    fzf --border --info=inline-right
    fzf --border --info=inline-right --separator ═
    fzf --border --info=inline-right --no-separator
    fzf --border --info=hidden
    fzf --border --info=hidden --separator ━
    fzf --border --info=hidden --no-separator
  • Added two environment variables exported to the child processes
    • FZF_PREVIEW_LABEL
    • FZF_BORDER_LABEL

Use the current value of $FZF_PREVIEW_LABEL to determine which actions to perform

git ls-files |
  fzf --header 'Press CTRL-P to change preview mode' \
      --bind='ctrl-p:transform:[[ $FZF_PREVIEW_LABEL =~ cat ]] \
      && echo "change-preview(git log --color=always \{})+change-preview-label([[ log ]])" \
      || echo "change-preview(bat --color=always \{})+change-preview-label([[ cat ]])"'
```
  • Renamed track action to track-current to highlight the difference between the global tracking state set by --track and a one-off tracking action
    • track is still available as an alias
  • Added untrack-current and toggle-track-current actions
    • *-current actions are no-op when the global tracking state is set
  • Bug fixes and minor improvements

v0.48.1

Compare Source

  • CTRL-T and ALT-C bindings can be disabled by setting FZF_CTRL_T_COMMAND and FZF_ALT_C_COMMAND to empty strings respectively when sourcing the script

bash

FZF_CTRL_T_COMMAND= FZF_ALT_C_COMMAND= eval "$(fzf --bash)"

zsh

FZF_CTRL_T_COMMAND= FZF_ALT_C_COMMAND= eval "$(fzf --zsh)"

fish

fzf --fish | FZF_CTRL_T_COMMAND= FZF_ALT_C_COMMAND= source
```
- Setting the variables after sourcing the script will have no effect
  • Bug fixes

v0.48.0

Compare Source

  • Shell integration scripts are now embedded in the fzf binary. This simplifies the distribution, and the users are less likely to have problems caused by using incompatible scripts and binaries.
    • bash

Set up fzf key bindings and fuzzy completion

  eval "$(fzf --bash)"
  ```
- zsh
  ```sh

Set up fzf key bindings and fuzzy completion

  eval "$(fzf --zsh)"
  ```
- fish
  ```fish

Set up fzf key bindings

  fzf --fish | source
  ```
  • Added options for customizing the behavior of the built-in walker
    Option Description Default
    --walker=OPTS Walker options ([file][,dir][,follow][,hidden]) file,follow,hidden
    --walker-root=DIR Root directory from which to start walker .
    --walker-skip=DIRS Comma-separated list of directory names to skip .git,node_modules
    • Examples

Built-in walker is only used by standalone fzf when $FZF_DEFAULT_COMMAND is not set

    unset FZF_DEFAULT_COMMAND

    fzf # default: --walker=file,follow,hidden --walker-root=. --walker-skip=.git,node_modules
    fzf --walker=file,dir,hidden,follow --walker-skip=.git,node_modules,target

Walker options in $FZF_DEFAULT_OPTS

    export FZF_DEFAULT_OPTS="--walker=file,dir,hidden,follow --walker-skip=.git,node_modules,target"
    fzf

Reading from STDIN; --walker is ignored

    seq 100 | fzf --walker=dir

Reading from $FZF_DEFAULT_COMMAND; --walker is ignored

    export FZF_DEFAULT_COMMAND='seq 100'
    fzf --walker=dir
    ```
  • Shell integration scripts have been updated to use the built-in walker with these new options and they are now much faster out of the box.

v0.47.0

Compare Source

  • Replaced "the default find command" with a built-in directory walker to simplify the code and to achieve better performance and consistent behavior across platforms.
    This doesn't affect you if you have $FZF_DEFAULT_COMMAND set.
    • Breaking changes:
      • Unlike the previous "find" command, the new traversal code will list hidden files, but hidden directories will still be ignored
      • No filtering of devtmpfs or proc types
      • Traversal is parallelized, so the order of the entries will be different each time
    • You may wonder why fzf implements directory walker anyway when it's a filter program following the Unix philosophy.
      But fzf has had the walker code for years to tackle the performance problem on Windows. And I decided to use the same approach on different platforms as well for the benefits listed above.
    • Built-in walker is using the excellent charlievieth/fastwalk library, which easily outperforms its competitors and supports safely following symlinks.
  • Added $FZF_DEFAULT_OPTS_FILE to allow managing default options in a file
    • See #​3618
    • Option precedence from lower to higher
      1. Options read from $FZF_DEFAULT_OPTS_FILE
      2. Options from $FZF_DEFAULT_OPTS
      3. Options from command-line arguments
  • Bug fixes and improvements

v0.46.1

Compare Source

v0.46.0

Compare Source

  • Added two new events
    • result - triggered when the filtering for the current query is complete and the result list is ready
    • resize - triggered when the terminal size is changed
  • fzf now exports the following environment variables to the child processes
    Variable Description
    FZF_LINES Number of lines fzf takes up excluding padding and margin
    FZF_COLUMNS Number of columns fzf takes up excluding padding and margin
    FZF_TOTAL_COUNT Total number of items
    FZF_MATCH_COUNT Number of matched items
    FZF_SELECT_COUNT Number of selected items
    FZF_QUERY Current query string
    FZF_PROMPT Prompt string
    FZF_ACTION The name of the last action performed
    • This allows you to write sophisticated transformations like so

Script to dynamically resize the preview window

transformer='

1 line for info, another for prompt, and 2 more lines for preview window border

  lines=$(( FZF_LINES - FZF_MATCH_COUNT - 4 ))
  if [[ $FZF_MATCH_COUNT -eq 0 ]]; then
    echo "change-preview-window:hidden"
  elif [[ $lines -gt 3 ]]; then
    echo "change-preview-window:$lines"
  elif [[ $FZF_PREVIEW_LINES -ne 3 ]]; then
    echo "change-preview-window:3"
  fi
'
seq 10000 | fzf --preview 'seq {} 10000' --preview-window up \
                --bind "result:transform:$transformer" \
                --bind "resize:transform:$transformer"
```
  • And we're phasing out {fzf:prompt} and {fzf:action}
  • Changed mattn/go-runewidth dependency to rivo/uniseg for accurate results
    • Set --ambidouble if your terminal displays ambiguous width characters (e.g. box-drawing characters for borders) as 2 columns
    • RUNEWIDTH_EASTASIAN=1 is still respected for backward compatibility, but it's recommended that you use this new option instead
  • Bug fixes

v0.45.0

Compare Source

  • Added transform action to conditionally perform a series of actions

v0.44.1

Compare Source

  • Fixed crash when preview window is hidden on focus event

v0.44.0

Compare Source

  • (Experimental) Sixel image support in preview window (not available on Windows)
    • bin/fzf-preview.sh is added to demonstrate how to
      display an image using Kitty image protocol or Sixel. You can use it
      like so:
      fzf --preview='fzf-preview.sh {}'
  • (Experimental) iTerm2 inline image protocol support in preview window (not available on Windows)

v0.43.0

Compare Source

  • (Experimental) Added support for Kitty image protocol in the preview window
    (not available on Windows)
    fzf --preview='
      if file --mime-type {} | grep -qF image/; then

--transfer-mode=memory is the fastest option but if you want fzf to be able

to redraw the image on terminal resize or on 'change-preview-window',

you need to use --transfer-mode=stream.

  kitty icat --clear --transfer-mode=memory --unicode-placeholder --stdin=no --place=${FZF_PREVIEW_COLUMNS}x${FZF_PREVIEW_LINES}@&#8203;0x0 {} | sed \$d
else
  bat --color=always {}
fi

'

- (Experimental) `--listen` server can report program state in JSON format (`GET /`)
```sh

v0.42.0

Compare Source

  • Added new info style: --info=right
  • Added new info style: --info=inline-right
  • Added new border style thinblock which uses symbols for legacy computing
    one eighth block elements
    • Similarly to block, this style is suitable when using a different
      background color because the window is completely contained within the border.
      BAT_THEME=GitHub fzf --info=right --border=thinblock --preview-window=border-thinblock \
          --margin=3 --scrollbar=▏▕ --preview='bat --color=always --style=numbers {}' \
          --color=light,query:238,fg:238,bg:251,bg+:249,gutter:251,border:248,preview-bg:253
    • This style may not render correctly depending on the font and the
      terminal emulator.

v0.41.1

Compare Source

  • Fixed a bug where preview window is not updated when --disabled is set and
    a reload is triggered by change:reload binding

v0.41.0

Compare Source

  • Added color name preview-border and preview-scrollbar
  • Added new border style block which uses block elements
  • --scrollbar can take two characters, one for the main window, the other
    for the preview window
  • Putting it altogether:
    fzf-tmux -p 80% --padding 1,2 --preview 'bat --style=plain --color=always {}' \
        --color 'bg:237,bg+:235,gutter:237,border:238,scrollbar:236' \
        --color 'preview-bg:235,preview-border:236,preview-scrollbar:234' \
        --preview-window 'border-block' --border block --scrollbar '▌▐'
  • Bug fixes and improvements

v0.40.0

Compare Source

  • Added zero event that is triggered when there's no match

v0.39.0

Compare Source

  • Added one event that is triggered when there's only one match

v0.38.0

Compare Source

Open selected files in Vim

  fzf --multi --bind 'enter:become(vim {+})'

Open the file in Vim and go to the line

  git grep --line-number . |
      fzf --delimiter : --nth 3.. --bind 'enter:become(vim {1} +{2})'
  ```
    - This action is not supported on Windows
- `show-preview`
- `hide-preview`
  • Bug fixes
    • --preview-window 0,hidden should not execute the preview command until
      toggle-preview action is triggered

v0.37.0

Compare Source

  • Added a way to customize the separator of inline info
    fzf --info 'inline: ╱ ' --prompt '' --color prompt:bright-yellow
  • New event
    • focus - Triggered when the focus changes due to a vertical cursor
      movement or a search result update
      fzf --bind 'focus:transform-preview-label:echo [ {} ]' --preview 'cat {}'

Any action bound to the event runs synchronously and thus can make the interface sluggish

e.g. lolcat isn't one of the fastest programs, and every cursor movement in

fzf will be noticeably affected by its execution time

  fzf --bind 'focus:transform-preview-label:echo [ {} ] | lolcat -f' --preview 'cat {}'

Beware not to introduce an infinite loop

  seq 10 | fzf --bind 'focus:up' --cycle
  ```
  • New actions
    • change-border-label
    • change-preview-label
    • transform-border-label
    • transform-preview-label
  • Bug fixes and improvements

v0.36.0

Compare Source

  • Added --listen=HTTP_PORT option to start HTTP server. It allows external
    processes to send actions to perform via POST method.

v0.35.1

Compare Source

  • Fixed a bug where fzf with --tiebreak=chunk crashes on inverse match query
  • Fixed a bug where clicking above fzf would paste escape sequences

v0.35.0

Compare Source

  • Added start event that is triggered only once when fzf finder starts.
    Since fzf consumes the input stream asynchronously, the input list is not
    available unless you use --sync.
    seq 100 | fzf --multi --sync --bind 'start:last+select-all+preview(echo welcome)'
  • Added --border-label and --border-label-pos for putting label on the border

v0.34.0

Compare Source

  • Added support for adaptive --height. If the --height value is prefixed
    with ~, fzf will automatically determine the height in the range according
    to the input size.
    seq 1 | fzf --height ~70% --border --padding 1 --margin 1
    seq 10 | fzf --height ~70% --border --padding 1 --margin 1
    seq 100 | fzf --height ~70% --border --padding 1 --margin 1
    • There are a few limitations
      • Not compatible with percent top/bottom margin/padding

This is not allowed (top/bottom margin in percent value)

      fzf --height ~50% --border --margin 5%,10%

This is allowed (top/bottom margin in fixed value)

      fzf --height ~50% --border --margin 2,10%
      ```
    - fzf will not start until it can determine the right height for the input
      ```sh

fzf will open immediately

      (sleep 2; seq 10) | fzf --height 50%

fzf will open after 2 seconds

      (sleep 2; seq 10) | fzf --height ~50%
      (sleep 2; seq 1000) | fzf --height ~50%
      ```
  • Fixed tcell renderer used to render full-screen fzf on Windows
  • ~~--no-clear is deprecated. Use reload action instead.~~

v0.33.0

Compare Source

  • Added --scheme=[default|path|history] option to choose scoring scheme
    • (Experimental)
    • We updated the scoring algorithm in 0.32.0, however we have learned that
      this new scheme (default) is not always giving the optimal result
    • path: Additional bonus point is only given to the characters after
      path separator. You might want to choose this scheme if you have many
      files with spaces in their paths.
    • history: No additional bonus points are given so that we give more
      weight to the chronological ordering. This is equivalent to the scoring
      scheme before 0.32.0. This also sets --tiebreak=index.
  • ANSI color sequences with colon delimiters are now supported.
    printf "\e[38;5;208mOption 1\e[m\nOption 2" | fzf --ansi
    printf "\e[38:5:208mOption 1\e[m\nOption 2" | fzf --ansi
  • Support border-{up,down} as the synonyms for border-{top,bottom} in
    --preview-window
  • Added support for ANSI strikethrough
    printf "\e[9mdeleted" | fzf --ansi
    fzf --color fg+:strikethrough

v0.32.1

Compare Source

  • Fixed incorrect ordering of --tiebreak=chunk
  • fzf-tmux will show fzf border instead of tmux popup border (requires tmux 3.3)
    fzf-tmux -p70%
    fzf-tmux -p70% --color=border:bright-red
    fzf-tmux -p100%,60% --color=border:bright-yellow --border=horizontal --padding 1,5 --margin 1,0
    fzf-tmux -p70%,100% --color=border:bright-green --border=vertical

v0.32.0

Compare Source

  • Updated the scoring algorithm
    • Different bonus points to different categories of word boundaries
      (listed higher to lower bonus point)
      • Word after whitespace characters or beginning of the string
      • Word after common delimiter characters (/,:;|)
      • Word after other non-word characters

foo/bar.shis preferred overfoo-bar.shonbar`

  fzf --query=bar --height=4 << EOF
  foo-bar.sh
  foo/bar.sh
  EOF
  ```
  • Added a new tiebreak chunk
    • Favors the line with shorter matched chunk. A chunk is a set of
      consecutive non-whitespace characters.
    • Unlike the default length, this scheme works well with tabular input

length prefers item #​1, because the whole line is shorter,

chunk prefers item #​2, because the matched chunk ("foo") is shorter

  fzf --height=6 --header-lines=2 --tiebreak=chunk --reverse --query=fo << "EOF"
  N | Field1 | Field2 | Field3
  - | ------ | ------ | ------
  1 | hello  | foobar | baz
  2 | world  | foo    | bazbaz
  EOF
  ```
- If the input does not contain any spaces, `chunk` is equivalent to
  `length`. But we're not going to set it as the default because it is
  computationally more expensive.
  • Bug fixes and improvements

v0.31.0

Compare Source

  • Added support for an alternative preview window layout that is activated
    when the size of the preview window is smaller than a certain threshold.

v0.30.0

Compare Source

  • Fixed cursor flickering over the screen by hiding it during rendering
  • Added --ellipsis option. You can take advantage of it to make fzf
    effectively search non-visible parts of the item.

v0.29.0

Compare Source

  • Added change-preview(...) action to change the --preview command
    • cf. preview(...) is a one-off action that doesn't change the default
      preview command
  • Added change-preview-window(...) action
    • You can rotate through the different options separated by |
      fzf --preview 'cat {}' --preview-window right:40% \
          --bind 'ctrl-/:change-preview-window(right,70%|down,40%,border-top|hidden|)'
  • Fixed rendering of the prompt line when overflow occurs with --info=inline

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.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from f3fe972 to b8a7f4d Compare December 26, 2022 10:56
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from b8a7f4d to 8087ec5 Compare January 16, 2023 17:01
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.35.1 chore(deps): update dependency junegunn/fzf to v0.36.0 Jan 16, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 8087ec5 to 3964057 Compare January 24, 2023 14:31
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.36.0 chore(deps): update dependency junegunn/fzf to v0.37.0 Jan 24, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 3964057 to c2283e9 Compare February 15, 2023 18:00
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.37.0 chore(deps): update dependency junegunn/fzf to v0.38.0 Feb 15, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from c2283e9 to ddf69a1 Compare May 17, 2023 22:10
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.38.0 chore(deps): update dependency junegunn/fzf to v0.40.0 May 17, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from ddf69a1 to 5808ddb Compare May 29, 2023 00:06
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.40.0 chore(deps): update dependency junegunn/fzf to v0.41.1 May 29, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 5808ddb to 7b6ccd1 Compare June 15, 2023 17:59
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.41.1 chore(deps): update dependency junegunn/fzf to v0.42.0 Jun 15, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 7b6ccd1 to 0d16f33 Compare October 15, 2023 08:21
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.42.0 chore(deps): update dependency junegunn/fzf to v0.43.0 Oct 15, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 0d16f33 to 7418be0 Compare November 13, 2023 05:27
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.43.0 chore(deps): update dependency junegunn/fzf to v0.44.0 Nov 13, 2023
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.44.0 chore(deps): update dependency junegunn/fzf to v0.44.1 Nov 18, 2023
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 7418be0 to f2a2191 Compare November 18, 2023 11:24
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from f2a2191 to 0e42e02 Compare January 2, 2024 05:37
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.44.1 chore(deps): update dependency junegunn/fzf to v0.45.0 Jan 2, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 0e42e02 to 0ca26a6 Compare March 2, 2024 11:25
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.45.0 chore(deps): update dependency junegunn/fzf to v0.46.1 Mar 2, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 0ca26a6 to 7f28bed Compare March 11, 2024 08:42
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.46.1 chore(deps): update dependency junegunn/fzf to v0.47.0 Mar 11, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 7f28bed to c2477b4 Compare March 14, 2024 05:44
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.47.0 chore(deps): update dependency junegunn/fzf to v0.48.0 Mar 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.48.0 chore(deps): update dependency junegunn/fzf to v0.48.1 Mar 17, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from c2477b4 to 2c6777f Compare March 17, 2024 14:42
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 2c6777f to b3b1215 Compare April 5, 2024 02:44
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.48.1 chore(deps): update dependency junegunn/fzf to v0.49.0 Apr 5, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from b3b1215 to 3f71fde Compare April 14, 2024 17:58
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.49.0 chore(deps): update dependency junegunn/fzf to v0.50.0 Apr 14, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 3f71fde to b0bac8d Compare May 1, 2024 08:17
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.50.0 chore(deps): update dependency junegunn/fzf to v0.51.0 May 1, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from b0bac8d to d86e5fc Compare May 7, 2024 23:49
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.51.0 chore(deps): update dependency junegunn/fzf to v0.52.0 May 7, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from d86e5fc to 259a1d1 Compare May 13, 2024 17:54
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.52.0 chore(deps): update dependency junegunn/fzf to v0.52.1 May 13, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 259a1d1 to f901d09 Compare June 7, 2024 05:36
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.52.1 chore(deps): update dependency junegunn/fzf to v0.53.0 Jun 7, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from f901d09 to 24e63b0 Compare July 9, 2024 05:21
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.53.0 chore(deps): update dependency junegunn/fzf to v0.54.0 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/junegunn-fzf-0.x branch from 24e63b0 to c359c0c Compare July 20, 2024 05:56
@renovate renovate bot changed the title chore(deps): update dependency junegunn/fzf to v0.54.0 chore(deps): update dependency junegunn/fzf to v0.54.1 Jul 20, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants