File tree 1 file changed +49
-0
lines changed
1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,55 @@ $ pip install --user --upgrade --pre libtmux
12
12
13
13
- _ Insert changes/features/fixes for next release here_
14
14
15
+ # Breaking changes
16
+
17
+ - Deprecated individual item lookups ({issue}` 390 ` )
18
+
19
+ - Removed key lookups from ` EnvironmentMixin.show_environment(key: str) `
20
+
21
+ Only ` EnvironmentMixin.show_environment() ` (without an argument) exists, and
22
+ it still returns a ` dict ` .
23
+
24
+ - Add key lookups via ` EnvironmentMixin.getenv(key: str) `
25
+
26
+ ``` python
27
+ # Before
28
+ server.show_environment(' DISPLAY' )
29
+
30
+ # After
31
+ server.getenv(' DISPLAY' )
32
+
33
+ # Before
34
+ session.show_environment(' DISPLAY' )
35
+
36
+ # After
37
+ session.getenv(' DISPLAY' )
38
+ ```
39
+
40
+ - Removed key lookups from `Session.show_options(key: str )`
41
+
42
+ ```python
43
+ session.show_options() # still returns dict, without an argument
44
+
45
+ # Old
46
+ session.show_options(' DISPLAY' )
47
+
48
+ # Now
49
+ session.show_option(' DISPLAY' )
50
+ ```
51
+
52
+ - Removed key lookups from `Window.show_window_options(key: str )`
53
+
54
+ ```python
55
+ window.show_window_options() # still returns dict, without an argument
56
+
57
+ # Old
58
+ window.show_window_options(' DISPLAY' )
59
+
60
+ # Now
61
+ window.show_window_option(' DISPLAY' )
62
+ ```
63
+
15
64
# # libtmux 0.12.0 (2022-07-13)
16
65
17
66
# # Compatibility
You can’t perform that action at this time.
0 commit comments