diff --git a/.authors.yml b/.authors.yml index 217be8632..1c39562ac 100644 --- a/.authors.yml +++ b/.authors.yml @@ -277,7 +277,7 @@ aliases: - Jaime RGP - jaimergp - num_commits: 91 + num_commits: 97 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: 25 + num_commits: 27 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: 28 + num_commits: 29 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: 21 + num_commits: 24 github: dependabot[bot] first_commit: 2024-05-07 10:16:05 diff --git a/AUTHORS.md b/AUTHORS.md index b9c63a670..9e6c38841 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -65,8 +65,5 @@ Authors are sorted alphabetically. * XuehaiPan * astaric * bkreider -* conda-bot -* dependabot[bot] * guimondmm -* pre-commit-ci[bot] * y2kbugger diff --git a/CHANGELOG.md b/CHANGELOG.md index 925c17a19..6aa75d74a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ [//]: # (current developments) +## 2024-12-05 3.11.0: +### Enhancements + +* Use Jinja for templating logic. (#892) +* Implement feature to run uninstallation via conda-standalone (see https://github.com/conda/conda-standalone/pull/112). (#897) +* Add new `lockfile` output in `build_outputs`. This generates a `@EXPLICIT` lockfile for the requested environment. (#898) +* When `--debug` is used, do not delete temporary workspaces to facilitate inspection. (#910) + +### Bug fixes + +* Clarify warning about `x86_64` installers in non-`x86_64` machines. (#895 via #896) +* Correctly parse post-install pages for Windows when input is a string. (#904) +* `channels_remap` is now insensitive to `http` vs `https`, and trailing slashes. (#909) +* Add a regression test for packages including percent-encodable characters in their filenames. (#908 via #909) + +### Deprecations + +* `constructor.utils.preprocess` and `constructor.utils.fill_template` are deprecated. (#892) + +### Other + +* Do not run CI against Python 3.8. (#909) +* Run SH tests in `-x` mode if `CONSTRUCTOR_DEBUG=1` is set. (#910) + +### Contributors + +* @jaimergp +* @marcoesters + + + ## 2024-11-11 3.10.0: ### Enhancements diff --git a/news/892-jinja b/news/892-jinja deleted file mode 100644 index ea494c598..000000000 --- a/news/892-jinja +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Use Jinja for templating logic. (#892) - -### Bug fixes - -* - -### Deprecations - -* `constructor.utils.preprocess` and `constructor.utils.fill_template` are deprecated. (#892) - -### Docs - -* - -### Other - -* diff --git a/news/896-64bit b/news/896-64bit deleted file mode 100644 index e2dd2c5cd..000000000 --- a/news/896-64bit +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Clarify warning about `x86_64` installers in non-`x86_64` machines. (#895 via #896) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/897-standalone-uninstallation b/news/897-standalone-uninstallation deleted file mode 100644 index 48d6b9c5c..000000000 --- a/news/897-standalone-uninstallation +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Implement feature to run uninstallation via conda-standalone (see https://github.com/conda/conda-standalone/pull/112). (#897) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/898-lockfile b/news/898-lockfile deleted file mode 100644 index bd0da1f88..000000000 --- a/news/898-lockfile +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Add new `lockfile` output in `build_outputs`. This generates a `@EXPLICIT` lockfile for the requested environment. (#898) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/904-post-install-pages-win-fix b/news/904-post-install-pages-win-fix deleted file mode 100644 index 40d2a879e..000000000 --- a/news/904-post-install-pages-win-fix +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Correctly parse post-install pages for Windows when input is a string. (#904) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/909-cls-compat b/news/909-cls-compat deleted file mode 100644 index 832510317..000000000 --- a/news/909-cls-compat +++ /dev/null @@ -1,20 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* `channels_remap` is now insensitive to `http` vs `https`, and trailing slashes. (#909) -* Add a regression test for packages including percent-encodable characters in their filenames. (#908 via #909) - -### Deprecations - -* - -### Docs - -* - -### Other - -* Do not run CI against Python 3.8. (#909) diff --git a/news/910-debug b/news/910-debug deleted file mode 100644 index da59c99f7..000000000 --- a/news/910-debug +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* When `--debug` is used, do not delete temporary workspaces to facilitate inspection. (#910) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* Run SH tests in `-x` mode if `CONSTRUCTOR_DEBUG=1` is set. (#910)