-
Notifications
You must be signed in to change notification settings - Fork 10
/
notes-1.16.x.html
958 lines (936 loc) · 54.9 KB
/
notes-1.16.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
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
<!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.16.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.16.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 toc-here">
1.16.x Stable Releases
</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 ">
<a href="notes-1.14.x.html">1.14.x Stable Releases</a>
</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.16.0 (7/01/2019)</a></li>
<li class="toc-h1"><a href="#heading_rc_102">1.16.0rc6 (6/22/2019)</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_103">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_104">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_rc_105">1.16.0rc5 (5/29/2019)</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_106">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_107">New Features</a></li>
<li class="toc-h1"><a href="#heading_rc_108">1.16.0rc4 (5/22/2019)</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_109">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_110">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_rc_111">1.16.0rc3 (5/21/2019)</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_112">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_rc_113">1.16.0rc2 (5/20/2019)</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_114">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_115">Bugfixes</a></li>
<li class="toc-h1"><a href="#heading_rc_116">1.16.0rc1 (5/17/2019)</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_117">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_versionupdates_118">Version updates</a></li>
<li class="toc-h1"><a href="#heading_rc_119">1.16.0rc0 (5/7/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_120">API Changes</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_121">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_122">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_123">1.16.0.dev4 (5/06/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_124">New Features</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_125">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_126">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_127">1.16.0.dev3 (4/27/2019)</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-h2"><a href="#heading_documentation_130">Documentation</a></li>
<li class="toc-h1"><a href="#heading_dev_131">1.16.0.dev2 (4/22/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_132">New features</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_133">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_documentation_134">Documentation</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_135">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h2"><a href="#heading_versionupdates_136">Version updates</a></li>
<li class="toc-h1"><a href="#heading_dev_137">1.16.0.dev1 (4/12/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_138">API Changes</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_139">New features</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_140">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_141">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_142">1.16.0.dev0 (3/29/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_143">New features</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_144">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_145">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_documentation_146">Documentation</a></li>
</ul>
</nav>
<!-- main content start -->
<!-- generated by pants! -->
<title>1.16.x Stable Releases</title>
<p style="font: 200% bold">1.16.x Stable Releases</p>
<p>This document describes releases leading up to the <tt class="docutils literal">1.16.x</tt> <tt class="docutils literal">stable</tt> series.</p>
<div class="section" id="id1">
<h1 id="heading__101">1.16.0 (7/01/2019)</h1>
<p>The first stable release of the <tt class="docutils literal">1.16.0</tt> series, with no changes since the previous rc.</p>
</div>
<div class="section" id="rc6-6-22-2019">
<h1 id="heading_rc_102">1.16.0rc6 (6/22/2019)</h1>
<div class="section" id="bugfixes">
<h2 id="heading_bugfixes_103">Bugfixes</h2>
<ul class="simple">
<li>Fix zipkin multithreading issue #7415 (#7826)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7826">PR #7826</a></li>
<li>Fix rsc compile transitive dep bug introduced in #7742 (#7825)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7825">PR #7825</a></li>
<li>Fix <cite>py-thrift-namespace-clash-check</cite> type issue when logging with <cite>--no-strict</cite> mode (#7864)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7864">PR #7864</a></li>
</ul>
</div>
<div class="section" id="refactoring-improvements-and-tooling">
<h2 id="heading_refactoringimproveme_104">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Use <cite>--no-enabled-shared</cite> for Linux wheel-builder interpreter so that the released PEX works with statically built interpreters (#7794)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7794">PR #7794</a></li>
<li>Avoid redundant work while hackily_snapshot()ing. (#7829)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7829">PR #7829</a></li>
</ul>
</div>
</div>
<div class="section" id="rc5-5-29-2019">
<h1 id="heading_rc_105">1.16.0rc5 (5/29/2019)</h1>
<div class="section" id="id2">
<h2 id="heading_bugfixes_106">Bugfixes</h2>
<ul class="simple">
<li>Force sequential runs under pantsd (#7781)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7781">PR #7781</a></li>
<li>make assorted rsc task fixes (#7742)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7742">PR #7742</a></li>
<li>Always use the global interpreter for PythonExecutionTaskBase. (#7801)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7801">PR #7801</a></li>
</ul>
</div>
<div class="section" id="new-features">
<h2 id="heading_newfeatures_107">New Features</h2>
<ul class="simple">
<li>Rsc native image support (#7809)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7809">PR #7809</a></li>
<li>Hermetic zinc runs with a native-image (#7796)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7796">PR #7796</a></li>
</ul>
</div>
</div>
<div class="section" id="rc4-5-22-2019">
<h1 id="heading_rc_108">1.16.0rc4 (5/22/2019)</h1>
<div class="section" id="id3">
<h2 id="heading_bugfixes_109">Bugfixes</h2>
<ul class="simple">
<li>Have the daemon wait until we stop writing to the socket. (#7782)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7782">PR #7782</a></li>
</ul>
</div>
<div class="section" id="id4">
<h2 id="heading_refactoringimproveme_110">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Create Pipe wrapper around pipes (#7740)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7740">PR #7740</a></li>
</ul>
</div>
</div>
<div class="section" id="rc3-5-21-2019">
<h1 id="heading_rc_111">1.16.0rc3 (5/21/2019)</h1>
<div class="section" id="id5">
<h2 id="heading_refactoringimproveme_112">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Only python_binary's constraint should be included in a built pex (#7776)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7776">PR #7776</a></li>
<li>Revert v2 zipkin support due to #7415. (#7773)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7773">PR #7773</a></li>
</ul>
</div>
</div>
<div class="section" id="rc2-5-20-2019">
<h1 id="heading_rc_113">1.16.0rc2 (5/20/2019)</h1>
<div class="section" id="id6">
<h2 id="heading_refactoringimproveme_114">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Memoize graph walks on Context (#7758)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7758">PR #7758</a></li>
<li>Hash an entire json input in one call. (#7759)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7759">PR #7759</a></li>
</ul>
</div>
<div class="section" id="id7">
<h2 id="heading_bugfixes_115">Bugfixes</h2>
<ul class="simple">
<li>Use global instance of PythonSetup for resolve requirements task base (#7672)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7672">PR #7672</a></li>
</ul>
</div>
</div>
<div class="section" id="rc1-5-17-2019">
<h1 id="heading_rc_116">1.16.0rc1 (5/17/2019)</h1>
<div class="section" id="id8">
<h2 id="heading_bugfixes_117">Bugfixes</h2>
<ul class="simple">
<li>Confluence publishing uses correct text types (#7746)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7746">PR #7746</a></li>
<li>Fix 'current' platform check for python_dist() targets with C/C++ sources (#7687)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7687">PR #7687</a></li>
<li>Fix ordering of args from compiler_option_sets and add test for scalac profiling (#7683)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7683">PR #7683</a></li>
</ul>
</div>
<div class="section" id="version-updates">
<h2 id="heading_versionupdates_118">Version updates</h2>
<ul class="simple">
<li>Bump pex to 1.6.7 (#7731)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7731">PR #7731</a></li>
</ul>
</div>
</div>
<div class="section" id="rc0-5-7-2019">
<h1 id="heading_rc_119">1.16.0rc0 (5/7/2019)</h1>
<div class="section" id="api-changes">
<h2 id="heading_apichanges_120">API Changes</h2>
<ul class="simple">
<li>allow configuration of the subsystems to initialize in a test (#7665)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7665">PR #7665</a></li>
<li>Replace GracefulTerminationException with PantsRunFinishedWithFailureException (#7671)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7671">PR #7671</a></li>
</ul>
</div>
<div class="section" id="id9">
<h2 id="heading_bugfixes_121">Bugfixes</h2>
<ul class="simple">
<li>Fix for reference cycle from Target to BuildGraph (#7666)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7666">PR #7666</a></li>
<li>Put all arguments to javac in safe_args not just the source paths (#7651)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7651">PR #7651</a></li>
<li>convert to text_type() for external repos running pants py2 (#7664)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7664">PR #7664</a></li>
<li>Small logging update to java executor and fix undefined var in release.sh (#7667)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7667">PR #7667</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7370">PR #7370</a></li>
</ul>
</div>
<div class="section" id="id10">
<h2 id="heading_refactoringimproveme_122">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Short-circuit primitive encoding on CoercingEncoder (#7655)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7655">PR #7655</a></li>
</ul>
</div>
</div>
<div class="section" id="dev4-5-06-2019">
<h1 id="heading_dev_123">1.16.0.dev4 (5/06/2019)</h1>
<div class="section" id="id11">
<h2 id="heading_newfeatures_124">New Features</h2>
<ul class="simple">
<li>Remote Execution allows extra platform properties to be set (#7650)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7650">PR #7650</a></li>
<li>add suffix and Levenshtein matching for invalid option names (#7637)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7637">PR #7637</a></li>
</ul>
</div>
<div class="section" id="id12">
<h2 id="heading_bugfixes_125">Bugfixes</h2>
<ul class="simple">
<li>Apply timeouts to pex resolves (#7659)
<a class="reference external" href="http://github.com/pantsbuild/pex/issues/26">PEX Issue #26</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7659">PR #7659</a></li>
<li>pin the PEX_PYTHON{,_PATH} running the pytest pex to avoid using incompatible pytest requirements (#7563)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7563">PR #7563</a></li>
<li>Fix hasattr on Payload (#7432)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7432">PR #7432</a></li>
<li>Two targets can swap positions with pantsd (again) (#7642)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7642">PR #7642</a></li>
</ul>
</div>
<div class="section" id="id13">
<h2 id="heading_refactoringimproveme_126">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>pantsd runs no longer fork (#7596)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7596">PR #7596</a></li>
<li>Replace externs::eval with externs::none (#7646)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7646">PR #7646</a></li>
<li>Add the possibility to ignore sigint from other threads (#7623)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7623">PR #7623</a></li>
<li>Name threads that the daemon starts (#7639)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7639">PR #7639</a></li>
<li>Add testing for improved error message from #7628 when no valid interpreter can be resolved (#7630)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7630">PR #7630</a></li>
<li>Extend pantsd test timeout (#7527)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7527">PR #7527</a></li>
<li>Skip flaky test (#7638)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7638">PR #7638</a></li>
<li>Use TryInto instead of custom types (#7542)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7542">PR #7542</a></li>
<li>use upstream rustup init script download workaround for old curl version on CentOS6 (#7619)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7619">PR #7619</a></li>
</ul>
</div>
</div>
<div class="section" id="dev3-4-27-2019">
<h1 id="heading_dev_127">1.16.0.dev3 (4/27/2019)</h1>
<div class="section" id="id14">
<h2 id="heading_bugfixes_128">Bugfixes</h2>
<ul class="simple">
<li>PythonTests force default platform resolves (#7618)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7618">PR #7618</a></li>
<li>Fix to decode bytes to unicode in server when reading file from disk (#7610)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7610">PR #7610</a></li>
<li>Two targets can swap positions with pantsd (#7583) (#7617)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7583">PR #7583</a></li>
<li>Fix empty failed target to ensure pants raises the error if python test fails (#7570)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7570">PR #7570</a></li>
</ul>
</div>
<div class="section" id="id15">
<h2 id="heading_refactoringimproveme_129">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Modernize <cite>check_pants_pex_abi.py</cite> script to Python 3 (#7631)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7631">PR #7631</a></li>
<li>unify precedence logic for options which may be overridden on targets (#7594)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7594">PR #7594</a></li>
<li>fix --owner-of path matching to remove repeated directory separators (#7588)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7588">PR #7588</a></li>
<li>fix cron job by wrapping the python binary in text_type() (#7611)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7611">PR #7611</a></li>
<li>download rustup-init without --proto to work around outdated centos6 curl version (#7615)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7615">PR #7615</a></li>
<li>Default release script to use Python 3 in preparation for dropping Python 2 release (#7608)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7608">PR #7608</a></li>
<li>Better support --test-junit-test with classname, remove support for file path (#7589)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7589">PR #7589</a></li>
<li>Refactor uses of dirutil.py to use the new default Unicode semantics (#7604)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7604">PR #7604</a></li>
<li>Ensure test symlink is always seen by engine. (#7605)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7605">PR #7605</a></li>
<li>pantsd auto invalidates pants.ini and all pythonpath of pants (#7599)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7599">PR #7599</a></li>
</ul>
</div>
<div class="section" id="documentation">
<h2 id="heading_documentation_130">Documentation</h2>
<ul class="simple">
<li>Improve error message when no valid Python interpreter can be resolved (#7628)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7628">PR #7628</a></li>
<li>Fix typo in How to Contribute docs (#7614)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7614">PR #7614</a></li>
</ul>
</div>
</div>
<div class="section" id="dev2-4-22-2019">
<h1 id="heading_dev_131">1.16.0.dev2 (4/22/2019)</h1>
<div class="section" id="id16">
<h2 id="heading_newfeatures_132">New features</h2>
<ul class="simple">
<li>Add support for v2-only goals, and replace list with a @console_rule (#6880)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6880">PR #6880</a></li>
<li>make deprecations respect warnings filters and add --ignore-pants-warnings option (#7496)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7496">PR #7496</a></li>
</ul>
</div>
<div class="section" id="id17">
<h2 id="heading_bugfixes_133">Bugfixes</h2>
<ul class="simple">
<li>Rerun <cite>select-interpreter</cite> if global Python interpreter constraints have changed (#7586)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7586">PR #7586</a></li>
<li>Fix help info output for option choices (#7569)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7569">PR #7569</a></li>
<li>Directory materialization is visible to others. (#7562)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7562">PR #7562</a></li>
<li>Coerce argv for JavacCompile to text_type. (#7560)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7560">PR #7560</a></li>
<li>Fix doc generation rendering byte literals with Python 3 (#7556)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7556">PR #7556</a></li>
<li>fix go test flags bug and add integration test (#7539)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7539">PR #7539</a></li>
</ul>
</div>
<div class="section" id="id18">
<h2 id="heading_documentation_134">Documentation</h2>
<ul class="simple">
<li>Fix link for common_task/target_aggregate (#7574)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7574">PR #7574</a></li>
<li>Update install guide to use <cite>./pants generate-pants-ini</cite> and <cite>pants_runtime_python_version</cite> (#7453)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7453">PR #7453</a></li>
</ul>
</div>
<div class="section" id="id19">
<h2 id="heading_refactoringimproveme_135">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Hotfix #7591 breaking OSX Rust tests shard due to Pyenv global issue (#7602)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7602">PR #7602</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7591">PR #7591</a></li>
<li>Pin OSX wheel release shards to pyenv. (#7591)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7591">PR #7591</a></li>
<li>Replace the <cite>goals</cite> goal with a <cite>help</cite> plugin which supports both v1 and v2 (#7598)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7598">PR #7598</a></li>
<li>Remove unused migrations folder (#7592)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7592">PR #7592</a></li>
<li>Collection subclasses correctly coerce to bools (#7584)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7584">PR #7584</a></li>
<li>Use ci.sh instead of travis-ci.sh (#7582)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7582">PR #7582</a></li>
<li>Cleanup run_python_test rule. (#7577)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7577">PR #7577</a></li>
<li>Improve <cite>--pantsd-invalidation-globs</cite> using Snapshot fingerprints (#7531)
<a class="reference external" href="https://github.com/pantsbuild/pants/issues/5567">Issue #5567</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7531">PR #7531</a></li>
<li>Restore support for pantsbuild.pants wheel using Python 3.7+ by removing abi3 workaround (#7578)
<a class="reference external" href="https://github.com/pantsbuild/pants/issues/7459">Issue #7459</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7578">PR #7578</a></li>
<li>Bootstrap py36 in cron as well (#7579)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7579">PR #7579</a></li>
<li>protobuf gen triggers less often (#7565)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7565">PR #7565</a></li>
<li>Skip more flaky tests in TestPantsDaemonIntegration. (#7575)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7575">PR #7575</a></li>
<li>Allow 3rdparty rust crate logging to be hidden (#7530)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7530">PR #7530</a></li>
<li>Add debug_log macro for one-off debugging (#7566)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7566">PR #7566</a></li>
<li>Enable pantsd in Travis (#7440)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7440">PR #7440</a></li>
<li>Skip flaky tests in TestPantsDaemonIntegration. (#7558)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7558">PR #7558</a></li>
<li>Don't assume a local <cite>master</cite> branch point. (#7557)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7557">PR #7557</a></li>
<li>Kill unused env vars in our pre-commit hook. (#7555)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7555">PR #7555</a></li>
<li>Remove un-needed <cite>travis-ci.sh</cite> ci wrapper. (#7548)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7548">PR #7548</a></li>
<li>Build pexes that work on all Python patch versions. (#7550)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7550">PR #7550</a></li>
<li>Fix abi3 pex check to allow abi3 wheels. (#7549)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7549">PR #7549</a></li>
<li>Only add the CI skipping label on initial commit. (#7545)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7545">PR #7545</a></li>
<li>Prepare 1.15.0 (#7544)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7544">PR #7544</a></li>
<li>Don't run CI for doc-only changes. (#7537)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7537">PR #7537</a></li>
</ul>
</div>
<div class="section" id="id21">
<h2 id="heading_versionupdates_136">Version updates</h2>
<ul class="simple">
<li>Update to rust 1.34.0 (#7541)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7541">PR #7541</a></li>
<li>Upgrade to pex 1.6.6. (#7186)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7186">PR #7186</a></li>
</ul>
</div>
</div>
<div class="section" id="dev1-4-12-2019">
<h1 id="heading_dev_137">1.16.0.dev1 (4/12/2019)</h1>
<div class="section" id="id22">
<h2 id="heading_apichanges_138">API Changes</h2>
<ul class="simple">
<li>Set the fromfile option arg's default to True (#7513)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7513">PR #7513</a></li>
<li>Bump cffi (1.11.1 => 1.11.5) (#7484)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7484">PR #7484</a></li>
<li>Add run tracker option for versioning stats (#7481)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7481">PR #7481</a></li>
<li>Replace SingletonRule with zero-parameter @rules (#7479)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7479">PR #7479</a></li>
<li>Remove @rule Select syntax (#7477)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7477">PR #7477</a></li>
<li>Switch to twitter.common 0.3.11 to fix DeprecationWarning when using Pants as a PEX (#7461)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7461">PR #7461</a></li>
</ul>
</div>
<div class="section" id="id23">
<h2 id="heading_newfeatures_139">New features</h2>
<ul class="simple">
<li>A @console_rule for validating source files against regexes. (#7515)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7515">PR #7515</a></li>
<li>Support JSON and YAML option fromfiles. (#7500)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7500">PR #7500</a></li>
<li>add a deprecation_start_version argument to warn_or_error() (#7494)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7494">PR #7494</a></li>
<li>Add more pants run information to the json reporter (#7474)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7474">PR #7474</a></li>
<li>unrevert go test upgrades to test transitively after fixing issues (#7326)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7326">PR #7326</a></li>
<li>Improve error message for isort failure in IsortRun (#7462)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7462">PR #7462</a></li>
</ul>
</div>
<div class="section" id="id24">
<h2 id="heading_bugfixes_140">Bugfixes</h2>
<ul class="simple">
<li>Increase strictness of type checking for ExecuteProcessRequest args (#7529)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7529">PR #7529</a></li>
<li>Improve Get errors for unhashable or mismatched types (#7502)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7502">PR #7502</a></li>
<li>Don't consider strings as collections for TypedCollection (#7521)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7521">PR #7521</a></li>
<li>Invalidate dependency targets for jvmdoc if --combined. (#7455)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7455">PR #7455</a></li>
<li>allow python tools to specify a noop predicate and use it for conan (#7498)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7498">PR #7498</a></li>
<li>Remove console_rule_integration.py from Python 3 CI blacklist (#7466)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7466">PR #7466</a></li>
<li>Fix flaky <cite>./pants idea-plugin</cite> when using Python 3 by properly using ConsoleTask interface (#7460)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7460">PR #7460</a></li>
<li>Fix <cite>./pants server</cite> not working with Python 3 (#7458)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7458">PR #7458</a></li>
<li>Fix crash if pants.ini is missing in the buildroot (#7452)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7452">PR #7452</a></li>
</ul>
</div>
<div class="section" id="id25">
<h2 id="heading_refactoringimproveme_141">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>fix TestPantsDaemonIntegration.test_signal_pailgun_stream_timeout flakiness (#7533)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7533">PR #7533</a></li>
<li>Restore cron CI run from #7534 to adjust the time it starts (#7538)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7538">PR #7538</a></li>
<li>Temporarily turn off cron CI run to adjust the time it starts (#7534)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7534">PR #7534</a></li>
<li>Label messages of docs-only commits with SKIP_FULL_CI (#7526)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7526">PR #7526</a></li>
<li>Fuse hydrated and unhydrated Struct parsing (#7523)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7523">PR #7523</a></li>
<li>Move logging to Rust (#6817)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6817">PR #6817</a></li>
<li>Run tests in src dirs in ci. (#7524)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7524">PR #7524</a></li>
<li>avoid running a clean-all in integration tests, which are in a new buildroot (#7522)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7522">PR #7522</a></li>
<li>make pantsd signal integration tests more reliable by setting the timeout (#7504)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7504">PR #7504</a></li>
<li>add some comments to the example CI script in orgs.md (#7478)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7478">PR #7478</a></li>
<li>Pass interpreter constraints to the Pex we release (#7511)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7511">PR #7511</a></li>
<li>remove pyenv bootstrapping from travis_ci/Dockerfile (#7505)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7505">PR #7505</a></li>
<li>Improve logging of build-support/isort.sh helper script (#7503)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7503">PR #7503</a></li>
<li>Tweak Pytest logging in CI for less overwhelming logging of successful tests (#7501)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7501">PR #7501</a></li>
<li>Install Python 2.7 and 3.6 on Centos6 base image through Pyenv (#7064)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7064">PR #7064</a></li>
<li>Add a basic test for pantsd memory leaks. (#7488)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7488">PR #7488</a></li>
<li>convert --skip to --strict in py thrift namespace clash check task (#7493)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7493">PR #7493</a></li>
<li>Ensure Python 3.6 or 3.7 is installed on all CI shards (#7483)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7483">PR #7483</a></li>
<li>Prepare Linux UCS2 shard for upgrade to Centos6 base image in #7064 (#7418)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7418">PR #7418</a></li>
<li>Cache AWS CLI install in CI (#7472)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7472">PR #7472</a></li>
<li>Remove StatsDb / Timing stats views (#7475)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7475">PR #7475</a></li>
<li>Cache pyenv in CI (#7470)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7470">PR #7470</a></li>
<li>Consolidate JSON stats recording in RunTracker (#7446)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7446">PR #7446</a></li>
<li>Fix issues with deploy shards not properly setting Python version (#7471)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7471">PR #7471</a></li>
<li>No longer pin <cite>pants_runtime_python_version</cite> with <cite>./pants generate-pants-ini</cite> (#7469)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7469">PR #7469</a>
<a class="reference external" href="https://github.com/pantsbuild/setup/pull/49">PR #49</a></li>
<li>Remove Python 3 CI blacklist mechanism (#7468)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7468">PR #7468</a></li>
<li>Remove backend/python/tasks tests from Python 3 CI blacklist and refactor their BUILD entries to be more granular (#7463)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7463">PR #7463</a></li>
<li>Fix typo from #7424 to properly fix TensorFlow test during Python 3.7 cron job (#7464)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7464">PR #7464</a></li>
<li>hack default compiler option sets to fix tensorflow 1.13.1 on python 3.7 (#7424)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7424">PR #7424</a></li>
</ul>
</div>
</div>
<div class="section" id="dev0-3-29-2019">
<h1 id="heading_dev_142">1.16.0.dev0 (3/29/2019)</h1>
<div class="section" id="id26">
<h2 id="heading_newfeatures_143">New features</h2>
<ul class="simple">
<li>Add <cite>./pants generate-pants-ini</cite> for first time users to generate pants.ini with sensible defaults (#7448)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7448">PR #7448</a></li>
<li>Allow alternate nodejs binaries (#7405)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7405">PR #7405</a></li>
<li>Add JSON Reporter for more detailed workunit stats (#7392)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7392">PR #7392</a></li>
<li>Collect Zipkin spans for v2 engine (#7342)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7342">PR #7342</a></li>
</ul>
</div>
<div class="section" id="id27">
<h2 id="heading_refactoringimproveme_144">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Revert unnecessary runtime check for valid Python interpreter (#7451)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7451">PR #7451</a></li>
<li>Make abstract classproperty error message nicer (#7429)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7429">PR #7429</a></li>
<li>remove inspect.stack() from @rule parsing to fix import time regression in py3 (#7447)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7447">PR #7447</a></li>
<li>Just ignore source arg (with a comment) (#7430)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7430">PR #7430</a></li>
<li>Cache resolution of Node targets via fingerprinting lockfiles. (#7414)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7414">PR #7414</a></li>
<li>Handle signals gracefully (#6574)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/6574">PR #6574</a></li>
<li>Fix resolve test failing on Python 3.7 due to test using outdated cffi version (#7413)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7413">PR #7413</a></li>
<li>Loosen constraints for TensorFlow used in example code to work with Python 3.7 (#7410)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7410">PR #7410</a></li>
<li>Allow usage of pants2 script from other directories (#7409)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7409">PR #7409</a></li>
<li>Specify the python version to use in the unstable pex deploy shard. (#7411)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7411">PR #7411</a></li>
<li>Bump default MyPy version to 0.670 (#7407)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7407">PR #7407</a></li>
<li>Release pants as both a Python 2.7 PEX and a Python 3.6 PEX (#7401)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7401">PR #7401</a></li>
<li>add a non-numeric prefix before the unstable version to avoid getting parsed and truncated as a number (#7400)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7400">PR #7400</a></li>
<li>Refactor travis.yml to deduplicate Pyenv and AWS pex code (#7397)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7397">PR #7397</a></li>
</ul>
</div>
<div class="section" id="id28">
<h2 id="heading_bugfixes_145">Bugfixes</h2>
<ul class="simple">
<li>nailgun connect timeout error message fix (#7437)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7437">PR #7437</a></li>
<li>Add Python 3.7 tests to nightly cron CI run (#7261)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7261">PR #7261</a></li>
<li>Better message on tool interpreter selection failure. (#7438)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7438">PR #7438</a></li>
<li>fix for pantsrc-files option (#7427)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7427">PR #7427</a></li>
<li>Move with_overwritten_file_context to PantsRunIntegrationTest (#7408)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7408">PR #7408</a></li>
<li>Fix locale test failing on Python 3.7 due to forced UTF-8 mode (#7412)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7412">PR #7412</a></li>
<li>Simplify glob matching and directly match in-memory globs as Patterns. (#7402)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7402">PR #7402</a></li>
<li>Allow reporters to see the correct end_time for a workunit (#7389)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7389">PR #7389</a></li>
</ul>
</div>
<div class="section" id="id29">
<h2 id="heading_documentation_146">Documentation</h2>
<ul class="simple">
<li>Document pantsd startup and Pailgun behaviours (#7376)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7376">PR #7376</a></li>
<li>Explain in contributing doc that macOS users must brew install OpenSSL (#7396)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/7396">PR #7396</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.16.x.html 2022-12-03T01:08:59.766902
</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>