Skip to content

v0.1.3

Choose a tag to compare

@zamdevio zamdevio released this 05 Jun 15:42

Full release notes: https://releases.i18nprune.dev/search?q=0.1.3

Summary

Patch release focused on cleanup result consistency across the CLI and Core SDK.

Changes

  • Fixed cleanup ripgrep guard defaults.
  • Cleanup summaries now use dynamic for non-literal key site counts.
  • Cleanup JSON envelopes now expose data.dynamic instead of data.dynamicKeySites.
  • Run-event count reporting has been aligned across CLI and SDK outputs.

Installation

CLI

npm install -g i18nprune@0.1.3

Core SDK

npm install @i18nprune/core@0.1.3

Breaking Changes

Cleanup JSON envelope rename

The cleanup payload field:

- data.dynamicKeySites
+ data.dynamic

This affects:

  • JSON consumers
  • jq scripts
  • SDK parsers
  • Automation built around cleanup --json

No changes were made to runCleanup() orchestration signatures; only the payload field name changed.

Migration

npm install -g i18nprune@0.1.3
npm install @i18nprune/core@0.1.3

Update any cleanup JSON consumers:

- .data.dynamicKeySites
+ .data.dynamic

Full Changelog: v0.1.2...v0.1.3