Merge branch '827-fix-numeric-hostnames-in-gitlab-pages' into 'master'
Update validates_hostname to 1.0.6 to fix a bug in parsing hexadecimal-looking domain names validates_hostname <= 1.0.5 has a bug that breaks hostnames that could be interpreted as hexadecimal numbers. This is fixed in https://github.com/KimNorgaard/validates_hostname/pull/7 Update our version of the gem to one that includes this fix, and add a test for it. /cc @cpallares @0x7cc Can we get this into 8.15 do you think? Closes #827 See merge request !982
Showing
... | ... | @@ -47,7 +47,7 @@ gem 'attr_encrypted', '~> 3.0.0' |
gem 'u2f', '~> 0.2.1' | ||
# GitLab Pages | ||
gem 'validates_hostname', '~> 1.0.0' | ||
gem 'validates_hostname', '~> 1.0.6' | ||
# Browser detection | ||
gem 'browser', '~> 2.2' | ||
... | ... |
Please register or sign in to comment