Skip to content

Commit

Permalink
v3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Jun 16, 2024
1 parent 52d267d commit 7816191
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Changes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Changes for v3.4.0 (2024-06-16)
===============================

- No stdin for python calls from bash completion functions (#488)

Prevents usage of stdin by (python) executables that are called
during completion generation. This prevents the completion locking up
the entire shell when the python script is broken i.e. it enters an
interactive mode (REPL) instead of generating the completions, as
expected.

- Localize shell variable REPLY to avoid overwriting users’ value
(#489)

The variable REPLY is used by default by the ``read`` shell builtin
to store the return value, and like all bash/zsh variables, is scoped
globally. This change allows this variable to be used for other needs
by appropriately scoping its internal use by an argcomplete utility
function that uses ``read``.

Changes for v3.3.0 (2024-04-14)
===============================

Expand Down

0 comments on commit 7816191

Please sign in to comment.