All Versions
270
Latest Version
Avg Release Cycle
50 days
Latest Release
601 days ago

Changelog History
Page 13

  • v4.2.5 Changes

    September 08, 2016

    ๐Ÿ—„ Deprecations/Breaking Changes

    • โช partially revert #3041 giving conda config --add previous --prepend behavior (#3364 via #3370)
    • ๐Ÿ“ฆ partially revert #2760 adding back conda package command (#3398)

    ๐Ÿ‘Œ Improvements

    • order output of conda config --show; make --json friendly (#3384 via #3386)
    • ๐Ÿ”’ clean the pid based lock on exception (#3325)
    • ๐Ÿ‘Œ improve file removal on all platforms (#3280 via #3396)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  fix #3332 allow download urls with :: in them (#3335)
    • ๐Ÿ›  fix always_yes and not-set argparse args overriding other sources (#3374)
    • ๐Ÿ›  fix ftp fetch timeout (#3392)
    • ๐Ÿ›  fix #3307 add try/except block for touch lock (#3326)
    • ๐Ÿ›  fix CONDA_CHANNELS environment variable splitting (#3390)
    • ๐Ÿ‘ฎ fix #3378 CONDA_FORCE_32BIT environment variable (#3391)
    • ๐Ÿ‘‰ make conda info channel urls actually give urls (#3397)
    • ๐Ÿ›  fix cio_test compatibility (#3395 via #3400)
  • v4.2.4 Changes

    August 18, 2016

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  fix #3277 conda list package order (#3278)
    • ๐Ÿ›  fix channel priority issue with duplicated channels (#3283)
    • ๐Ÿ›  fix local channel channels; add full conda-build unit tests (#3281)
    • ๐Ÿ›  fix conda install with no package specified (#3284)
    • ๐Ÿ›  fix #3253 exporting and importing conda environments (#3286)
    • ๐Ÿ›  fix priority messaging on conda config --get (#3304)
    • ๐Ÿ›  fix conda list --export; additional integration tests (#3291)
    • ๐Ÿ›  fix conda update --all idempotence; add integration tests for channel priority (#3306)

    Non-User-Facing Changes

    • โž• additional conda-env integration tests (#3288)
  • v4.2.3 Changes

    August 11, 2016

    ๐Ÿ‘Œ Improvements

    • โž• added zsh and zsh.exe to Windows shells (#3257)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ‘ allow conda to downgrade itself (#3273)
    • ๐Ÿ›  fix breaking changes to conda-build from 4.2.2 (#3265)
    • ๐Ÿ›  fix empty environment issues with conda and conda-env (#3269)

    Non-User-Facing Changes

    • โž• add integration tests for conda-env (#3270)
    • โž• add more conda-build smoke tests (#3274)
  • v4.2.2 Changes

    August 09, 2016

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ enable binary prefix replacement on windows (#3262)
    • โž• add --verbose command line flag (#3237)
    • ๐Ÿ‘Œ improve logging and exception detail (#3237, #3252)
    • ๐Ÿšš do not remove empty environment without asking; raise an error when a named environment can't be found (#3222)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  fix #3226 user condarc not available on Windows (#3228)
    • ๐Ÿ›  fix some bugs in conda config --show* (#3212)
    • ๐Ÿ›  fix conda-build local channel bug (#3202)
    • โœ‚ remove subprocess exiting message (#3245)
    • ๐Ÿ›  fix comment parsing and channels in conda-env environment.yml (#3258, #3259)
    • ๐Ÿ›  fix context error with conda-env (#3232)
    • ๐Ÿ›  fix #3182 conda install silently skipping failed linking (#3184)
  • v4.2.1 Changes

    August 01, 2016

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ‘Œ improve an error message that can happen during conda install --revision (#3181)
    • ๐Ÿ‘‰ use clean sys.exit with user choice 'No' (#3196)

    ๐Ÿ› Bug Fixes

    • ๐Ÿš‘ critical fix for 4.2.0 error when no git is on PATH (#3193)
    • ๐Ÿ”’ revert #3171 lock cleaning on exit pending further refinement
    • ๐Ÿ— patches for conda-build compatibility with 4.2 (#3187)
    • ๐Ÿ›  fix a bug in --show-sources output that ignored aliased parameter names (#3189)

    Non-User-Facing Changes

    • ๐Ÿšš move scripts in bin to shell directory (#3186)
  • v4.2.0 Changes

    July 28, 2016

    ๐Ÿ†• New Features

    • ๐Ÿ†• New Configuration Engine: Configuration and "operating context" are the foundation of conda's functionality. Conda now has the ability to pull configuration information from a multitude of on-disk locations, including .d directories and a .condarc file within a conda environment), along with full CONDA_ environment variable support. Helpful validation errors are given for improperly-specified configuration. Full documentation updates pending. (#2537, #3160, #3178)
    • ๐Ÿ†• New Exception Handling Engine: Previous releases followed a pattern of premature exiting (with hard calls to sys.exit() when exceptional circumstances were encountered. This release replaces over 100 sys.exit calls with python exceptions. For conda developers, this will result in tests that are easier to write. For developers using conda, this is a first step on a long path toward conda being directly importable. For conda users, this will eventually result in more helpful and descriptive errors messages. (#2899, #2993, #3016, #3152, #3045)
    • Empty Environments: Conda can now create "empty" environments when no initial packages are specified, alleviating a common source of confusion. (#3072, #3174)
    • Conda in Private Env: Conda can now be configured to live within its own private environment. While it's not yet default behavior, this represents a first step toward separating the root environment into a "conda private" environment and a "user default" environment. (#3068)
    • Regex Version Specification: Regular expressions are now valid version specifiers. For example, ^1\.[5-8]\.1$|2.2. (#2933)

    ๐Ÿ—„ Deprecations/Breaking Changes

    • โœ‚ remove conda init (#2759)
    • โœ‚ remove conda package and conda bundle (#2760)
    • ๐Ÿ—„ deprecate conda-env repo; pull into conda proper (#2950, #2952, #2954, #3157, #3163, #3170)
    • ๐Ÿ‘ฎ force use of ruamel_yaml (#2762)
    • implement conda config --prepend; change behavior of --add to --append (#3041)
    • ๐ŸŒฒ exit on link error instead of logging it (#2639)

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ‘Œ improve locking (#2962, #2989, #3048, #3075)
    • ๐Ÿ“ฆ clean up requests usage for fetching packages (#2755)
    • โœ‚ remove excess output from conda --help (#2872)
    • โœ‚ remove os.remove in update_prefix (#3006)
    • ๐Ÿ‘ better error behavior if conda is spec'd for a non-root environment (#2956)
    • scale back try_write function on unix (#3076)

    ๐Ÿ› Bug Fixes

    • โœ‚ remove psutil requirement, fixes annoying error message (#3135, #3183)
    • ๐Ÿ›  fix #3124 add threading lock to memoize (#3134)
    • ๐Ÿ›  fix a failure with multi-threaded repodata downloads (#3078)
    • ๐Ÿ›  fix windows file url (#3139)
    • โž• address #2800, error with environment.yml and non-default channels (#3164)

    Non-User-Facing Changes

    • project structure enhancement (#2929, #3132, #3133, #3136)
    • clean up channel handling with new channel model (#3130, #3151)
    • โž• add Anaconda Cloud / Binstar auth handler (#3142)
    • โœ‚ remove dead code (#2761, #2969)
    • ๐Ÿ”จ code refactoring and additional tests (#3052, #3020)
    • โœ‚ remove auxlib from project root (#2931)
    • vendor auxlib 0.0.40 (#2932, #2943, #3131)
    • vendor toolz 0.8.0 (#2994)
    • ๐Ÿšš move progressbar to vendor directory (#2951)
    • ๐Ÿ›  fix conda.recipe for new quirks with conda-build (#2959)
    • ๐Ÿšš move captured function to common module (#3083)
    • ๐Ÿ“‡ rename CHANGELOG to md (#3087)
  • v4.1.13 Changes

    • ๐Ÿ‘Œ improve handling of local dependency information, #2107
    • โš  show warning message for pre-link scripts, #3727
    • ๐Ÿ“ฆ error and exit for install of packages that require conda minimum version 4.3, #3726
    • ๐Ÿ›  fix conda/install.py single-file behavior, #3854
    • ๐Ÿ›  fix open-ended test failures relating to python 3.6 release, #4167
    • ๐Ÿ›  fix #3287 activate in 4.1-4.2.3 clobbers non-conda PATH changes, #4211
    • ๐Ÿ›  fix relative path to python in activate.bat, #4244
  • v4.1.12 Changes

    September 08, 2016
    • ๐Ÿ›  fix #2837 "File exists" in symlinked path with parallel activations, #3210
    • ๐Ÿ›  fix prune option when installing packages, #3354
    • ๐Ÿ”„ change check for placeholder to be more friendly to long PATH, #3349
  • v4.1.11 Changes

    July 26, 2016
    • ๐Ÿ›  fix PS1 backup in activate script, #3135 via #3155
    • correct resolution for 'handle failures in binstar_client more generally', #3156
  • v4.1.10 Changes

    July 25, 2016
    • ignore symlink failure because of read-only file system, #3055
    • โœ… backport shortcut tests, #3064
    • ๐Ÿ›  fix #2979 redefinition of $SHELL variable, #3081
    • ๐Ÿ›  fix #3060 --clone root --copy exception, #3080