renovatebot / app-support

Discussion/support issues for the hosted Renovate App
0 stars 0 forks source link

[App Dashboard] missing json metadata html encoding #89

Closed viceice closed 4 years ago

viceice commented 4 years ago

json objects are not html encoded, so

"// renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s+readonly\\s+tag\\s+=\\s+'(?<currentValue>.+?)';"

gets visible to:

"// renovate: datasource=(?[a-z-]+?) depName=(?.+?)(?: versioning=(?[a-z-]+?))?\\s+readonly\\s+tag\\s+=\\s+'(?.+?)';"

named regex capture groups are interpreted as html

image

rarkins commented 4 years ago

I think it's now fixed:

image