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.
Guiding Principles
- Changelogs are for humans, not machines.
- There should be an entry for every single version.
- The same types of changes should be grouped.
- Versions and sections should be linkable.
- The latest version comes first.
- The release date of each versions is displayed.
- Mention whether you follow Semantic Versioning.
Types of changes
Changelog entries are classified using the following labels (from keep-a-changelog):
Added
for new features.
Changed
for changes in existing functionality.
Deprecated
for soon-to-be removed features.
Removed
for now removed features.
Fixed
for any bug fixes.
Security
in case of vulnerabilities.
v3.0 is a complete refactor, resulting in a faster, smaller codebase, with fewer deps, and a more accurate parser and compiler.
Breaking Changes
- The undocumented
.makeRe
method was removed
Non-breaking changes
- start refactoring
- cover sets
- better range handling
- Remove unnecessary escape in Regex. (#14)
- minor code reorganization
- optimize regex
- expose
maxLength
option
- don't condense when braces contain extglobs
- ensure word boundaries are preserved
- fixes edge case where extglob characters precede a brace pattern
- use snapdragon-node
- handle edge case
- optimizations, lint
- pass opts to compiler
- minor optimization in create method
- re-write parser handlers to remove negation regex
- use split-string
- clear queue at the end
- adds sequences example
- add unit tests
- fix comma handling in nested extglobs
- add comments
- more tests, ensure quotes are stripped
- don't expand braces inside character classes
- add quantifier pattern
- optimizations,
bash
mode:
- improve path escaping
- Merge pull request #5 from eush77/lib-files
- add extglob tests
- externalize exponent function
- better whitespace handling
- make regex patterns explicity
- don't create a match group with
makeRe
- Merge commit '
97b05f5544
'
- support empty brace syntax
- better bash coverage
- better support for regex strings
- improve recognition of bad args, recognize mismatched argument types
- support escaping
- remove pathname-expansion
- support whitespace in patterns