forked from conda/conda-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
5578 lines (4143 loc) · 175 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
2021-08-06 3.21.5:
------------------
Enhancements:
-------------
* Revert "Consider any file containing .yaml in its name as maybe a recipe file" (#4235)
* Support setting `build/script_env` values containing "=" (#4211)
* Drop Python 2.7 support from `setup.py` (#4202)
* Make variant configuration error message more informative (#4198)
* Ensure file globs are always sorted (#4186)
* Add preliminary support for `prelink_message` files in conda packages (#4203)
Bug fixes:
----------
* Do not munge rpath for non Mach-O files on macOS (#4238)
* Fix Windows test file extension reported by `conda-debug` (#4224)
Documentation:
--------------
* Document `build/script_env` recipe option (#4211)
* Clarify wording about selecting multiple operating systems (#4139)
Contributors:
-------------
* @chrisburr
* @gabm
* @isuruf
* @jacobtylerwalls
* @katietz
* @kenodegard
* @marcelotrevisani
* @xhochy
2021-01-15 3.21.4:
------------------
Enhancements:
-------------
* Add new centos 7 distribution cleof to rpm skeleton for s390x. (#4181)
Bug fixes:
----------
* Fixed bug where symlinks in symlinks caused conda build to exit. (#4180)
Contributors:
-------------
* @mingwandroid
* @beckermr
* @katietz
* @beckermr
2021-01-11 3.21.3:
------------------
Enhancements:
-------------
* Fix stupid error in prefix replacement (#4177)
Contributors:
-------------
* @mingwandroid
2021-01-11 3.21.2:
------------------
Contributors:
-------------
2021-01-11 3.21.1:
------------------
Bug fixes:
----------
* Fix noarch: python version from version-age determination (#4174)
Contributors:
-------------
* @mingwandroid
2021-01-10 3.21.0:
------------------
Enhancements:
-------------
* activate_in_script defaults to true (#4120)
* Add Setting and build/noarch_python_build_age and fix tests not finding packages (#4120)
* Allow directories as license_file source (#4153)
* Consider any file containing .yaml in its name as maybe a recipe file (#4120)
* Add weak_constrains and strong_constrains run_exports types (#4125)
* Issue a single command for the upload command (#4120)
* Print hash_inputs after upload info (#4120)
* Add cross-r-base for cross compiling
* Add --build-id-pat option
* macOS: Delete build_prefix rpaths
* Use smarter build_number
* Combine default_structs with FIELDS
* Fix conda render indent from 4 to 2
* macOS: arm64 ci/test-suite setup
* Removing more conda-forge testing deps
* Variants: Be more informative
* more verbosity in tests
* Use MacOSX10.10.sdk, not MacOS10.9.sdk in tests (#4120)
* Warn when files have been removed from the prefix (#4120)
Bug fixes:
----------
* Add conda-verify to install_conda_build_test_deps (#4120)
* Add flaky to testing dependencies (#4138)
* Fix tests not finding packages
* Avoid writing to the package cache in package_has_file (collisions) (#4120)
* Change package_has_file to refresh if out of date (#4120)
* Ensure ~/.condarc does not leak into testing_config (#4120)
* Fix applying patches to read-only files (#4140)
* Fix auth in aboutjson (#4137)
* Fix skeleton URLs for CentOS 6 (EOL) and various CI fixes (#4154)
* Fix typo in cran skeleton (#4143)
* Force channel_targets to be considered used (#4120)
* Fix printing ``bytes-like object is required, not 'str'`` when applying patches (#4118)
* Set "platform" in index.json to the target platform for cross-platform builds (#4124)
* Reduce get_rpaths_raw/patchelf disagree warnings (#4131)
* LIEF: Allow parsing static libs to fail (#4149)
* pass cache_dir to api.build (#4120)
* Fix symlinks to directories
* Make post-link run_export/library_nature determination less work when CONDA_OFFLINE=1
* Remove Python 2.7 from CI matrix
* Fix test_pypi_installer_metadata (builds against python 3.9 not 3.7)
* tests: Fix test_render_with_python_arg_reduces_subspace
* tests: Update python 3 from 3.5/6 to 3.9 in many
* Set numpy default to 1.16
* tests: Fix pins for numpy_used
* tests: CI: Win: Circumvent delayed expansion
* Install patch or m2-patch, write .sh files as binary, more Win tests
* tests: Avoid issue with coverage==5.0 on Win+Py2.7
* Assume non-revisible patches
* Add flaky marker and --strict-markers to setup.cfg
* Don't sort recipes
* Use extra R_ARGS and fix them
* shell check fix
Contributors:
-------------
* @mingwandroid
* @isuruf
* @mbargull
* @njalerikson
* @cjmartian
* @chrisburr
* @hugobuddel
* @kurtschelfthout
2020-10-26 3.20.5:
------------------
Enhancements:
-------------
* A new feature ``build/ignore_run_exports_from`` which will ignore ``run_exports``
* coming from a package listed in ``build/ignore_run_exports_from``. (#4114)
Bug fixes:
----------
* Respect PEP440 ~= 'Compatible release clause' (#4113)
* Detect amalgamated patches (#4099)
* Handle realpath properly in unsafe patch check (#4099)
* Force channel_targets to be considered used (#4099)
* Look for git in build_prefix in git_info (#4099)
* Fall back to shutil.copy if shutil.copy2 fails when copying patches (#4099)
* Fix indexing by file (#4111)
* Helper functions to extract keys (#4088)
* Simplify find_config_files call (#4086)
* Refactor dict_of_lists_to_lists_of_dict (#4075)
Contributors:
-------------
* @mingwandroid
* @isuruf
* @njalerikson
* @cjmartian
* @njalerikson
2020-10-14 3.20.4:
------------------
Enhancements:
-------------
* Make stats output more easily human-readable (#4069)
* Prefer meta.yaml build/error_overlinking and error_overdepending (#4074)
* Cleanup variant processing code (#4075)
* Add --file option to indexing (#4076)
Bug Fixes:
* Remove old rpath when loader_path is used (#4080)
* Fix MACOSX_DEPLOYMENT_TARGET default for osx-arm64 (#4091)
* Rewrite apply_patch again (#4092)
* Add a .* to conditional_regex (#4092)
Contributors:
-------------
* @isuruf
* @njalerikson
* @cjmartian
* @mingwandroid
2020-09-29 3.20.3:
------------------
Enhancements:
-------------
* Use CONDA_PACKAGE_EXTENSIONS (#4053)
* raise runtimeerror instead of calling sys.exit (#4062)
* Refactor conda_build.build.get_all_replacements (#4055)
Bug fixes:
----------
* Do not clobber config argument in conda_build.build.build_tree (#4066)
* Use --dry-run to test that a patch applies. Fixes bug 4054 (#4067)
* Include target_platform in package build string hash (#4065)
* Fix post linking for SDKs with tapi-tbd-v4 (MacOS 11.0 and upwards) (#4048)
Contributors:
-------------
2020-09-04 3.20.1:
------------------
Enhancements:
-------------
Bug fixes:
----------
* Run bash with -e in outputs too #4033
* Add target to recognized fields in `outputs` #4034
* Various overlinking fixes for Windows #4036
* variants: remove hard-coded default path for CONDA_BUILD_SYSROOT
Deprecations:
-------------
Docs:
-----
Other:
------
Contributors:
-------------
* @mingwandroid
* @isuruf
* @mbargull
2020-08-27 3.20.0:
------------------
Enhancements:
-------------
* enable Python 3.8 on Azure Pipelines (#3841)
* which_package can be passed avoid_canonical_channel_name (#3952)
* make life easier (less shell exit-y) for those who source test scripts (#3952)
* move old host env instead of deleting it when `--keep-old-work` (#3952)
* convert info.d/*.yaml to info/*.json (#3952)
* allow manual specification of which binary files to prefix replace (#3952)
* filter out '.AppleDouble' folders from recipe searches (#3952)
* re-wrote apply_patch() to be more robust (#3952)
* many fixes for DSO post-processing (#3952, #3953)
* add support for (limited) tbd parsing (#3953)
* Make sure packages in current repo data w/ features have versions without features (#3957)
* Check all sysroot locations for DSOs (#3969)
* More helpful error message if an empty string is passed as the hash ('md5', 'sha1' or 'sha256' fields) (#3971)
* the ``GIT_DESCRIBE_HASH`` variable will be available regardless of whether the sources of the recipe have a git tag or not (#3982)
* add apple silicon support (#4004, #4015)
* set build_platform for aid in cross compiling (#4005)
* import macho on non apple system for cross compiling (#4025)
* Add ccache as a jinja 2 function (#4026)
* Improve cpan skeleton (#4026)
* Retry moving host prefix due to Windows file locking (#4026)
* Rename ccache method from mklink to sylinks (#4028)
Bug fixes:
----------
* conda_build.metadata: fixed typos in FIELDS (#3866)
* add spaces in CRAN templates (fixes #3943) (#3944)
* raise valid CalledProcessException in macho.otool (#3952)
* cache local_output_folder too for get_build_index (#3952)
* fix relocations when cross compiling (#3995)
* use host_platform instead of sys.platform to facilitate cross compiling (#3997)
* Fix parsing UnsatisfiableError from conda>=4.7.8 (#4001)
* allow packages to depend on themselves when cross compiling (#4011)
* set the correct SHLIB_EXT when cross compiling (#4013, #4021)
* inspect linkages with pyldd when not DLL/EXE files (#4019)
* Respect no_rewrite_stdout_env on Windows (#4026)
* Prefix replacement fixes (#4026)
* Use git am -3 when applying patches (#4026)
* Fix env_var=val assertion (#4026)
* Use exit /B from patch files (#4026)
Docs:
-----
* extend docs o generating the index (#3877)
* add details to documentation of run_constrained (#3878)
* remove documentation on bdist_conda and environment variables (#3879)
* update cli help information for conda index (#3931)
* Clarify how to install conda-build (#3976)
* Add note for local package install deps (#3980)
* Clarify multiple OS selection (#3984)
* add aarch64 selector to the docs (#4003)
* add docs on build_platform and arm64 (#4020)
Other:
------
* Enable s390x support (#3949, #4030)
* Add xfail test for non-utf-8 charsets (#3972)
* Improve testing on CI (#3987, #4017, #4027)
* Allow python=3.8 for pypi skeletons (#4014)
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:
-------------