1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
|
# Changelog
For instructions on installing the development version of libtmux, refer to
[development releases](https://libtmux.git-pull.com/quickstart.html#developmental-releases).
To install via [pip](https://pip.pypa.io/en/stable/), use:
```console
$ pip install --user --upgrade --pre libtmux
```
## libtmux 0.47.x (Yet to be released)
<!-- To maintainers and contributors: Please add notes for the forthcoming version below -->
- _Future release notes will be placed here_
## libtmux 0.46.2 (2025-05-26)
### Development
- Add `StrPath` type support for `start_directory` parameters (#596, #597, #598):
- `Server.new_session`: Accept PathLike objects for session start directory
- `Session.new_window`: Accept PathLike objects for window start directory
- `Pane.split` and `Pane.split_window`: Accept PathLike objects for pane start directory
- `Window.split` and `Window.split_window`: Accept PathLike objects for pane start directory
- Enables `pathlib.Path` objects alongside strings for all start directory parameters
- Includes comprehensive tests for all parameter types (None, empty string, string paths, PathLike objects)
Thank you @Data5tream for the initial commit in #596!
## libtmux 0.46.1 (2025-03-16)
_Maintenance only, no bug fixes or new features_
A version branch has been created at v0.46.x, the next release of v0.47.0 may
be a few months in waiting (watchers / snapshots are in development in #587).
### Documentation
- Typo fix for `Pane.send_keys` (#593), thank you @subbyte!
## libtmux 0.46.0 (2025-02-25)
### Breaking
#### Imports removed from libtmux.test (#580)
Root-level of imports from `libtmux.test` are no longer possible.
```python
# Before 0.46.0
from libtmux.test import namer
```
```python
# From 0.46.0 onward
from libtmux.test.named import namer
```
Same thing with constants:
```python
# Before 0.46.0
from libtmux.test import (
RETRY_INTERVAL_SECONDS,
RETRY_TIMEOUT_SECONDS,
TEST_SESSION_PREFIX
)
```
```python
# From 0.46.0 onward
from libtmux.test.constants import (
RETRY_INTERVAL_SECONDS,
RETRY_TIMEOUT_SECONDS,
TEST_SESSION_PREFIX
)
```
### Development
#### Test helpers: Increased coverage (#580)
Several improvements to the test helper modules:
- Enhanced `EnvironmentVarGuard` in `libtmux.test.environment` to better handle variable cleanup
- Added comprehensive test suites for test constants and environment utilities
- Improved docstrings and examples in `libtmux.test.random` with test coverage annotations
- Fixed potential issues with environment variable handling during tests
- Added proper coverage markers to exclude type checking blocks from coverage reports
## libtmux 0.45.0 (2025-02-23)
### Breaking Changes
#### Test helpers: Refactor
Test helper functionality has been split into focused modules (#578):
- `libtmux.test` module split into:
- `libtmux.test.constants`: Test-related constants (`TEST_SESSION_PREFIX`, etc.)
- `libtmux.test.environment`: Environment variable mocking
- `libtmux.test.random`: Random string generation utilities
- `libtmux.test.temporary`: Temporary session/window management
**Breaking**: Import paths have changed. Update imports:
```python
# Old (0.44.x and earlier)
from libtmux.test import (
TEST_SESSION_PREFIX,
get_test_session_name,
get_test_window_name,
namer,
temp_session,
temp_window,
EnvironmentVarGuard,
)
```
```python
# New (0.45.0+)
from libtmux.test.constants import TEST_SESSION_PREFIX
from libtmux.test.environment import EnvironmentVarGuard
from libtmux.test.random import get_test_session_name, get_test_window_name, namer
from libtmux.test.temporary import temp_session, temp_window
```
### Development
- CI: Check for runtime dependencies (#574)
Kudos @ppentchev for inspiration on the command
([comment](https://github.com/tmux-python/libtmux/pull/572#issuecomment-2663642923)).
## libtmux 0.44.2 (2025-02-17)
### Bug fix
- Fix `typing_extensions` issue by wrapping it in `TYPE_CHECKING`, continuation of #564, via #572.
### Development
- Improved test organization and coverage in `test_common.py` (#570):
- Consolidated version-related tests into parametrized fixtures using NamedTuples
- Added comprehensive test cases for various version formats (master, next, OpenBSD, dev, rc)
- Improved test readability with clear test IDs and logical grouping
- Consistent use of pytest parametrize convention across test suite
- Fix broken test for `test_window_rename` (#570)
## libtmux 0.44.1 (2025-02-17)
### Packaging
- Types: Only import `typing_extensions` when necessary, via #563, @ppentchev!
## libtmux 0.44.0 (2025-02-16)
### New Features
#### Context Managers support (#566)
Added context manager support for all major object types:
- `Server`: Automatically kills the server when exiting the context
- `Session`: Automatically kills the session when exiting the context
- `Window`: Automatically kills the window when exiting the context
- `Pane`: Automatically kills the pane when exiting the context
Example usage:
```python
with Server() as server:
with server.new_session() as session:
with session.new_window() as window:
with window.split() as pane:
pane.send_keys('echo "Hello"')
# Do work with the pane
# Everything is cleaned up automatically when exiting contexts
```
This makes it easier to write clean, safe code that properly cleans up tmux resources.
## libtmux 0.43.0 (2025-02-15)
### New Features
#### Server Initialization Callbacks
Server now accepts 2 new optional params, `socket_name_factory` and `on_init` callbacks (#565):
- `socket_name_factory`: Callable that generates unique socket names for new servers
- `on_init`: Callback that runs after server initialization
- Useful for creating multiple servers with unique names and tracking server instances
- Socket name factory is tried after socket_name, maintaining backward compatibility
#### New test fixture: `TestServer`
Add `TestServer` pytest fixture for creating temporary tmux servers (#565):
- Creates servers with unique socket names that clean up after themselves
- Useful for testing interactions between multiple tmux servers
- Includes comprehensive test coverage and documentation
- Available in doctest namespace
### Documentation
- Fix links to the "Topics" section
- More docs for "Traversal" Topic (#567)
## libtmux 0.42.1 (2024-02-15)
### Bug fixes
- tests: Import `Self` in a `TYPE_CHECKING` guard to prevent dependency issues.
Via #562, Thank you @ppentchev!
### Development
- dev dependencies: Include `typing-extensions` for Python version < 3.11 via
the `testing` and `lint` groups, via #564.
## libtmux 0.42.0 (2025-02-02)
### Bug fixes
- `tmux_cmd`: Migrate to to `text=True`
This deprecates usage of `console_to_str()` and `str_from_console()`.
Resolves #558 via #560.
- compat: Remove `console_to_str()` and `str_from_console()`
These are both deprecated artifacts of libtmux' Python 2.x compatiblity layer.
## libtmux 0.41.0 (2025-02-02)
### Fixes
- {meth}`Server.__repr__()`: Use {meth}`os.geteuid()` for default `socket_path`. Thank you @lazysegtree!
(#557, resolves #556)
### Documentation
- `Server`: Fix `colors` docstring to note it accepts `88` or `256`, Thank you
@TravisDart! (via #544)
### Development
#### chore: Implement PEP 563 deferred annotation resolution (#555)
- Add `from __future__ import annotations` to defer annotation resolution and reduce unnecessary runtime computations during type checking.
- Enable Ruff checks for PEP-compliant annotations:
- [non-pep585-annotation (UP006)](https://docs.astral.sh/ruff/rules/non-pep585-annotation/)
- [non-pep604-annotation (UP007)](https://docs.astral.sh/ruff/rules/non-pep604-annotation/)
For more details on PEP 563, see: https://peps.python.org/pep-0563/
## libtmux 0.40.1 (2024-12-24)
### Bug fix
- `Server.new_session`: Fix handling of environmental variables passed to new
sessions. Thank you @ppentchev! (#553)
## libtmux 0.40.0 (2024-12-20)
_Maintenance only, no bug fixes or new features_
### Breaking
- `_global` renamed to `global_`
### Development
- Aggressive automated lint fixes via `ruff` (#550)
via ruff v0.8.4, all automated lint fixes, including unsafe and previews were applied for Python 3.9:
```sh
ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format .
```
- Tests: Stability fixes for legacy `test_select_pane` test (#552)
## libtmux 0.39.0 (2024-11-26)
_Maintenance only, no bug fixes or new features_
### Breaking changes
- Drop Python 3.8. end of life was October 7th, 2024 (#548)
tmuxp 1.48.0 was the last release for Python 3.8.
The minimum python for tmuxp as of 1.49.0 is Python 3.9
## libtmux 0.38.1 (2024-11-26)
- Keep minimum Python version at 3.8 for now.
## libtmux 0.38.0 (2024-11-26)
### Breaking changes
#### Project and package management: poetry to uv (#547)
[uv] is the new package and project manager for the project, replacing Poetry.
[uv]: https://github.com/astral-sh/uv
#### Build system: poetry to hatchling (#547)
[Build system] moved from [poetry] to [hatchling].
[Build system]: https://packaging.python.org/en/latest/tutorials/packaging-projects/#choosing-a-build-backend
[poetry]: https://github.com/python-poetry/poetry
[hatchling]: https://hatch.pypa.io/latest/
### Development
- Code quality: Use f-strings in more places (#540)
via [ruff 0.4.2](https://github.com/astral-sh/ruff/blob/v0.4.2/CHANGELOG.md).
[uv]: https://github.com/astral-sh/uv
### Documentation
- Fix docstrings in `query_list` for `MultipleObjectsReturned` and
`ObjectDoesNotExist`.
## libtmux 0.37.0 (04-21-2024)
_Maintenance only, no bug fixes or new features_
### Testing
- Add `pytest-xdist` ([PyPI](https://pypi.org/project/pytest-xdist/), [GitHub](https://github.com/pytest-dev/pytest-xdist)) for parallel testing (#522).
pytest:
```console
py.test -n auto
```
pytest-watcher:
```console
env PYTEST_ADDOPTS='-n auto' make start
```
entr(1):
```console
make watch_test test="-n auto"
```
- Improve flakey tests:
- `retry_until()` tests: Relax clock in `assert` (#522).
- `tests/test_pane.py::test_capture_pane_start`: Use `retry_until()` to poll,
improve correctness of test (#522).
### Documentation
- Automatically linkify links that were previously only text.
### Development
- poetry: 1.8.1 -> 1.8.2
See also: https://github.com/python-poetry/poetry/blob/1.8.2/CHANGELOG.md
## libtmux 0.36.0 (2024-03-24)
_Maintenance only, no bug fixes or new features_
### Development
- Aggressive automated lint fixes via `ruff` (#539)
via ruff v0.3.4, all automated lint fixes, including unsafe and previews were applied:
```sh
ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format .
```
Branches were treated with:
```sh
git rebase \
--strategy-option=theirs \
--exec 'poetry run ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; poetry run ruff format .; git add src tests; git commit --amend --no-edit' \
origin/master
```
## libtmux 0.35.1 (2024-03-23)
### Bug fix
- {attr}`Server.attached_sessions` fix for when multiple clients attached, thank you @patrislav1 (#537)
- #538 fix to `QueryList`.
## libtmux 0.35.0 (2024-03-17)
### Breaking changes
- Eliminate redundant targets / `window_index`'s across codebase (#536).
## libtmux 0.34.0 (2024-03-17)
### Breaking changes
#### Command target change (#535)
Commands: All `cmd()` methods using custom or overridden targets must use the keyword argument
`target`. This avoids entanglement with inner shell values that include `-t` for
other purposes. These methods include:
- {meth}`Server.cmd()`
- {meth}`Session.cmd()`
- {meth}`Window.cmd()`
- {meth}`Pane.cmd()`
## libtmux 0.33.0 (2024-03-17)
### Breaking changes
#### Improved new sessions (#532)
- `Session.new_window()`:
- Learned `direction`, via {class}`~libtmux.constants.WindowDirection`).
- [PEP 3102] keyword-only arguments after window name (#534).
- Added {meth}`Window.new_window()` shorthand to create window based on that
window's position.
[PEP 3102]: https://www.python.org/dev/peps/pep-3102/
#### Improved window splitting (#532)
- `Window.split_window()` to {meth}`Window.split()`
- Deprecate `Window.split_window()`
- `Pane.split_window()` to {meth}`Pane.split()`
- Deprecate `Pane.split_window()`
- Learned `direction`, via {class}`~libtmux.constants.PaneDirection`).
- Deprecate `vertical` and `horizontal` in favor of `direction`.
- Learned `zoom`
#### Tweak: Pane position (#532)
It's now possible to retrieve the position of a pane in a window via a
`bool` helper::
- {attr}`Pane.at_left`
- {attr}`Pane.at_right`
- {attr}`Pane.at_bottom`
- {attr}`Pane.at_right`
### Development
- poetry: 1.7.1 -> 1.8.1
See also: https://github.com/python-poetry/poetry/blob/1.8.1/CHANGELOG.md
## libtmux 0.32.0 (2024-03-01)
_Maintenance only, no bug fixes or new features_
### Packaging
- Add implicit imports to `__init__.py` (#531), thank you @ssbarnea.
### Development
- ruff 0.2.2 -> 0.3.0
## libtmux 0.31.0 (2024-02-17)
### Cleanups (#527)
- Streamline `{Server,Session,Window,Pane}.cmd()`, across all usages to:
- Use `cmd: str` as first positional
- Removed unused keyword arguments `**kwargs`
### Renamings (#527)
- `Session.attached_window` renamed to {meth}`Session.active_window`
- `Session.attached_window` deprecated
- `Session.attached_pane` renamed to {meth}`Session.active_pane`
- `Session.attached_pane` deprecated
- `Window.attached_pane` renamed to {meth}`Window.active_pane`
- `Window.attached_pane` deprecated
### Improvements (#527)
- `Server.attached_windows` now uses `QueryList`'s `.filter()`
### Documentation (#527)
- Document `.cmd` in README and quickstart
- Add doctests and improve docstrings to `cmd()` methods across:
- {meth}`Server.cmd()`
- {meth}`Session.cmd()`
- {meth}`Window.cmd()`
- {meth}`Pane.cmd()`
### Post-release: v0.31.0post0 (2024-02-17)
- Documentation updates
## libtmux 0.30.2 (2024-02-16)
### Development
- Updated `TMUX_MAX_VERSION` from 3.3 to 3.4
## libtmux 0.30.1 (2024-02-16)
### Fixes
- Adjusted pytest plugin and test module: Updated to use renamed methods from
version 0.30.0.
## libtmux 0.30.0 (2024-02-16)
### Additions
- Introduced {meth}`Pane.kill()` method
### Modifications
- `Window.select_window()` renamed to {meth}`Window.select()`
- Deprecated `Window.select_window()`
- `Pane.select_pane()` renamed to {meth}`Pane.select()`
- Deprecated `Pane.pane_select()`
- `Session.attach_session()` renamed to {meth}`Session.attach()`
- Deprecated `Session.attach_session()`
- `Server.kill_server()` renamed to {meth}`Server.kill()`
- Deprecated `Server.kill_server()`
- `Session.kill_session()` renamed to {meth}`Session.kill()`
- Deprecated `Session.kill_session()`
- `Window.kill_window()` renamed to {meth}`Window.kill()`
- Deprecated `Window.kill_window()`
### Enhancements
- {meth}`Server.new_session()`: Support environment variables
- {meth}`Window.split_window()`: Support `size` via `-l`
Supports columns/rows (`size=10`) and percentage (`size='10%'`)
## libtmux 0.29.0 (2024-02-16)
#### Fixes
- Use {exc}`DeprecationWarning` for APIs set to be deprecated (#526)
#### Testing
- pytest: Ignore {exc}`DeprecationWarning` by default (#526)
## libtmux 0.28.1 (2024-02-15)
_Maintenance only, no bug fixes or new features_
#### Testing
- CI: Bump actions to node 20+ versions
#### Documentation
- Refine docs and add migration for v0.28.0
## libtmux 0.28.0 (2024-02-14)
### Breaking changes
#### Detached / unselected by default (#523)
To ensure consistency and principle of least surprise, keep these set to
not use `-a` unless explicitly specified.
Breaking: {meth}`Session.new_window()` + {meth}`Window.split_window()` no longer attaches by default.
- 0.28.0 and greater: Defaults to `attach=False`.
- 0.27.1 and below: Defaults to `attach=True`.
To keep the old behavior in 0.28.0 and beyond, pass `attach=True` explicitly.
### Improved resizing (#523)
- Breaking: `Pane.resize_pane()` renamed to {meth}`Pane.resize()` (#523)
This convention will be more consistent with {meth}`Window.resize()`.
- Breaking: {meth}`Pane.resize()`'s params changed (#523)
- No longer accepts `-U`, `-D`, `-L`, `-R` directly, instead accepts
{class}`~libtmux.constants.ResizeAdjustmentDirection`).
- {meth}`Pane.resize()`:
- Accept adjustments via `adjustment_direction` w/
{class}`~libtmux.constants.ResizeAdjustmentDirection` + `adjustment`.
- Learned to accept manual `height` and / or `width` (columns/rows or percentage)
- Zoom (and unzoom)
- {meth}`Window.resize()`: Newly added
Tip: If {meth}`Pane.resize()` was not taking affect <= 0.27.1, try to resize with
{meth}`Window.resize()` first.
### Fixes
- {meth}`Window.refresh()` and {meth}`Pane.refresh()`: Refresh more underlying state (#523)
- {meth}`Obj._refresh`: Allow passing args (#523)
e.g. `-a` (all) to `list-panes` and `list-windows`
- `Server.panes`: Fix listing of panes (#523)
Would list only panes in attached session, rather than all in a server.
### Improvement
- Pane, Window: Improve parsing of option values that return numbers
(#520)
- `Obj._refresh`: Allow passing `list_extra_args` to ensure `list-windows` and
`list-panes` can return more than the target (#523)
### Tests
- pytest: Fix `usefixture` warning (#519)
- ci: Add tmux 3.4 to test matrix (#909)
## libtmux 0.27.1 (2024-02-07)
### Packaging
- Include `MIGRATION` in source distribution tarball (#517, for #508)
## libtmux 0.27.0 (2024-02-07)
### Improvement
- QueryList typings (#515)
- This improves the annotations in descendant objects such as:
- `Server.sessions`
- `Session.windows`
- `Window.panes`
- Bolster tests (ported from `libvcs`): doctests and pytests
## libtmux 0.26.0 (2024-02-06)
### Breaking changes
- `get_by_id()` (already deprecated) keyword argument renamed from `id` to
`Server.get_by_id(session_id)`, `Session.get_by_id(window_id)`, and `Window.get_by_id(pane_id)` (#514)
### Documentation
- Various docstring fixes and tweaks (#514)
### Development
- Strengthen linting (#514)
- Add flake8-commas (COM)
- https://docs.astral.sh/ruff/rules/#flake8-commas-com
- https://pypi.org/project/flake8-commas/
- Add flake8-builtins (A)
- https://docs.astral.sh/ruff/rules/#flake8-builtins-a
- https://pypi.org/project/flake8-builtins/
- Add flake8-errmsg (EM)
- https://docs.astral.sh/ruff/rules/#flake8-errmsg-em
- https://pypi.org/project/flake8-errmsg/
### CI
- Move CodeQL from advanced configuration file to GitHub's default
## libtmux 0.25.0 (2023-11-25)
### Improvement
- `Server.__eq__`, `Session.__eq__`, `Window.__eq__`, `Pane.__eq__` now returns `False` instead of raising `AssertionError` when type mismatches (#505, #510)
Thank you @m1guelperez for `Window.__eq__`! (#505)
### Development
- ci: Add pydocstyle rule to ruff (#509)
### Documentation
- Add docstrings to functions, methods, classes, and packages (#509)
## libtmux 0.24.1 (2023-11-23)
### Packaging
- Remove `requirements/` folder, which was unused and deprecated by
pyproject.toml (#507)
- pyproject: Add `gp-libs` to `test` dependency group
## libtmux 0.24.0 (2023-11-19)
_Maintenance only, no bug fixes or new features_
### Breaking changes
- Python 3.7 Dropped (#497)
### Packaging
- Move pytest configuration to `pyproject.toml` (#499)
- Poetry: 1.5.1 -> 1.6.1 (#497), 1.6.1 -> 1.7.0 (direct to trunk)
See also: https://github.com/python-poetry/poetry/blob/1.7.0/CHANGELOG.md
- Packaging (poetry): Fix development dependencies
Per [Poetry's docs on managing dependencies] and `poetry check`, we had it wrong: Instead of using extras, we should create these:
```toml
[tool.poetry.group.group-name.dependencies]
dev-dependency = "1.0.0"
```
Which we now do.
[Poetry's docs on managing dependencies]: https://python-poetry.org/docs/master/managing-dependencies/
### Development
- Move formatting from `black` to [`ruff format`] (#506)
This retains the same formatting style of `black` while eliminating a
dev dependency by using our existing rust-based `ruff` linter.
[`ruff format`]: https://docs.astral.sh/ruff/formatter/
- CI: Update action packages to fix warnings
- [dorny/paths-filter]: 2.7.0 -> 2.11.1
- [codecov/codecov-action]: 2 -> 3
[dorny/paths-filter]: https://github.com/dorny/paths-filter
[codecov/codecov-action]: https://github.com/codecov/codecov-action
## libtmux 0.23.2 (2023-09-09)
_Maintenance only, no bug fixes or new features_
### Breaking changes
- Cut last python 3.7 release (EOL was June 27th, 2023)
For security updates, a 0.23.x branch can be maintained for a limited time,
if necessary.
## libtmux 0.23.1 (2023-09-02)
_Maintenance only, no bug fixes or new features_
### Development
- Automated typo fixes from [typos-cli]:
```console
typos --format brief --write-changes
```
[typos-cli]: https://github.com/crate-ci/typos
- ruff: Remove ERA / `eradicate` plugin
This rule had too many false positives to trust. Other ruff rules have been beneficial.
## libtmux 0.23.0 (2023-08-20)
_Maintenance only, no bug fixes or new features_
### Development
- Code quality improved via [ruff] rules (#488)
This includes fixes made by hand, and with ruff's automated fixes. Despite
selecting additional rules, which include import sorting, ruff runs nearly
instantaneously when checking the whole codebase.
### Post-release: v0.23.0post0 (2023-08-20)
- Fixes code comments cleaned up by `ruff`, but missed in QA. In the future,
even when using an automated tool, we will review more thoroughly.
### Post-release: v0.23.0post1 (2023-08-26)
- Fixes for more `ERA001` issues.
### Post-release: v0.23.0post2 (2023-08-28)
- Yet more `ERA001` fixes.
## libtmux 0.22.2 (2023-08-20)
### Development
- build system: Remove `setuptools` requirement (#495, in related to #493, #494)
## libtmux 0.22.1 (2023-05-28)
_Maintenance only, no bug fixes or new features_
### Development
- Add back `black` for formatting
This is still necessary to accompany `ruff`, until it replaces black.
## libtmux 0.22.0 (2023-05-27)
_Maintenance only, no bug fixes or new features_
### Internal improvements
- Move formatting, import sorting, and linting to [ruff].
This rust-based checker has dramatically improved performance. Linting and
formatting can be done almost instantly.
This change replaces black, isort, flake8 and flake8 plugins.
- poetry: 1.4.0 -> 1.5.0
See also: https://github.com/python-poetry/poetry/releases/tag/1.5.0
[ruff]: https://ruff.rs
## libtmux 0.21.1 (2023-04-07)
### Development
- Update mypy to 1.2.0
### Fixes
- SkipDefaultFieldsReprMixin: Fix typing for mypy 1.2.0
## libtmux 0.21.0 (2023-01-29)
### Breaking internal change
- Default format separator (`LIBTMUX_TMUX_FORMAT_SEPARATOR`): `|` -> `␞` (#475,
in re: #471, #472)
Fixes `buffer_sample` with pipes causing `fetch_objs()`-powered listings to fail unexpectedly.
## libtmux 0.20.0 (2023-01-15)
### What's new
- Server.new_session: Accept `x` and `y`, thanks
@rockandska (#469)
- New test fixture: `session_params`. The dict is used directly in the `session`
pytest fixture (#470)
## libtmux 0.19.1 (2022-01-07)
### Fixes
- `Window.set_window_option()`: Remove `.refresh()` (#467)
See also: https://github.com/tmux-python/tmuxp/issues/860
## libtmux 0.19.0 (2022-01-07)
### New features
- `pane.capture_pane()` learned to accept `start` and `end` line numbers (#465)
## libtmux 0.18.3 (2023-01-07)
### Improvement
- `fetch_objs` now raises `ObjectDoesNotExist` with detailed information on
lookup that failed (#466)
## libtmux 0.18.2 (2022-12-30)
### Fixes
- Server: Launching of new session with default socket (#857)
## libtmux 0.18.1 (2022-12-28)
### Fixes
- Window.panes: Fix docstring
- Remove unused code documentation
## libtmux 0.18.0 (2022-12-27)
### Breaking
- Server: Add `__repr__` and set `socket_path` if none set.
Before (0.17 and below):
```python
<libtmux.server.Server object at ...>
```
New `__repr__` (0.18+):
```python
Server(socket_name=test)
```
```python
Server(socket_path=/tmp/tmux-1000/default)
```
## libtmux 0.17.2 (2022-12-27)
- Server: Move `_list_panes` and `_update_panes` to deprecated
## libtmux 0.17.1 (2022-12-27)
### Fixes
- Documentation fixes
- Add deprecation warning to `Server.children`, `Session.children`,
`Window.children`.
## libtmux 0.17.0 (2022-12-26)
### Breaking changes (#426)
- Finding objects / relations
- 0.16 and below: `session._windows()`, `session.list_windows()`, etc.
0.17 and after: {attr}`session.windows <libtmux.Session.windows>`
- 0.16 and below: `session.find_where({'window_name': my_window})`
0.17 and after: {meth}`session.windows.get(window_name=my_window, default=None) <libtmux.Session.windows>`
- If not found and not `default`, raises {exc}`~libtmux._internal.query_list.ObjectDoesNotExist`
- If multiple objects found, raises {exc}`~libtmux._internal.query_list.MultipleObjectsReturned`
- 0.16 and below: `session.where({'window_name': my_window})`
0.17 and after: {meth}`session.windows.filter(window_name=my_window) <libtmux.Session.windows>`
- Accessing attributes
- 0.16 and below: `window['id']`
0.17 and after: `window.id`
- 0.16 and below: `window.get('id')`
0.17 and after: `window.id`
- 0.16 and below: `window.get('id', None)`
0.17 and after: `getattr(window, 'id', None)`
### New features
#### Detect if server active (#448)
- `Server.is_alive()`
- `Server.raise_if_dead()`
### Internal
- Remove unused `sphinx-click` development dependency
## libtmux 0.16.1 (2022-12-12)
### Fixes
- Remove reliance on `packaging.version.Version` (#461)
This is too critical of a package to pin a dependency as it may interfere with other packages the user relies on. In addition, libtmux doesn't need strict compatibility with `packaging`.
## libtmux 0.16.0 (2022-12-10)
### Breaking changes
- Fix `distutils` warning, vendorize `LegacyVersion` (#351)
Removal of reliancy on `distutils.version.LooseVersion`, which does not
support `tmux(1)` versions like `3.1a`.
Fixes warning:
> DeprecationWarning: distutils Version classes are deprecated. Use
> packaging.version instead.
The temporary workaround, before 0.16.0 (assuming _setup.cfg_):
```ini
[tool:pytest]
filterwarnings =
ignore:.* Use packaging.version.*:DeprecationWarning::
ignore:The frontend.Option(Parser)? class.*:DeprecationWarning::
```
### Features
- `Window.split_window()` and `Session.new_window()` now support an optional
dictionary of environmental variables, via (#453), credit @zappolowski.
## libtmux 0.15.10 (2022-11-05)
_There will be more improvements over the coming weeks and months to shore up
flakiness across shells and environments._
### Tests
- Compatibility improvement for `test_capture_pane` and `env` (#452), credit:
@zappolowski!
- Remove more BASHisms from tests (#455)
## libtmux 0.15.9 (2022-10-30)
### Bug fix
- `tmux_cmd()`: Fix raise of TmuxCommandNotFound (#450)
### CI
- Use python 3.11 (#451)
### Packaging
- Add python 3.11 to trove classifiers (#451)
### Development
- Add python 3.11 to asdf and pyenv configurations (#451)
## libtmux 0.15.8 (2022-10-02)
### Bug fix
- `Session.new_window()`: Improve support for `window_name: ''` downstream in tmuxp (#444, credit: @trankchung)
## libtmux 0.15.7 (2022-09-23)
- Move `.coveragerc` -> `pyproject.toml` (#443)
## libtmux 0.15.6 (2022-09-23)
_Maintenance only, no bug fixes or new features_
### Packaging
- Remove `MANIFEST.in`
This is handled by poetry's `include` in pyproject.toml.
## libtmux 0.15.5 (2022-09-23)
_Maintenance only, no bug fixes or new features_
### Packaging
- Remove `.tmuxp-before-script.sh` from `.tmuxp.yaml`
## libtmux 0.15.4 (2022-09-21)
### Fixes
- Use stable `pytest` API imports where possible to fix issues in downstream
packaging on Arch (#441, via #442)
### Packaging
- Add `.tmuxp-before-script.sh` (used by `.tmuxp.yaml`) and `conftest.py` to
source distributoins (#441, via #442)
## libtmux 0.15.3 (2022-09-20)
### Tests / docs
- Examples for pytest plugin (#439)
- Move conftest.py to root level (#440)
- https://docs.pytest.org/en/stable/deprecations.html#pytest-plugins-in-non-top-level-conftest-files
- Less conftest.py files
- We can now run py.test for `README.md` without needing to proxy through
`docs/index.md`
## libtmux 0.15.2 (2022-09-17)
**Maintenance release, no features or fixes**
### Tests
- pytest plugin: Initial tests (for testing the plugin itself, #423)
### Packaging
- pyproject.toml: Note pytest framework in trove classifiers
### Infrastructure
- CI speedups (#428)
- Avoid fetching unused apt package
- Split out release to separate job so the PyPI Upload docker image isn't pulled on normal
runs
## libtmux 0.15.1 (2022-09-11)
### Packaging
- pyproject.toml: Drop old issues package, remove anther package from grouping
### Documentation
- Cleanup quickstart page
## libtmux 0.15.0 (2022-09-10)
### New features
- Added a [pytest plugin](https://libtmux.git-pull.com/pytest-plugin.html), #411.
### Breaking changes
- Remove `common.which()` in favor of {func}`shutil.which`, Credit:
@rocksandska, via #407
- Fixes #402: {func}`common.tmux_cmd` will only strip _trailing_ empty lines. Before this change,
all empty lines were filtered out. This will lead to a more accurate behavior when using
{meth}`Pane.capture_pane`. Credit: @rockandska, via #405.
- Source files for `libtmux` modules moved to `src/`, via #414.
### Development
- Add [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) (#408)
- Add [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions) (#409)
### Tests
- Test doctests in documentation via
[pytest-doctest-docutils](https://gp-libs.git-pull.com/doctest/pytest.html) (#410)
### Documentation
- Examples updated for correctness, #412 (cherry-picked from #410)
- Render changelog in [linkify_issues](https://gp-libs.git-pull.com/linkify_issues/) (#410)
- Fix Table of contents rendering with sphinx autodoc with
[sphinx_toctree_autodoc_fix](https://gp-libs.git-pull.com/sphinx_toctree_autodoc_fix/) (#410)
## libtmux 0.14.2 (2022-08-17)
### Fixes
- {meth}`Server.new_session` _really_ works without `session_name`, #401 fixes
#399. Improved tests and doctests added.
## libtmux 0.14.1 (2022-08-17)
### Fixes
- {meth}`Server.new_session` works without `session_name`, #400 fixes
#399
_This still passed `None` to the session name, this was fixed in v0.14.2._
## libtmux 0.14.0 (2022-08-05)
### Breaking changes
- {meth}`Pane.send_keys`: `suppress_history` default value changed from `True` to
`False`, #395
### Tests and docs
- Initial [doctests] examples stubbed out #394
[doctests]: https://docs.python.org/3/library/doctest.html
- Fix bug in `temp_window()` context manager, #394
- Pytest configuration `conftest.py` moved to `libtmux/conftest.py`, so doctest can
detect the fixtures #394
## libtmux 0.13.0 (2022-08-05)
### What's new
- **Improved typings**
Now [`mypy --strict`] compliant (#383)
Smaller touchups from #392
[`mypy --strict`]: https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-strict
### Breaking changes
- Deprecated individual item lookups (#390)
- Removed key lookups from {meth}`libtmux.common.EnvironmentMixin.show_environment`
Only `EnvironmentMixin.show_environment()` (without an argument) exists, and
it still returns a `dict`.
- Add key lookups via {meth}`libtmux.common.EnvironmentMixin.getenv`
```python
# Before
server.show_environment('DISPLAY')
# After
server.getenv('DISPLAY')
# Before
session.show_environment('DISPLAY')
# After
session.getenv('DISPLAY')
```
- Removed key lookups from {meth}`Session.show_options`
```python
session.show_options() # still returns dict, without an argument
# Old
session.show_options('DISPLAY')
# Now
session.show_option('DISPLAY')
```
- Removed key lookups from {meth}`Window.show_window_options`
```python
window.show_window_options() # still returns dict, without an argument
# Old
window.show_window_options('DISPLAY')
# Now
window.show_window_option('DISPLAY')
```
- Remove `libtmux.test.retry()`, deprecated since 0.12.x (#393)
### Development
- Fix incorrect function name `findWhere()` (#391)
## libtmux 0.12.0 (2022-07-13)
### Compatibility
- Brought back python 3.7 and 3.8 support (#375)
- Support for tmux 3.3a
- Add to CI
- Bump `TMUX_MAX_VERSION` from 2.4 -> 3.3
_2.4 to 3.3a already worked, this is just the constant
being updated._
### Development
- Remove tox and tox-poetry-installer
This created issues with running poetry while inside the virtualenv.
- Typings: Core relations, e.g. `Pane.window`, `Pane.session`, `Pane.server`, `Window.server` #385
### Documentation
- Renewed logo
- Try out sphinx-autoapi for its table of contents generation (#367)
- Break up API documentations for utilities, exception, and test helpers and
remove duplicate docs from API page. Server, session, window, and pane docs
are in the Reference section now.
### Testing
- `retry()`: Add deprecation warning. This will be removed in 0.13.x (#368, #372)
- New function `retry_until()`: Polls a callback function for a set period of time until it returns `True` or times out. By default it will raise {exc}`libtmux.exc.WaitTimeout`, with `raises=False` it will return `False`. Thank you @categulario! (#368, #372)
- #384 Chore: Use absolute modules rather than root-level to avoid cyclic imports.
```python
# Bad / Old
from libtmux import Server
# Good / New
from libtmux.server import Server
```
### Internals
- #382 [mypy] support added:
- Basic mypy tests now pass
## libtmux 0.11.0 (2022-03-10)
### Compatibility
- Python 3.7 and 3.8 returns in 0.12.0
~~Final python 3.7 and 3.8 release~~
~~Fixes and security updates will go to
[`v0.11.x`](https://github.com/tmux-python/libtmux/tree/v0.11.x)~~
- Internal: Use new separator to split `tmux(1)` formatting information (#289,
#343)
The separator is configurable via `LIBTMUX_TMUX_FORMAT_SEPARATOR`. If you ever
have compatibility issues in the future let us know which default works best
across versions.
Credit: @JonathanRaiman and @jagguli
- Basic type annotations (#359, #361) via @otherJL0
### Development
- Code cleanup (#362) from @otherJL0
- Format with black w/ string normalization. This is a one-time diff (#354)
### Documentation
- Sidebar reorganized into sections
- Added documentation on fetching developmental releases of libtmux
## libtmux 0.10.3 (2022-01-10)
### Packaging
First experimental release using `poetry build` (#347). If you are packaging and run
across any difficulty please see #346.
### Compatibility
- Drop python 3.6 (#344)
- Add python 3.10, though still `packaging.version` issues remain (#344)
A compat module and version constraints will need to be added for this
### Development
- poetry: 1.1.7 -> 1.1.12 (#344)
- Add `.pre-commit-config.yaml` (#344)
## libtmux 0.10.2 (2021-10-30)
- #324: Update poetry to 1.1
- CI: Use poetry 1.1.7 and `install-poetry.py` installer
- Relock poetry.lock at 1.1 (w/ 1.1.7's fix)
- #339 (CI): Lock python at 3.9 to avoid poetry issue with `dataclasses`
- ci: Fix publishing docs (similar to #339)
- #341 #342: `Server.attached_sessions()` now supports multiple attached sessions.
Remove attached sessions limitation to not detect multiple attached clients,
thank you @timoses
## libtmux 0.10.1 (2021-06-16)
- Update `Window.select_window()` for #271
## libtmux 0.10.0 (2021-06-16)
- #321: Convert to markdown
- #271: Fix `select_window()` by providing the session ID as
argument to `-t`. Thanks @Flowdalic
- Drop python 3.5 support
## libtmux 0.9.0 (2021-06-14)
Python 2.7 support dropped.
- #306: chore: Remove python 2.7 support
- #314: chore: Python 3.x syntax tweaks
- #312: ci: Add tmux 3.2a to CI
- chore: Update black to [21.6b0](https://github.com/psf/black/blob/21.6b0/CHANGES.md#216b0)
- #271: Fix select_window() by providing the session ID as
argument to -t.
## libtmux 0.8.5 (2020-10-25)
- #297: Enchance subprocess interaction std[in|out|err]. Needed
for interact with big buffer, fixes #251, thank you
@gil-obradors!
- #303 Add `common.get_libtmux_version` which gives the tmux
version as a loose constraint. Fix linking to terms inside docs, and
duplicate description of module which sphinx warned about in api.rst.
- #266 Fix issue on local tests where env variables would cause
show-environment to pause tests indefinitely.
## libtmux 0.8.4 (2020-10-25)
- #234: `Window.split_window`: Allow passing `percent`, Thank
you @jinankjain!
- #289: Fix warning due to invalid escape sequences, Thank you
@tirkarthi!
- #295: Publish docs via our own action
- #295: Move more packaging over to poetry, though we'll keep
setup.py for the moment to ensure compatibility package maintainers.
- #295: New development instructions
- #295: Move doc/ to docs/
- #296: CI: Test python 2.7, cache python packages, prevent running
internal PRs twice
## libtmux 0.8.3 (2020-08-16)
- #278: Fix Python deprecation warnings, thanks @d1618033
Also thanks Flowdalic for a similar PR at #294
- Add `project_urls` to setup.py
- #293 Move from Pipfile to poetry
- Fix show_option test in tmux 3.0
- Clean up handle_option_error comments
- Move CI to a GitHub action
## libtmux 0.8.2 (2019-06-02)
- CHANGES updated to plain reStructuredText
- Add `project_urls` to setup.py for pypi.
- Looser Pipfile versions, add Pipfile.lock
## libtmux 0.8.1 (2019-01-26)
- #117 Fix issue with renaming clients with tmux 2.7 on BSD/macOS
machines.
- #121 Support `literal=True` (`-l`) in `Pane.send_keys`
from @ritiek
- #131 Fix for unicode commands in Python 2, thanks @myw
- #172 Support for next-X.Y versions from @sloria
- #120 `capture_pane` support for `Pane`
- #119 `display_message` support for `Pane`
- Sort imports with isort
- Add sphinxcontrib-napoleon package for documentation
- Move docstrings over to numpy's style
## libtmux 0.8.0 (2018-03-11)
- #46 Change license from BSD to MIT
- Move to new organization, tmux-python
- Support package updates to pytest, sphinx, etc.
- Travis/CI: Limit tests to Python 2.7 and 3.6 (removed 3.3 to 3.5)
- Travis/CI: Update pypy veersions
- #103 `Server.new_session` learned how to run commands in
window on session start, thanks @grimpy!
- #68 Make Server.has_session() use returncode, thanks
@jlargentaye! This should make `has_session` more robust.
## libtmux 0.7.8 (2018-03-04)
- Port `retry` function from tmuxp
(<https://github.com/tmux-python/tmuxp/issues/354>)
## libtmux 0.7.7 (2017-11-10)
- Don't add -x/-y in tmux >= 2.6 if running tmuxp from inside
client.
## libtmux 0.7.6 (2017-11-09)
- Allow `Window.select_layout` with no args
- Fix test where `bell-` was no longer ambiguous as of tmux 2.6
## libtmux 0.7.5 (2017-10-07)
- Hotfix to support tmux 2.6 session creation
## libtmux 0.7.4 (2017-08-19)
- #65 Add session id to commands, thanks [@askedrelic]
## libtmux 0.7.3 (2017-05-29)
- Exact matches only supported on 2.1 and up
## libtmux 0.7.2 (2017-05-29)
- Support exact matching in `Server.has_session`
## libtmux 0.7.1 (2017-04-28)
- #37 Improve support for formatted options like
`pane-border-status`. Thanks @kaushalmodi.
## libtmux 0.7.0 (2017-04-27)
- Support for python 2.6 dropped. New minimum version is 2.7
- Add support for tmux 2.4, pypy and pypy3
- Overhaul error handling when setting and showing options
- Added `handle_option_error` for handling option errors
- Added {exc}`libtmux.exc.OptionError` base exception
- Added {exc}`libtmux.exc.InvalidOption` and `libtmux.exc.AmbiguousOption`
- {exc}`libtmux.exc.UnknownOption` now extends {exc}`libtmux.exc.OptionError`
- Overhaul version checking
- `has_version` has been renamed to `get_version`
- `get_version` will return tmux built from git master as the latest version supported by the libtmux version with `-master` at the end, e.g. `2.4-master`
- `get_version` will return tmux on openbsd base system as the latest version supported by the libtmux version with `-openbsd` at the end, e.g. `2.4-openbsd`
- `has_required_tmux_version` has been renamed to `has_minimum_version`
- added `has_gt_version`, `has_gte_version`, `has_lt_version`, `has_lte_version`,
- Fixed up documentation in some session methods
- Added pydoc exception info to option methods in window and sessions.
- Added `TMUX_MIN_VERSION` and `TMUX_MAX_VERSION`
## libtmux 0.6.5 (2017-04-02)
- Fix `which` command
- Add `TmuxCommandNotFound` exception
- Add `tmux_search_paths` and `append_env_path` kwargs to
`tmux_cmd`.
## libtmux 0.6.4 (2017-03-25)
- #32 support for OpenBSD's tmux
## libtmux 0.6.3 (2017-02-08)
- #25 support for working with tmux `master`, thanks @sloria.
## libtmux 0.6.2 (2017-01-19)
- #197 use `LooseVersion` instead of `StrictVersion` for version
checks. Thanks @minijackson.
- Pin packages with pyup.io
- #21 Readme fix from @huwenchao.
## libtmux 0.6.1 (2016-12-20)
- #18 Fix logger, courtesy of @geekli
- #19 Add support for `start_directory` in new sessions and
panes, courtesy of @gandelman-a.
- Fix tests and add official support for 2.3
## libtmux 0.6.0 (2016-09-16)
- Raise exception for invalid session names. tmux does not
allow names that are empty, contain periods or colons.
- Remove unused `target_session` param in
`Server.attach_session` and `Server.switch_client`.
## libtmux 0.5.1 (2016-08-18)
- #12 - fix logger message when tmux doesn't exist in `PATH`
## libtmux 0.5 (2016-06-15)
- #8 new exception `UnknownOption`
- #8 return `None` for options that are valid tmux options,
but unset at that scope.
- #6 major documentation overhaul
## libtmux 0.4.1 (2016-05-23)
- update `which()` to find tmux via `os.environ['PATH']`.
<https://redd.it/4laeut>
## libtmux 0.4.0 (2016-05-23)
- attributes for formatters are now accessible via
`Session`, `Window` and `Pane` objects. `session.name`
is equivalent to `session.get('session_name')`, you can do the
same with other properties in `_info`. `window.name`,
`pane.current_path`, `session.id`, `window.id`, `pane.id`,
`session.index`, `window.index`, `pane.index`, etc.
- `attached_sessions`, `attached_window` and
`attached_pane` are now properties.
- `_TMUX` metadata object changed to `_info`.
- `.findWhere()` is now `find_where`.
- README and usage fixes
## libtmux 0.3.0 (2016-05-23)
- switch to pytest
## libtmux 0.1.0 (2016-05-22)
- libtmux forked from [tmuxp].
[tmuxp]: https://github.com/tmux-python/tmuxp
[@askedrelic]: https://github.com/askedrelic
<!---
# vim: set filetype=markdown:
-->
|