Releases: j-ulrich/release-it-regex-bumper
Releases · j-ulrich/release-it-regex-bumper
5.1.0
5.0.0
4.1.1
4.1.0
4.0.0
Support for release-it 15.x.
Changed
Breaking Changes
- [#6] Switched to ESModules to support release-it 15.x.
This removes support for release-it < 15 and Node.js < 14.9.
When using release-it 14.x or earlier, use release-it-regex-bumper 3.x or earlier.
Security
- Updated node-fetch dependency to remove vulnerability CVE-2022-0235 and GHSA-64g7-mvw6-v9qj.
3.0.2
Changed
- Removed unnecessary files from npm package.
Security
- Updated dev dependencies to remove vulnerabilities CVE-2022-0235, CVE-2021-44906 and GHSA-64g7-mvw6-v9qj.
3.0.1
3.0.0
Added
- Support for placeholders in the search patterns.
⚠️ Note that this is a potential breaking change. See below for details.
Changed
- It is now possible to set just the
search.flags
orsearch.pattern
both in the globalsearch
options and in
out.search
options.
Breaking Changes
- Patterns like
{{version}}
in the search pattern were previously matching literally but now they have a special
meaning (see documentation ofin.search.pattern
andout.search.pattern
). Use{{{}}
to insert a curly brace in
the pattern to avoid the interpretation as placeholder. For example, use{{{}}{version}}
to match{{version}}
literally.
2.0.0
Changed
Breaking Changes
- [#1] Replaced Moment.js with date-fns. This means the format syntax for the date/time formatting has changed.
See https://date-fns.org/v2.8.0/docs/format for the new syntax.
⚠️ Especially note that the year and day patterns now use lower case letters (for exampleyyyy
anddd
).
See also https://git.io/fxCyr.