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
2023-01-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2023-01-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-11-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-10-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-04-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-25Frozen string cannot change encodingThong Kuah
This was shown in specs but surely this will be happening in application code as well if this method is passes a frozen string. We were also trying to force_encode a OmniAuth::AuthHash which had the very confusing behaviour of returning nil when it was sent a method that it did not define. Fix that by only force_encoding a String.
2019-07-24[ADD] outbound requests whitelistReuben Pereira
Signed-off-by: Istvan szalai <istvan.szalai@savoirfairelinux.com>
2019-03-12Backport try_megabytes_to_bytes from EEYorick Peterse
EE adds this method to Gitlab::Utils, which is also required by our SimpleCov helper. This prevents us from injecting EE modules into Gitlab::Utils, because the necessary bits for this are not yet in place. To work around this we just backport try_megabytes_to_bytes, as there's no particular reason to keep this in EE only.
2019-01-04Add config_options|variables to BuildMetadataKamil Trzciński
These are data columns that store runtime configuration of build needed to execute it on runner and within pipeline. The definition of this data is that once used, and when no longer needed (due to retry capability) they can be freely removed. They use `jsonb` on PostgreSQL, and `text` on MySQL (due to lacking support for json datatype on old enough version).
2018-12-10Fix a frozen string error in lib/gitlab/utils.rbRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-12-06Merge branch '54857-fix-templates-path-traversal' into 'master'Cindy Pallares
[master]: Prevent a path traversal attack on global file templates Closes #2745 See merge request gitlab/gitlabhq!2677
2018-12-05Prevent a path traversal attack on global file templatesNick Thomas
The API permits path traversal characters like '../' to be passed down to the template finder. Detect these requests and cause them to fail with a 500 response code.
2018-11-28Pad encryption keys with UTF-8 0 instead of \0 charGrzegorz Bizon
2018-11-27Improve token authenticable tests and exceptionsGrzegorz Bizon
2018-11-23Fix static analysis in utf8 helper methodsGrzegorz Bizon
2018-11-22Ensure that db encryption keys have proper bytesizeGrzegorz Bizon
2018-11-07Add a helper method to append path to a base URLDouglas Barbosa Alexandre
In Ruby 2.4, `URI.join("http://test//", "a").to_s` will remove the double slash, however it's not the case in Ruby 2.5. Using chomp should work better for the intention, as we're not trying to allow things like ../ or / paths resolution. This helper method append path to host, making sure there's one single slash as path separator.
2018-10-22Enable frozen string for lib/gitlab/*.rbgfyoung
2018-04-12Backport of EE !4989Rubén Dávila
2018-04-04Add custom additonal email text to all emailsEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ee/issues/4474 Conflicts: db/schema.rb ee/app/controllers/ee/admin/application_settings_controller.rb ee/app/helpers/ee/application_settings_helper.rb ee/app/models/ee/application_setting.rb ee/app/models/license.rb ee/app/views/layouts/service_desk.html.haml ee/app/views/notify/approved_merge_request_email.html.haml ee/app/views/notify/service_desk_new_note_email.text.erb ee/app/views/notify/service_desk_thank_you_email.text.erb ee/app/views/notify/unapproved_merge_request_email.html.haml ee/lib/ee/api/entities.rb ee/spec/controllers/admin/application_settings_controller_spec.rb ee/spec/models/application_setting_spec.rb ee/spec/requests/api/settings_spec.rb lib/api/settings.rb spec/mailers/previews/notify_preview.rb
2018-03-07Gitlab::Utils - backport `.ensure_array_from_string` from EEMario de la Ossa
2018-01-17Merge branch ↵Robert Speicher
'41293-fix-command-injection-vulnerability-on-system_hook_push-queue-through-web-hook' into 'security-10-3' Don't allow line breaks on HTTP headers See merge request gitlab/gitlabhq!2277 (cherry picked from commit 7fc0a6fc096768a5604d6dd24d7d952e53300c82) 073b8f9c Don't allow line breaks on HTTP headers
2017-12-02Backport `which` from EEMichael Kozono
2017-08-31Add a linter for PO filesBob Van Landuyt