diff --git a/.authors.yml b/.authors.yml index f5527055..217be863 100644 --- a/.authors.yml +++ b/.authors.yml @@ -264,7 +264,7 @@ github: chenghlee - name: conda-bot email: ad-team+condabot@anaconda.com - num_commits: 44 + num_commits: 48 first_commit: 2022-01-25 21:38:28 alternate_emails: - 18747875+conda-bot@users.noreply.github.com @@ -277,7 +277,7 @@ aliases: - Jaime RGP - jaimergp - num_commits: 81 + num_commits: 91 first_commit: 2022-01-08 14:56:53 github: jaimergp - name: Tom Hören @@ -357,7 +357,7 @@ github: RahulARanger - name: Marco Esters email: mesters@anaconda.com - num_commits: 21 + num_commits: 25 first_commit: 2023-05-12 11:44:12 github: marcoesters - name: Darryl Miles @@ -372,7 +372,7 @@ github: deepeshaburse - name: pre-commit-ci[bot] email: 66853113+pre-commit-ci[bot]@users.noreply.github.com - num_commits: 23 + num_commits: 28 first_commit: 2023-05-02 12:01:43 github: pre-commit-ci[bot] - name: Matthias Kuhn @@ -382,6 +382,6 @@ github: m-kuhn - name: dependabot[bot] email: 49699333+dependabot[bot]@users.noreply.github.com - num_commits: 11 + num_commits: 21 github: dependabot[bot] first_commit: 2024-05-07 10:16:05 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3449526d..925c17a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ [//]: # (current developments) +## 2024-11-11 3.10.0: +### Enhancements + +* Windows installers will now report progress to stdout if run in headless mode (`/S`). (#764, #812 via #847) +* Add capability to add extra post-install pages to PKG installers. (#852) +* Parallelize artifact downloads. (#855 via #857) +* Improve detection and handling of standalone executable type. (#864) +* Export `INSTALLER_UNATTENDED` environment variable so pre- and post-install scripts can detect if the installer is running in batch/silent mode or not. (#882 via #885) +* Do not run conda-based virtual specs tests for `__glibc` and `__osx`. These are already tested by the installation script in an earlier step. (#868 via #887) +* Allow `__glibc` and `__osx` overrides with `CONDA_OVERRIDE_GLIBC` and `CONDA_OVERRIDE_OSX` environment variables, respectively (`.sh` installers only). (#888) + +### Bug fixes + +* Fix GLIBC detection method in some MUSL systems. (#850 via #856) +* Respect `ssl_verify` setting if defined in any `condarc` file. (#851 via #860) +* Ignore pre-existing `condarc` files to prevent these configuration files from interfering with the installation process. (#542 and #568 via #863) +* Address quoting issue that created unneeded files in installation directory. (#865 via #887) +* Perform disk space checks earlier and report errors in MB (`.sh` installers only). (#778 via 889) +* Always report NSIS output when an error occurs. (#798 via #890) +* Do not crash if `--output-dir` doesn't exist. Ensure it exists before creating installers. (#772 via #891) + +### Contributors + +* @jaimergp +* @marcoesters + + + ## 2024-08-15 3.9.3: ### Bug fixes diff --git a/news/847-nsis-out b/news/847-nsis-out deleted file mode 100644 index 81893fc4..00000000 --- a/news/847-nsis-out +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Windows installers will now report progress to stdout if run in headless mode (`/S`). (#764, #812 via #847) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/852-pkg-extra-pages b/news/852-pkg-extra-pages deleted file mode 100644 index 6cbcd512..00000000 --- a/news/852-pkg-extra-pages +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Add capability to add extra post-install pages to pkg installers. (#852) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/856-fix-musl-glibc b/news/856-fix-musl-glibc deleted file mode 100644 index 4532c267..00000000 --- a/news/856-fix-musl-glibc +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Fix GLIBC detection method in some MUSL systems. (#850 via #856) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/857-parallelize b/news/857-parallelize deleted file mode 100644 index 2a840036..00000000 --- a/news/857-parallelize +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Parallelize artifact downloads. (#855 via #857) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/860-ssl-verify b/news/860-ssl-verify deleted file mode 100644 index 2bb2e400..00000000 --- a/news/860-ssl-verify +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Respect `ssl_verify` setting if defined in any `condarc` file. (#851 via #860) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/863-ignore-condarc-files b/news/863-ignore-condarc-files deleted file mode 100644 index 653fa4a4..00000000 --- a/news/863-ignore-condarc-files +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Ignore pre-existing .condarc files to prevent these configuration files from interfering with the installation process. (#542 and #568 via #863) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/864-improve-standalone-binary-detection b/news/864-improve-standalone-binary-detection deleted file mode 100644 index 761b0a3f..00000000 --- a/news/864-improve-standalone-binary-detection +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Improve detection and handling of standalone executable type. (#864) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/885-installer-unattended b/news/885-installer-unattended deleted file mode 100644 index b4ee1d13..00000000 --- a/news/885-installer-unattended +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Export `INSTALLER_UNATTENDED` environment variable so pre- and post-install scripts can detect if the installer is running in batch/silent mode or not. (#882 via #885) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/887-vspecs b/news/887-vspecs deleted file mode 100644 index 43499a62..00000000 --- a/news/887-vspecs +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Do not run conda-based virtual specs tests for `__glibc` and `__osx`. These are already tested by the installation script in an earlier step. (#868 via #887) - -### Bug fixes - -* Address quoting issue that created unneeded files in installation directory. (#865 via #887) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/888-overrides-vpkgs b/news/888-overrides-vpkgs deleted file mode 100644 index a74bd132..00000000 --- a/news/888-overrides-vpkgs +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Allow `__glibc` and `__osx` overrides with `CONDA_OVERRIDE_GLIBC` and `CONDA_OVERRIDE_OSX` environment variables, respectively (`.sh` installers only). (#888) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/889-disk b/news/889-disk deleted file mode 100644 index d312c7c7..00000000 --- a/news/889-disk +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Perform disk space checks earlier and report errors in MB (`.sh` installers only). (#778 via 889) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/890-debug-nsis b/news/890-debug-nsis deleted file mode 100644 index 2daa2a9d..00000000 --- a/news/890-debug-nsis +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Always report NSIS output when an error occurs. (#798 via #890) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/891-output-dir b/news/891-output-dir deleted file mode 100644 index 9fcc5adc..00000000 --- a/news/891-output-dir +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Do not crash if `--output-dir` doesn't exist. Ensure it does before creating installers. (#772 via #891) - -### Deprecations - -* - -### Docs - -* - -### Other - -*