-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Labels
c: contributor-productivityTeam-specific productivity, code health, technical debt.Team-specific productivity, code health, technical debt.toolAffects the "flutter" command-line tool. See also t: labels.Affects the "flutter" command-line tool. See also t: labels.
Description
The current regex pattern is ^\d+\.\d+\.\d+(?:|-pre\.\d+|\+hotfix\.\d+)$. This will correctly match 1.2.3, 1.2.3-pre.4, or 1.2.3+hotfix.4 but not 1.2.3+hotfix.4-pre.5. Thus, on a hotfix pre-submit, this causes failures such as https://cirrus-ci.com/task/5681282190671872
update from:
^\d+\.\d+\.\d+(?:|-pre\.\d+|\+hotfix\.\d+)$
to:
^\d+\.\d+\.\d+(?:|-pre\.\d+|\+hotfix\.\d+(?:|-pre\.\d+))$
Metadata
Metadata
Assignees
Labels
c: contributor-productivityTeam-specific productivity, code health, technical debt.Team-specific productivity, code health, technical debt.toolAffects the "flutter" command-line tool. See also t: labels.Affects the "flutter" command-line tool. See also t: labels.