mirror of
https://github.com/junegunn/fzf.git
synced 2025-07-26 09:42:02 -07:00
Update CHANGELOG
This commit is contained in:
26
CHANGELOG.md
26
CHANGELOG.md
@@ -3,6 +3,17 @@ CHANGELOG
|
|||||||
|
|
||||||
0.43.0
|
0.43.0
|
||||||
------
|
------
|
||||||
|
- `--listen` server can report program state in JSON format (`GET /`)
|
||||||
|
```sh
|
||||||
|
# fzf server started in "headless" mode
|
||||||
|
fzf --listen 6266 2> /dev/null
|
||||||
|
|
||||||
|
# Get program state
|
||||||
|
curl localhost:6266 | jq .
|
||||||
|
|
||||||
|
# Increase the number of items returned (default: 100)
|
||||||
|
curl localhost:6266?limit=1000 | jq .
|
||||||
|
```
|
||||||
- `--listen` server can be secured by setting `$FZF_API_KEY` environment
|
- `--listen` server can be secured by setting `$FZF_API_KEY` environment
|
||||||
variable.
|
variable.
|
||||||
```sh
|
```sh
|
||||||
@@ -14,16 +25,13 @@ CHANGELOG
|
|||||||
# Client
|
# Client
|
||||||
curl localhost:6266 -H "x-api-key: $FZF_API_KEY" -d 'change-query(yo)'
|
curl localhost:6266 -H "x-api-key: $FZF_API_KEY" -d 'change-query(yo)'
|
||||||
```
|
```
|
||||||
- `--listen` server can report program state in JSON format (`GET /`)
|
|
||||||
```sh
|
|
||||||
# fzf server started in "headless" mode
|
|
||||||
fzf --listen 6266 2> /dev/null
|
|
||||||
|
|
||||||
# Get program state
|
|
||||||
curl localhost:6266 | jq .
|
|
||||||
```
|
|
||||||
- Added `toggle-header` action
|
- Added `toggle-header` action
|
||||||
- Bug fixes
|
- Shell extensions
|
||||||
|
- bash key bindings no longer requires perl; it will use awk or mawk
|
||||||
|
instead if perl is not found
|
||||||
|
- Basic context-aware completion for ssh command
|
||||||
|
- Applied `--scheme=path` for better ordering of the result
|
||||||
|
- Bug fixes and improvements
|
||||||
|
|
||||||
0.42.0
|
0.42.0
|
||||||
------
|
------
|
||||||
|
Reference in New Issue
Block a user