Skip to content

Commit 4035026

Browse files
committed
Release v2.7.2
1 parent 1154a6f commit 4035026

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## v2.7.2 - 2025-12-10
4+
5+
### Fixes
6+
7+
#### CLI
8+
- CLI: Fix `verdi code list` for codes without computer (#7081) [[27b52da2f]](https://github.com/aiidateam/aiida-core/commit/27b52da2f6dc948af0fab8e71d7089e532548640)
9+
- CLI: Fix wrongly formatted `verdi code show` output (#7073) [[32742c0e0]](https://github.com/aiidateam/aiida-core/commit/32742c0e0b60b53b54a42a5dd3b2b04d3449d2de)
10+
- CLI: Additional logging during `dump` operations (#7046) [[fc00f5dec]](https://github.com/aiidateam/aiida-core/commit/fc00f5deccff2cb030a45f622d5c2cd49f3b0ff6)
11+
- CLI: Drop non-unique `-n` option for archive import (#7044) [[3a7d440e9]](https://github.com/aiidateam/aiida-core/commit/3a7d440e9086d5127b4705034e8c3bda8c323a60)
12+
- CLI: Drop non-unique `-p` option for `dump` endpoints (#7043) [[019172c2d]](https://github.com/aiidateam/aiida-core/commit/019172c2d96c6b2761e865e61ba9a09d6cbb6750)
13+
- CLI: Fix output of `verdi node show` in dump README files (#6971) [[5e4da5b4d]](https://github.com/aiidateam/aiida-core/commit/5e4da5b4dfd00b6ae270e020b8446887b1754230)
14+
15+
#### Storage
16+
- Fix RST code snippets in QB `smarter_in` docstring (#7146) [[cc0bb483d]](https://github.com/aiidateam/aiida-core/commit/cc0bb483d125c81e893ca085161d275015e1d87f)
17+
- Fix QB `IN` clause to avoid parameter limits (#6998) [[8d562b44e]](https://github.com/aiidateam/aiida-core/commit/8d562b44ee37bc8ef9840f1806c48702a70b638e)
18+
- Fix PSQL OperationalError on archive creation by batching (#6993) [[cfbbd687f]](https://github.com/aiidateam/aiida-core/commit/cfbbd687f4e4416a880dce186f9e198fd20c9164)
19+
- Fix OperationalError for `add_nodes` with PSQL backend (#6991) [[9bccdc816]](https://github.com/aiidateam/aiida-core/commit/9bccdc816e859823f8347c540c6e914b43432d43)
20+
21+
#### Archive
22+
- Fix `UnboundLocalError` in `ZipfileBackendRepository` (#7129) [[166d06c25]](https://github.com/aiidateam/aiida-core/commit/166d06c2532309aa500a949b757773abb470e5ca)
23+
- Fix stuck progress bar on "Add nodes" of archive import (#7118) [[4e54cd476]](https://github.com/aiidateam/aiida-core/commit/4e54cd476dd2f089bcb501e9b74ca4b1e8d4f988)
24+
- Don't break on `sqlite_zip` profile deletion despite original aiida archive file missing (#6929) [[274ce6717]](https://github.com/aiidateam/aiida-core/commit/274ce6717d3e7e184e5e058a4bfeab9cd808604a)
25+
26+
#### Engine
27+
- Adding ./ in front of a portable code binary (#7080) [[9256f2fdd]](https://github.com/aiidateam/aiida-core/commit/9256f2fddd71abecf1e649065ef7dca5c67d061c)
28+
- Fix race condition in `JobsList` (#7061) [[e79f0a44c]](https://github.com/aiidateam/aiida-core/commit/e79f0a44c4c816323c24510dfa3462ecd5a9f5ae)
29+
30+
#### Transport
31+
- async_ssh: Use async semaphore instead of manual locking (#7018) [[ad5cafdb1]](https://github.com/aiidateam/aiida-core/commit/ad5cafdb10ff3889e53c3a7473cadc566b3ecb78)
32+
33+
#### Configuration
34+
- Fix: use platform-specific separator for AIIDA_PATH in config directory detection (#6935) [[32d515a6b]](https://github.com/aiidateam/aiida-core/commit/32d515a6bd0fef4ae4abe99ed5a288ac438b7096)
35+
36+
### Devops
37+
- CI: Fix install-with-conda job (#7103) [[0dcd10ac4]](https://github.com/aiidateam/aiida-core/commit/0dcd10ac4a83d65338aeefdf7a158f7a60b15fd2)
38+
- Fix PyPI index url (#6923) [[a8230b45c]](https://github.com/aiidateam/aiida-core/commit/a8230b45c91a45bf5e351626a15d7578aac1fa26)
39+
40+
341
## v2.7.1 - 2025-07-16
442

543
### Fixes

src/aiida/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'For further information please visit http://www.aiida.net/. All rights reserved.'
2828
)
2929
__license__ = 'MIT license, see LICENSE.txt file.'
30-
__version__ = '2.7.1'
30+
__version__ = '2.7.2'
3131
__authors__ = 'The AiiDA team.'
3232
__paper__ = (
3333
'S. P. Huber et al., "AiiDA 1.0, a scalable computational infrastructure for automated reproducible workflows and '

0 commit comments

Comments
 (0)