summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/untrusted_regexp
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-211-1/+1
|
* Add frozen_string_literal to lib part 2Thong Kuah2019-08-231-0/+2
| | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Allow to use untrusted Regexp via feature flagKamil Trzciński2019-04-041-11/+57
| | | | | | | This brings support for untrusted regexp for 'only:refs:' when enabled via feature flag: alllow_unsafe_ruby_regexp. This is by default disabled, and should not be used in production
* Make CI refs matching to to use UntrustedRegexpKamil Trzciński2019-03-151-0/+72
This makes ref validation to use always `UntrustedRegexp`. This also splits the existing RubySyntax into separate class.