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 command

    The 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.