coursier v2.0.6 Release Notes
Release Date: 2020-11-02 // over 2 years ago-
๐ Fixes
Persisted checksums written outside of the coursier cache
๐ Persisted checksums were added in
2.0.5
. These could mistakenly be written outside of the coursier cache, under~/.ivy2/local
for example. This release fixes that.๐ Fixed in #1909, thanks to @oyvindberg.
Changing artifacts in
cs get
commandThe
cs get
command allows to download things via the coursier cache:$ cs get https://repo1.maven.org/maven2/io/get-coursier/coursier-cli_2.12/maven-metadata.xml ~/Library/Caches/Coursier/v1/https/repo1.maven.org/maven2/io/get-coursier/coursier-cli_2.12/maven-metadata.xml
๐ If a URL it is passed ends with
?changing=true
,cs get
should assume the artifact is changing (and may check for updates if the last check is older than the TTL). This release includes a fix for that. Prior to it, these were not assumed to be changing, so were not checked for updates.๐ Fixed in #1907, thanks to @martijnhoekstra.