File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ Changes for v3.4.0 (2024-06-16)
2
+ ===============================
3
+
4
+ - No stdin for python calls from bash completion functions (#488)
5
+
6
+ Prevents usage of stdin by (python) executables that are called
7
+ during completion generation. This prevents the completion locking up
8
+ the entire shell when the python script is broken i.e. it enters an
9
+ interactive mode (REPL) instead of generating the completions, as
10
+ expected.
11
+
12
+ - Localize shell variable REPLY to avoid overwriting users’ value
13
+ (#489)
14
+
15
+ The variable REPLY is used by default by the ``read `` shell builtin
16
+ to store the return value, and like all bash/zsh variables, is scoped
17
+ globally. This change allows this variable to be used for other needs
18
+ by appropriately scoping its internal use by an argcomplete utility
19
+ function that uses ``read ``.
20
+
1
21
Changes for v3.3.0 (2024-04-14)
2
22
===============================
3
23
You can’t perform that action at this time.
0 commit comments