Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-27Enable frozen string in app/models/*.rbgfyoung
Partially addresses #47424.
2018-05-30Upgrade to Ruby 2.4.4Stan Hu
Fixes that make this work: * A change in Ruby (https://github.com/ruby/ruby/commit/ce635262f53b760284d56bb1027baebaaec175d1) requires passing in the exact required length for OpenSSL keys and IVs. * Ensure the secrets.yml is generated before any prepended modules are loaded. This is done by renaming the `secret_token.rb` initializer to `01_secret_token.rb`, which is a bit ugly but involves the least impact on other files.
2018-03-22Add HTTPS-only pagesRob Watson
Closes #28857
2018-02-23Add DNS verification to Pages custom domainsNick Thomas
2018-01-08Generate HTTP URLs for custom Pages domains when appropriateNick Thomas
2017-11-16Adds Rubocop rule for line break after guard clauseJacopo
Adds a rubocop rule (with autocorrect) to ensure line break after guard clauses.
2017-11-13Add administrative endpoint to list all pages domainsTravis Miller
2017-10-22Rename conflicting private method in PagesDomain modelTravis Miller
2017-06-06Allow numeric pages domainDrew Blessing
Previously, `PagesDomain` would not allow a domain such as 123.example.com. With this change, this is now allowed, because it is a perfectly valid domain.
2017-02-23Enable Rails/ValidationDouwe Maan
2017-02-01fix attr_encrypted in EEJames Lopez
2017-02-01Adds algorithm to the pages domain key and remote mirror credentials ↵Connor Shea
encrypted attributes for forward compatibility with attr_encrypted 3.0.0. aes-256-cbc is the default algorithm for attr_encrypted 1.x, but the default is changed in 3.0 and thus must be declared explicitly. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4216/ for more information. This will prevent OpenSSL errors once the code from that MR is merged into EE.
2017-02-01Updated according to commentsKamil Trzcinski
2017-02-01Fix rubocop complainsKamil Trzcinski
2017-02-01Pages domain model specsKamil Trzcinski
2017-02-01Fix viewsKamil Trzcinski
2017-02-01Implement extra domains and save pages configurationKamil Trzcinski
2017-02-01Added PagesDomainKamil Trzcinski