Skip to content

Releases: VorpalBlade/chezmoi_modify_manager

v3.3.0

11 May 11:07
v3.3.0
9335b3d
Compare
Choose a tag to compare

v3.3.0 (2024-05-11)

Features

  • Add MacOS ARM64 builds. As GitHub runners now use ARM64 for Apple, this is now feasible.

Documentation

v3.2.2

08 Apr 20:34
v3.2.2
3283899
Compare
Choose a tag to compare

v3.2.2 (2024-04-08)

Features

  • Add way to disable warning on multiple matches (no-warn-multiple-key-matches, see --help-syntax for more information)

Documentation

Unit & integration tests

  • Add test case for setting a key in a non-existing section

v3.2.1

15 Mar 21:55
v3.2.1
742143d
Compare
Choose a tag to compare

v3.2.1 (2024-03-15)

Bug Fixes

  • Fix transform when key is missing in source (issue #100)

Documentation

  • Update examples on Prusa

Unit & integration tests

  • Add test for issue #100

v3.2.0

12 Mar 22:12
v3.2.0
806ceed
Compare
Choose a tag to compare

v3.2.0 (2024-03-12)

Features

  • Test in CI that --upgrade exists when expected. This should guard against releases without support for the built-in self-updater.
  • Bump MSRV to 1.75.0 due to dependencies.
  • The keyring transform has gained an optional argument separator that can be used to change from the default of =.
  • Refactor out --doctor support code into new library (called medic). This makes it easier to reuse in other projects.

Documentation

  • Fix incorrect transform in examples (solves #95)

v3.1.2

19 Feb 12:04
v3.1.2
1b77412
Compare
Choose a tag to compare

v3.1.2 (2024-02-19)

Bug Fixes

  • Self updater was broken due to feature flag changes

v3.1.1

13 Feb 19:37
v3.1.1
258f6a4
Compare
Choose a tag to compare

v3.1.1 (2024-02-13)

Bug fixes

  • Make cross pass through environment variables we need. This fixes issue #79 where --doctor reported that official builds were non-official

For other changes please see the release notes for 3.1.0, which contained some big new features

v3.1.0

12 Feb 23:49
v3.1.0
69e3ff9
Compare
Choose a tag to compare

v3.1.0 (2024-02-13)

Known issues

  • Fixed in 3.1.1: --doctor always reports "Unknown builder, no identity set"

Major feature: Add support for CHEZMOI_SOURCE_FILE

With chezmoi 2.46.1 and newer the modify script no longer needs to be a template.
Chezmoi now exports the environment variable CHEZMOI_SOURCE_FILE which is all
that chezmoi_modify_manager needs. The script can still be a template if you
need to for other reasons.

chezmoi_modify_manager --add will now auto detect which version of chezmoi is
in use on the current system and try to use the most performant approach (no
template) if possible. If you use mixed versions you can override this by exporting
the environment variable CHEZMOI_MODIFY_MANAGER_ASSUME_CHEZMOI_VERSION=2.46.0,
forcing chezmoi_modify_manager to treat the chezmoi version as older.

In addition chezmoi_modify_manager --add --style now works differently and supports:

  • --style=path: Default on newer chezmoi versions, will use the new source auto
    directive and not add a template file
  • --style=path-tmpl: Default on older chezmoi versions. Will add as a template
    file, use CHEZMOI_MODIFY_MANAGER_ASSUME_CHEZMOI_VERSION as described above
    to switch between source auto or templated. Even on newer versions this is
    a shortcut compared to renaming to .tmpl yourself if you need templating for
    other reasons.
  • --style=auto is the actual default and selects one of the above options.
  • --style=src still exists and still isn't recommended.

Additional documentation can be found here

A bit of quickly hacked together shell script for converting to the new format (for a
minor performance win) is available in #80 (comment) though beware that it isn't well
tested. Caution and being prepared to to git reverts is advised.

Minor feature: Improve --doctor

  • Warn about old chezmoi in --doctor (no support for CHEZMOI_SOURCE_FILE)
  • Add info to --doctor on where the binary came from (helps with issue reports)
  • Add colour to output of --doctor
  • Improve --doctor output by tracking worst level of issue found

Other Features

  • Switch to dep: syntax. This remove some internal cargo features from the build
    system making it cleaner for users.
  • Ring now supports all platforms. Drop OpenSSL support entirely. This was never
    used in any official builds but remained an option for some platforms like
    PPC and RISC-V until ring/rustls supported those.
  • Upgrade various dependencies, also upgrade MSRV (Minimum Supported Rust Version) to 1.74 as a result

Documentation

  • Document how source specifications work
  • Update README with relevant changes for source auto
  • Document source auto in --help-syntax
  • Add notes for packagers
  • Internal docs: Document the fast path concept in design decisions.
  • Clarify MSRV policy & build requirements

v3.0.0

14 Jan 11:34
v3.0.0
8e82669
Compare
Choose a tag to compare

v3.0.0 (2024-01-14)

Breaking changes

  • Drop deprecated hook script support (issue #62)
  • Error in add/smart-add on existence of hook script: This is to make you notice and fix the no longer used hook script.

Features

  • Refactor adding code: The code is cleaner, and the messages displayed to the user have changed slightly
  • Use better buffering for stdout for a small but measurable speed up
  • Improve size of release binaries:
    • Compress debug info on Linux release builds
    • Improve binary size for releases by better compile flags (LTO, opt level s, 1 codegen unit)
  • Change some "info" to "ok" in --doctor output
  • Make automated updates possible (--no-confirm flag)

Documentation

  • Update migration docs
  • Document add:remove/add:hide better (issue #62)
  • Update link to bpaf shell completion docs
  • Fix typo in README

Major internal code changes

There are no visible user changes due to these changes.

  • Adapt to non-dynamic dispatch in ini-merge

v2.2.4

26 Dec 18:33
v2.2.4
ba1bd50
Compare
Choose a tag to compare

v2.2.4 (2023-12-26)

Deprecations and future removals

The add hook script support is deprecated since version 2.2.0. The new add:hide and add:remove directives is the replacement. Add hooks will be removed sometime in early 2024.

Please see issue #46 for more information. If you currently use an add hook for anything other than hiding or removing lines on adding files your use case may be affected. If so please leave a comment on that issue describing your use case and I will look into possible solutions.

Features

  • Update to ini-merge 0.3.5.
    This brings with it some reduction in un-needed indirect dependencies on Linux. These would affect compile time, but would not get included in the final binary.
  • Slim down dependency features in order to reduce build times (for the most part this didn't affect what went into the final binary).
  • Make keyring support optional.
    Standard builds still include support for it, but omitting support reduces binary size significantly.
  • Enforce Unicode paths.
    Paths must now be valid UTF-16 (Windows) or UTF-8 (everywhere else). Non-unicode paths never worked properly before, but now it is properly checked.
  • Add colour to log output. The log output is now coloured based on severity level.
  • Add tests for adding files. The adding functionality was previously not automatically tested.
  • Upload built binaries in CI on each commit.
    These are ephemeral (7 days), but will make it easier to test in-development versions for troubleshooting for anyone who cannot easily build locally.

Bug Fixes

  • Fixes for clippy warnings (additional lints have been enabled as well)
  • Fix for deprecations in newer versions of winnow

v2.2.3

04 Nov 18:46
v2.2.3
f95eea6
Compare
Choose a tag to compare

v2.2.3 (2023-11-04)

Deprecations and future removals

The add hook script support is deprecated since version 2.2.0. The new add:hide and add:remove directives is the replacement. Add hooks will be removed at some future point.

Please see issue #46 for more information. If you currently use an add hook for anything other than hiding or removing lines on adding files your use case may be affected. If so please leave a comment on that issue describing your use case and I will look into possible solutions.

Features

  • Report warnings to stderr on two conditions:
    • Failed to parse line in an INI file.
      The line will be emitted verbatim.
    • Multiple regular expressions matched the same key in the INI file.
      (First regular expression will take effect, though this is guaranteed to be the case long term.)