release libmamba 1.4.3, libmambapy 1.4.3, mamba 1.4.3, micromamba 1.4.3

This commit is contained in:
Johan Mabille 2023-05-15 23:25:22 +02:00
parent 18ca4f16fc
commit 46d3acd3c1
9 changed files with 139 additions and 4 deletions

View File

@ -1,3 +1,49 @@
2023.05.15
==========
Releases: libmamba 1.4.3, libmambapy 1.4.3, mamba 1.4.3, micromamba 1.4.3
Enhancements:
- [libmamba] No Storing Channel\* and MRepo\* in Solvables by @AntoinPrv in https://github.com/mamba-org/mamba/pull/2409
- [libmamba, libmambapy] Remove dead code / attribute by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2454
- [all] Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2432
- [libmamba] Clean up fetch by @Hind-M in https://github.com/mamba-org/mamba/pull/2452
- [libmamba] Wapped curl multi handle by @JohanMabille in https://github.com/mamba-org/mamba/pull/2459
- [libmamba] Remove empty test\_flat\_set.hpp by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2471
- [libmamba] Add doctest printer for pair and vector by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2470
- [libmamba] Add topological sort by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2467
- [mamba] Add mamba version to mamba info output by @Hind-M in https://github.com/mamba-org/mamba/pull/2477
- [libmamba, libmambapy] Store PackageInfo::track\_features as a vector by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2478
- [libmamba] Use topological sort instead of libsolv by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2472
- [libmamba] Remove assign\_or in favor of json::value by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2487
- [all] Resume Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2460
- [micromamba] cleanup: fix pytest warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2490
- [libmamba] Improve micromamba transaction message by @ruben-arts in https://github.com/mamba-org/mamba/pull/2474
- [libmamba] Remove unused raw function in subdirdata by @Hind-M in https://github.com/mamba-org/mamba/pull/2491
- [libmamba] Wrap ::Pool and ::Repo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2401
- [libmamba] Curl wrapping by @Hind-M in https://github.com/mamba-org/mamba/pull/2468
- [libmamba] Reset fish shell status even if variable not exists by @soraxas in https://github.com/mamba-org/mamba/pull/2509
- [libmamba, libmambapy, micromamba] Use libsolv wrappers in MPool and MRepo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2453
- [libmamba, micromamba] add bearer token authentication by @wolfv in https://github.com/mamba-org/mamba/pull/2512
Bug fixes:
- [libmamba] fix: parsing of empty track\_features by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2485
- [libmamba] track\_feature typo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2488
- [libmamba, mamba] Move repoquery python test from libmamba (not run) to mamba by @Hind-M in https://github.com/mamba-org/mamba/pull/2489
- [libmamba] Set log\_level to critical with --json option by @Hind-M in https://github.com/mamba-org/mamba/pull/2484
- [libmamba] Add missing cstdint include for GCC 13 by @alexfikl in https://github.com/mamba-org/mamba/pull/2511
- [libmamba] Forward NETRC environment variable to curl, if exported by @timostrunk in https://github.com/mamba-org/mamba/pull/2497
- [libmamba] Remove wrong $Args in psm1 by @troubadour-hell in https://github.com/mamba-org/mamba/pull/2499
- [libmamba] Avoid using /tmp by @johnhany97 in https://github.com/mamba-org/mamba/pull/2447
- [libmamba] Fixed winreg search by @JohanMabille in https://github.com/mamba-org/mamba/pull/2526
CI fixes and doc:
- [libmamba] Extend troubleshooting docs by @jonashaag in https://github.com/mamba-org/mamba/pull/2451
- [all] Extend issue template by @jonashaag in https://github.com/mamba-org/mamba/pull/2310
2023.04.06
==========

View File

@ -1,3 +1,45 @@
libmamba 1.4.3 (May 15, 2023)
=============================
Enhancements:
- No Storing Channel\* and MRepo\* in Solvables by @AntoinPrv in https://github.com/mamba-org/mamba/pull/2409
- Remove dead code / attribute by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2454
- Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2432
- Clean up fetch by @Hind-M in https://github.com/mamba-org/mamba/pull/2452
- Wapped curl multi handle by @JohanMabille in https://github.com/mamba-org/mamba/pull/2459
- Remove empty test\_flat\_set.hpp by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2471
- Add doctest printer for pair and vector by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2470
- Add topological sort by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2467
- Store PackageInfo::track\_features as a vector by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2478
- Use topological sort instead of libsolv by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2472
- Remove assign\_or in favor of json::value by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2487
- Resume Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2460
- Improve micromamba transaction message by @ruben-arts in https://github.com/mamba-org/mamba/pull/2474
- Remove unused raw function in subdirdata by @Hind-M in https://github.com/mamba-org/mamba/pull/2491
- Wrap ::Pool and ::Repo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2401
- Curl wrapping by @Hind-M in https://github.com/mamba-org/mamba/pull/2468
- Reset fish shell status even if variable not exists by @soraxas in https://github.com/mamba-org/mamba/pull/2509
- Use libsolv wrappers in MPool and MRepo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2453
- add bearer token authentication by @wolfv in https://github.com/mamba-org/mamba/pull/2512
Bug fixes:
- fix: parsing of empty track\_features by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2485
- track\_feature typo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2488
- Move repoquery python test from libmamba (not run) to mamba by @Hind-M in https://github.com/mamba-org/mamba/pull/2489
- Set log\_level to critical with --json option by @Hind-M in https://github.com/mamba-org/mamba/pull/2484
- Add missing cstdint include for GCC 13 by @alexfikl in https://github.com/mamba-org/mamba/pull/2511
- Forward NETRC environment variable to curl, if exported by @timostrunk in https://github.com/mamba-org/mamba/pull/2497
- Remove wrong $Args in psm1 by @troubadour-hell in https://github.com/mamba-org/mamba/pull/2499
- Avoid using /tmp by @johnhany97 in https://github.com/mamba-org/mamba/pull/2447
- Fixed winreg search by @JohanMabille in https://github.com/mamba-org/mamba/pull/2526
CI fixes and doc:
- Extend troubleshooting docs by @jonashaag in https://github.com/mamba-org/mamba/pull/2451
- Extend issue template by @jonashaag in https://github.com/mamba-org/mamba/pull/2310
libmamba 1.4.2 (April 06, 2023)
===============================

View File

@ -12,7 +12,7 @@
#define LIBMAMBA_VERSION_MAJOR 1
#define LIBMAMBA_VERSION_MINOR 4
#define LIBMAMBA_VERSION_PATCH 2
#define LIBMAMBA_VERSION_PATCH 3
// Binary version
#define LIBMAMBA_BINARY_CURRENT 2

View File

@ -1,3 +1,18 @@
libmambapy 1.4.3 (May 15, 2023)
===============================
Enhancements:
- Remove dead code / attribute by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2454
- Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2432
- Store PackageInfo::track\_features as a vector by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2478
- Resume Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2460
- Use libsolv wrappers in MPool and MRepo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2453
CI fixes and doc:
- Extend issue template by @jonashaag in https://github.com/mamba-org/mamba/pull/2310
libmambapy 1.4.2 (April 06, 2023)
=================================

View File

@ -1,2 +1,2 @@
version_info = (1, 4, 2)
version_info = (1, 4, 3)
__version__ = ".".join(map(str, version_info))

View File

@ -1,3 +1,20 @@
mamba 1.4.3 (May 15, 2023)
==========================
Enhancements:
- Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2432
- Add mamba version to mamba info output by @Hind-M in https://github.com/mamba-org/mamba/pull/2477
- Resume Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2460
Bug fixes:
- Move repoquery python test from libmamba (not run) to mamba by @Hind-M in https://github.com/mamba-org/mamba/pull/2489
CI fixes and doc:
- Extend issue template by @jonashaag in https://github.com/mamba-org/mamba/pull/2310
mamba 1.4.2 (April 06, 2023)
============================

View File

@ -1,2 +1,2 @@
version_info = (1, 4, 2)
version_info = (1, 4, 3)
__version__ = ".".join(map(str, version_info))

View File

@ -1,3 +1,18 @@
micromamba 1.4.3 (May 15, 2023)
===============================
Enhancements:
- Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2432
- Resume Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2460
- cleanup: fix pytest warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2490
- Use libsolv wrappers in MPool and MRepo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2453
- add bearer token authentication by @wolfv in https://github.com/mamba-org/mamba/pull/2512
CI fixes and doc:
- Extend issue template by @jonashaag in https://github.com/mamba-org/mamba/pull/2310
micromamba 1.4.2 (April 06, 2023)
=================================

View File

@ -12,7 +12,7 @@
#define UMAMBA_VERSION_MAJOR 1
#define UMAMBA_VERSION_MINOR 4
#define UMAMBA_VERSION_PATCH 2
#define UMAMBA_VERSION_PATCH 3
// Binary version
#define UMAMBA_BINARY_CURRENT 1