-
Notifications
You must be signed in to change notification settings - Fork 10
/
notes-1.14.x.html
884 lines (862 loc) · 50.6 KB
/
notes-1.14.x.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
<!DOCTYPE html>
<html lang="en">
<!--
Copyright 2014 Pants project contributors (see CONTRIBUTORS.md).
Licensed under the Apache License, Version 2.0 (see LICENSE).
-->
<head>
<meta charset="utf-8"/>
<title>1.14.x Stable Releases</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="pants-logo.ico">
<!-- In case this is a "test publish", tell search engines where real version lives: -->
<link rel="canonical" href="http://pantsbuild.org/notes-1.14.x.html">
<link rel="stylesheet" href="bootstrap-custom.min.css">
<link rel="stylesheet" href="bootstrap-custom-theme.min.css">
<link rel="stylesheet" href="docsite.css">
</head>
<body>
<div class="header">
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand navbar-brand-img" href="index.html">
<img src="pants-logo.ico" alt="[pantsbuild logo]">
</a>
<a class="navbar-brand" href="index.html">
Pants v1
</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="/">Docs</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="https://www.github.com/pantsbuild/pants">GitHub</a></li>
<li>
<form class="navbar-form navbar-left search" role="search" action="https://www.google.com/search">
<div class="form-group">
<input type="text" name="as_q" class="form-control query" placeholder="Search">
<input name="as_sitesearch" value="pantsbuild.org" type="hidden">
</div>
</form>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
<div class="deprecated">Pants v1 is no longer maintained. See <a href="https://www.pantsbuild.org/">here</a> for the Pants v2 documentation.</div>
</nav>
</div>
<div class="page">
<div class="container-fluid">
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-2">
<div class="site-toc">
<ul>
<li class="toc-h1 toc-heading">
Getting Started
</li>
<li class="toc-h1 toc-link ">
<a href="install.html">Installing Pants</a>
</li>
<li class="toc-h1 toc-link ">
<a href="setup_repo.html">Setting Up Pants</a>
</li>
<li class="toc-h1 toc-link ">
<a href="first_tutorial.html">Tutorial</a>
</li>
<li class="toc-h1 toc-link ">
<a href="common_tasks.html">Common Tasks</a>
</li>
<li class="toc-h1 toc-link ">
<a href="orgs.html">Pants for Organizations</a>
</li>
<li class="toc-h1 toc-heading">
Pants Basics
</li>
<li class="toc-h1 toc-link ">
<a href="why_use_pants.html">Why Use Pants?</a>
</li>
<li class="toc-h1 toc-link ">
<a href="first_concepts.html">Pants Concepts</a>
</li>
<li class="toc-h1 toc-link ">
<a href="build_files.html">BUILD files</a>
</li>
<li class="toc-h1 toc-link ">
<a href="target_addresses.html">Target Addresses</a>
</li>
<li class="toc-h1 toc-link ">
<a href="3rdparty.html">Third-Party Dependencies</a>
</li>
<li class="toc-h1 toc-link ">
<a href="options.html">Pants Options</a>
</li>
<li class="toc-h1 toc-link ">
<a href="invoking.html">Invoking Pants</a>
</li>
<li class="toc-h1 toc-link ">
<a href="reporting_server.html">Reporting Server</a>
</li>
<li class="toc-h1 toc-link ">
<a href="ide_support.html">IDE Support</a>
</li>
<li class="toc-h1">
<a class="sidebar-nav-heading" class="toc-drop" data-toggle="collapse" href="#JVM-Support" aria-expanded="false" aria-controls="JVM-Support">JVM Support<span class="caret"></span></a>
<ul class="collapse sidebar-nav sidebar-submenu" id="JVM-Support">
<li class="toc-h1 toc-link ">
<a href="jvm_projects.html">JVM Projects with Pants</a>
</li>
<li class="toc-h1 toc-link ">
<a href="3rdparty_jvm.html">JVM Dependency Management</a>
</li>
<li class="toc-h1 toc-link ">
<a href="scala.html">Scala Support</a>
</li>
<li class="toc-h1 toc-link ">
<a href="publish.html">Publishing Artifacts</a>
</li>
<li class="toc-h1 toc-link ">
<a href="from_maven.html">Pants for Maven Experts</a>
</li>
</ul>
</li>
<li class="toc-h1">
<a class="sidebar-nav-heading" class="toc-drop" data-toggle="collapse" href="#Python-Support" aria-expanded="false" aria-controls="Python-Support">Python Support<span class="caret"></span></a>
<ul class="collapse sidebar-nav sidebar-submenu" id="Python-Support">
<li class="toc-h1 toc-link ">
<a href="python_readme.html">Python Projects with Pants</a>
</li>
<li class="toc-h1 toc-link ">
<a href="3rdparty_py.html">Python 3rdparty Pattern</a>
</li>
</ul>
</li>
<li class="toc-h1 toc-link ">
<a href="go_readme.html">Go support for Pants</a>
</li>
<li class="toc-h1 toc-link ">
<a href="node_readme.html">Node.js Support</a>
</li>
<li class="toc-h1 toc-heading">
Code & Doc Generation
</li>
<li class="toc-h1 toc-link ">
<a href="thrift_deps.html">Thrift</a>
</li>
<li class="toc-h1 toc-link ">
<a href="grpcio_gen.html">Python gRPC + protobufs</a>
</li>
<li class="toc-h1 toc-link ">
<a href="page.html">Markdown</a>
</li>
<li class="toc-h1 toc-heading">
Getting Help
</li>
<li class="toc-h1 toc-link ">
<a href="tshoot.html">Troubleshooting</a>
</li>
<li class="toc-h1 toc-link ">
<a href="community.html">Community</a>
</li>
<li class="toc-h1 toc-heading">
Reference
</li>
<li class="toc-h1 toc-link ">
<a href="build_dictionary.html">Pants BUILD Dictionary</a>
</li>
<li class="toc-h1 toc-link ">
<a href="options_reference.html">Pants Reference</a>
</li>
<li class="toc-h1">
<a class="sidebar-nav-heading" class="toc-drop" data-toggle="collapse" href="#Release-Notes" aria-expanded="false" aria-controls="Release-Notes">Release Notes<span class="caret"></span></a>
<ul class="" id="Release-Notes">
<li class="toc-h1 toc-link ">
<a href="notes-1.30.x.html">1.30.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.29.x.html">1.29.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.28.x.html">1.28.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.27.x.html">1.27.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.26.x.html">1.26.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.25.x.html">1.25.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.24.x.html">1.24.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.23.x.html">1.23.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.22.x.html">1.22.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.21.x.html">1.21.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.20.x.html">1.20.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.19.x.html">1.19.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.18.x.html">1.18.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.17.x.html">1.17.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.16.x.html">1.16.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.15.x.html">1.15.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link toc-here">
1.14.x Stable Releases
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.13.x.html">1.13.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.12.x.html">1.12.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.11.x.html">1.11.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.10.x.html">1.10.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.9.x.html">1.9.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.8.x.html">1.8.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.7.x.html">1.7.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.6.x.html">1.6.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.5.x.html">1.5.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.4.x.html">1.4.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.3.x.html">1.3.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.2.x.html">1.2.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.1.x.html">1.1.x Stable Releases</a>
</li>
<li class="toc-h1 toc-link ">
<a href="notes-1.0.x.html">1.0.x Stable Releases</a>
</li>
</ul>
</li>
<li class="toc-h1 toc-heading">
Developer
</li>
<li class="toc-h1 toc-link ">
<a href="dev.html">Pants Developer Center</a>
</li>
<li class="toc-h1 toc-link ">
<a href="export.html">Export Format</a>
</li>
<li class="toc-h1 toc-link ">
<a href="architecture.html">Architecture</a>
</li>
<li class="toc-h1 toc-heading">
Blogs
</li>
<li class="toc-h1 toc-link ">
<a href="coursier_migration.html">Twitter's Coursier Migration</a>
</li>
</ul>
</div> <!-- site-toc -->
</div>
<div class="col-md-8">
<div class="content">
<div class="mainflow">
<nav class="pagetoc">
<ul>
<li class="toc-h1"><a href="#heading__101">1.14.0 (3/07/2019)</a></li>
<li class="toc-h1"><a href="#heading_rc_102">1.14.0rc3 (2/21/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_103">API Changes</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_104">Bugfixes</a></li>
<li class="toc-h1"><a href="#heading_rc_105">1.14.0rc2 (2/15/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_106">API Changes</a></li>
<li class="toc-h1"><a href="#heading_rc_107">1.14.0rc1 (2/06/2019)</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_108">Bugfixes</a></li>
<li class="toc-h1"><a href="#heading_rc_109">1.14.0rc0 (2/01/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_110">New Features</a></li>
<li class="toc-h2"><a href="#heading_apichanges_111">API Changes</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_112">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_113">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_114">1.14.0.dev3 (1/27/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_115">New Features</a></li>
<li class="toc-h2"><a href="#heading_apichanges_116">API Changes</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_117">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_118">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_119">1.14.0.dev2 (1/19/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_120">New Features</a></li>
<li class="toc-h2"><a href="#heading_apichanges_121">API Changes</a></li>
<li class="toc-h2"><a href="#heading_versionupdates_122">Version updates</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_123">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_124">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_125">1.14.0.dev1 (1/4/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_126">New Features</a></li>
<li class="toc-h2"><a href="#heading_versionupdates_127">Version updates</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_128">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_129">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_130">1.14.0.dev0 (12/21/2018)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_131">New Features</a></li>
<li class="toc-h2"><a href="#heading_versionupdates_132">Version updates</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_133">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_134">Refactoring, Improvements, and Tooling</a></li>
</ul>
</nav>
<!-- main content start -->
<!-- generated by pants! -->
<title>1.14.x Stable Releases</title>
<p style="font: 200% bold">1.14.x Stable Releases</p>
<p>This document describes releases leading up to the <tt class="docutils literal">1.14.x</tt> <tt class="docutils literal">stable</tt> series.</p>
<div class="section" id="id1">
<h1 id="heading__101">1.14.0 (3/07/2019)</h1>
<p>The first stable release of the <tt class="docutils literal">1.14.x</tt> series, with no changes since <tt class="docutils literal">rc3</tt>!</p>
</div>
<div class="section" id="rc3-2-21-2019">
<h1 id="heading_rc_102">1.14.0rc3 (2/21/2019)</h1>
<div class="section" id="api-changes">
<h2 id="heading_apichanges_103">API Changes</h2>
<ul class="simple">
<li>Add flags to processs_executor that say where to materialize output and what output is (#7201)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7201">PR #7201</a></li>
<li>Resolve all platforms from all python targets (#7156)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7156">PR #7156</a></li>
<li>Remove deprecated test classes (#7243)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7243">PR #7243</a></li>
</ul>
</div>
<div class="section" id="bugfixes">
<h2 id="heading_bugfixes_104">Bugfixes</h2>
<ul class="simple">
<li>Revert remote execution from tower to grpcio (#7256)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7256">PR #7256</a></li>
<li>Avoid capturing Snapshots for previously digested codegen outputs (#7241)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7241">PR #7241</a></li>
<li>Validate and maybe prune interpreter cache run over run (#7225)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7225">PR #7225</a></li>
</ul>
</div>
</div>
<div class="section" id="rc2-2-15-2019">
<h1 id="heading_rc_105">1.14.0rc2 (2/15/2019)</h1>
<div class="section" id="id2">
<h2 id="heading_apichanges_106">API Changes</h2>
<ul class="simple">
<li>Pin pytest version to avoid induced breakage from more-itertools transitive dep (#7238)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7238">PR #7238</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7240">PR #7240</a></li>
</ul>
</div>
</div>
<div class="section" id="rc1-2-06-2019">
<h1 id="heading_rc_107">1.14.0rc1 (2/06/2019)</h1>
<div class="section" id="id3">
<h2 id="heading_bugfixes_108">Bugfixes</h2>
<ul class="simple">
<li>Only lint the direct sources of a linted target. (#7219)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7219">PR #7219</a></li>
<li>Do not render the coursier workunit unless it will run. (#7218)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7218">PR #7218</a></li>
<li>Revert "make GoTest subclass PartitionedTestRunnerTaskMixin to test transitively" (#7212)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7212">PR #7212</a></li>
<li>Only run master-dependent commithooks on master (#7214)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7214">PR #7214</a></li>
<li>Absolute-ify GIT_DIR (#7210)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7210">PR #7210</a></li>
<li>Fix release script ownership check command name. (#7204)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7204">PR #7204</a></li>
</ul>
</div>
</div>
<div class="section" id="rc0-2-01-2019">
<h1 id="heading_rc_109">1.14.0rc0 (2/01/2019)</h1>
<div class="section" id="new-features">
<h2 id="heading_newfeatures_110">New Features</h2>
<ul class="simple">
<li>Add support for trace propagation from Pants callers (#7177)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7177">PR #7177</a></li>
<li>Add scala_exclude to append the Scala major version in BUILD files. (#7189)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7189">PR #7189</a></li>
<li>fetch native libraries from python requirements, e.g. tensorflow to define custom operators (#7046)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7046">PR #7046</a></li>
</ul>
</div>
<div class="section" id="id4">
<h2 id="heading_apichanges_111">API Changes</h2>
<ul class="simple">
<li>Add toolchain_variant on native target level (#7179)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7179">PR #7179</a></li>
<li>Bump to future==0.17.1 (#7159)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7159">PR #7159</a></li>
<li>Move dependencies that are only consumed by examples/testprojects out of core pants. (#7174)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7174">PR #7174</a></li>
<li>Loosen glob type bounds so that OrderedSet is fine (#7166)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7166">PR #7166</a></li>
</ul>
</div>
<div class="section" id="id5">
<h2 id="heading_bugfixes_112">Bugfixes</h2>
<ul class="simple">
<li>Set default PY in cargo wrapper (#7195)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7195">PR #7195</a></li>
<li>Consume the PyTest Subsystem to stabilize the pytest version. (#7193)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7193">PR #7193</a></li>
<li>Fix setting conan remotes (#7191)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7191">PR #7191</a></li>
<li>Add setup workunit to critical_path_timings for all main workunits (#7184)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7184">PR #7184</a></li>
<li>Fix test_pantsd_integration (#7175)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7175">PR #7175</a></li>
<li>Work around multi-python pex issues for checker. (#7178)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7178">PR #7178</a></li>
</ul>
</div>
<div class="section" id="refactoring-improvements-and-tooling">
<h2 id="heading_refactoringimproveme_113">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Remove unused operation wrapper (#7194)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7194">PR #7194</a></li>
<li>Refactor packages.py in preparation for adding Python 3 support (#7190)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7190">PR #7190</a></li>
<li>Add ability to specify Python minor version when running <cite>./pants</cite> (#7187)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7187">PR #7187</a></li>
<li>[junit-runner] extracted refactoring from sec mgr change (#6860)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6860">PR #6860</a></li>
<li>virtualenv always finds git root (#7173)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7173">PR #7173</a></li>
<li>Don't re-panic in mock execution server (#7167)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7167">PR #7167</a></li>
<li>Engine can store python OrderedSets (#7165)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7165">PR #7165</a></li>
<li>Error on all rust warnings (#7154)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7154">PR #7154</a></li>
<li>Start testing pre commit hooks (#7118)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7118">PR #7118</a></li>
<li>Remove scala_repl_integration and testprojects_integration from Python 3 blacklist (#7169)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7169">PR #7169</a></li>
</ul>
</div>
</div>
<div class="section" id="dev3-1-27-2019">
<h1 id="heading_dev_114">1.14.0.dev3 (1/27/2019)</h1>
<div class="section" id="id6">
<h2 id="heading_newfeatures_115">New Features</h2>
<ul class="simple">
<li>make GoTest subclass PartitionedTestRunnerTaskMixin to test transitively (#7145)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7145">PR #7145</a></li>
<li>Take deploy_jar_rules into account when detecting duplicates (#7113)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7113">PR #7113</a></li>
<li>Add Zipkin tracing to pants v1 (#7125)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7125">PR #7125</a></li>
<li>Allow options to be logged to stats server (#7119)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7119">PR #7119</a></li>
</ul>
</div>
<div class="section" id="id7">
<h2 id="heading_apichanges_116">API Changes</h2>
<ul class="simple">
<li>Bump pyzipkin to 0.17.0 (#7161)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7161">PR #7161</a></li>
<li>remove support for using the pants native toolchain with distutils Extensions in setup.py (#7126)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7126">PR #7126</a></li>
<li>Bump cucumber version to get jar with correct unicode encoding (#7134)
<a class="reference external" href="https://github.com/pantsbuild/pants/issues/7123.">Issue #7123.</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7134">PR #7134</a></li>
</ul>
</div>
<div class="section" id="id8">
<h2 id="heading_bugfixes_117">Bugfixes</h2>
<ul class="simple">
<li>blacklist idea plugin gen from faulty earlier edit (#7157)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7157">PR #7157</a></li>
<li>Add Python 3 support to Pytest with V2 engine (#7153)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7153">PR #7153</a></li>
<li>Fix Py2 regression with rjust argument (#7132)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7132">PR #7132</a></li>
<li>v2 python test execution fails if resolve process fails (#7135)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7135">PR #7135</a></li>
</ul>
</div>
<div class="section" id="id9">
<h2 id="heading_refactoringimproveme_118">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Fixes to get contrib, lint, JVM tests, and platform-specific tests working with ./pants3 (#7067)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7067">PR #7067</a></li>
<li>Properly handle unicode and byte streams with pantsd for Python 3 (#7130)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7130">PR #7130</a></li>
<li>populate parent directories of process outputs locally to match remote execution api (#7133)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7133">PR #7133</a></li>
<li>Fix test_jvm_platform_analysis_integration.py using unknown platforms (#7140)
<a class="reference external" href="https://github.com/pantsbuild/pants/issues/7139">Issue #7139</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7140">PR #7140</a></li>
<li>Remove option integration test from Python 3 blacklist (#7142)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7142">PR #7142</a></li>
<li>Fix Idea plugin unicode issues with Python 3 (#7141)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7141">PR #7141</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7157">PR #7157</a></li>
<li>Fix legacy graph test Python 3 issue with rendering unicode literals (#7143)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7143">PR #7143</a></li>
<li>Fix setup_py.py unicode issue with Python 3 (#7144)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7144">PR #7144</a></li>
<li>Fix various backend/jvm/task Python 3 and unicode issues (#7124)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7124">PR #7124</a></li>
<li>refactor ImportJarsMixin into ImportRemoteSourcesMixin for extensibility (same with tasks) (#7061)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7061">PR #7061</a></li>
<li>Ignore 3rd party deprecation warnings for unmaintained libraries (#7110)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7110">PR #7110</a></li>
<li>Update to rust 1.32.0 (#7094)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7094">PR #7094</a></li>
</ul>
</div>
</div>
<div class="section" id="dev2-1-19-2019">
<h1 id="heading_dev_119">1.14.0.dev2 (1/19/2019)</h1>
<div class="section" id="id11">
<h2 id="heading_newfeatures_120">New Features</h2>
<ul class="simple">
<li>Allow nailgun execution for RscCompile by bundling together the tool classpaths (#7092)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7092">PR #7092</a></li>
<li>Python code generation for protobufs and gRPC (#6974)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6974">PR #6974</a></li>
<li>refactor NativeExternalLibraryFetch to be a SimpleCodegenTask (#7060)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7060">PR #7060</a></li>
<li>Rerun proto compilation when protos change (#7029)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7029">PR #7029</a></li>
</ul>
</div>
<div class="section" id="id12">
<h2 id="heading_apichanges_121">API Changes</h2>
<ul class="simple">
<li>move dict key encoding into hash_utils.py and deprecate stable_json_hash() (#6475)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6475">PR #6475</a></li>
</ul>
</div>
<div class="section" id="version-updates">
<h2 id="heading_versionupdates_122">Version updates</h2>
<ul class="simple">
<li>Update psutil to fix deprecation warnings (#7112)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7112">PR #7112</a></li>
<li>Bump twitter.common dependencies to 0.3.10 to pull in Py3 fixes. (#7102)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7102">PR #7102</a></li>
<li>Upgrade several dependencies to fix Py3 deprecations (#7053)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7053">PR #7053</a></li>
<li>Update pantsbuild/pants to scala 2.12, and bump the default patch version for 2.12 (#7035)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7035">PR #7035</a></li>
</ul>
</div>
<div class="section" id="id13">
<h2 id="heading_bugfixes_123">Bugfixes</h2>
<ul class="simple">
<li>Move pants.init.subprocess into pants.process (#7081)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7081">PR #7081</a></li>
<li>Continue to reexport stable_json_hash from its previous location. (#7103)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7103">PR #7103</a></li>
<li>[compile.rsc] fix key error; ensure java compiles get necessary zinc scala deps (#7038)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7038">PR #7038</a></li>
<li>Fix jvm compile unicode issues when using Python 3 (#6987)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6987">PR #6987</a></li>
<li>Revert "set PEX_PYTHON_PATH when invoking the checkstyle pex for pexrc to work (#7013)" (#7028)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7028">PR #7028</a></li>
</ul>
</div>
<div class="section" id="id14">
<h2 id="heading_refactoringimproveme_124">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Reorder CI based on what's most likely to change from a typical PR (#7104)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7104">PR #7104</a></li>
<li>Switch operation getting to tower (#7108)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7108">PR #7108</a></li>
<li>Only clippy on CI on one shard (#7109)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7109">PR #7109</a></li>
<li>Make ci.sh's -b bootstrap flag a positive flag (#7096)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7096">PR #7096</a></li>
<li>Use docker on wheel builder shard (#7100)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7100">PR #7100</a></li>
<li>don't override PANTS_DEV if set to 0 in the calling environment to make python checkstyle work in a separate repo (#7017)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7017">PR #7017</a></li>
<li>Split out unrelated CI jobs into their own distinct shards (#7090)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7090">PR #7090</a></li>
<li>Hotfix for #6981 breaking release.sh (#7091)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7091">PR #7091</a></li>
<li>Use ./pants3 for majority of CI (#6981)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6981">PR #6981</a></li>
<li>[compile.rsc] fix typo (#7057)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7057">PR #7057</a></li>
<li>Fix threading issue with report.py when using Py3 (#7085)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7085">PR #7085</a></li>
<li>Allow Pants to run with Python 3 via <cite>./pants3</cite> script (#6959)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6959">PR #6959</a></li>
<li>Properly render n in exceptions with Py3 (#7073)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7073">PR #7073</a></li>
<li>use the asttokens 3rdparty lib to make @rule parsing errors very smooth (#7023)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7023">PR #7023</a></li>
<li>Add specific copyright year check on newly added python files (#7066)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7066">PR #7066</a></li>
<li>Use homebrew addon feature in CI (#7062)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7062">PR #7062</a></li>
<li>Add <cite>collections.abc</cite> backport to fix deprecation warning (#7055)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7055">PR #7055</a></li>
<li>Improve symlink errors (#7054)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7054">PR #7054</a></li>
<li>Fix invalid escape sequence problems (#7056)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7056">PR #7056</a></li>
<li>Build rust code only once per platform in a CI run (#7047)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7047">PR #7047</a></li>
<li>Remote execution uses tower-grpc to start executions (#7049)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7049">PR #7049</a></li>
<li>Workaround for homebrew bug with osx shard (#7050)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7050">PR #7050</a>
<a class="reference external" href="https://github.com/Homebrew/brew/issues/5513">Issue #5513</a></li>
<li>Support some conversions for prost protos (#7040)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7040">PR #7040</a></li>
<li>Expose 1.13.x in the docsite notes dropdown. (#7045)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7045">PR #7045</a></li>
<li>Reqwest uses rustls not openssl (#7002)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7002">PR #7002</a></li>
<li>Fix awscli install to be language agnostic. (#7033)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7033">PR #7033</a></li>
<li>Improve readability of integration test logging. (#7036)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7036">PR #7036</a></li>
<li>Generate protos for tower as well as grpcio (#7030)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7030">PR #7030</a></li>
<li>Ensure all rust crates have common prefix (#7031)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7031">PR #7031</a></li>
<li>Eliminate bs4 warning. (#7027)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7027">PR #7027</a></li>
</ul>
</div>
</div>
<div class="section" id="dev1-1-4-2019">
<h1 id="heading_dev_125">1.14.0.dev1 (1/4/2019)</h1>
<div class="section" id="id15">
<h2 id="heading_newfeatures_126">New Features</h2>
<ul class="simple">
<li>Validate yield statements in rule bodies to remove ambiguity about returning (#7019)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7019">PR #7019</a></li>
<li>Add support for consuming Subsystems from @rules (#6993)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6993">PR #6993</a></li>
<li>add rules to plugins and add some integration tests, maybe (#6892)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6892">PR #6892</a></li>
</ul>
</div>
<div class="section" id="id16">
<h2 id="heading_versionupdates_127">Version updates</h2>
<ul class="simple">
<li>Update to rust 2018 (#6867)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6867">PR #6867</a></li>
</ul>
</div>
<div class="section" id="id17">
<h2 id="heading_bugfixes_128">Bugfixes</h2>
<ul class="simple">
<li>set PEX_PYTHON_PATH when invoking the checkstyle pex for pexrc to work (#7013)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7013">PR #7013</a></li>
<li>fix binary_util.py main method, add unit test, and kill integration test (#7010)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7010">PR #7010</a></li>
<li>Markdown writer errors are written properly (#6975)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6975">PR #6975</a></li>
<li>Fix unused_must_use, error in the future (#6999)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6999">PR #6999</a></li>
<li>Add python version to the native cache key (#6991)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6991">PR #6991</a></li>
<li>Fix invalid escape sequence & regex expression deprecations (#6984)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6984">PR #6984</a></li>
<li>Fix test_checkstyle.py interpreter constraint (#6983)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6983">PR #6983</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6959">PR #6959</a></li>
<li>Fix native.py unicode issue leading to compile error with Python 3 (#6982)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6982">PR #6982</a></li>
<li>Fix python_artifact fingerprint unicode issue for Python 3 (#6971)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6971">PR #6971</a></li>
</ul>
</div>
<div class="section" id="id19">
<h2 id="heading_refactoringimproveme_129">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Eliminate dead code warnings. (#7018)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7018">PR #7018</a></li>
<li>Retrofit the Conan tool using PythonToolBase. (#6992)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6992">PR #6992</a></li>
<li>A preliminary bootstrapping CI stage, to prevent repeated work in each CI shard. (#7012)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7012">PR #7012</a></li>
<li>add unit testing for requesting transitively available products (#7015)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7015">PR #7015</a></li>
<li>When compiling with rsc, metacp java libraries in a separate execution graph node. (#6940)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6940">PR #6940</a></li>
<li>digest returns hashing::Digest (#7006)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7006">PR #7006</a></li>
<li>Fix all rust clippy warnings (#7001)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7001">PR #7001</a></li>
<li>Engine can store dict (#6996)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6996">PR #6996</a></li>
<li>Programmatically add rust config to vendored protos (#7000)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7000">PR #7000</a></li>
<li>Engine can store bools (#6994)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6994">PR #6994</a></li>
<li>Clarify which files should be edited when releasing from branch (#6988)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6988">PR #6988</a></li>
<li>Core has a PathBuf for build root (#6995)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6995">PR #6995</a></li>
<li>Don't explicitly use TaskRule (#6980)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6980">PR #6980</a></li>
<li>Make UI Per-session instead of per-request (#6827)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6827">PR #6827</a></li>
<li>Replace deprecated cgi.escape() with html.escape() (#6986)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6986">PR #6986</a></li>
<li>Allow remote store RPC attempts to be configured (#6978)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6978">PR #6978</a></li>
<li>Prep for 1.13.0 (#6977)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6977">PR #6977</a></li>
<li>Allow fs_util thread count to be configured (#6976)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6976">PR #6976</a></li>
<li>Convert Native into a singleton (#6979)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6979">PR #6979</a></li>
</ul>
</div>
</div>
<div class="section" id="dev0-12-21-2018">
<h1 id="heading_dev_130">1.14.0.dev0 (12/21/2018)</h1>
<div class="section" id="id20">
<h2 id="heading_newfeatures_131">New Features</h2>
<ul class="simple">
<li>Add support for deprecating scoped SubsystemDependencies (#6961)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6961">PR #6961</a></li>
<li>Add a flag to filedeps v1 to output abs or rel paths (#6960)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6960">PR #6960</a></li>
<li>Add serverset (#6921)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6921">PR #6921</a></li>
<li>Use serverset for Store (#6931)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6931">PR #6931</a></li>
<li>Add Python 3 support to C and C++ module initialization (#6930)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6930">PR #6930</a></li>
<li>Support source and 3rdparty dependencies in v2 python test running (#6915)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6915">PR #6915</a></li>
<li>Add tool classpath for ./pants scalafix (#6926)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6926">PR #6926</a></li>
<li>Log aggregate statistics for remote executions (#6812)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6812">PR #6812</a></li>
</ul>
</div>
<div class="section" id="id21">
<h2 id="heading_versionupdates_132">Version updates</h2>
<ul class="simple">
<li>Upgrade Scrooge, Finagle, and Thrift for unified Thrift library and Py3 support (#6945)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6945">PR #6945</a></li>
<li>Bump zinc bootstrapper to 0.0.4 (#6967)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6967">PR #6967</a></li>
<li>Set CI's minimum Python 3 version to 3.6 (#6954)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6954">PR #6954</a></li>
<li>Bump scalafix version and use os.pathsep (#6938)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6938">PR #6938</a></li>
</ul>
</div>
<div class="section" id="id22">
<h2 id="heading_bugfixes_133">Bugfixes</h2>
<ul class="simple">
<li>Handle ValueError when child wants to reset stderr but it is closed. (#6932)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6932">PR #6932</a></li>
<li>Manually manage Delay's timer thread (#6950)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6950">PR #6950</a></li>
</ul>
</div>
<div class="section" id="id23">
<h2 id="heading_refactoringimproveme_134">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Ensure digests are uploaded before attempting execution (#6965)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6965">PR #6965</a></li>
<li>Fix tokenize encoding issue engine parser on Python 3 (#6962)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6962">PR #6962</a></li>
<li>Fix scheduler.metrics() returning bytes instead of unicode (#6969)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6969">PR #6969</a></li>
<li>Use stdout with bytes for task context (#6968)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6968">PR #6968</a></li>
<li>Fix plaintext_recorder sometimes being passed TextIO (#6963)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6963">PR #6963</a></li>
<li>Switch daytime CI to Python 3 only (#6952)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6952">PR #6952</a></li>
<li>Renamespace and publish the buck zip utils (#6955)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6955">PR #6955</a></li>
<li>Add filedeps goal and tests for v2 (#6933)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6933">PR #6933</a></li>
<li>serverset: Add ability to retry a function (#6953)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6953">PR #6953</a></li>
<li>Only build fs_util when releasing (#6951)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6951">PR #6951</a></li>
<li>Exclude Antlr test from testprojects to avoid interpreter conflict (#6944)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6944">PR #6944</a></li>
<li>Fix failing lint with TEST_BUILD pattern (#6943)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6943">PR #6943</a></li>
<li>Fix relative import for testprojects dummy test on Python 3 (#6942)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6942">PR #6942</a></li>
<li>Fix relative import for conftest test on Python 3 (#6941)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6941">PR #6941</a></li>
<li>Fix Travis environment variable overriding interpreter_selection test's config (#6939)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6939">PR #6939</a></li>
<li>PythonToolPrepBase now sets up its interpreter. (#6928)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6928">PR #6928</a></li>
<li>Remove remaining unnecessary __future__ imports (#6925)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6925">PR #6925</a></li>
<li>Construct clients on demand (#6920)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6920">PR #6920</a></li>
<li>Enforce interpreter constraints for antlr3 python code. (#6924)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6924">PR #6924</a></li>
</ul>
</div>
</div>
<!-- main content end -->
<div class="generated">
Generated by <a href="docs.html">publish_docs</a>
from dist/markdown/html/src/python/pants/notes/1.14.x.html 2022-12-03T01:08:59.749079
</div>
</div> <!-- mainflow -->
</div> <!-- content -->
</div>
<div class="col-md-1">
</div>
</div> <!-- row -->
</div> <!-- container-fluid -->
</div> <!-- page -->
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha384-I6F5OKECLVtK/BL+8iSLDEHowSAfUo76ZL9+kGAgTRdiByINKJaqTPH/QVNS1VDb" crossorigin="anonymous"></script>
<script src="bootstrap-custom.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-78111411-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>