Releases: conda/conda-package-streaming
Releases · conda/conda-package-streaming
0.11.0
0.11.0 (2024-10-9)
- Add Python 3.12 to test matrix.
- Pass Python
tarfile.extractall(filter="fully_trusted")
in addition to
internal filtering, when available, to avoid Python 3.12+DeprecationWarning
(#87) - Improve umask handling. (#106)
- Add
transmute_stream(...)
to create.conda
from(TarFile, TarInfo)
. (#90)
iterators, allowing more creative data sources than just.tar.bz2
inputs. - Add
create
module withTarFile
interface for creating.conda
archives, also used bytransmute
. (#90) - Pass
encoding="utf-8"
toTarFile
instead of the system default, avoiding
rare potential issues with non-ASCII filenames. (#93)
Full Changelog: v0.10.0...v0.11.0
0.10.0
0.9.0
0.8.0
0.7.0
0.6.1
0.6.0
- Add function to transmute from
.conda
to.tar.bz2
(the other direction was already available) - Add parameter to customize what goes into the info component of a package, to allow conda-package-handling to work exactly the same when calling us; compared to simpler "anything starting with info/ goes into info-.*.tar.zst".