Skip to content

Commit 4cc113e

Browse files
Prepare 3.13.0 (#1100)
Co-authored-by: jaimergp <[email protected]>
1 parent c368383 commit 4cc113e

19 files changed

+63
-292
lines changed

.authors.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@
264264
github: chenghlee
265265
- name: conda-bot
266266
267-
num_commits: 52
267+
num_commits: 56
268268
first_commit: 2022-01-25 21:38:28
269269
alternate_emails:
270270
@@ -277,7 +277,7 @@
277277
aliases:
278278
- Jaime RGP
279279
- jaimergp
280-
num_commits: 108
280+
num_commits: 110
281281
first_commit: 2022-01-08 14:56:53
282282
github: jaimergp
283283
- name: Tom Hören
@@ -357,7 +357,7 @@
357357
github: RahulARanger
358358
- name: Marco Esters
359359
360-
num_commits: 49
360+
num_commits: 57
361361
first_commit: 2023-05-12 11:44:12
362362
github: marcoesters
363363
- name: Darryl Miles
@@ -372,7 +372,7 @@
372372
github: deepeshaburse
373373
- name: pre-commit-ci[bot]
374374
email: 66853113+pre-commit-ci[bot]@users.noreply.github.com
375-
num_commits: 53
375+
num_commits: 65
376376
first_commit: 2023-05-02 12:01:43
377377
github: pre-commit-ci[bot]
378378
- name: Matthias Kuhn
@@ -382,7 +382,7 @@
382382
github: m-kuhn
383383
- name: dependabot[bot]
384384
email: 49699333+dependabot[bot]@users.noreply.github.com
385-
num_commits: 43
385+
num_commits: 53
386386
github: dependabot[bot]
387387
first_commit: 2024-05-07 10:16:05
388388
- name: Julien Jerphanion
@@ -405,5 +405,17 @@
405405
github: Jrice1317
406406
alternate_emails:
407407
408-
num_commits: 2
408+
num_commits: 4
409409
first_commit: 2025-07-30 14:27:00
410+
- name: dionizijefa
411+
github: dionizijefa
412+
413+
num_commits: 1
414+
first_commit: 2025-08-27 17:15:44
415+
- name: Robin Andersson
416+
aliases:
417+
- Robin
418+
github: lrandersson
419+
420+
num_commits: 4
421+
first_commit: 2025-10-21 08:30:00

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Pradipta Ghosh <[email protected]>
6363
Rachel Rigdon <[email protected]> rrigdon <[email protected]>
6464
Ray Donnelly <[email protected]>
6565
Richard Höchenberger <[email protected]>
66+
Robin Andersson <[email protected]> Robin <[email protected]>
6667
6768
Sai Hanuma Rahul <[email protected]>
6869
Sophia Castellarin <[email protected]> soapy1 <[email protected]>
@@ -83,6 +84,7 @@ bkreider <[email protected]>
8384
conda-bot <[email protected]> Conda Bot <[email protected]>
8485
conda-bot <[email protected]> conda bot <[email protected]>
8586
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
87+
dionizijefa <[email protected]>
8688
guimondmm <[email protected]>
8789
pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
8890
y2kbugger <[email protected]>

AUTHORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Authors are sorted alphabetically.
5252
* Rachel Rigdon
5353
* Ray Donnelly
5454
* Richard Höchenberger
55+
* Robin Andersson
5556
* Ryan
5657
* Sai Hanuma Rahul
5758
* Sophia Castellarin
@@ -71,6 +72,7 @@ Authors are sorted alphabetically.
7172
* bkreider
7273
* conda-bot
7374
* dependabot[bot]
75+
* dionizijefa
7476
* guimondmm
7577
* pre-commit-ci[bot]
7678
* y2kbugger

CHANGELOG.md

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

3+
## 2025-11-03 3.13.0:
4+
### Enhancements
5+
6+
* Add support for installing [protected (frozen) conda environments](https://conda.org/learn/ceps/cep-0022#specification). (#1058)
7+
* Ship `conda-meta/initial-state.explicit.txt` as a copy of the lockfile that provisions the initial state of each environment. (#1052 via #1059)
8+
* Remove unused functions from `_nsis.py`. (#1068)
9+
* Port script execution, AutoRun manipulation, and directory creation functions from `_nsis.py` to NSIS. (#1069)
10+
* Unset additional environment variables in shell-based installers to avoid accidental loading of external libraries. (#1082)
11+
* Include the license file in PKG installers. (#1074 via #1085)
12+
13+
### Bug fixes
14+
15+
* SH: Fixed misleading wording for shell initialization in installation prompt. (#1039 via #1340)
16+
* PKG: Restore the default value of `enable_currentUserHome` to the old default value (`true`). (#1070 via #1088)
17+
* Rename mamba-based standalone binaries to `micromamba` and create a symbolic link to `_conda` for backwards compatibility. (#1033 via #1090)
18+
* Add guards to macOS and `glibc` version checks. (#1094)
19+
* EXE: Remove write access for users during the installation process. (`c368383710a7c2b81ad1b0ecb9724b38d3577447`)
20+
* EXE: Remove write access for users except for the installing user from single-user installations. (`c368383710a7c2b81ad1b0ecb9724b38d3577447`)
21+
22+
### Docs
23+
24+
* Document that `check_path_length` defaults to `False` in line with prior behavior and declare
25+
it as `bool` only in the schema. (#1036)
26+
* PKG: Clarify that the profile of all available shells will be modified by default. (#1070 via #1088)
27+
28+
### Other
29+
30+
* Fix typo in license prompt message for SH installers. (#1035 via $1053)
31+
* CI: Update signtool.exe path for Windows 2025 runner images (SDK 10.0.26100.0) (#1073)
32+
* CI: Use `windows-2022` for integration tests. (#1077)
33+
34+
### Contributors
35+
36+
* @Jrice1317
37+
* @jaimergp
38+
* @marcoesters
39+
* @lrandersson
40+
* @dionizijefa
41+
42+
43+
344
## 2025-08-06 3.12.2:
445
### Bug fixes
546

news/1036-check-path-length-docs

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

news/1040-misleading-conda-init-prompt

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

news/1053-fix-typo-sh

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

news/1058-add-support-for-frozen-envs

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

news/1059-lockfiles

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

news/1068-remove-obsolete-nsispy-functions

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

0 commit comments

Comments
 (0)