You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Up until 0.2.6 (?P<user_agent>[a-zA-Z\d-_]+/[0-9\.]+) was a valid regex. Since 0.2.7 \d does not work and only (?P<user_agent>[a-zA-Z0-9-_]+/[0-9\.]+) works. Is it possible that that is a regression because as far as I understand RE2 it should be valid.