Guiding Principles
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.
<details>
- 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.
</details>
<details>
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.
</details>
[3.0.0] - 2018-04-08
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
<a href="https://github.com/micromatch/braces/compare/2.3.1...2.3.2">2.3.2</a> - 2018-04-08
- start refactoring
- cover sets
- better range handling
<a href="https://github.com/micromatch/braces/compare/2.3.0...2.3.1">2.3.1</a> - 2018-02-17
- Remove unnecessary escape in Regex. (#14)
<a href="https://github.com/micromatch/braces/compare/2.2.1...2.3.0">2.3.0</a> - 2017-10-19
- minor code reorganization
- optimize regex
- expose
maxLength
option
<a href="https://github.com/micromatch/braces/compare/2.2.0...2.2.1">2.2.1</a> - 2017-05-30
- don't condense when braces contain extglobs
<a href="https://github.com/micromatch/braces/compare/2.1.1...2.2.0">2.2.0</a> - 2017-05-28
- ensure word boundaries are preserved
- fixes edge case where extglob characters precede a brace pattern
<a href="https://github.com/micromatch/braces/compare/2.1.0...2.1.1">2.1.1</a> - 2017-04-27
- use snapdragon-node
- handle edge case
- optimizations, lint
<a href="https://github.com/micromatch/braces/compare/2.0.3...2.0.4">2.0.4</a> - 2017-04-11
- pass opts to compiler
- minor optimization in create method
- re-write parser handlers to remove negation regex
<a href="https://github.com/micromatch/braces/compare/2.0.2...2.0.3">2.0.3</a> - 2016-12-10
- use split-string
- clear queue at the end
- adds sequences example
- add unit tests
<a href="https://github.com/micromatch/braces/compare/2.0.1...2.0.2">2.0.2</a> - 2016-10-21
- fix comma handling in nested extglobs
<a href="https://github.com/micromatch/braces/compare/2.0.0...2.0.1">2.0.1</a> - 2016-10-20
- add comments
- more tests, ensure quotes are stripped
<a href="https://github.com/micromatch/braces/compare/1.8.5...2.0.0">2.0.0</a> - 2016-10-19
- don't expand braces inside character classes
- add quantifier pattern
<a href="https://github.com/micromatch/braces/compare/1.8.4...1.8.5">1.8.5</a> - 2016-05-21
<a href="https://github.com/micromatch/braces/compare/1.8.0...1.8.4">1.8.4</a> - 2016-04-20
<a href="https://github.com/micromatch/braces/compare/1.6.0...1.8.0">1.8.0</a> - 2015-03-18
<a href="https://github.com/micromatch/braces/compare/1.5.0...1.6.0">1.6.0</a> - 2015-01-30
- optimizations,
bash
mode:
- improve path escaping
<a href="https://github.com/micromatch/braces/compare/1.4.0...1.5.0">1.5.0</a> - 2015-01-28
- Merge pull request #5 from eush77/lib-files
<a href="https://github.com/micromatch/braces/compare/1.3.0...1.4.0">1.4.0</a> - 2015-01-24
- add extglob tests
- externalize exponent function
- better whitespace handling
<a href="https://github.com/micromatch/braces/compare/1.2.0...1.3.0">1.3.0</a> - 2015-01-24
- make regex patterns explicity
<a href="https://github.com/micromatch/braces/compare/1.0.0...1.1.0">1.1.0</a> - 2015-01-11
- don't create a match group with
makeRe
<a href="https://github.com/micromatch/braces/compare/0.1.4...1.0.0">1.0.0</a> - 2014-12-23
- Merge commit '97b05f5544f8348736a8efaecf5c32bbe3e2ad6e'
- support empty brace syntax
- better bash coverage
- better support for regex strings
<a href="https://github.com/micromatch/braces/compare/0.1.0...0.1.4">0.1.4</a> - 2014-11-14
- improve recognition of bad args, recognize mismatched argument types
- support escaping
- remove pathname-expansion
- support whitespace in patterns
[0.1.0]