-
Notifications
You must be signed in to change notification settings - Fork 423
/
CHANGELOG.txt
5208 lines (3875 loc) · 165 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# current developments
2020-04-13 3.19.3:
------------------
Bug fixes:
----------
* load log prior to calling warn method (#3925)
* test suite fixes and prefix replacement fixes (#3932)
Other:
------
* Enable ppc64 support (#3921)
Docs:
-----
* Update cli help information for conda index (#3931)
Contributors:
-------------
* @beenje
* @jjhelmus
* @mingwandroid
2020-04-01 3.19.2:
------------------
Bug fixes:
----------
* Show a warning instead of failing if a Mach-O file is prouduced by a build running on a platform other than macOS (#3912)
* Revert #3893, restores behavior of build/binary_has_prefix_files to that found in 3.18.12 (#3916)
Docs:
-----
* clarified 'deletes the build environment' in concepts/recipe.rst (#3901)
Contributors:
-------------
* @jjhelmus
* @timsnyder
* @chrisburr
2020-03-17 3.19.1:
------------------
Bug fixes:
----------
* Fix issues with PREFIX detection in Windows #3899
Other:
------
* Change the CI trigger #3904
Contributors:
-------------
* @mingwandroid
* @marcelotrevisani
* @jjhelmus
2020-03-10 3.19.0:
------------------
Enhancements:
-------------
* Keep python pinning in hashing if there is a space #3895
* ci launcher supporting python d shebangs on Windows #3894
* Allow build/binary_has_prefix_files to specify a list of files #3893
Bug fixes:
----------
* Use patchelf to set RPATH by default #3897
Contributors:
-------------
* @isuruf
* @jjhelmus
* @mingwandroid
2020-03-02 3.18.12:
------------------
* Keep python pinning in hashing if there is a space #3895
* ci launcher supporting python d shebangs on Windows #3894
* Allow build/binary_has_prefix_files to specify a list of files #3893
* Use patchelf to set RPATH by default #3897
* Prevent non-atomic writes to repodata JSON files #3833
* Audited and updated all docs with formatting, grammar, and accuracy errors.
* Docs: Removed deprecated page on features
* Fixed issue where symlinks to files that do not exist break conda build #3840
Contributors:
-------------
* @bdice
* @beckermr
* @chrisburr
* @csoja
* @guidara
* @isuruf
* @jakirkham
* @jjhelmus
* @marcelotrevisani
* @mcg1969
* @mingwandroid
* @msarahan
* @rrigdon
* @saraedum
* @sscherfke
* @zeehio
2019-11-01 3.18.11:
------------------
* Update build.sh files of skeletons to be shellcheck clean including test to lint future updates.
* Corrected documentation on subpackage test requirements.
* Do not move work dir to work/work/
* fixed a missing .lower() on two tar_xf related util functions
* Fix has_prefix detection for Windows.
* conda_build.inspect_pkg: optimise use of fnmatch
* Do not consider .ignore files when searching with ripgrep
* Remove N*N os.lstat calls in build_info_files_json_v1
Contributors:
-------------
* @msarahan
* @rrigdon
* @marcelotrevisani
* @rrigdon
* @soapy1
* @dbast
* @duncanmmacleod
* @beckermr
* @seanyen
* @AndrewAnnex
* @183amir
* @njzjz
2019-10-14 3.18.10:
------------------
Enhancements:
-------------
* Added the error message when an invalid pip dependency version expression is used
* Conda skeleton pypi quoting just `version`, `summary`` and `description` or attributes with special characters
* Set up CI Azure pipeline for Linux
* Update cran skeleton to match supported optional licenses for license file derivation.
* Migrate Unittests to PyTest
* Update script command on conda skeleton pypi to use `{{ PYTHON }} -m pip install . -vv`
* Add a warning when a received a file on `RECIPE_PATH`
* Refactored the skeletons/pypi.py get_package_metadata to be more modular
* added --suppress-variables switch to hide environment variables from console output
Bug fixes:
----------
* Fixed build of '.conda' packages enabled via 'conda config --set conda_build.pkg_format 2'
* Workaround for future deprecations of the SafeConfigParser and readfp of the same module.
Docs:
-----
* Remove bzip2 package from build toolkit description.
Other:
------
Contributors:
-------------
* @msarahan
* @jakirkham
* @marcelotrevisani
* @duncanmmacleod
* @kinow
* @saraedum
* @jjhelmus
* @rrigdon
* @mingwandroid
* @asford
* @timsnyder
* @mcg1969
* @kaitietz
* @stuarteberg
* @isuruf
* @dbast
* @Bezier89
2019-07-23 3.18.9:
------------------
Enhancements:
-------------
* add --use-channeldata argument to conda render/build.
* Extract the part in the skeletons pypi responsible to get the package metadata to a free function.
* Creat unittests for the get_package_metadata (skeletons/pypi.py) and for the new functions.
Bug fixes:
----------
* Limit threads to 61 on Windows.
* Do not use channeldata for run_exports unless --use-channeldata specified.
* Finalize top-level metadata if not present as an output.
Docs:
-----
* Add 3.18.7 release notes
Other:
------
* Add disable_pip to FIELDS
Contributors:
-------------
* @rrigdon
* @jjhelmus
* @rrigdon
* @Bezier89
* @jakirkham
* @marcelotrevisani
2019-07-18 3.18.8:
------------------
Enhancements:
-------------
* license_file can optionally be a yaml list
Bug fixes:
----------
* fix readup of existing index.json in cache while extracting
* fix spurious post build errors/warning message
* merge channeldata from all urls
Contributors:
-------------
* @msarahan
* @rrigdon
* @jjhelmus
* @isuruf
* @ddamiani
2019-07-09 3.18.7:
------------------
Enhancements:
-------------
* Update authorship for 3.18.7
* Add note on single threading for indexing during build
* Add in fallback for run_exports when channeldata not available
* Make pins for current_repodata additive - always newest, and pins are additions to that
* Limit indexing in build to using one thread
* Speed up by allowing empty run_exports entries in channeldata be valid results
* Bump conda-package-handling to 1.3+
* Add test for run_exports without channeldata
* Fallback to file-based run_exports if channeldata has no results
* Add Mozilla as valid license family
* Add in fallback for run_exports when channeldata not available
* Updated tutorials and resource documentation
Bug fixes:
----------
* Flake8 and test fixes from pytest deprecations
* Fix in render.py::_read_specs_from_package
* Fix for pkg_loc
* Fix conda debug output being suppressed
Contributors:
-------------
* @msarahan
* @rrigdon
* @rrigdon
* @scopatz
* @mbargull
* @jakirkham
* @oleksandr-pavlyk
2019-06-26 3.18.6:
------------------
Enhancements:
-------------
* package sha256 sums are includex in index.html
Bug fixes:
----------
* fix bug where package filenames were not included in the index.html
Contributors:
-------------
* @rrigdon
* @jjhelmus
2019-06-25 3.18.5:
------------------
Bug fixes:
----------
* fix one more keyerror with missing timestamp data
* when indexing, allow .tar.bz2 files to use .conda cache, but not vice versa. This acts as a sanity check on the .conda files.
* add build/rpaths_patcher to meta.yaml, to allow switching between lief and patchelf for binary mangling
Contributors:
-------------
* @mingwandroid
* @msarahan
* @csosborn
2019-06-21 3.18.4:
------------------
Enhancements:
-------------
* channeldata reworked a bit to try to capture any available run_exports for all versions available
Bug fixes:
----------
* make "timestamp" an optional field in conda index operations
Contributors:
-------------
* @msarahan
2019-06-20 3.18.3:
------------------
Enhancements:
-------------
* Make VS2017 default Visual Studio
* Add hook for customizing the behavior of conda render
* Drop `/usr` from CDT skeleton path
* Update cran skeleton to use m2w64 compilers for windows instead of toolchain.
The linter is telling since long: Using toolchain directly in this manner is deprecated.
Bug fixes:
----------
* Update cran skeleton to not use toolchain for win
* fix package_has_file so it supports .conda files (use cph)
* fix package_has_file function for .conda format
* fix off-by-one path trimming in prefix_files
* disable overlinking checks when no files in the package have any shared library linkage
* try to avoid finalizing top-level metadata twice
* try to address permission errors on Appveyor and Azure by falling back to copy and warning (not erroring) if removing a file after copying fails
* reduce the files inspected/loaded for channeldata, so that indexing goes faster
Deprecations:
-------------
* The repodata2.json file is no longer created as part of indexing. It was not used by anything. It has been removed as an optimization. Its purpose was to explore namespaces, and we'll bring its functionality back when we address that fully.
Contributors:
-------------
* @mingwandroid
* @msarahan
* @rrigdon
* @rrigdon
* @soapy1
* @mariusvniekerk
* @jakirkham
* @dbast
* @duncanmmacleod
2019-05-26 3.18.2:
------------------
Bug fixes:
----------
* speed up post-link checks
* fix activation not running during tests
* improve indexing to show status better, and fix bug where size/hashes were being mixed up between .tar.bz2 and .conda files
Contributors:
-------------
* @mingwandroid
* @msarahan
* @rrigdon
2019-05-18 3.18.1:
------------------
Enhancements:
-------------
* rearrange steps in index.py to optimize away unnecessary work
* restore parallel extract and hash in index operations
Contributors:
-------------
* @msarahan
2019-05-17 3.18.0:
------------------
Enhancements:
-------------
* Set R_USER environment variable when building R packages
* Make Centos 7 default cdt distribution for linux-aarch64
* Bump default python3 version to 3.7 for CI
* Build docs if any docs related file changes
* Add support for conda pkgv2 (.conda) format
* add creation of "current_repodata.json" - like repodata.json, but only has the newest version of each file
* change repodata layout to support .conda files. They live under the "packages.conda" key and have similar subkeys to their .tar.bz2 counterparts.
* Always show display actions, regardless of verbosity level
* Ignore registry autorun for all cmd.exe invocations
* Relax default pinning on r-base for benefit of noarch R packages
* Make conda index produce repodata_from_packages.json{,.bz2} which contains unpatched metadata
* Use a shorter environment prefix when testing on unix-like platforms
* Prevent pip from clobbering conda installed python packages by populating .dist_info INSTALLER file
Bug fixes:
----------
* Allow build/missing_dso_whitelist section to be empty
* Make conda-debug honor custom channels passed using -c
* Do not attempt linkages inspection via lief if not installed
* Fix all lief related regressions brought in v3.17.x
* Fix ZeroDivisionError in ELF sections that have zero entries
* `binary_has_prefix_files` and `text_has_prefix_files` now override the automatically detected prefix replacement mode
* Handle special characters properly in pypi conda skeleton
* Build recipes in order of dependencies when passed to CB as directories
* Fix run_test script name for recipes with multiple outputs
* Fix recursion error with subpackages and build_id
* Avoid mutating global variable to fix tests on Windows
* Update CRAN license test case (replace r-ruchardet with r-udpipe)
* Update utils.filter_files to filter out generated .conda_trash files
* Replace stdlib glob with utils.glob. Latter supports recursion (**)
Docs:
-----
* Updated Sphinx theme to make notes and warnings more visible
* Added tutorial on building R-language packages using skeleton CRAN
* Add 37 to the list of valid values for CONDA_PY
* Corrected argparse rendering error
* Added tutorials section, reorganized content, and added a Windows tutorial
* Added Concepts section, removed extraneous content
* Added release notes section
* Reorganized sections
* Clarify to use 'where' on Windows and 'which' on Linux to inspect files in PATH
* Add RPATH information to compiler-tools documentation
* Improve the documentation on how to use the macOS SDK in build scripts.
* Document ``conda build purge-all``.
* Fix user-guide index
* Add example for meta.yaml
* Updated theme
* Reorganized conda-build topics, updated link-scripts
Contributors:
-------------
* @mingwandroid
* @msarahan
* @rrigdon
* @jjhelmus
* @nehaljwani
* @scopatz
* @Bezier89
* @rrigdon
* @isuruf
* @teake
* @jdblischak
* @bilderbuchi
* @soapy1
* @ESSS
* @tjd2002
* @tovrstra
* @chrisburr
* @katietz
* @hrzafer
* @zdog234
* @gabrielcnr
* @saraedum
* @uilianries
* @theultimate1
* @scw
* @spalmrot-tic
2019-01-26 3.17.8:
------------------
Bug fixes:
----------
* provide fallback from libarchive back to python tarfile handling for handling tarfiles containing symlinks on windows
Other:
------
* Rever support added for releasing conda-build
Contributors:
-------------
* @msarahan
* @jjhelmus
* @scopatz
* @rrigdon
* @ax3l
* @rrigdon
2019-01-16 3.17.7
-----------------
Bug fixes:
----------
* respect context.offline setting #3328
* don't write bytecode when building noarch: python packages #3330
* escape path separator in repl #3336
* remove deprecated sudo statement from travis CI configuration #3338
* fix running of test scripts in outputs #3343
* allow overriding one key of zip_keys as long as length of group agrees #3344
* fix compatibility with conda 4.6.0+ #3346
* update centos 7 skeleton (CDT) URL #3350
Contributors:
-------------
* @iainsgillis
* @isuruf
* @jjhelmus
* @nsoranzo
* @msarahan
* @qwhelan
2018-12-19 3.17.6
-----------------
Bug fixes:
----------
* don't raise when recipe text can't be extracted if manual build string is already set #3326
Contributors:
-------------
* @msarahan
2018-12-14 3.17.5
-----------------
Bug fixes:
----------
* fix pip build isolation / fix absence of "falsey" env vars. Ignore only if empty string or None. #3319
* pass-through VS20XYINSTALLDIR var (used by intel compiler to locate VS2017 installation) #3322
Contributors:
-------------
* @jjhelmus
* @msarahan
2018-12-12 3.17.4
-----------------
Bug fixes:
----------
* fix python-3 only JSON decode error handling (make py27 compatible) #3307
* fix too much caching in getting used vars from meta.yaml leading to inaccurate hash contents #3311
* fix merge of build/host not being recognized before an rm_rf call utilized that info #3311
Contributors:
-------------
* @Lnaden
* @msarahan
2018-12-11 3.17.3
-----------------
Bug fixes:
----------
* ignore non-native binaries in lief for now. Cross-platform inspection still theoretically possible using subdir parameter. #3306
Contributors:
-------------
* @msarahanl
2018-12-11 3.17.2
-----------------
Bug fixes:
----------
* fix to ignore unsatisfiable pin_compatible calls for packages in other outputs #3277
* add license files to CRAN recipes generated by conda skeleton #3284
* restrict py-lief to running on linux/macos only for now #3291,
* fix lief operation on files that are missing dynamic section (e.g. go binaries) #3292
* expand instructions on how to setup a dev env for conda-build #3296
* fix file= keyword being passed to a logger call #3298
* add test for standalone DLLs with py-lief, don't error out on them #3301
* rename windows build script runner to avoid confusion with existing bld.bat files in root dir #3303
* fix file URL handling on Windows #3303
* use conda's download function rather than requests directly, so that conda's proxy settings are respected #3303
* silence patch output when output verbosity is False #3305
Contributors:
-------------
* @bergtholdt
* @dsludwig
* @jdblischak
* @msarahan
* @nehaljwani
* @sodre
2018-12-04 3.17.1
------------------
Bug fixes:
----------
* omit LIEF depedency on Windows until it is better tested #3288
* activate host environment #3288
* allow calls to nm to fail #3290
Contributors:
-------------
* @jjhelmus
* @msarahan
* @nehaljwani
2018-11-28 3.17.0:
------------------
Enhancements:
-------------
* tell pip to not go find things on PyPI (turn off downloading) #3109
* new "conda debug" command for creating build/host or test envs for working on recipes #3237
* new package check: "overdepending" - warns or errors out when your run dependencies include unnecessary shared library packages #3237
* utilize LIEF for analyzing shared object data, extending capabilities beyond pyldd #3237
Bug fixes:
----------
* avoid discarding build string during pin_run_as_build and ensure_valid_spec #3264
* fix conda index's handling of packages where 'depends' key doesn't exist #3270
* fix bad inversion assumption about pip's PIP_NO_DEPENDENCIES setting #3271
* fix regex to allow for whitespace after hyphens in outputs section #3274, #3275
* handle unicode decode fails in output rewriting #3279
* fix merge of repodata patches that have keys that don't exist in repo #3280
Contributors:
-------------
* @bergtholdt
* @isuruf
* @minrk
* @msarahan
* @mingwandroid
* @nehaljwani
2018-11-21 3.16.3:
------------------
Enhancements:
-------------
* rewrite long prefix paths as $PREFIX, etc. for more readable build logs #3258
* make the --output-folder switch configurable in condarc #3265
* make the --long-test-prefix switch configurable in condarc, fix logic error with that argument #3266
Bug fixes:
----------
* improve robustness of indexing in face of corrupt package data #3238
* change timeouts to 900 instead of 90 #3239
* add activation to wheel bundling script #3240
* fix PermissionError import from utils, undefined on py2.7 #3247
* fix outputs with custom build string getting hash incorrectly #3250
* fix tests not being run on windows #3257
Contributors:
-------------
* @Bezier89
* @gabm
* @isuruf
* @minrk
* @msarahan
* @teake
* @tomashek
* @tschoonj
2018-10-29 3.16.2:
------------------
Bug fixes:
----------
* Remove noarch binary file check (do this in conda-verify instead) #3212
* Fix utf-8 conversion of check_output_env #3213
* fix thread count when indexing causing oversubscription #3217
* fix behavior of try_acquire_locks during lock contention #3224
* fix test env creation improperly prioritizing local channel #3229
* don't check for error when removing conda-init (in conda recipe for this repo) #3230
* add r-impl to R package template generator #3232
* fix creation of unix and win shell script files for noarch packages #3236
* fix path of python interpreter used for noarch packages being tested on win, when created on linux/mac #3236
Contributors:
-------------
* @alexandersturm
* @Bezier89
* @dsludwig
* @mandeep
* @mingwandroid
* @msarahan
* @rchateauneu
* @soapy1
2018-10-12 3.16.1:
------------------
Enhancements:
-------------
* expand ~ in source paths #3206
* Use binsort when available to sort file list in tar archives, to optimize compressibility #3210
* allow meta.yaml's build/rpaths key to function on macOS, not just linux #3206
Bug fixes:
----------
* improve docs on behavior of channel arguments #3197
* remove mention in docs about building .RPM and .DEB files. #3199
* fix dist-info errors where dist-info files didn't match the package name #3206
* fix some hard-coded .tar.bz2 references, to support other compression formats more readily #3206
* batch calls to compiling .pyc files to avoid problems with maximum command length #3206
* use ensure_list in processing files to be extracted #3210
* fix KeyError that happened when a jinja2 rendering error occurred, which hid the rendering error 3211
Contributors:
-------------
* @mingwandroid
* @msarahan
* @stas00
* @teake
2018-10-05 3.16.0:
------------------
Enhancements:
-------------
* incorporate libarchive to support more compression formats (adds libarchive as a package dep) #3163
* add build/ignore_verify_codes key to allow recipes to ignore specific conda-verify error codes #3179
Bug fixes:
----------
* fix JSON string encoding error in index cache reading #3156
* restore --variants CLI flag for specifying variants #3168
* handle empty build section in output #3175
* add mro-base_impl as something that causes mro build strings #3163
* fix skeleton PyPI inappropriately dropping package case (needed for URLs) #3163
* fix packages from earlier loops with multiple outputs being removed prior to later loops #3185
* fix conda-index not removing entries from index that no longer exist on disk #3186 #3188
* clean up tempfiles after indexing #3187
* fix indexing of specific subdirs #3190
* fix pypi skeleton when python constraint has no operator #3191
* fix issues testing packages and recipe folders when done separately from build #3192
* fix source looking for patches in wrong folder when dealing with outputs #3194
Contributors:
-------------
* @dpryan79
* @gabm
* @mbargull
* @mingwandroid
* @msarahan
* @nehaljwani
2018-09-18 3.15.1:
------------------
Bug fixes:
----------
* sort "removed" fns in index repodata.json #3154
* fix deps being merged instead of clobbered #3154
* Handle corrupt packages during indexing better #3154
Contributors:
-------------
* @msarahan
2018-09-17 3.15.0:
------------------
Enhancements:
-------------
* add CLI flag (--strict-verify) to allow erroring out when conda-verify fails a package #3135
* output text stating that the license file has been successfully found and included with a package #3152
Bug fixes:
----------
* allow channel auth when checking if a package is built #3133
* If local git cache can't be updated, delete it and barf (for user to re-run) #3136
* clean up duplicate pip requirements produced by skeleton #3138
* replace recipe_log.txt file with recipe_log.json file (for passing recipe history along with package) #3139
* fix decoding to str before passing package contents to JSON loading #3140
* fix loss of "removed" section of index with every other indexing operation #3144
* fix update_index used in tests to index channel, not subdir #3145
* fix ELF sections not included in memory image of process being loaded by pyldd and giving misleading results #3148
* fix index operations outputting debug log messages #3151
* fix private channels showing 404 errors during test phase #3153
Contributors:
-------------
* @Bezier89
* @gabm
* @jakirkham
* @jjhelmus
* @kalefranz
* @msarahan
* @stuarteberg
* @teake
2018-09-11 3.14.4:
------------------
Bug fixes:
----------
* fix recipe_log.txt not being filtered from info/files #3134
Contributors:
-------------
* @msarahan
2018-09-11 3.14.3:
------------------
Enhancements:
-------------
* add support for index patch instructions as tarballs containing subdirs #3129
* add progress bars for indexing (using tqdm) #3130
Bug fixes:
----------
* fix log messages being deduplicated too much #3130
* handle permission errors with moving files in indexing more gracefully #3132
Contributors:
-------------
* @msarahan
2018-09-07 3.14.2:
------------------
Enhancements:
-------------
* add support for a "recipe log" file. This will be used at Anaconda to capture the commit activity of a given recipe, which will be published in the RSS feed. #3123
Bug fixes:
----------
* fix indexing of noarch subdir as done by conda-forge #3120
* decode cached index files to utf-8 before reading JSON #3121
* try to address unicode problems in run_exports handling #3121
* skip over index metadata files when they are not present in a package #3125
Contributors:
-------------
* @msarahan
2018-09-06 3.14.1:
------------------
Bug fixes:
----------
* detect and fall back to old update_index behavior (new is channel-wide; old is specific subdir) #3117
* fix CONDA_BUILD_STATE not being set when load_setup_py_data gets run #3117
* fix channel_name as CLI argument for conda index. It can't be positional. #3318
Contributors:
-------------
* @msarahan
2018-09-04 3.14.0:
------------------
Enhancements:
-------------
* refactor indexing to cache more efficiently #3091
* add ``tags``, ``identifiers``, and ``keywords`` to about section. Tie them into channeldata.json. #3091
* filter .la files from packages by default #3102
* memoize read_meta_file #3108
Bug fixes:
----------
* fix --check for optionally iterable fields #3098
* fix permission problems prior to fixing shebangs #3101
* do not disable pip's cache directory. Redirect it instead. #3104
* fix usage of config in load_setup_py_data #3110
* show logger message when default numpy is used, to communicate what's happening to the user #3110