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
path: root/spec/bin
AgeCommit message (Collapse)Author
2021-05-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-13Ensure changelog filenames are less than 99 characters longBalasankar "Balu" C
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
2019-04-15Add some frozen string to spec/**/*.rbgfyoung
Adds frozen string to the following: * spec/bin/**/*.rb * spec/config/**/*.rb * spec/controllers/**/*.rb xref https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-01-24Enable the Layout/ExtraSpacing copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-10Remove Git circuit breakerZeger-Jan van de Weg
Was introduced in the time that GitLab still used NFS, which is not required anymore in most cases. By removing this, the API it calls will return empty responses. This interface has to be removed in the next major release, expected to be 12.0.
2018-09-07Include private contributions in user contribution graphGeorge Tsiolis
2018-07-11Truncate filenames created by bin/changelog to 140 charactersStan Hu
2018-06-26Improve shelling out in bin/changelogJacob Vosmaer (GitLab)
2017-12-08Move the circuitbreaker check out in a separate processBob Van Landuyt
Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
2017-10-13Add Performance category to the changelogZeger-Jan van de Weg
Resolves gitlab-org/gitlab-ce#36417
2017-08-11Fix Layout/SpaceBeforeBlockBraces violation in bin/changelog_specRobert Speicher
2017-07-22Let's start labeling our CHANGELOG entriesJacopo
Added the type attribute to a CHANGELOG entry. When you create a new entry the software asks for the category of the change and sets the associated type in the file.
2017-05-18Enable the RSpec/ExpectOutput copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-11-03DRY up the specs for bin/changelogRobert Speicher
2016-11-03Add a `--force` option to bin/changelogRobert Speicher
2016-10-31Add specs for ChangelogOptionParser in bin/changelogRobert Speicher