Skip to content

Latest commit

History

History
187 lines (149 loc) 路 13.8 KB

CHANGELOG.md

File metadata and controls

187 lines (149 loc) 路 13.8 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased - ReleaseDate

0.6.1 - 2024-01-23

Changed

0.6.0 - 2023-12-13

Fixed

  • PR#234 relaxed the version restriction on the ring workaround to account for the 0.17.* versions.
  • PR#236 fixed an issue where the count field for each license was the number of unique licenses, rather than the number of unique crates using that license, as intended.
  • PR#240 resolved #233 by publishing a binary for aarch64-pc-windows-msvc.
  • PR#240 resolved #239 by correcting the name of the clarification field from override_git_commit -> override-git-commit.

Changed

0.5.7 - 2023-09-02

Changed

  • PR#231 updated dependencies, which included fixing #225 by removing yanked crate versions, as well as getting rid of an advisory.
  • PR#231 updated MSRV to 1.70.0 because a dependency required it, but it also allowed use of the IsTerminal trait, meaning we could get rid of atty and the associated advisory.

0.5.6 - 2023-04-26

Added

  • PR#224 added the --format option, allowing users to specify json to output the raw JSON used by the (previously) required handlebars templates, closing #196.

0.5.5 - 2023-03-20

Added

  • PR#219 added the clearly-defined-timeout-secs config option to specify a different timeout when attempting to gather license information from clearly defined. The default is 30 seconds.
  • PR#219 added the max-depth config option to specify the maximum depth from a crate's root that are searched for licenses. Most license files will be located at or near the root, so this option allows reducing the time, CPU, and memory costs associated with in-depth file scanning while still retaining the benefits of local file scanning.

Changed

  • PR#219 updated dependencies.

0.5.4 - 2023-02-01

Added

  • PR#216 add the filter-noassertion configuration, allowing users to use local scanning for files that <clearlydefined.io> adds NOASSERTION license ids to so that they are properly attributed or ignored.

0.5.3 - 2023-01-27

Fixed

0.5.2 - 2022-11-25

Changed

  • PR#205 updated to spdx 0.9 and therefore the SPDX license from version 3.14 -> 3.18. Thanks @o0Ignition0o!

0.5.1 - 2022-04-05

Added

Changed

0.5.0 - 2022-03-04

Changed

  • PR#187 closed #185 by making it so that all crates marked as publish = false will be ignored, rather than the previous behavior of only ignore workspace members. Please file an issue if this behavior is not acceptable. Thanks @danielnelson!

0.4.8 - 2022-03-02

Fixed

  • PR#184 fixed #183 to correct an issue where licenses were misattributed to crates if 1 or more crates was marked as publish = false and private crates were ignored in the config. Thanks @danielnelson!

0.4.7 - 2022-02-09

Fixed

  • PR#182 fixed #181 by adding version, author, and about metadata to the CLI output, as structopt by default added that, but clap v3 does not.

0.4.6 - 2022-02-07

Fixed

  • PR#180 fixed #179 by setting the MSRV to 1.56.1 and adding a CI check for it.

0.4.5 - 2022-02-04

Changed

  • PR#178 updated dependencies.

0.4.4 - 2021-12-23

Fixed

  • PR#177 updated the structure for the .cargo_vcs_info.json file since it now contains the path in the repo of the crate.

Changed

0.4.3 - 2021-11-22

Fixed

  • PR#176 fixed #175 by updating askalono which was causing cargo install failures due to cargo install's default behavior of not using the Cargo.lock file. This got rid of the failure dependency as well, which was pulling in a lot of additional crates that are now gone.

0.4.2 - 2021-11-21

Changed

0.4.1 - 2021-11-01

Added

  • PR#172 resolved #171 by adding support for ignoring private workspace crates.

0.4.0 - 2021-10-28

Added

  • PR#168 added the ability to retrieve harvested license data from clearlydefined.io, which generally has superior machine harvested data to the old of approach of relying completely on askalono and local file scanning. This gathering is enabled by default, but can be turned off with the no-clearly-defined option in the config.
  • PR#168 added the concept of clarifications, which are essentially user specified overrides for the license for a crate, using 1 or more sources of truth to ensure there is no drift between the clarification and the crate license over time.
  • PR#168 added built-in workarounds, which are just opt-in clarifications that are built-in to cargo-about itself so that users of cargo-about don't have to repeat the same clarification process for various popular crates in the ecosystem.
  • PR#168 added the clarify subcommand, which can be used to help you clarify particular crates.
  • PR#168 added support for accepted licenses on a per-crate basis in addition to the global accepted licenses.
  • PR#169 added an mdbook at https://embarkstudios.github.io/cargo-about/ to give improved documentation over the previous README.md only approach.

Changed

Removed

  • PR#169 removed the additional and ignore crate configuration in favor of clarifications and/or the better harvested content from clearlydefined.io.

0.3.0 - 2021-03-17

Added

Changed

  • PR#157 returned to mimalloc from rpmalloc to address #137. The original issue with mimalloc relying on cmake was fixed. Thanks @badboy!
  • Crates which use the same license are also now sorted lexicographically.
  • Updated dependencies, namely krates.

0.2.3 - 2020-11-11

Changed

  • Updated dependencies.

0.2.2 - 2020-05-07

Changed

  • PR#84 switched from mimalloc to rpmalloc to avoid usage of cmake which broke musl builds.

0.2.1 - 2020-05-06 YANKED

Changed

  • PR#83 changed the default allocator from the system allocator to mimalloc, which should give some performance improvements, particular when building for musl.

0.2.0 - 2020-01-24

Added

  • cfg() dependendent crates can now be ignored by specifying only the targets = [] you actually build for
  • build and dev dependencies can now be optionally ignored

Fixed

  • The used_by list of crates that use a particular license are now always sorted lexicographically

0.1.1 - 2019-12-12

Fixed

  • #20 Fewer files are now scanned for license information
  • #21 Pipes in the file system are now ignored on unix systems
  • #23 Fixes searching for the about.toml configuration file

0.1.0 - 2019-12-06

0.0.1 - 2019-11-07

Added

  • Initial add of the thing