Commit Graph

47 Commits

Author SHA1 Message Date
GitLab Bot af5193aa3c Add latest changes from gitlab-org/gitlab@master 2024-01-24 12:06:49 +00:00
GitLab Bot af7558b036 Add latest changes from gitlab-org/gitlab@master 2024-01-18 21:08:06 +00:00
GitLab Bot 17295c75a1 Add latest changes from gitlab-org/gitlab@master 2023-12-19 09:10:52 +00:00
GitLab Bot 5509e47990 Add latest changes from gitlab-org/gitlab@master 2023-04-28 18:26:46 +00:00
GitLab Bot e97635ea6c Add latest changes from gitlab-org/gitlab@master 2023-02-16 00:09:15 +00:00
GitLab Bot 7e89568aa1 Add latest changes from gitlab-org/gitlab@master 2022-12-07 00:08:34 +00:00
GitLab Bot 12b995e0e7 Add latest changes from gitlab-org/gitlab@master 2022-12-05 12:08:19 +00:00
GitLab Bot fbc1f4ffc2 Add latest changes from gitlab-org/gitlab@master 2022-11-21 12:09:07 +00:00
GitLab Bot 4279dbc29c Add latest changes from gitlab-org/gitlab@master 2022-11-15 15:08:26 +00:00
GitLab Bot 1ab98e892c Add latest changes from gitlab-org/gitlab@master 2022-10-14 15:11:00 +00:00
GitLab Bot 18ad304adc Add latest changes from gitlab-org/gitlab@master 2022-02-11 00:17:04 +00:00
GitLab Bot 5343536f2b Add latest changes from gitlab-org/gitlab@master 2021-11-26 12:12:49 +00:00
GitLab Bot 61a1ecc5e9 Add latest changes from gitlab-org/gitlab@master 2021-09-02 00:10:56 +00:00
GitLab Bot ccc2dc45a3 Add latest changes from gitlab-org/gitlab@master 2021-06-08 12:10:09 +00:00
GitLab Bot 42d323de78 Add latest changes from gitlab-org/gitlab@master 2021-05-21 15:10:51 +00:00
GitLab Bot 152b3268d7 Add latest changes from gitlab-org/gitlab@master 2021-03-10 12:09:14 +00:00
GitLab Bot d7e204ec84 Add latest changes from gitlab-org/gitlab@master 2020-11-03 06:08:58 +00:00
GitLab Bot 038366a093 Add latest changes from gitlab-org/gitlab@master 2020-10-30 15:08:59 +00:00
GitLab Bot 24e7d18539 Add latest changes from gitlab-org/gitlab@master 2020-10-28 12:08:40 +00:00
GitLab Bot eb08c8e6f8 Add latest changes from gitlab-org/gitlab@master 2020-09-22 15:09:37 +00:00
GitLab Bot 7985071975 Add latest changes from gitlab-org/gitlab@master 2020-09-21 12:09:34 +00:00
GitLab Bot bf1600d157 Add latest changes from gitlab-org/gitlab@master 2020-09-16 18:09:47 +00:00
GitLab Bot c172bb9967 Add latest changes from gitlab-org/gitlab@master 2020-09-09 18:08:48 +00:00
GitLab Bot d9e07a155e Add latest changes from gitlab-org/gitlab@master 2020-08-18 15:10:33 +00:00
GitLab Bot 8827c1d184 Add latest changes from gitlab-org/gitlab@master 2020-07-27 12:09:50 +00:00
GitLab Bot ce06ce825b Add latest changes from gitlab-org/gitlab@master 2020-07-06 15:08:42 +00:00
GitLab Bot 57b359e90c Add latest changes from gitlab-org/gitlab@master 2020-07-03 00:09:23 +00:00
GitLab Bot 6aab18704a Add latest changes from gitlab-org/gitlab@master 2020-07-02 09:09:00 +00:00
GitLab Bot 640e72ca92 Add latest changes from gitlab-org/gitlab@master 2020-06-04 03:08:05 +00:00
GitLab Bot 68f1860e6f Add latest changes from gitlab-org/gitlab@master 2020-03-20 21:09:17 +00:00
GitLab Bot 5781a49660 Add latest changes from gitlab-org/gitlab@master 2020-03-12 00:09:34 +00:00
GitLab Bot 4ab54c2233 Add latest changes from gitlab-org/gitlab@master 2019-09-17 14:16:34 +00:00
Balasankar "Balu" C 9ab5346eeb
Ensure changelog filenames are less than 99 characters long
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
2019-08-13 14:28:54 +05:30
gfyoung 93a44e135b Add some frozen string to spec/**/*.rb
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-04-15 10:17:05 +00:00
Rémy Coutable 3a2abc1d50
Enable the Layout/ExtraSpacing cop
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-24 13:05:45 +01:00
Zeger-Jan van de Weg 30b4ce940d
Remove Git circuit breaker
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-10-10 09:08:18 +02:00
George Tsiolis 124cece3b3 Include private contributions in user contribution graph 2018-09-07 15:08:55 +00:00
Stan Hu df54458a93 Truncate filenames created by bin/changelog to 140 characters 2018-07-11 10:15:22 -07:00
Jacob Vosmaer (GitLab) dcdcbfa40b Improve shelling out in bin/changelog 2018-06-25 21:32:00 +00:00
Bob Van Landuyt f1ae1e39ce Move the circuitbreaker check out in a separate process
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-12-08 09:11:39 +01:00
Zeger-Jan van de Weg 2622a6de59
Add Performance category to the changelog
Resolves gitlab-org/gitlab-ce#36417
2017-10-13 12:45:56 +02:00
Robert Speicher 4ef10795ce Fix Layout/SpaceBeforeBlockBraces violation in bin/changelog_spec 2017-08-10 19:22:59 -04:00
Jacopo eb2b895a20 Let's start labeling our CHANGELOG entries
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-07-22 11:19:56 +02:00
Rémy Coutable bdf5b6adc3
Enable the RSpec/ExpectOutput cop
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-18 18:56:26 +02:00
Robert Speicher 813fd6f675 DRY up the specs for bin/changelog 2016-11-03 17:35:06 +00:00
Robert Speicher 895673733a Add a `--force` option to bin/changelog 2016-11-02 22:15:20 +00:00
Robert Speicher 5acb3230ef Add specs for ChangelogOptionParser in bin/changelog 2016-10-31 14:56:20 +00:00