-
-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: make v character in version tags optional (#423)
* fix: make v character in version tags optional * fix: cross platform regex * fix: test regex within grep. * fix: add semantic tags prepended with v
- Loading branch information
1 parent
c068855
commit db2d8b6
Showing
7 changed files
with
165 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
export const completelyValidSemanticVersions = [ | ||
'0.0.4', | ||
'1.2.3', | ||
'10.20.30', | ||
'1.1.2-prerelease+meta', | ||
'1.1.2+meta', | ||
'1.1.2+meta-valid', | ||
'1.0.0-alpha', | ||
'1.0.0-beta', | ||
'1.0.0-alpha.beta', | ||
'1.0.0-alpha.beta.1', | ||
'1.0.0-alpha.1', | ||
'1.0.0-alpha0.valid', | ||
'1.0.0-alpha.0valid', | ||
'1.0.0-alpha-a.b-c-somethinglong+build.1-aef.1-its-okay', | ||
'1.0.0-rc.1+build.1', | ||
'2.0.0-rc.1+build.123', | ||
'1.2.3-beta', | ||
'10.2.3-DEV-SNAPSHOT', | ||
'1.2.3-SNAPSHOT-123', | ||
'1.0.0', | ||
'2.0.0', | ||
'1.1.7', | ||
'2.0.0+build.1848', | ||
'2.0.1-alpha.1227', | ||
'1.0.0-alpha+beta', | ||
'1.2.3----RC-SNAPSHOT.12.9.1--.12+788', | ||
'1.2.3----R-S.12.9.1--.12+meta', | ||
'1.2.3----RC-SNAPSHOT.12.9.1--.12', | ||
'1.0.0+0.build.1-rc.10000aaa-kk-0.1', | ||
'99999999999999999999999.999999999999999999.99999999999999999', | ||
'1.0.0-0A.is.legal', | ||
]; | ||
|
||
export const notCompletelyValidSemanticVersions = [ | ||
'1', | ||
'1.2', | ||
'1.2.3-0123', | ||
'1.2.3-0123.0123', | ||
'1.1.2+.123', | ||
'+invalid', | ||
'-invalid', | ||
'-invalid+invalid', | ||
'-invalid.01', | ||
'alpha', | ||
'alpha.beta', | ||
'alpha.beta.1', | ||
'alpha.1', | ||
'alpha+beta', | ||
'alpha_beta', | ||
'alpha.', | ||
'alpha..', | ||
'beta', | ||
'1.0.0-alpha_beta', | ||
'-alpha.', | ||
'1.0.0-alpha..', | ||
'1.0.0-alpha..1', | ||
'1.0.0-alpha...1', | ||
'1.0.0-alpha....1', | ||
'1.0.0-alpha.....1', | ||
'1.0.0-alpha......1', | ||
'1.0.0-alpha.......1', | ||
'01.1.1', | ||
'1.01.1', | ||
'1.1.01', | ||
'1.2', | ||
'1.2.3.DEV', | ||
'1.2-SNAPSHOT', | ||
'1.2.31.2.3----RC-SNAPSHOT.12.09.1--..12+788', | ||
'1.2-RC-SNAPSHOT', | ||
'-1.0.3-gamma+b7718', | ||
'+justmeta', | ||
'9.8.7+meta+meta', | ||
'9.8.7-whatever+meta+meta', | ||
'99999999999999999999999.999999999999999999.99999999999999999----RC-SNAPSHOT.12.09.1--------------------------------..12', | ||
]; | ||
|
||
const addVariantsPrependingV = (array: string[]) => array.map((tag) => [tag, `v${tag}`]).flat(); | ||
|
||
/** | ||
* Array of versions that will be detected as version tags. Not all of these are | ||
* "semantic versions", but can be used to generate one. Especially using the | ||
* `versioning: Semantic` option. | ||
*/ | ||
export const validVersionTagInputs = addVariantsPrependingV([ | ||
'0', | ||
'1', | ||
'0.1', | ||
'1.0', | ||
'1.1.0', | ||
'1.2.3', | ||
...completelyValidSemanticVersions, | ||
]); | ||
|
||
export const invalidVersionTagInputs = addVariantsPrependingV([ | ||
'+invalid', | ||
'-invalid', | ||
'-invalid+invalid', | ||
'-invalid.01', | ||
'alpha', | ||
'alpha.beta', | ||
'alpha.beta.1', | ||
'alpha.1', | ||
'alpha+beta', | ||
'alpha_beta', | ||
'alpha.', | ||
'alpha..', | ||
'beta', | ||
'-alpha.', | ||
'-1.0.3-gamma+b7718', | ||
'+justmeta', | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters