Skip to content

Commit 9e8a2dc

Browse files
ryanskeithjezdezkenodegard
authored
Changelog 25.11.0 (#5849)
* Updated CHANGELOG.md and supporting files. --------- Co-authored-by: Jannis Leidel <jannis@leidel.info> Co-authored-by: Ken Odegard <kodegard@anaconda.com>
1 parent 782078b commit 9e8a2dc

11 files changed

+50
-147
lines changed

.authors.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
email: isuruf@gmail.com
2222
alternate_emails:
2323
- isuru.11@cse.mrt.ac.lk
24-
num_commits: 92
24+
num_commits: 93
2525
first_commit: 2017-06-16 15:14:34
2626
github: isuruf
2727
- name: Dan Blanchard
@@ -1203,7 +1203,7 @@
12031203
alternate_emails:
12041204
- clee@anaconda.com
12051205
- name: Ken Odegard
1206-
num_commits: 243
1206+
num_commits: 245
12071207
email: kodegard@anaconda.com
12081208
first_commit: 2020-09-08 19:53:41
12091209
github: kenodegard
@@ -1241,7 +1241,7 @@
12411241
github: pre-commit-ci[bot]
12421242
aliases:
12431243
- pre-commit-ci[bot]
1244-
num_commits: 125
1244+
num_commits: 131
12451245
first_commit: 2021-11-20 01:47:17
12461246
- name: Jacob Walls
12471247
email: jacobtylerwalls@gmail.com
@@ -1263,7 +1263,7 @@
12631263
alternate_emails:
12641264
- ad-team+condabot@anaconda.com
12651265
- 18747875+conda-bot@users.noreply.github.com
1266-
num_commits: 78
1266+
num_commits: 80
12671267
first_commit: 2022-01-17 18:09:22
12681268
- name: Uwe L. Korn
12691269
email: xhochy@users.noreply.github.com
@@ -1311,7 +1311,7 @@
13111311
- name: dependabot[bot]
13121312
email: 49699333+dependabot[bot]@users.noreply.github.com
13131313
github: dependabot[bot]
1314-
num_commits: 47
1314+
num_commits: 49
13151315
first_commit: 2022-05-31 04:34:40
13161316
- name: Serhii Kupriienko
13171317
email: 79282962+skupr-anaconda@users.noreply.github.com
@@ -1328,7 +1328,7 @@
13281328
- name: Jaime Rodríguez-Guerra
13291329
email: jaimergp@users.noreply.github.com
13301330
github: jaimergp
1331-
num_commits: 33
1331+
num_commits: 34
13321332
first_commit: 2022-11-02 19:34:51
13331333
- name: Dave Clements
13341334
email: tnabtaf@gmail.com
@@ -1377,7 +1377,7 @@
13771377
aliases:
13781378
- Ryan
13791379
github: ryanskeith
1380-
num_commits: 9
1380+
num_commits: 15
13811381
first_commit: 2023-03-22 03:11:02
13821382
- name: Rishabh Singh
13831383
email: 67859818+rishabh11336@users.noreply.github.com
@@ -1544,3 +1544,8 @@
15441544
github: roryyorke
15451545
num_commits: 1
15461546
first_commit: 2025-08-19 02:48:11
1547+
- name: Sherman Siu
1548+
email: sherman.siu@uwaterloo.ca
1549+
github: shermansiu
1550+
num_commits: 1
1551+
first_commit: 2025-09-29 09:23:19

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ Sergio Oller <sergioller@gmail.com>
252252
Serhii Kupriienko <79282962+skupr-anaconda@users.noreply.github.com>
253253
Shaun Walbridge <shaun.walbridge@gmail.com>
254254
Shaun Walbridge <46331011+scdub@users.noreply.github.com>
255+
Sherman Siu <sherman.siu@uwaterloo.ca>
255256
Siu Kwan Lam <michael.lam.sk@gmail.com>
256257
Sophia Castellarin <scastellarin@quansight.com> sophia <scastellarin95@gmail.com>
257258
Sophia Castellarin <scastellarin@quansight.com> sophia <scastellarin@anaconda.com>

AUTHORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ Authors are sorted alphabetically.
211211
* Serhii Kupriienko
212212
* Shaun Walbridge
213213
* Shaun Walbridge
214+
* Sherman Siu
214215
* Siu Kwan Lam
215216
* Sophia Castellarin
216217
* Sophian Guidara

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
[//]: # (current developments)
22

3+
## 25.11.0 (2025-11-20)
4+
5+
### Enhancements
6+
7+
* Allow the PyYAML loader to be specified when calling `conda_build.variants.parse_config_file`. (#5800)
8+
* Raise `menuinst` JSON validation errors, which used to be warnings. (#5807)
9+
10+
### Bug fixes
11+
12+
* Fix `BUILD` environment variable to respect `cdt_name` variant configuration. Previously, BUILD was hardcoded to use `cos6` or `cos7` based on architecture, ignoring the `cdt_name` variant when specified. Now, if `cdt_name` is provided in the variant configuration, it will be used in the BUILD variable. Otherwise, it falls back to the architecture-based default. (#5733)
13+
* Fix Windows MSVC version detection for Python 3.5+. (#5807, #5818)
14+
* Update CMake generator handling for CMake 4 compatibility. CMake 2 compatibility was dropped in CMake 4. (#5807)
15+
* Fix `set_regex` when finding used variables inside jinja statements. (#5812 via #5811)
16+
17+
### Deprecations
18+
19+
* Remove Python 3.9 support. The minimum supported Python version is now 3.10. (#5807)
20+
21+
### Other
22+
23+
* Add Python 3.13 to Linux test matrix. (#5807)
24+
* Fix conda deprecation warning filters to prevent CI test failures with strict validation. (#5807)
25+
26+
### Contributors
27+
28+
* @conda-bot
29+
* @isuruf
30+
* @jaimergp
31+
* @kenodegard
32+
* @ryanskeith
33+
* @shermansiu made their first contribution in https://github.com/conda/conda-build/pull/5800
34+
* @dependabot[bot]
35+
* @pre-commit-ci[bot]
36+
37+
38+
339
## 25.9.0 (2025-09-26)
440

541
### Bug fixes

news/5733-support-cdt-dynamic-naming.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

news/5800-allow-yaml-config-loader-to-be-specified.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

news/5826-remove-python39-support.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

news/5827-fix-conda-warning-filters.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

news/5828-enforce-menuinst-validation.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

news/5829-update-cmake-standard.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)