Skip to content

Latest commit

 

History

History
227 lines (123 loc) · 5.95 KB

CHANGELOG.md

File metadata and controls

227 lines (123 loc) · 5.95 KB

CHANGELOG

Package changelog.

Unreleased (2025-03-17)

Commits

  • bf5643f - docs: update related packages sections (#3404) (by stdlib-bot)

0.3.0 (2024-07-26)

Features

  • 693efb2 - resolve negative indices relative to the last character index
  • 29d7b0d - add support for fromIndex

BREAKING CHANGES

  • 693efb2: resolve negative indices relative to the last index

    • Previously, negative index arguments would resolve to zero and search would start from the beginning of the string. To preserve previous behavior, users should clamp fromIndex values to string index bounds before calling into replaceBefore.
  • 29d7b0d: require fromIndex argument

    • To migrate, users should provide an explicit fromIndex of 0 in order to retain previous behavior.

Commits

  • 693efb2 - feat: resolve negative indices relative to the last character index (by Athan Reines)
  • 29d7b0d - feat: add support for fromIndex (by Athan Reines)
  • 6bff34f - style: add missing space (by Athan Reines)

Contributors

A total of 1 person contributed to this release. Thank you to this contributor:

  • Athan Reines

0.2.1 (2024-02-21)

No changes reported for this release.

0.2.0 (2024-02-14)

Commits

  • f9c75ce - build: remove tslint directives (by Philipp Burckhardt)

Contributors

A total of 1 person contributed to this release. Thank you to this contributor:

  • Philipp Burckhardt

0.1.1 (2023-10-03)

No changes reported for this release.

0.1.0 (2023-09-22)

Features

  • 3573d92 - update minimum TypeScript version
  • a7e60d8 - remove CLI
  • ae68d17 - add support for replacing the substring before the first occurrence of a search string (#843)

BREAKING CHANGES

  • 3573d92: update minimum TypeScript version

  • a7e60d8: remove CLI

    • This is a "base" package, and thus should not normally have a CLI. The CLI has moved to @stdlib/string-replace-before. Users relying on the CLI should migrate to using that package.

Closed Issues

This release closes the following issue:

#811

Commits

  • 3573d92 - feat: update minimum TypeScript version (by Philipp Burckhardt)
  • 440034d - chore: fix indentation in package meta data (#928) (by stdlib-bot, Athan Reines)
  • a7e60d8 - feat: remove CLI (by Athan Reines)
  • 35622d7 - refactor: clean-up implementation, tests, and docs (by Athan Reines)
  • ae68d17 - feat: add support for replacing the substring before the first occurrence of a search string (#843) (by Harshita Kalani, Athan Reines, Pranav)

Contributors

A total of 4 people contributed to this release. Thank you to the following contributors:

  • Athan Reines
  • Harshita Kalani
  • Philipp Burckhardt
  • Pranav Goswami