-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathchangelog.html
5870 lines (5828 loc) · 456 KB
/
changelog.html
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
<!doctype html>
<html class="no-js" lang="en" data-content_root="./">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Frequently Asked Questions" href="faq.html" /><link rel="prev" title="Developer’s Guide" href="devguide.html" />
<link rel="shortcut icon" href="_static/magic_conch.ico"/><!-- Generated with Sphinx 8.1.3 and Furo 2024.08.06 -->
<title>Xonsh Change Log - xonsh 0.19.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=4ae1632d" />
<link rel="stylesheet" type="text/css" href="_static/custom.css?v=c8b63bf6" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
<style>
body {
--color-code-background: #eeffcc;
--color-code-foreground: black;
}
@media not print {
body[data-theme="dark"] {
--color-code-background: #202020;
--color-code-foreground: #d0d0d0;
}
@media (prefers-color-scheme: dark) {
body:not([data-theme="light"]) {
--color-code-background: #202020;
--color-code-foreground: #d0d0d0;
}
}
}
</style></head>
<body>
<script>
document.body.dataset.theme = localStorage.getItem("theme") || "auto";
</script>
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="svg-toc" viewBox="0 0 24 24">
<title>Contents</title>
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024">
<path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 0 0 0 13.8z"/>
</svg>
</symbol>
<symbol id="svg-menu" viewBox="0 0 24 24">
<title>Menu</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-menu">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</symbol>
<symbol id="svg-arrow-right" viewBox="0 0 24 24">
<title>Expand</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-chevron-right">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</symbol>
<symbol id="svg-sun" viewBox="0 0 24 24">
<title>Light mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</symbol>
<symbol id="svg-moon" viewBox="0 0 24 24">
<title>Dark mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" />
</svg>
</symbol>
<symbol id="svg-sun-with-moon" viewBox="0 0 24 24">
<title>Auto light/dark, in light mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
class="icon-custom-derived-from-feather-sun-and-tabler-moon">
<path style="opacity: 50%" d="M 5.411 14.504 C 5.471 14.504 5.532 14.504 5.591 14.504 C 3.639 16.319 4.383 19.569 6.931 20.352 C 7.693 20.586 8.512 20.551 9.25 20.252 C 8.023 23.207 4.056 23.725 2.11 21.184 C 0.166 18.642 1.702 14.949 4.874 14.536 C 5.051 14.512 5.231 14.5 5.411 14.5 L 5.411 14.504 Z"/>
<line x1="14.5" y1="3.25" x2="14.5" y2="1.25"/>
<line x1="14.5" y1="15.85" x2="14.5" y2="17.85"/>
<line x1="10.044" y1="5.094" x2="8.63" y2="3.68"/>
<line x1="19" y1="14.05" x2="20.414" y2="15.464"/>
<line x1="8.2" y1="9.55" x2="6.2" y2="9.55"/>
<line x1="20.8" y1="9.55" x2="22.8" y2="9.55"/>
<line x1="10.044" y1="14.006" x2="8.63" y2="15.42"/>
<line x1="19" y1="5.05" x2="20.414" y2="3.636"/>
<circle cx="14.5" cy="9.55" r="3.6"/>
</svg>
</symbol>
<symbol id="svg-moon-with-sun" viewBox="0 0 24 24">
<title>Auto light/dark, in dark mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
class="icon-custom-derived-from-feather-sun-and-tabler-moon">
<path d="M 8.282 7.007 C 8.385 7.007 8.494 7.007 8.595 7.007 C 5.18 10.184 6.481 15.869 10.942 17.24 C 12.275 17.648 13.706 17.589 15 17.066 C 12.851 22.236 5.91 23.143 2.505 18.696 C -0.897 14.249 1.791 7.786 7.342 7.063 C 7.652 7.021 7.965 7 8.282 7 L 8.282 7.007 Z"/>
<line style="opacity: 50%" x1="18" y1="3.705" x2="18" y2="2.5"/>
<line style="opacity: 50%" x1="18" y1="11.295" x2="18" y2="12.5"/>
<line style="opacity: 50%" x1="15.316" y1="4.816" x2="14.464" y2="3.964"/>
<line style="opacity: 50%" x1="20.711" y1="10.212" x2="21.563" y2="11.063"/>
<line style="opacity: 50%" x1="14.205" y1="7.5" x2="13.001" y2="7.5"/>
<line style="opacity: 50%" x1="21.795" y1="7.5" x2="23" y2="7.5"/>
<line style="opacity: 50%" x1="15.316" y1="10.184" x2="14.464" y2="11.036"/>
<line style="opacity: 50%" x1="20.711" y1="4.789" x2="21.563" y2="3.937"/>
<circle style="opacity: 50%" cx="18" cy="7.5" r="2.169"/>
</svg>
</symbol>
<symbol id="svg-pencil" viewBox="0 0 24 24">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-pencil-code">
<path d="M4 20h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" />
<path d="M13.5 6.5l4 4" />
<path d="M20 21l2 -2l-2 -2" />
<path d="M17 17l-2 2l2 2" />
</svg>
</symbol>
<symbol id="svg-eye" viewBox="0 0 24 24">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-eye-code">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" />
<path
d="M11.11 17.958c-3.209 -.307 -5.91 -2.293 -8.11 -5.958c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.21 .352 -.427 .688 -.647 1.008" />
<path d="M20 21l2 -2l-2 -2" />
<path d="M17 17l-2 2l2 2" />
</svg>
</symbol>
</svg>
<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation">
<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc">
<label class="overlay sidebar-overlay" for="__navigation">
<div class="visually-hidden">Hide navigation sidebar</div>
</label>
<label class="overlay toc-overlay" for="__toc">
<div class="visually-hidden">Hide table of contents sidebar</div>
</label>
<a class="skip-to-content muted-link" href="#furo-main-content">Skip to content</a>
<div class="page">
<header class="mobile-header">
<div class="header-left">
<label class="nav-overlay-icon" for="__navigation">
<div class="visually-hidden">Toggle site navigation sidebar</div>
<i class="icon"><svg><use href="#svg-menu"></use></svg></i>
</label>
</div>
<div class="header-center">
<a href="contents.html"><div class="brand">xonsh 0.19.0 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
<button class="theme-toggle">
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
</button>
</div>
<label class="toc-overlay-icon toc-header-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
</div>
</header>
<aside class="sidebar-drawer">
<div class="sidebar-container">
<div class="sidebar-sticky"><a class="sidebar-brand" href="contents.html">
<div class="sidebar-logo-container">
<img class="sidebar-logo" src="_static/ascii_conch_part_transparent_tight.png" alt="Logo"/>
</div>
<span class="sidebar-brand-text">xonsh 0.19.0 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
<input type="hidden" name="check_keywords" value="yes">
<input type="hidden" name="area" value="default">
</form>
<div id="searchbox"></div><div class="sidebar-scroll"><div class="sidebar-tree">
<ul>
<li class="toctree-l1"><a class="reference internal" href="packages.html">Package Manager</a></li>
<li class="toctree-l1"><a class="reference internal" href="appimage.html">AppImage</a></li>
<li class="toctree-l1"><a class="reference internal" href="containers.html">Docker container</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="tutorial.html">Tutorial</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_hist.html">Tutorial: History</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_macros.html">Tutorial: Macros</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_xontrib.html">Tutorial: Extensions (Xontribs)</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_xonsh_projects.html">Tutorial: Xonsh Projects</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_events.html">Tutorial: Events</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_completers.html">Tutorial: Programmable Tab-Completion</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_history_backend.html">Tutorial: Write Your Own History Backend</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_subproc_strings.html">Tutorial: Subprocess Strings</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial_ptk.html">Tutorial: <code class="docutils literal notranslate"><span class="pre">prompt_toolkit</span></code> custom keybindings</a></li>
<li class="toctree-l1"><a class="reference internal" href="bash_to_xsh.html">Bash to Xonsh Translation Guide</a></li>
<li class="toctree-l1"><a class="reference internal" href="editors.html">Editor and IDE Support</a></li>
<li class="toctree-l1"><a class="reference internal" href="subproc_types.html">Subprocess Types Table</a></li>
<li class="toctree-l1"><a class="reference internal" href="python_virtual_environments.html">Python Virtual Environments</a></li>
<li class="toctree-l1"><a class="reference internal" href="keyboard_shortcuts.html">Keyboard Shortcuts</a></li>
</ul>
<ul>
<li class="toctree-l1"><a class="reference internal" href="xonshrc.html">Run Control File</a></li>
<li class="toctree-l1"><a class="reference internal" href="customization.html">Updating and customizing xonsh</a></li>
<li class="toctree-l1"><a class="reference internal" href="envvars.html">Environment Variables</a></li>
<li class="toctree-l1"><a class="reference internal" href="aliases.html">Built-in Aliases</a></li>
<li class="toctree-l1"><a class="reference internal" href="events.html">Core Events</a></li>
<li class="toctree-l1"><a class="reference internal" href="platform-issues.html">Platform-specific tips and tricks</a></li>
</ul>
<ul class="current">
<li class="toctree-l1 has-children"><a class="reference internal" href="api/index.html">Xonsh API</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" role="switch" type="checkbox"/><label for="toctree-checkbox-1"><div class="visually-hidden">Toggle navigation of Xonsh API</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/lang/xonsh.parsers.lexer.html">xonsh.parsers.lexer</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/lang/xonsh.parser.html">xonsh.parser</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/lang/xonsh.parsers.ast.html">xonsh.parsers.ast</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/lang/xonsh.execer.html">xonsh.execer</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/lang/xonsh.imphooks.html">xonsh.imphooks</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.built_ins.html">xonsh.built_ins</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.environ.html">xonsh.environ</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.aliases.html">xonsh.aliases</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.dirstack.html">xonsh.dirstack</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.html">xonsh.procs</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" role="switch" type="checkbox"/><label for="toctree-checkbox-2"><div class="visually-hidden">Toggle navigation of xonsh.procs</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.executables.html">xonsh.procs.executables</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.jobs.html">xonsh.procs.jobs</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.pipelines.html">xonsh.procs.pipelines</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.posix.html">xonsh.procs.posix</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.proxies.html">xonsh.procs.proxies</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.readers.html">xonsh.procs.readers</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.procs.specs.html">xonsh.procs.specs</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.lib.inspectors.html">xonsh.lib.inspectors</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.html">xonsh.history</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" role="switch" type="checkbox"/><label for="toctree-checkbox-3"><div class="visually-hidden">Toggle navigation of xonsh.history</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.base.html">xonsh.history.base</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.diff_history.html">xonsh.history.diff_history</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.dummy.html">xonsh.history.dummy</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.json.html">xonsh.history.json</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.main.html">xonsh.history.main</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.sqlite.html">xonsh.history.sqlite</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completer.html">xonsh.completer</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.html">xonsh.completers</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" role="switch" type="checkbox"/><label for="toctree-checkbox-4"><div class="visually-hidden">Toggle navigation of xonsh.completers</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.base.html">xonsh.completers.base</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.bash.html">xonsh.completers.bash</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.bash_completion.html">xonsh.completers.bash_completion</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.commands.html">xonsh.completers.commands</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.completer.html">xonsh.completers.completer</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.dirs.html">xonsh.completers.dirs</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.environment.html">xonsh.completers.environment</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.imports.html">xonsh.completers.imports</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.init.html">xonsh.completers.init</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.man.html">xonsh.completers.man</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.path.html">xonsh.completers.path</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.python.html">xonsh.completers.python</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.completers.tools.html">xonsh.completers.tools</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.html">xonsh.prompt</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" role="switch" type="checkbox"/><label for="toctree-checkbox-5"><div class="visually-hidden">Toggle navigation of xonsh.prompt</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.base.html">xonsh.prompt.base</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.cwd.html">xonsh.prompt.cwd</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.env.html">xonsh.prompt.env</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.gitstatus.html">xonsh.prompt.gitstatus</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.job.html">xonsh.prompt.job</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.times.html">xonsh.prompt.times</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.prompt.vc.html">xonsh.prompt.vc</a></li>
</ul>
</li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.html">xonsh.shells</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" role="switch" type="checkbox"/><label for="toctree-checkbox-6"><div class="visually-hidden">Toggle navigation of xonsh.shells</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.base_shell.html">xonsh.shells.base_shell</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.dumb_shell.html">xonsh.shells.dumb_shell</a></li>
<li class="toctree-l3 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.html">xonsh.shells.ptk_shell</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" role="switch" type="checkbox"/><label for="toctree-checkbox-7"><div class="visually-hidden">Toggle navigation of xonsh.shells.ptk_shell</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l4"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.completer.html">xonsh.shells.ptk_shell.completer</a></li>
<li class="toctree-l4"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.formatter.html">xonsh.shells.ptk_shell.formatter</a></li>
<li class="toctree-l4"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.history.html">xonsh.shells.ptk_shell.history</a></li>
<li class="toctree-l4"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.key_bindings.html">xonsh.shells.ptk_shell.key_bindings</a></li>
<li class="toctree-l4"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.updator.html">xonsh.shells.ptk_shell.updator</a></li>
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.readline_shell.html">xonsh.shells.readline_shell</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.base_shell.html">xonsh.shells.base_shell</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.readline_shell.html">xonsh.shells.readline_shell</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.html">xonsh.shells.ptk_shell</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" role="switch" type="checkbox"/><label for="toctree-checkbox-8"><div class="visually-hidden">Toggle navigation of xonsh.shells.ptk_shell</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.completer.html">xonsh.shells.ptk_shell.completer</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.formatter.html">xonsh.shells.ptk_shell.formatter</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.history.html">xonsh.shells.ptk_shell.history</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.key_bindings.html">xonsh.shells.ptk_shell.key_bindings</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.shells.ptk_shell.updator.html">xonsh.shells.ptk_shell.updator</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.lib.pretty.html">xonsh.lib.pretty</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/cmd/xonsh.history.diff_history.html">xonsh.history.diff_history</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.html">xonsh.xoreutils</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" role="switch" type="checkbox"/><label for="toctree-checkbox-9"><div class="visually-hidden">Toggle navigation of xonsh.xoreutils</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.cat.html">xonsh.xoreutils.cat</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.echo.html">xonsh.xoreutils.echo</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.pwd.html">xonsh.xoreutils.pwd</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.tee.html">xonsh.xoreutils.tee</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.tty.html">xonsh.xoreutils.tty</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.ulimit.html">xonsh.xoreutils.ulimit</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.umask.html">xonsh.xoreutils.umask</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.uname.html">xonsh.xoreutils.uname</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.uptime.html">xonsh.xoreutils.uptime</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.util.html">xonsh.xoreutils.util</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.which.html">xonsh.xoreutils.which</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/cmd/xonsh.xoreutils.yes.html">xonsh.xoreutils.yes</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.events.html">xonsh.events</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.html">xonsh.lib</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" role="switch" type="checkbox"/><label for="toctree-checkbox-10"><div class="visually-hidden">Toggle navigation of xonsh.lib</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.collections.html">xonsh.lib.collections</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.inspectors.html">xonsh.lib.inspectors</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.itertools.html">xonsh.lib.itertools</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.jsonutils.html">xonsh.lib.jsonutils</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.lazyasd.html">xonsh.lib.lazyasd</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.lazyimps.html">xonsh.lib.lazyimps</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.lazyjson.html">xonsh.lib.lazyjson</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.modules.html">xonsh.lib.modules</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.openpy.html">xonsh.lib.openpy</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.os.html">xonsh.lib.os</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.pretty.html">xonsh.lib.pretty</a></li>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.subprocess.html">xonsh.lib.subprocess</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.tools.html">xonsh.tools</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.platform.html">xonsh.platform</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lazyjson.html">xonsh.lazyjson</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lazyasd.html">xonsh.lazyasd</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.lib.openpy.html">xonsh.lib.openpy</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.foreign_shells.html">xonsh.foreign_shells</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.commands_cache.html">xonsh.commands_cache</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.tracer.html">xonsh.tracer</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.main.html">xonsh.main</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.color_tools.html">xonsh.color_tools</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.pyghooks.html">xonsh.pyghooks</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.shells.dumb_shell.html">xonsh.shells.dumb_shell</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.wizard.html">xonsh.wizard</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.xonfig.html">xonsh.xonfig</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.xontribs.html">xonsh.xontribs</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.codecache.html">xonsh.codecache</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/_autosummary/helpers/xonsh.contexts.html">xonsh.contexts</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="api/_autosummary/xontribs/xontrib.html">xontrib</a><input class="toctree-checkbox" id="toctree-checkbox-11" name="toctree-checkbox-11" role="switch" type="checkbox"/><label for="toctree-checkbox-11"><div class="visually-hidden">Toggle navigation of xontrib</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="api/_autosummary/xontribs/xontrib.coreutils.html">xontrib.coreutils</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="advanced_events.html">Advanced Events</a></li>
<li class="toctree-l1"><a class="reference internal" href="devguide.html">Developer’s Guide</a></li>
<li class="toctree-l1 current current-page"><a class="current reference internal" href="#">Xonsh Change Log</a></li>
<li class="toctree-l1"><a class="reference internal" href="faq.html">Frequently Asked Questions</a></li>
<li class="toctree-l1"><a class="reference internal" href="todo.html">Wishlist & To-Dos</a></li>
</ul>
</div>
</div>
</div>
</div>
</aside>
<div class="main">
<div class="content">
<div class="article-container">
<a href="#" class="back-to-top muted-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8v12z"></path>
</svg>
<span>Back to top</span>
</a>
<div class="content-icon-container">
<div class="view-this-page">
<a class="muted-link" href="https://github.com/xonsh/xonsh/blob/main/docs/changelog.rst?plain=true" title="View this page">
<svg><use href="#svg-eye"></use></svg>
<span class="visually-hidden">View this page</span>
</a>
</div><div class="edit-this-page">
<a class="muted-link" href="https://github.com/xonsh/xonsh/edit/main/docs/changelog.rst" title="Edit this page">
<svg><use href="#svg-pencil"></use></svg>
<span class="visually-hidden">Edit this page</span>
</a>
</div><div class="theme-toggle-container theme-toggle-content">
<button class="theme-toggle">
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
</button>
</div>
<label class="toc-overlay-icon toc-content-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
</div>
<article role="main" id="furo-main-content">
<section id="xonsh-change-log">
<h1>Xonsh Change Log<a class="headerlink" href="#xonsh-change-log" title="Link to this heading">¶</a></h1>
<section id="v0-19-0">
<h2>v0.19.0<a class="headerlink" href="#v0-19-0" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>env: Added <code class="docutils literal notranslate"><span class="pre">$XONSH_SUPPRESS_WELCOME</span></code> variable to suppress the welcome message.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>replaced <cite>case_insensitive_dictionary</cite> dependency with local
<cite>CaseInsensitiveDict</cite> class</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>parsers: fix deprecation warnings triggered on python3.13</p></li>
<li><p>Fix DeprecationWarning while initializing Expression</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Evgeny</p></li>
<li><p>doronz88</p></li>
<li><p>JamesParrott</p></li>
<li><p>Jueun Lee</p></li>
<li><p>Simon Billinge</p></li>
<li><p>Bala</p></li>
</ul>
</section>
<section id="v0-18-4">
<h2>v0.18.4<a class="headerlink" href="#v0-18-4" title="Link to this heading">¶</a></h2>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>Now SystemExit that invoked from callable alias follows to exiting from callable alias instead of exiting the entire shell.</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Built-in commands such as <cite>xonfig -h</cite> and <cite>xontrib -h</cite> no longer cause the shell to exit.</p></li>
<li><p>Fixed incorrect quoting behaviour in <cite>activate.xsh</cite> for virtualenv version 20.26.6.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Peter Ye</p></li>
<li><p>Max Nordlund</p></li>
<li><p>Shawn Wallace</p></li>
<li><p>Faidon Liambotis</p></li>
</ul>
</section>
<section id="v0-18-3">
<h2>v0.18.3<a class="headerlink" href="#v0-18-3" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>executables: Added <code class="docutils literal notranslate"><span class="pre">locate_relative_path</span></code> functionality to <code class="docutils literal notranslate"><span class="pre">locate_file</span></code>.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p><code class="docutils literal notranslate"><span class="pre">$MULTILINE_PROMPT</span></code> changed from <code class="docutils literal notranslate"><span class="pre">'.'</span></code> to <code class="docutils literal notranslate"><span class="pre">'</span> <span class="pre">'</span></code> (space)
to have an ability to copy the multiline functions from shell history without deleting the dot manually (#5624 #5634).</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Fixed <code class="docutils literal notranslate"><span class="pre">$AUTO_CD</span></code> regress after previous refactoring.</p></li>
<li><p>Partial fix for “Bad file descriptor” in case of callable alias with execx invocation inside e.g. ExecAlias (#5645).</p></li>
<li><p>completer: Fixed exception when in python-only completion context (#5632).</p></li>
<li><p>Fixed exception “object has no attribute readlines” in case of redirect callable alias output.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Aidan Courtney</p></li>
</ul>
</section>
<section id="v0-18-2">
<h2>v0.18.2<a class="headerlink" href="#v0-18-2" title="Link to this heading">¶</a></h2>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Fixed wrong order of directories in PATH (#5606 #5605). Please do not use 0.18.0 and 0.18.1 versions.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>anki-code</p></li>
</ul>
</section>
<section id="v0-18-1">
<h2>v0.18.1<a class="headerlink" href="#v0-18-1" title="Link to this heading">¶</a></h2>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
</ul>
</section>
<section id="v0-18-0">
<h2>v0.18.0<a class="headerlink" href="#v0-18-0" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>Added <code class="docutils literal notranslate"><span class="pre">@aliases.return_command</span></code> decorator to eliminate the need to wrap the logic for modifying command into callable alias wrapper (#5473).</p></li>
<li><p>Tutorial: added example of callable environment variable.</p></li>
<li><p>tools: added <code class="docutils literal notranslate"><span class="pre">mkdir</span></code> to <code class="docutils literal notranslate"><span class="pre">xonsh.tools.chdir</span></code> e.g. <code class="docutils literal notranslate"><span class="pre">with</span> <span class="pre">chdir('/tmp/new',</span> <span class="pre">mkdir=True):</span> <span class="pre">pass</span></code>.</p></li>
<li><p>env: Added <code class="docutils literal notranslate"><span class="pre">$XONSH_MODE</span></code> variable to detect the current execution mode:
<code class="docutils literal notranslate"><span class="pre">interactive</span></code>, <code class="docutils literal notranslate"><span class="pre">script_from_file</span></code>, <code class="docutils literal notranslate"><span class="pre">source</span></code>, <code class="docutils literal notranslate"><span class="pre">single_command</span></code>, <code class="docutils literal notranslate"><span class="pre">script_from_stdin</span></code>.</p></li>
<li><p>Builtin: <code class="docutils literal notranslate"><span class="pre">exit</span></code> can return exit code e.g. <code class="docutils literal notranslate"><span class="pre">exit</span> <span class="pre">71</span></code>.</p></li>
<li><p>builtin: added <code class="docutils literal notranslate"><span class="pre">__xonsh__.imp</span></code> to have an ability to import and use modules immediately in one line
e.g. <code class="docutils literal notranslate"><span class="pre">__xonsh__.json.loads('{}')</span></code>.
In the future <code class="docutils literal notranslate"><span class="pre">__xonsh__</span></code> will have short notation <code class="docutils literal notranslate"><span class="pre">@</span></code> and the line will looks more elegant <code class="docutils literal notranslate"><span class="pre">@.imp.json.loads('{}')</span></code>.</p></li>
<li><p>builtins: Added color to printx e.g. <code class="docutils literal notranslate"><span class="pre">printx('Good',</span> <span class="pre">color='GREEN')</span></code>.</p></li>
<li><p>aliases: Added ability to set multiple decorator aliases e.g. <code class="docutils literal notranslate"><span class="pre">j</span> <span class="pre">=</span> <span class="pre">$(@json</span> <span class="pre">@noerr</span> <span class="pre">echo</span> <span class="pre">'{}')</span></code>.</p></li>
<li><p>Created <code class="docutils literal notranslate"><span class="pre">xonsh.api</span></code> to use xonsh functionality in pure python code and downstream projects (#5383 #5538).
It’s usable but don’t treat this serios because it’s mostly to move some functions into distinct
submodule to reflect the intention to have the API. We need review and improvements here.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>New executable resolving method was introduced and the commands_cache usages were replaced in the key places. As result we expect speed up in xonsh startup, reducing lagging during typing in prompt and speed ups during the commands execution (#5544 by @anki-code).</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">COLOR_RESULTS</span></code> switched to <code class="docutils literal notranslate"><span class="pre">False</span></code> for non-interactive command case to improve speed in default behavior (#5562).</p></li>
<li><p>main: Importing sqlite became optional.</p></li>
<li><p>prompt: Switching to prompt_toolkit in edge case of sending stdin to interactive mode (#5462 #5517).</p></li>
<li><p>Rename: <code class="docutils literal notranslate"><span class="pre">SpecModifier</span></code>, <code class="docutils literal notranslate"><span class="pre">xthread</span></code>, <code class="docutils literal notranslate"><span class="pre">xunthread</span></code> renamed to <code class="docutils literal notranslate"><span class="pre">DecoratorAlias</span></code>, <code class="docutils literal notranslate"><span class="pre">@thread</span></code>, <code class="docutils literal notranslate"><span class="pre">@unthread</span></code> to support idea that
spec modifier is like a Python decorator.</p></li>
<li><p>Big refactoring of internal modules structure to give clear understanding of internal xonsh components (#5538).
E.g. if you have <code class="docutils literal notranslate"><span class="pre">import</span> <span class="pre">xonsh.jobs</span></code> convert this to <code class="docutils literal notranslate"><span class="pre">import</span> <span class="pre">xonsh.procs.jobs</span></code>.
This kind of refactoring occurs once per many years.</p></li>
</ul>
<p><strong>Deprecated:</strong></p>
<ul class="simple">
<li><p>Starting from this release we notify that in the future we will not recommend to use <code class="docutils literal notranslate"><span class="pre">xonsh.procs.run_subproc</span></code>
and <code class="docutils literal notranslate"><span class="pre">xonsh.built_ins.subproc_*</span></code> functions for downstream projects because of #5383.
We will develop <code class="docutils literal notranslate"><span class="pre">xonsh.api</span></code> as alternative.</p></li>
</ul>
<p><strong>Removed:</strong></p>
<ul class="simple">
<li><p>xontrib: Do not autoload xontribs in <code class="docutils literal notranslate"><span class="pre">xonsh</span> <span class="pre">--no-rc</span></code> mode.</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Callable alias: fixed capturing stdout in case of redirect e.g. <cite>a > file</cite> (#5527).</p></li>
<li><p>Commands Cache: Fixed cache update logic that lead to lagging during typing.</p></li>
<li><p>Replaced deprecated <cite>sys.last_type, sys.last_value, sys.last_traceback</cite> with <cite>sys.last_exc</cite></p></li>
<li><p>Fixed <code class="docutils literal notranslate"><span class="pre">history</span> <span class="pre">gc</span></code> invocation failing when <code class="docutils literal notranslate"><span class="pre">sqlite</span></code> history backend is used.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Jason R. Coombs</p></li>
<li><p>lunrenyi</p></li>
<li><p>Spencer Bliven</p></li>
<li><p>Niraj Kulkarni</p></li>
</ul>
</section>
<section id="v0-17-0">
<h2>v0.17.0<a class="headerlink" href="#v0-17-0" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>Added section “Use the Nix Package manager with Xonsh” to “Platform-specific tips and tricks”.</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">env.detype_all()</span></code> to get all available variables that is possible to detype.</p></li>
<li><p>Reading stop signals from the process and update the process state (#5361).</p></li>
<li><p>Added support of NixOS core tools in <code class="docutils literal notranslate"><span class="pre">predict_threadable</span></code>.</p></li>
<li><p>Added catching an exceptions during load a history backend to avoid shell exiting e.g. on permission error.</p></li>
<li><p>Added catching an exception when cache file is not writable.</p></li>
<li><p>Added FuncAlias to process callable aliases.</p></li>
<li><p>Added alias name printing in case of exception in alias.</p></li>
<li><p>Saving history in case of any type of exiting the shell.</p></li>
<li><p>Added catching ChildProcessError in jobs. Avoiding hanging aliases in some cases.</p></li>
<li><p>Added xonsh support into Jupytext project! Jupytext is to store Jupyter notebooks as a plain text documents.</p></li>
<li><p>Now last executed CommandPipeline is available in <code class="docutils literal notranslate"><span class="pre">__xonsh__.last</span></code>.</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">xonsh</span> <span class="pre">--no-env</span></code> option to run xonsh without inheriting the environment variables. Now by running <code class="docutils literal notranslate"><span class="pre">xonsh</span> <span class="pre">--no-rc</span> <span class="pre">--no-env</span></code> you have pure xonsh session.</p></li>
<li><p>Added thread class, name, func and alias names to thread exception for easy understanding the source of issue.</p></li>
<li><p>Added shortcut <code class="docutils literal notranslate"><span class="pre">-st</span></code> for <code class="docutils literal notranslate"><span class="pre">--shell-type</span></code>.</p></li>
<li><p>Saving history on SIGINT. Development tools like PyCharm send SIGINT before killing the run
and doing this is the last chance to save history.</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">spec.raise_subproc_error</span></code> for fine-tuning exceptions via <code class="docutils literal notranslate"><span class="pre">SpecModifierAlias</span></code> (#5494).</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">$XONSH_SUBPROC_OUTPUT_FORMAT</span></code> to switch the way to return the output lines.
Default <code class="docutils literal notranslate"><span class="pre">stream_lines</span></code> to return text. Alternative <code class="docutils literal notranslate"><span class="pre">list_lines</span></code> to return
the list of lines. Now you can run <code class="docutils literal notranslate"><span class="pre">du</span> <span class="pre">$(ls)</span></code> without additional stripping.
Also supported custom lambda function to process lines (if you’re looking for
alternative to bash IFS).</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">xthread</span></code> and <code class="docutils literal notranslate"><span class="pre">xunthread</span></code> aliases to force command running as threaded and unthreaded.</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">SpecModifierAlias</span></code> class to have an ability to create alias that modifies spec before run e.g. <code class="docutils literal notranslate"><span class="pre">xthread</span></code> alias.</p></li>
<li><p>Added mode <code class="docutils literal notranslate"><span class="pre">$XONSH_TRACE_SUBPROC=3</span></code> to show more information about pipeline.</p></li>
<li><p>Added “Callable alias and capturing” to the tutorial.</p></li>
<li><p>Xonfig: show sensitive env variables that could affect the shell behavior.</p></li>
<li><p>We started <a class="reference external" href="https://xonsh.zulipchat.com/join/hbvue5rimpdkwkdjuiqfs7tv/">Zulip Community</a> to publish news and chatting.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>Minor cleanup of <code class="docutils literal notranslate"><span class="pre">commands_cache</span></code>, unifying behavior across platforms.</p></li>
<li><p>Xonsh AppImage downgraded to Python 3.11. We need to resolve 3.12 parser support (5166) before upgrade.</p></li>
<li><p>Env variables completion: now use substring for search and then sort results by the position of substring and then alphabetically. PR 5388.</p></li>
<li><p>jobs: default representation changed to dict.</p></li>
<li><p>The CommandPipeline repr will not show descriptors by default. Use XONSH_DEBUG mode to see them.</p></li>
<li><p>Prompt: <code class="docutils literal notranslate"><span class="pre">env_name</span></code> will have yellow color by default.</p></li>
<li><p>Show <code class="docutils literal notranslate"><span class="pre">root</span></code> and <code class="docutils literal notranslate"><span class="pre">@#</span></code> in prompt if user is superuser.</p></li>
<li><p>Cleaning logic and functions around threading and capturing in <code class="docutils literal notranslate"><span class="pre">procs/specs.py</span></code> file.</p></li>
<li><p>Now the ending new line symbol <code class="docutils literal notranslate"><span class="pre">\n</span></code> will be stripped from the single line output.
For <code class="docutils literal notranslate"><span class="pre">$(whoami)</span></code> you will get <code class="docutils literal notranslate"><span class="pre">'user'</span></code> instead of <code class="docutils literal notranslate"><span class="pre">'user\n'</span></code>.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">$XONSH_TRACE_SUBPROC=2</span></code> returns more useful details.</p></li>
<li><p>The home based <code class="docutils literal notranslate"><span class="pre">~/.xonshrc</span></code> will not be executed in non-interactive mode (#5491).</p></li>
</ul>
<p><strong>Removed:</strong></p>
<ul class="simple">
<li><p>No longer is <code class="docutils literal notranslate"><span class="pre">.</span></code> implied for running commands on Windows. Instead the behavior is the same across platforms. Windows users will need to prefix <code class="docutils literal notranslate"><span class="pre">./</span></code> or <code class="docutils literal notranslate"><span class="pre">.\</span></code> to run commands from the current directory (#5476).</p></li>
<li><p>Unpin prompt-toolkit version (#5438).</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Commands on Windows now honor the case as they appear on the file system (#5469).</p></li>
<li><p>Prevent exception on start up if <code class="docutils literal notranslate"><span class="pre">dircolors</span></code> util is wrong.</p></li>
<li><p>Fixed <code class="docutils literal notranslate"><span class="pre">Bad</span> <span class="pre">file</span> <span class="pre">descriptor</span></code> and I/O errors after running callable alias (#5435).</p></li>
<li><p>Fixed showing exception message in some cases.</p></li>
<li><p>Fixed empty stacktrace for CalledProcessError.</p></li>
<li><p>Fixed redirect with python substitution e.g. <code class="docutils literal notranslate"><span class="pre">echo</span> <span class="pre">1</span> <span class="pre">></span> <span class="pre">@('/tmp/file')</span></code> is working now.</p></li>
<li><p>Fixed showing alias description using superhelp e.g. <code class="docutils literal notranslate"><span class="pre">which?</span></code>.</p></li>
<li><p>Fixed <code class="docutils literal notranslate"><span class="pre">xonsh</span> <span class="pre">-DVAR=VAL</span></code> behavior: initiate env variables before shell initialization.</p></li>
<li><p>Fixed processing exit signals and exceptions (e.g. SIGHUP in #5381) to provide careful exiting with right exit code and TTY cleaning.</p></li>
<li><p>Fixed <code class="docutils literal notranslate"><span class="pre">TypeError</span></code> in xoreutils.</p></li>
<li><p>Fixed populating the return code for interrupted process.</p></li>
<li><p>Windows: fixed path to RC file in <code class="docutils literal notranslate"><span class="pre">xonfig</span> <span class="pre">web</span></code>.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Peter Ye</p></li>
<li><p>Jason R. Coombs</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>doronz88</p></li>
<li><p>jyn</p></li>
<li><p>l-no</p></li>
<li><p>amacfie-tc</p></li>
</ul>
</section>
<section id="v0-16-0">
<h2>v0.16.0<a class="headerlink" href="#v0-16-0" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>Square brackets can now be used in command arguments without quotes (e.g. <cite>echo a[b]</cite>)</p></li>
<li><p>Add <code class="docutils literal notranslate"><span class="pre">XONSH_BASH_PATH_OVERRIDE</span></code> option (off-by-default) to override what is
returned by <cite>xonsh.platform.bash_command</cite>.</p></li>
<li><p>Added PATH.prepend(path) to add path to the beginning.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>Xonsh AppImage now on Python 3.12 that works faster.</p></li>
<li><p>Xonsh AppImage: pinned prompt-toolkit version until fix upstream issue.</p></li>
<li><p>Builtin aliases (xontrib, history) switched to threadable mode.</p></li>
<li><p>EnvPath methods (append, remove, add, insert) prepare the path before action.</p></li>
<li><p>Replaced black formatter with <a class="reference external" href="https://docs.astral.sh/ruff/">ruff-format</a></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">source_foreign_fn</span></code> now does not run subshells in interactive mode, so
associated RC files like <code class="docutils literal notranslate"><span class="pre">zshrc</span></code> and <code class="docutils literal notranslate"><span class="pre">bashrc</span></code> will not be auto-loaded on
sourcing.</p></li>
<li><p>Removed usage of deprecated <code class="docutils literal notranslate"><span class="pre">cgi</span></code> module</p></li>
</ul>
<p><strong>Removed:</strong></p>
<ul class="simple">
<li><p>Removed <code class="docutils literal notranslate"><span class="pre">ArgParserAlias.hook_pre_add_argument</span></code>, <code class="docutils literal notranslate"><span class="pre">ArgParserAlias.hook_post_add_argument</span></code>.
Please use custom action instead to modify the argument options.</p></li>
<li><p>Removed deprecated module <code class="docutils literal notranslate"><span class="pre">xonsh.proc</span></code></p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Fixed an issue with completions when using absolute paths to commands and having $UPDATE_COMPLETIONS_ON_KEYPRESS set to True. <a class="reference external" href="https://github.com/xonsh/xonsh/issues/5127">https://github.com/xonsh/xonsh/issues/5127</a></p></li>
<li><p>Jobs: fixed “index out of range” exception.</p></li>
<li><p>Expressions like <code class="docutils literal notranslate"><span class="pre">2>1</span></code> are now parsed correctly as Python code instead of being treated like special io-redirection operators.</p></li>
<li><p>Redirect tokens in quotes (e.g. “>”, “2>”, “2>1”) are now correctly passed to commands as regular arguments.</p></li>
<li><p>Fixed NotADirectoryError during load dircolors.</p></li>
<li><p>Fixed a bug that caused <code class="docutils literal notranslate"><span class="pre">xonfig</span> <span class="pre">web</span></code> to overwrite its own configuration file. See <a class="reference external" href="https://github.com/xonsh/xonsh/issues/5297">https://github.com/xonsh/xonsh/issues/5297</a></p></li>
<li><p>If an error is encountered while loading the xonshrc file, the traceback is now output as plain text rather than as a list of Tokens</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Peter Ye</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>l-no</p></li>
</ul>
</section>
<section id="v0-15-1">
<h2>v0.15.1<a class="headerlink" href="#v0-15-1" title="Link to this heading">¶</a></h2>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>pytest: Fix pytest collection starting at pytest>=8.1.0</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>doronz88</p></li>
<li><p>Daniel Saunders</p></li>
<li><p>Andrew</p></li>
</ul>
</section>
<section id="v0-15-0">
<h2>v0.15.0<a class="headerlink" href="#v0-15-0" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p><a class="reference external" href="https://atuin.sh/">Atuin</a> now has official support for xonsh. (Related PR: <a class="reference external" href="https://github.com/atuinsh/atuin/pull/1375">https://github.com/atuinsh/atuin/pull/1375</a>)</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>Updated docs to reflect VS Code support for xonsh as the user’s default shell.</p></li>
<li><p>Pinned prompt-toolkit version 3.0.29-3.0.40 to workaround upstream issue. More info in issue 5241.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Jason R. Coombs</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>Matthieu LAURENT</p></li>
</ul>
</section>
<section id="v0-14-4">
<h2>v0.14.4<a class="headerlink" href="#v0-14-4" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>System clipboard can be fully disabled using <code class="docutils literal notranslate"><span class="pre">$XONSH_USE_SYSTEM_CLIPBOARD</span></code>.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>Stefano Rivera</p></li>
<li><p>Nathan Monfils</p></li>
<li><p>JamesParrott</p></li>
<li><p>Airat Makhmutov</p></li>
</ul>
</section>
<section id="v0-14-3">
<h2>v0.14.3<a class="headerlink" href="#v0-14-3" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>Added <code class="docutils literal notranslate"><span class="pre">on_pre_spec_run</span></code> event.</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">on_post_spec_run</span></code> event.</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p><code class="docutils literal notranslate"><span class="pre">xonsh</span></code> now adds the user site packages directory to <code class="docutils literal notranslate"><span class="pre">sys.path</span></code> where
required for proper <code class="docutils literal notranslate"><span class="pre">xontrib</span></code> discovery</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Jacqueline Leykam</p></li>
<li><p>Joshix-1</p></li>
</ul>
</section>
<section id="v0-14-2">
<h2>v0.14.2<a class="headerlink" href="#v0-14-2" title="Link to this heading">¶</a></h2>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>history: fix json file permissions upon <cite>sudo</cite> (#5220)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">cd</span></code> with no arguments will always return to <code class="docutils literal notranslate"><span class="pre">$HOME</span></code></p></li>
<li><p>Correctly parse multi line foreign aliases</p></li>
<li><p>Upgrade Python version at the introduction (<a class="reference external" href="https://github.com/xonsh/xonsh/pull/5193">https://github.com/xonsh/xonsh/pull/5193</a>)</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>doronz88</p></li>
<li><p>mgunyho</p></li>
<li><p>ShalokShalom</p></li>
<li><p>Wilfried Pollan</p></li>
</ul>
</section>
<section id="v0-14-1">
<h2>v0.14.1<a class="headerlink" href="#v0-14-1" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>Added <code class="docutils literal notranslate"><span class="pre">history</span> <span class="pre">delete</span></code> command to both the JSON and SQLite history backends allowing users to delete commands from history that matches a pattern.</p></li>
<li><p>Now you can become a sponsor to xonsh - <a class="reference external" href="https://github.com/sponsors/xonsh">https://github.com/sponsors/xonsh</a></p></li>
<li><p>Added preliminary support for Python v3.12</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>Always load rc files except that –norc is passed.</p></li>
<li><p>Unset the default line continuation environment variables (<code class="docutils literal notranslate"><span class="pre">$MULTILINE_PROMPT_PRE</span></code> and <code class="docutils literal notranslate"><span class="pre">$MULTILINE_PROMPT_POS</span></code>) to allow differentiating between user setting an empty value and not setting anything</p></li>
<li><p>Dropped support for Python v3.8</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>This change fixes issue #4855, that is, rc files will be loaded in non-interactive mode.</p></li>
<li><p>platform: fix <cite>BASH_COMPLETIONS_DEFAULT</cite> on M1</p></li>
<li><p>Fix wrong verification for the simple output, introduced by PR5072</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Evgeny</p></li>
<li><p>doronz88</p></li>
<li><p>Ivan Ogasawara</p></li>
<li><p>HackTheOxidation</p></li>
<li><p>Cosine Chen</p></li>
</ul>
</section>
<section id="v0-14-0">
<h2>v0.14.0<a class="headerlink" href="#v0-14-0" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>key_bindings: map <cite>escape-f</cite> as another word completer for macOS</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">history</span> <span class="pre">pull</span></code> command to SQLite history backend to pull the history from parallel sessions and add to the current session.</p></li>
<li><p>Add support for <a class="reference external" href="https://gitlab.freedesktop.org/Per_Bothner/specifications/blob/master/proposals/semantic-prompts.md">Semantic Prompt</a> for line continuations in multiline prompts via two environment variables: <code class="docutils literal notranslate"><span class="pre">$MULTILINE_PROMPT_PRE</span></code> (e.g., <code class="docutils literal notranslate"><span class="pre">\x01\x1b]133;P;k=c\x07\x02</span></code>), and <code class="docutils literal notranslate"><span class="pre">$MULTILINE_PROMPT_POS</span></code> (e.g., <code class="docutils literal notranslate"><span class="pre">\x01\x1b]133;B\x07\x02</span></code>) that are inserted before/after each continuation line ‘dots’ block to mark input</p></li>
<li><p>Wheels for Python 3.11 are part of the automated release action</p></li>
<li><p>Added <code class="docutils literal notranslate"><span class="pre">chdir</span></code> to <code class="docutils literal notranslate"><span class="pre">xonsh.tools</span></code>. This allows to use <code class="docutils literal notranslate"><span class="pre">with</span> <span class="pre">chdir("dir"):</span></code> to run commands block in the certain directory without manually cd-ing.</p></li>
<li><p>Display the current branch of Fossil VCS checkouts in the prompt,
similar to git and hg.</p></li>
<li><p>Added link to xonsh on Mastodon - <a class="reference external" href="https://mastodon.online/@xonsh">https://mastodon.online/@xonsh</a></p></li>
<li><p>xontrib load: added option <code class="docutils literal notranslate"><span class="pre">-s</span></code> to skip warning about not installed xontribs.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>Altered documentation for xonshrc to remove Python REPL prompts so that you can copy the code without having to edit it.</p></li>
<li><p>xonsh AppImage - bumped python to 3.11</p></li>
<li><p>The prompt end character switched to <code class="docutils literal notranslate"><span class="pre">@</span></code>.</p></li>
<li><p>The <cite>command not found</cite> error will show the <code class="docutils literal notranslate"><span class="pre">repr(cmd)</span></code> to uncover the cases when the command name has <code class="docutils literal notranslate"><span class="pre">\n</span></code>, <code class="docutils literal notranslate"><span class="pre">\t</span></code> or not visible color codes and raises the error.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">abbrevs</span></code> xontrib transferred to <a class="reference external" href="https://github.com/xonsh/xontrib-abbrevs">xontrib-abbrevs</a>.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">bashisms</span></code> xontrib transferred to <a class="reference external" href="https://github.com/xonsh/xontrib-bashisms">xontrib-bashisms</a>.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">free_cwd</span></code> xontrib transferred to <a class="reference external" href="https://github.com/xonsh/xontrib-free-cwd">xontrib-free-cwd</a>.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">whole_word_jumping</span></code> xontrib transferred to <a class="reference external" href="https://github.com/xonsh/xontrib-whole-word-jumping">xontrib-whole-word-jumping</a>.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">fish_completer</span></code> xontrib transferred to <a class="reference external" href="https://github.com/xonsh/xontrib-fish-completer">xontrib-fish-completer</a>.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">vox</span></code>, <code class="docutils literal notranslate"><span class="pre">autovox</span></code>, <code class="docutils literal notranslate"><span class="pre">voxapi</span></code> xontribs transferred to <a class="reference external" href="https://github.com/xonsh/xontrib-vox">xontrib-vox</a>.</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">pdb</span></code>, <code class="docutils literal notranslate"><span class="pre">xog</span></code> xontribs transferred to <a class="reference external" href="https://github.com/xonsh/xontrib-debug-tools">xontrib-debug-tools</a>.</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Fixed xpip alias for xonsh AppImage.</p></li>
<li><p>Fixed missing <code class="docutils literal notranslate"><span class="pre">webconfig/js/xonsh_sticker.svg</span></code> in <code class="docutils literal notranslate"><span class="pre">xonfig</span> <span class="pre">web</span></code>.</p></li>
<li><p>update load_xontrib pytest fixture to handle auto-loaded xontribs</p></li>
<li><p>Suppress subprocess traceback on exception in case <code class="docutils literal notranslate"><span class="pre">$XONSH_SHOW_TRACEBACK=False</span></code> with <code class="docutils literal notranslate"><span class="pre">$RAISE_SUBPROC_ERROR=True</span></code>.</p></li>
<li><p>Improve the error message when <code class="docutils literal notranslate"><span class="pre">$RAISE_SUBPROC_ERROR</span></code> is set to True.</p></li>
<li><p>Fixed xontrib-jupyter to work in JupyterLab and terminal-based <a class="reference external" href="https://github.com/joouha/euporie">Euporie</a> environment.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Evgeny</p></li>
<li><p>Mark Bestley</p></li>
<li><p>Samuel Dion-Girardeau</p></li>
<li><p>doronz88</p></li>
<li><p>Ivan Ogasawara</p></li>
<li><p>Tobias Becker</p></li>
<li><p>AkshayWarrier</p></li>
<li><p>Thomas Hess</p></li>
<li><p>kouhe3</p></li>
</ul>
</section>
<section id="v0-13-4">
<h2>v0.13.4<a class="headerlink" href="#v0-13-4" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>tests for methods changed in tools.py (is_tok_color_dict)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">$XDG_CACHE_HOME</span></code>, <code class="docutils literal notranslate"><span class="pre">$XONSH_CACHE_DIR</span></code> are now available inside <code class="docutils literal notranslate"><span class="pre">Xonsh</span></code></p></li>
<li><p>#2455 Add <cite>on_command_not_found</cite> event, fired when a command is not found.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>is_str_str_dict changed to check for Token:style dict</p></li>
</ul>
<p><strong>Removed:</strong></p>
<ul class="simple">
<li><p><code class="docutils literal notranslate"><span class="pre">$COMMANDS_CACHE_SIZE_WARNING</span></code> is removed. When <code class="docutils literal notranslate"><span class="pre">$COMMANDS_CACHE_SAVE_INTERMEDIATE</span></code> is enabled,
the cache file size is optimized.</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>#4668 Fix ptk completion stacking when auto-suggest is on and no normal completions are generated.</p></li>
<li><p>$XONSH_STYLE_OVERRIDES cannot be assigned dict of {Token: str} #4375</p></li>
<li><p>commands_cache: add a configurable value to disable cache. useful for running scripts</p></li>
<li><p>fixed stale results when <code class="docutils literal notranslate"><span class="pre">$COMMANDS_CACHE_SAVE_INTERMEDIATE</span></code> is enabled.</p></li>
<li><p>#4951 Fix gitstatus prompt when rebasing</p></li>
<li><p>fixed using aliases to override commands without the file extension on Windows</p></li>
<li><p>#3279 Add <cite>XONSH_HISTORY_IGNORE_REGEX</cite> support. You can specify a regular
expression in the environment variable <cite>XONSH_HISTORY_IGNORE_REGEX</cite> and any
command that matches the expression will not be added to the history.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Noortheen Raja</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Vasilis Gerakaris</p></li>
<li><p>Lie Ryan</p></li>
<li><p>Blake Ramsdell</p></li>
<li><p>Justin</p></li>
<li><p>yotamolenik</p></li>
<li><p>austin-yang</p></li>
<li><p>Marco Rubin</p></li>
<li><p>Qyriad</p></li>
</ul>
</section>
<section id="v0-13-3">
<h2>v0.13.3<a class="headerlink" href="#v0-13-3" title="Link to this heading">¶</a></h2>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p><code class="docutils literal notranslate"><span class="pre">pygments</span></code> startup crash when incorrect prepending <code class="docutils literal notranslate"><span class="pre">bg:</span></code> to <code class="docutils literal notranslate"><span class="pre">noinherit</span></code>
style directives</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
</ul>
</section>
<section id="v0-13-2">
<h2>v0.13.2<a class="headerlink" href="#v0-13-2" title="Link to this heading">¶</a></h2>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>When there is no git repository, the values of all <code class="docutils literal notranslate"><span class="pre">gitstatus</span></code> prompt fields are now <code class="docutils literal notranslate"><span class="pre">None</span></code>.</p></li>
<li><p>With <code class="docutils literal notranslate"><span class="pre">$THREAD_SUBPROCS=False</span></code>: When a callable alias is executed with <code class="docutils literal notranslate"><span class="pre">![]</span></code>, its standard output and standard error are no longer captured. This is because a separate thread is required in order to both capture the output and stream it to the terminal while the alias is running.</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Fixed timeit syntax error</p></li>
<li><p>When there is no git repository, <code class="docutils literal notranslate"><span class="pre">$PROMPT</span></code> format strings like <code class="docutils literal notranslate"><span class="pre">{gitstatus:</span> <span class="pre">hello</span> <span class="pre">{}}</span></code> now work as expected.</p></li>
<li><p>With <code class="docutils literal notranslate"><span class="pre">$THREAD_SUBPROCS=False</span></code>: When <code class="docutils literal notranslate"><span class="pre">cd</span></code> is used with an invalid directory, the error message is now correctly displayed.</p></li>
<li><p>Fixed case when xpip returns None instead of command.</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>anki-code</p></li>
<li><p>Peter Ye</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>Lie Ryan</p></li>
<li><p>amukher3</p></li>
<li><p>Ashish Kurmi</p></li>
</ul>
</section>
<section id="v0-13-1">
<h2>v0.13.1<a class="headerlink" href="#v0-13-1" title="Link to this heading">¶</a></h2>
<p><strong>Added:</strong></p>
<ul class="simple">
<li><p>The ujson (faster version of json) added to xonsh[full] package.</p></li>
</ul>
<p><strong>Changed:</strong></p>
<ul class="simple">
<li><p>Bumped Python version in <cite>xonsh.AppImage</cite> to 3.10</p></li>
<li><p>The terminal’s title is updated with the current command’s name even if the command is a captured command or a callable alias</p></li>
</ul>
<p><strong>Fixed:</strong></p>
<ul class="simple">
<li><p>Warn and continue if a user without <code class="docutils literal notranslate"><span class="pre">pygments</span></code> tries to load an unknown style</p></li>
<li><p>Fixed a bash completion bug when prefixing a file path with ‘<’ or ‘>’ (for redirecting stdin/stdout/stderr)</p></li>
<li><p>Fixed a bash completion bug when completing a git branch name when deleting a remote branch (e.g. <cite>git push origin :dev-branch</cite>)</p></li>
<li><p>A callable alias containing subprocess commands no longer freezes when piped to another command</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">less</span></code> no longer stops when a callable alias containing subprocess commands is piped into it</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">gitstatus</span></code> Prompt-field would be empty on paths without git setup.</p></li>
<li><p>When using the sway window manager, <code class="docutils literal notranslate"><span class="pre">swaymsg</span> <span class="pre">-t</span> <span class="pre">get_inputs</span></code> no longer fails with the error “Unable to receive IPC response”</p></li>
<li><p>The <code class="docutils literal notranslate"><span class="pre">current_job</span></code> variable now works as expected when used in <code class="docutils literal notranslate"><span class="pre">$TITLE</span></code></p></li>
</ul>
<p><strong>Security:</strong></p>
<ul class="simple">
<li><p><code class="docutils literal notranslate"><span class="pre">xpip</span></code> will never add <code class="docutils literal notranslate"><span class="pre">sudo</span></code> under any circumstances and will instead append <code class="docutils literal notranslate"><span class="pre">--user</span></code> as needed</p></li>
</ul>
<p><strong>Authors:</strong></p>
<ul class="simple">
<li><p>Gil Forsyth</p></li>
<li><p>Noortheen Raja</p></li>
<li><p>anki-code</p></li>
<li><p>Peter Ye</p></li>
<li><p>pre-commit-ci[bot]</p></li>