We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1c638f commit 7f0b7f2Copy full SHA for 7f0b7f2
tools/cli/internal/changelog/outputfilter/squash.go
@@ -11,7 +11,9 @@ import (
11
var (
12
// identifierRegex matches text enclosed in single quotes.
13
// Example: it'll match "value" from the string "added the new required request property 'value'".
14
- identifierRegex = regexp.MustCompile(`'([^']+)'`)
+ // Example: it'll match "" and "/items/dataProcessRegion/region" from the string
15
+ // "removed the '' enum value from the '/items/dataProcessRegion/region' response property".
16
+ identifierRegex = regexp.MustCompile(`'([^']*)'`)
17
)
18
19
type SquashHandler interface {
0 commit comments