[6a3a178] | 1 | # Release history
|
---|
| 2 |
|
---|
| 3 | All notable changes to this project will be documented in this file.
|
---|
| 4 |
|
---|
| 5 | The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
---|
| 6 | and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
---|
| 7 |
|
---|
| 8 | <details>
|
---|
| 9 | <summary><strong>Guiding Principles</strong></summary>
|
---|
| 10 |
|
---|
| 11 | - Changelogs are for humans, not machines.
|
---|
| 12 | - There should be an entry for every single version.
|
---|
| 13 | - The same types of changes should be grouped.
|
---|
| 14 | - Versions and sections should be linkable.
|
---|
| 15 | - The latest version comes first.
|
---|
| 16 | - The release date of each versions is displayed.
|
---|
| 17 | - Mention whether you follow Semantic Versioning.
|
---|
| 18 |
|
---|
| 19 | </details>
|
---|
| 20 |
|
---|
| 21 | <details>
|
---|
| 22 | <summary><strong>Types of changes</strong></summary>
|
---|
| 23 |
|
---|
| 24 | Changelog entries are classified using the following labels _(from [keep-a-changelog](http://keepachangelog.com/)_):
|
---|
| 25 |
|
---|
| 26 | - `Added` for new features.
|
---|
| 27 | - `Changed` for changes in existing functionality.
|
---|
| 28 | - `Deprecated` for soon-to-be removed features.
|
---|
| 29 | - `Removed` for now removed features.
|
---|
| 30 | - `Fixed` for any bug fixes.
|
---|
| 31 | - `Security` in case of vulnerabilities.
|
---|
| 32 |
|
---|
| 33 | </details>
|
---|
| 34 |
|
---|
| 35 | ## [3.0.0] - 2018-04-08
|
---|
| 36 |
|
---|
| 37 | v3.0 is a complete refactor, resulting in a faster, smaller codebase, with fewer deps, and a more accurate parser and compiler.
|
---|
| 38 |
|
---|
| 39 | **Breaking Changes**
|
---|
| 40 |
|
---|
| 41 | - The undocumented `.makeRe` method was removed
|
---|
| 42 |
|
---|
| 43 | **Non-breaking changes**
|
---|
| 44 |
|
---|
| 45 | - Caching was removed
|
---|
| 46 |
|
---|
| 47 | ## [2.3.2] - 2018-04-08
|
---|
| 48 |
|
---|
| 49 | - start refactoring
|
---|
| 50 | - cover sets
|
---|
| 51 | - better range handling
|
---|
| 52 |
|
---|
| 53 | ## [2.3.1] - 2018-02-17
|
---|
| 54 |
|
---|
| 55 | - Remove unnecessary escape in Regex. (#14)
|
---|
| 56 |
|
---|
| 57 | ## [2.3.0] - 2017-10-19
|
---|
| 58 |
|
---|
| 59 | - minor code reorganization
|
---|
| 60 | - optimize regex
|
---|
| 61 | - expose `maxLength` option
|
---|
| 62 |
|
---|
| 63 | ## [2.2.1] - 2017-05-30
|
---|
| 64 |
|
---|
| 65 | - don't condense when braces contain extglobs
|
---|
| 66 |
|
---|
| 67 | ## [2.2.0] - 2017-05-28
|
---|
| 68 |
|
---|
| 69 | - ensure word boundaries are preserved
|
---|
| 70 | - fixes edge case where extglob characters precede a brace pattern
|
---|
| 71 |
|
---|
| 72 | ## [2.1.1] - 2017-04-27
|
---|
| 73 |
|
---|
| 74 | - use snapdragon-node
|
---|
| 75 | - handle edge case
|
---|
| 76 | - optimizations, lint
|
---|
| 77 |
|
---|
| 78 | ## [2.0.4] - 2017-04-11
|
---|
| 79 |
|
---|
| 80 | - pass opts to compiler
|
---|
| 81 | - minor optimization in create method
|
---|
| 82 | - re-write parser handlers to remove negation regex
|
---|
| 83 |
|
---|
| 84 | ## [2.0.3] - 2016-12-10
|
---|
| 85 |
|
---|
| 86 | - use split-string
|
---|
| 87 | - clear queue at the end
|
---|
| 88 | - adds sequences example
|
---|
| 89 | - add unit tests
|
---|
| 90 |
|
---|
| 91 | ## [2.0.2] - 2016-10-21
|
---|
| 92 |
|
---|
| 93 | - fix comma handling in nested extglobs
|
---|
| 94 |
|
---|
| 95 | ## [2.0.1] - 2016-10-20
|
---|
| 96 |
|
---|
| 97 | - add comments
|
---|
| 98 | - more tests, ensure quotes are stripped
|
---|
| 99 |
|
---|
| 100 | ## [2.0.0] - 2016-10-19
|
---|
| 101 |
|
---|
| 102 | - don't expand braces inside character classes
|
---|
| 103 | - add quantifier pattern
|
---|
| 104 |
|
---|
| 105 | ## [1.8.5] - 2016-05-21
|
---|
| 106 |
|
---|
| 107 | - Refactor (#10)
|
---|
| 108 |
|
---|
| 109 | ## [1.8.4] - 2016-04-20
|
---|
| 110 |
|
---|
| 111 | - fixes https://github.com/jonschlinkert/micromatch/issues/66
|
---|
| 112 |
|
---|
| 113 | ## [1.8.0] - 2015-03-18
|
---|
| 114 |
|
---|
| 115 | - adds exponent examples, tests
|
---|
| 116 | - fixes the first example in https://github.com/jonschlinkert/micromatch/issues/38
|
---|
| 117 |
|
---|
| 118 | ## [1.6.0] - 2015-01-30
|
---|
| 119 |
|
---|
| 120 | - optimizations, `bash` mode:
|
---|
| 121 | - improve path escaping
|
---|
| 122 |
|
---|
| 123 | ## [1.5.0] - 2015-01-28
|
---|
| 124 |
|
---|
| 125 | - Merge pull request #5 from eush77/lib-files
|
---|
| 126 |
|
---|
| 127 | ## [1.4.0] - 2015-01-24
|
---|
| 128 |
|
---|
| 129 | - add extglob tests
|
---|
| 130 | - externalize exponent function
|
---|
| 131 | - better whitespace handling
|
---|
| 132 |
|
---|
| 133 | ## [1.3.0] - 2015-01-24
|
---|
| 134 |
|
---|
| 135 | - make regex patterns explicity
|
---|
| 136 |
|
---|
| 137 | ## [1.1.0] - 2015-01-11
|
---|
| 138 |
|
---|
| 139 | - don't create a match group with `makeRe`
|
---|
| 140 |
|
---|
| 141 | ## [1.0.0] - 2014-12-23
|
---|
| 142 |
|
---|
| 143 | - Merge commit '97b05f5544f8348736a8efaecf5c32bbe3e2ad6e'
|
---|
| 144 | - support empty brace syntax
|
---|
| 145 | - better bash coverage
|
---|
| 146 | - better support for regex strings
|
---|
| 147 |
|
---|
| 148 | ## [0.1.4] - 2014-11-14
|
---|
| 149 |
|
---|
| 150 | - improve recognition of bad args, recognize mismatched argument types
|
---|
| 151 | - support escaping
|
---|
| 152 | - remove pathname-expansion
|
---|
| 153 | - support whitespace in patterns
|
---|
| 154 |
|
---|
| 155 | ## [0.1.0]
|
---|
| 156 |
|
---|
| 157 | - first commit
|
---|
| 158 |
|
---|
| 159 | [2.3.2]: https://github.com/micromatch/braces/compare/2.3.1...2.3.2
|
---|
| 160 | [2.3.1]: https://github.com/micromatch/braces/compare/2.3.0...2.3.1
|
---|
| 161 | [2.3.0]: https://github.com/micromatch/braces/compare/2.2.1...2.3.0
|
---|
| 162 | [2.2.1]: https://github.com/micromatch/braces/compare/2.2.0...2.2.1
|
---|
| 163 | [2.2.0]: https://github.com/micromatch/braces/compare/2.1.1...2.2.0
|
---|
| 164 | [2.1.1]: https://github.com/micromatch/braces/compare/2.1.0...2.1.1
|
---|
| 165 | [2.1.0]: https://github.com/micromatch/braces/compare/2.0.4...2.1.0
|
---|
| 166 | [2.0.4]: https://github.com/micromatch/braces/compare/2.0.3...2.0.4
|
---|
| 167 | [2.0.3]: https://github.com/micromatch/braces/compare/2.0.2...2.0.3
|
---|
| 168 | [2.0.2]: https://github.com/micromatch/braces/compare/2.0.1...2.0.2
|
---|
| 169 | [2.0.1]: https://github.com/micromatch/braces/compare/2.0.0...2.0.1
|
---|
| 170 | [2.0.0]: https://github.com/micromatch/braces/compare/1.8.5...2.0.0
|
---|
| 171 | [1.8.5]: https://github.com/micromatch/braces/compare/1.8.4...1.8.5
|
---|
| 172 | [1.8.4]: https://github.com/micromatch/braces/compare/1.8.0...1.8.4
|
---|
| 173 | [1.8.0]: https://github.com/micromatch/braces/compare/1.6.0...1.8.0
|
---|
| 174 | [1.6.0]: https://github.com/micromatch/braces/compare/1.5.0...1.6.0
|
---|
| 175 | [1.5.0]: https://github.com/micromatch/braces/compare/1.4.0...1.5.0
|
---|
| 176 | [1.4.0]: https://github.com/micromatch/braces/compare/1.3.0...1.4.0
|
---|
| 177 | [1.3.0]: https://github.com/micromatch/braces/compare/1.2.0...1.3.0
|
---|
| 178 | [1.2.0]: https://github.com/micromatch/braces/compare/1.1.0...1.2.0
|
---|
| 179 | [1.1.0]: https://github.com/micromatch/braces/compare/1.0.0...1.1.0
|
---|
| 180 | [1.0.0]: https://github.com/micromatch/braces/compare/0.1.4...1.0.0
|
---|
| 181 | [0.1.4]: https://github.com/micromatch/braces/compare/0.1.0...0.1.4
|
---|
| 182 |
|
---|
| 183 | [Unreleased]: https://github.com/micromatch/braces/compare/0.1.0...HEAD
|
---|
| 184 | [keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog |
---|