-
Notifications
You must be signed in to change notification settings - Fork 10
/
notes-1.22.x.html
754 lines (732 loc) · 40.9 KB
/
notes-1.22.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
<!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.22.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.22.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 toc-here">
1.22.x Stable Releases
</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 ">
<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_rc_101">1.22.1rc0 (6/16/2020)</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_102">Bugfixes</a></li>
<li class="toc-h1"><a href="#heading__103">1.22.0 (11/14/2019)</a></li>
<li class="toc-h1"><a href="#heading_rc_104">1.22.0rc2 (11/08/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_105">New Features</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_106">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_107">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_rc_108">1.22.0rc1 (11/01/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_109">API Changes</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_110">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_111">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_rc_112">1.22.0rc0 (10/20/2019)</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_113">New Features</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_114">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_115">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h2"><a href="#heading_documentation_116">Documentation</a></li>
<li class="toc-h1"><a href="#heading_dev_117">1.22.0.dev2 (10/13/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_118">API Changes</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_119">New Features</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_120">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_121">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h1"><a href="#heading_dev_122">1.22.0.dev1 (10/04/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_123">API Changes</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.22.0.dev0 (09/28/2019)</a></li>
<li class="toc-h2"><a href="#heading_apichanges_128">API Changes</a></li>
<li class="toc-h2"><a href="#heading_newfeatures_129">New Features</a></li>
<li class="toc-h2"><a href="#heading_bugfixes_130">Bugfixes</a></li>
<li class="toc-h2"><a href="#heading_refactoringimproveme_131">Refactoring, Improvements, and Tooling</a></li>
<li class="toc-h2"><a href="#heading_documentation_132">Documentation</a></li>
</ul>
</nav>
<!-- main content start -->
<!-- generated by pants! -->
<title>1.22.x Stable Releases</title>
<p style="font: 200% bold">1.22.x Stable Releases</p>
<p>This document describes releases leading up to the <tt class="docutils literal">1.22.x</tt> <tt class="docutils literal">stable</tt> series.</p>
<div class="section" id="rc0-6-16-2020">
<h1 id="heading_rc_101">1.22.1rc0 (6/16/2020)</h1>
<p>N.B.: No further releases are expected in the <tt class="docutils literal">1.22.x</tt> <tt class="docutils literal">stable</tt> series. This <tt class="docutils literal">.1rc0</tt>
release is for those upgrading through stable versions who wish to retain pytest console
coverage support in Pants "v1".</p>
<div class="section" id="bugfixes">
<h2 id="heading_bugfixes_102">Bugfixes</h2>
<ul class="simple">
<li>Restore pytest coverage console report. (#10021)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/10021">PR #10021</a></li>
</ul>
</div>
</div>
<div class="section" id="id1">
<h1 id="heading__103">1.22.0 (11/14/2019)</h1>
<p>The first stable release of the 1.22.x series, with no changes since the previous rc!</p>
</div>
<div class="section" id="rc2-11-08-2019">
<h1 id="heading_rc_104">1.22.0rc2 (11/08/2019)</h1>
<div class="section" id="new-features">
<h2 id="heading_newfeatures_105">New Features</h2>
<ul class="simple">
<li>Add Zinc for outlining support (#8560)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8560">PR #8560</a></li>
<li>Render cyclic path in node error to avoid --print-exception-stacktrace (#8422)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8422">PR #8422</a></li>
</ul>
</div>
<div class="section" id="id2">
<h2 id="heading_bugfixes_106">Bugfixes</h2>
<ul class="simple">
<li>Fix fingerprint dict with files (#8569)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8569">PR #8569</a></li>
</ul>
</div>
<div class="section" id="refactoring-improvements-and-tooling">
<h2 id="heading_refactoringimproveme_107">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Rust nails client for local hermetic nailgun execution. (#8564)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8564">PR #8564</a></li>
<li>Implement Nailgun in V2 hermetic execution (#8371)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8371">PR #8371</a></li>
</ul>
</div>
</div>
<div class="section" id="rc1-11-01-2019">
<h1 id="heading_rc_108">1.22.0rc1 (11/01/2019)</h1>
<div class="section" id="api-changes">
<h2 id="heading_apichanges_109">API Changes</h2>
<ul class="simple">
<li>Allow users to override compile.rsc workflows via env var and add --allow-public-inference option (#8537)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8537">PR #8537</a></li>
<li>Add workflow option for -Youtline as an outliner (#8427)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8427">PR #8427</a></li>
</ul>
</div>
<div class="section" id="id3">
<h2 id="heading_bugfixes_110">Bugfixes</h2>
<ul class="simple">
<li>Revert "Squashed commit of the following: (#8302)" (#8551)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8551">PR #8551</a></li>
<li>Add lock around bootstrap compiler bridge jar (#8535)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8535">PR #8535</a></li>
<li>Fix assertion on hydrate_missing_directory_digest (#8534)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8534">PR #8534</a></li>
<li>Fix zinc jar missing digest on double check cache hit (#8532)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8532">PR #8532</a></li>
<li>Ensure node build products added to the classpath have been snapshotted (#8514)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8514">PR #8514</a></li>
<li>Avoid globbing jdk home with symlinks (#8484)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8484">PR #8484</a></li>
<li>pin cryptography lib to 2.7 (#8515)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8515">PR #8515</a></li>
</ul>
</div>
<div class="section" id="id4">
<h2 id="heading_refactoringimproveme_111">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Increase our client count and sync bootstrapped files. (#8536)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8536">PR #8536</a></li>
<li>Move rust tests into their own files (#8512)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8512">PR #8512</a></li>
<li>Digest can be deserialized as well as serialized (#8497)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8497">PR #8497</a></li>
</ul>
</div>
</div>
<div class="section" id="rc0-10-20-2019">
<h1 id="heading_rc_112">1.22.0rc0 (10/20/2019)</h1>
<div class="section" id="id5">
<h2 id="heading_newfeatures_113">New Features</h2>
<ul class="simple">
<li>Add duration to Job to prep for calculating critical path (#8441)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8441">PR #8441</a></li>
<li>Only resolve requirements from PythonRequirementLibrary targets for setup_requires in python_dist() (#8442)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8442">PR #8442</a></li>
</ul>
</div>
<div class="section" id="id6">
<h2 id="heading_bugfixes_114">Bugfixes</h2>
<ul class="simple">
<li>fix NameError in ExceptionSink.trapped_signals() if .reset_signal_handler() raises (#8482)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8482">PR #8482</a></li>
<li>Fix undigested m.jar under validated targets (#8479)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8479">PR #8479</a></li>
<li>Fix async_semaphore deadlock, and only fail speculation if primary command fails. (#8374)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8374">PR #8374</a></li>
<li>Fix missing digest for m.jar (#8447)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8447">PR #8447</a></li>
<li>Use jvm options from RSC subsystem for RSC invocation (#8434)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8434">PR #8434</a></li>
</ul>
</div>
<div class="section" id="id7">
<h2 id="heading_refactoringimproveme_115">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Restore pycodestyle (#8471)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8471">PR #8471</a></li>
<li>Remove <cite>enum()</cite> to consolidate around standard library Enum (#8475)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8475">PR #8475</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8467">PR #8467</a></li>
<li>Type check core base code (#8462)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8462">PR #8462</a></li>
<li>Code Issues 900 Pull requests 121 Projects 5 Wiki Security Insights Explicitly delete file before writing it using the materialize_directory API (#8436)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8436">PR #8436</a></li>
<li>Squashed commit of the following: (#8302)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8302">PR #8302</a></li>
<li>Revert "Modify <cite>engine.objects.Collection</cite> to work with type hints (#8467)" (#8476)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8467">PR #8467</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8476">PR #8476</a></li>
<li>Use <cite>collections.Enum</cite> for Nailgun task related code (#8461)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8461">PR #8461</a></li>
<li>Use <cite>collections.Enum</cite> instead of <cite>enum()</cite> (#8443)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8443">PR #8443</a></li>
<li>Prepare 1.21.0. (#8474)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8474">PR #8474</a></li>
<li>Modify <cite>engine.objects.Collection</cite> to work with type hints (#8467)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8467">PR #8467</a></li>
<li>Use <cite>partially_type_checked</cite> tag for incremental type hinting of Pants repo (#8464)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8464">PR #8464</a></li>
<li>Use Duration not f64 (#8396)
<a class="reference external" href="https://github.com/rust-lang/rust/issues/54361">Issue #54361</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8396">PR #8396</a></li>
</ul>
</div>
<div class="section" id="documentation">
<h2 id="heading_documentation_116">Documentation</h2>
<ul class="simple">
<li>Propose guidance around contentious decisions. (#8438)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8438">PR #8438</a></li>
</ul>
</div>
</div>
<div class="section" id="dev2-10-13-2019">
<h1 id="heading_dev_117">1.22.0.dev2 (10/13/2019)</h1>
<div class="section" id="id10">
<h2 id="heading_apichanges_118">API Changes</h2>
<ul class="simple">
<li>Deprecate mypy-version flag and add new version flag (#8463)
<a class="reference external" href="https://github.com/pantsbuild/pants/issues/7627">Issue #7627</a>
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8463">PR #8463</a></li>
<li>Fix tensorflow==1.14 globbing with platform-specific native_lib_names (#8378)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8378">PR #8378</a></li>
<li>Error out if the user explicitly tries to test a non-test tgt. (#8402)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8402">PR #8402</a></li>
</ul>
</div>
<div class="section" id="id11">
<h2 id="heading_newfeatures_119">New Features</h2>
<ul class="simple">
<li>Allow ignoring flake errors by name in addition to code. (#8444)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8444">PR #8444</a></li>
<li>Allow extra remote execution headers to be set (#8430)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8430">PR #8430</a></li>
<li>Start creating <cite>binary</cite> goal with support for python (#8399)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8399">PR #8399</a></li>
<li>Add support for running Pants with Python 3.8 (#8415)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8415">PR #8415</a></li>
</ul>
</div>
<div class="section" id="id12">
<h2 id="heading_bugfixes_120">Bugfixes</h2>
<ul class="simple">
<li>Send cumulative_timings & recorded_options in stats v2 too. (#8456)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8456">PR #8456</a></li>
<li>Fix double check cache digest (#8416)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8416">PR #8416</a></li>
<li>Don't panic in create_scheduler (#8428)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8428">PR #8428</a></li>
<li>[junit-run] apply platform args to junit run java exec (#8421)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8421">PR #8421</a></li>
<li>Don't shade the nailgun package (#8418)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8418">PR #8418</a></li>
<li>Make subsystem dep explicit for RSC compile (#8406)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8406">PR #8406</a></li>
</ul>
</div>
<div class="section" id="id13">
<h2 id="heading_refactoringimproveme_121">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Improve support for <a class="reference external" href="https://github.com/pantsbuild/pants/pull/8458">Enum`s as option types (#8458)
`PR #8458</a></li>
<li>Port <cite>test_pytest_run_integration.py</cite> to V2 (#8466)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8466">PR #8466</a></li>
<li>Fix <cite>PantsRunIntegrationTest.mock_buildroot()</cite> to work with <cite>--chroot</cite> (#8465)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8465">PR #8465</a></li>
<li>Use f-strings in python tasks. (#8449)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8449">PR #8449</a></li>
<li>Run fuse tests on OSX again (#8453)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8453">PR #8453</a>
<a class="reference external" href="https://github.com/travis-ci/travis-ci/issues/10017">Issue #10017</a></li>
<li>Replace majority of remaining <cite>datatype()`s with `@dataclass</cite> (#8435)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8435">PR #8435</a></li>
<li>Use f-strings in pants daemon (#8448)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8448">PR #8448</a></li>
<li>Add collections.Enum class that extends stdlib Enum with ~pattern matching (#8451)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8451">PR #8451</a></li>
<li>use travis wait enhanced in shards with remoting enabled (#8446)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8446">PR #8446</a></li>
<li>Add file to allow a clean looking git blame (#8404)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8404">PR #8404</a></li>
<li>remove @_algebraic_data decorator to support @dataclass and mypy (#8437)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8437">PR #8437</a></li>
<li>Run testprojects integration tests with V2 test runner (#8426)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8426">PR #8426</a></li>
<li>Restore running <cite>test_testprojects_integration.py</cite> with chroot (#8433)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8433">PR #8433</a></li>
<li>Replace more <cite>datatype()</cite> instances with <cite>@dataclass</cite> (#8423)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8423">PR #8423</a></li>
<li>Add <cite>@frozen_after_init</cite> decorator to make some @dataclass uses safer with V2 (#8431)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8431">PR #8431</a></li>
<li>Type check <cite>meta.py</cite> and replace <cite>Singleton</cite> with <cite>SingletonMetaclass</cite> (#8424)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8424">PR #8424</a></li>
<li>Set internal <cite>pants.ini</cite> to use chroot for V1 Pytest runner (#8425)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8425">PR #8425</a></li>
<li>Make test discovery for <cite>test_testprojects.py</cite> IT more precise (#8395)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8395">PR #8395</a></li>
<li>Remote execution: Set RequestMetadata proto header (#8373)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8373">PR #8373</a></li>
<li>Run pants-plugin tests with V2 remote execution (#8413)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8413">PR #8413</a></li>
<li>Add type hints to <cite>contextutil.py</cite>, <cite>fileutil.py</cite>, and <cite>eval.py</cite> (#8401)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8401">PR #8401</a></li>
<li>Revert "Format our python code with Black (#8391)" (#8409)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8409">PR #8409</a></li>
</ul>
</div>
</div>
<div class="section" id="dev1-10-04-2019">
<h1 id="heading_dev_122">1.22.0.dev1 (10/04/2019)</h1>
<div class="section" id="id14">
<h2 id="heading_apichanges_123">API Changes</h2>
<ul class="simple">
<li>Depreciate resolve.ivy (#8364)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8364">PR #8364</a></li>
<li>Deprecate <cite>@rule(...)</cite> in favor of <cite>@rule</cite> (#8360)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8360">PR #8360</a></li>
</ul>
</div>
<div class="section" id="id15">
<h2 id="heading_newfeatures_124">New Features</h2>
<ul class="simple">
<li>Add black support as a v2 rule (#8350)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8350">PR #8350</a></li>
<li>Use the newest pyflakes for internal Python linter (#8359)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8359">PR #8359</a></li>
</ul>
</div>
<div class="section" id="id16">
<h2 id="heading_bugfixes_125">Bugfixes</h2>
<ul class="simple">
<li>Revert "Fix export test failure to unrevert #8370 (#8380)" (#8386)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8386">PR #8386</a></li>
<li>Fix typo: "our" -> "are" (#8372)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8372">PR #8372</a></li>
<li>Fix export test failure to unrevert #8370 (#8380)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8380">PR #8380</a></li>
<li>Revert "add scala_platform to export output for metals! (#8370)" (#8379)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8379">PR #8379</a></li>
<li>No longer cache failed <a class="reference external" href="https://github.com/pantsbuild/pants/pull/8291">ExecuteProcessResult`s (#8291)
`PR #8291</a></li>
</ul>
</div>
<div class="section" id="id17">
<h2 id="heading_refactoringimproveme_126">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Follow up on critical path algorithm (#8381)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8381">PR #8381</a></li>
<li>Make PEX creation generic (#8289)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8289">PR #8289</a></li>
<li>Replace most usages of datatype() with @dataclass (#8362)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8362">PR #8362</a></li>
<li>Port <cite>backend/project-info</cite> integration tests to V2 (#8361)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8361">PR #8361</a></li>
<li>Port <cite>engine/legacy</cite> integration tests to V2 (#8363)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8363">PR #8363</a></li>
<li>add scala_platform to export output for metals! (#8370)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8370">PR #8370</a></li>
<li>Remove a superfluous import. (#8376)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8376">PR #8376</a></li>
<li>Update rust to 1.38.0 (#8367)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8367">PR #8367</a></li>
<li>Port more integration tests to V1 chroot and some to V2 (#8365)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8365">PR #8365</a></li>
<li>Don't upgrade openssl on the OSX Rust test CI shard. (#8383)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8383">PR #8383</a></li>
</ul>
</div>
</div>
<div class="section" id="dev0-09-28-2019">
<h1 id="heading_dev_127">1.22.0.dev0 (09/28/2019)</h1>
<div class="section" id="id18">
<h2 id="heading_apichanges_128">API Changes</h2>
<ul class="simple">
<li>Support DRY type-annotated @rules. (#8330)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8330">PR #8330</a></li>
<li>Upgrade <cite>spin</cite> crate to patch a vulnerability. (#8320)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8320">PR #8320</a></li>
</ul>
</div>
<div class="section" id="id19">
<h2 id="heading_newfeatures_129">New Features</h2>
<ul class="simple">
<li>add --transitive flag to ConsoleTask! (#8224)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8224">PR #8224</a></li>
<li>Support mypy plugins and 3rdparty type definitions. (#8328)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8328">PR #8328</a></li>
<li>Enable incremental compile for zinc hermetic by adding scratch input digest for local ExecuteProcessRequest (#8282)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8282">PR #8282</a></li>
</ul>
</div>
<div class="section" id="id20">
<h2 id="heading_bugfixes_130">Bugfixes</h2>
<ul class="simple">
<li>Handle blank description in _print_goals_help (#8088)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8088">PR #8088</a></li>
<li>Make sure PEX executions are hermetic. (#8335)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8335">PR #8335</a></li>
</ul>
</div>
<div class="section" id="id21">
<h2 id="heading_refactoringimproveme_131">Refactoring, Improvements, and Tooling</h2>
<ul class="simple">
<li>Modify isort config to prepare for black formatting (#8332)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8332">PR #8332</a></li>
<li>Use unwrap_or_else not unwrap_or (#8341)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8341">PR #8341</a></li>
<li>Use double quoted strings in __init__.py files to prepare for Black (#8333)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8333">PR #8333</a></li>
<li>allow <cite>@rule`s to end in `yield Get(...)</cite> (#8227)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8227">PR #8227</a></li>
<li>v2 rule for stripping source roots (#8326)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8326">PR #8326</a></li>
<li>Introduce <cite>hash_utils.hash_dir</cite>. (#8327)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8327">PR #8327</a></li>
</ul>
</div>
<div class="section" id="id22">
<h2 id="heading_documentation_132">Documentation</h2>
<ul class="simple">
<li>Fix number of "build wheels" shards in release doc. (#8325)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8325">PR #8325</a></li>
<li>Add project links so they show up in pypi. (#8322)
<a class="reference external" href="https://github.com/pantsbuild/pants/pull/8322">PR #8322</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.22.x.html 2022-12-03T01:08:59.808038
</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>