An error occurred fetching the project authors.
- 29 Oct, 2021 1 commit
-
-
Matthias Kaeppler authored
This will bring in the Style/OpenStructUse cop. All existing offense are silenced for now.
-
- 28 Oct, 2021 1 commit
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 27 Oct, 2021 2 commits
-
-
Stan Hu authored
This reverts merge request !73093
-
Heinrich Lee Yu authored
Upgrades sidekiq-cron and adds an explicit require for sidekiq/job_logger and sidekiq/job_retry. Previously, these were loaded by sidekiq-cron's launcher which is now refactored to only load the Sidekiq classes when needed.
-
- 25 Oct, 2021 2 commits
-
-
Stan Hu authored
In a project with JIRA activated, `ProcessCommitWorker` attempts to add a comment to a JIRA issue if that issue is mentioned in a commit. However, the JIRA integration would attempt to retrieve all tags and branches and pick the first matching ref given a commit OID. The problem with that approach is that after each push, the list of all branches and tags are expired and could take a while to gather. Since multiple `ProcessCommitWorker` jobs can be running at the same time, this can lead to high I/O on Gitaly nodes since multiple `ProcessCommitWorker` jobs can run at the same time. We observe that we don't really need to build the entire ref list; we can just ask Gitaly for a single matching ref for the given OID with the newly-created `FindRefsByOID` RPC introduced in https://gitlab.com/gitlab-org/gitaly/-/merge_requests/3947. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/343035 Changelog: performance
-
Katrin Leinweber authored
See https://gitlab.com/gitlab-org/gitlab-dangerfiles/-/releases/v2.3.1 Changelog: other
-
- 22 Oct, 2021 1 commit
-
-
Joerg Behrmann authored
This adds an optional gem sd_notify, which, when available, allows puma to notify systemd about having finished its startup. This allows puma to be Type=notify instead of Type=simple in its service file.
-
- 19 Oct, 2021 1 commit
-
-
Stan Hu authored
We attempted to load the gitlab-fog-azure-rm only if it was really needed for object storage, but there are a number of cases where we don't dynamically load these gems when we need them. To avoid the complexity of this dynamic allocation, we now require the gem, just as we do with other object storage providers. Unfortunately this adds 5 MB to the RAM usage of the process according to derailed_benchmarks, but this fairly typical for a gem for object storage. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/334853 Changelog: fixed
-
- 14 Oct, 2021 2 commits
-
-
Gabriel Mazetto authored
-
Gabriel Mazetto authored
-
- 11 Oct, 2021 1 commit
-
-
Ash McKenzie authored
-
- 07 Oct, 2021 1 commit
-
-
Peter Leitzen authored
-
- 05 Oct, 2021 1 commit
-
-
Dmitry Gruzd authored
This MR updates Rails from 6.1.3.2 to 6.1.4.1 Changes: rails: https://my.diffend.io/gems/rails/6.1.3.2/6.1.4.1 actionpack: https://my.diffend.io/gems/actionpack/6.1.3.2/6.1.4.1 activerecord: https://my.diffend.io/gems/activerecord/6.1.3.2/6.1.4.1 activestorage: https://my.diffend.io/gems/activestorage/6.1.3.2/6.1.4.1 Release notes: https://github.com/rails/rails/releases
-
- 28 Sep, 2021 1 commit
-
-
Mehmet Emin INAC authored
-
- 23 Sep, 2021 1 commit
-
-
Heinrich Lee Yu authored
Upgrade to the latest version of Sidekiq
-
- 21 Sep, 2021 2 commits
-
-
Stan Hu authored
Prior to this commit, files downloaded in Azure Blob Storage would not have a Content-Disposition header sent, which would cause files to be saved with an unfriendly filename. https://gitlab.com/gitlab-org/gitlab-fog-azure-rm/-/merge_requests/25 added support for retrieving this response header by requesting this in the Azure shared access signature (SAS) token. We now patch CarrierWave to send these custom options to the File object. We drop the dynamic parameter check in the CarrierWave patch since we have a fog-google version that supports the options. Plus, this dynamic parameter doesn't work with mocks since the mocks don't copy the exactly method signature. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/341061 Changelog: fixed
-
Drew Blessing authored
Changelog: changed
-
- 20 Sep, 2021 2 commits
-
-
Brett Walker authored
which fixes several issues, including a `w` being in a footnote, and exposing the XML interface Changelog: fixed
-
David Kim authored
-
- 17 Sep, 2021 1 commit
-
-
Vladimir Shushlin authored
This adds Rails/IncludeUrlHelper See https://gitlab.com/gitlab-org/gitlab/-/issues/340567
-
- 15 Sep, 2021 2 commits
-
-
Mehmet Emin INAC authored
Upgrading the gem from `0.9.0` to `0.10.0` which contains just one change to address our patch.
-
Matthias Kaeppler authored
In preparation for the Ruby 3 upgrade, we should update json to match the minimum gem version as specified by the default gem: https://stdgems.org/json/#gem-version Which for Ruby 3.0 is 2.5.1. This will otherwise lead to errors, since rubygems will encounter conflicting gemspecs during require. See https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/6286
-
- 13 Sep, 2021 1 commit
-
-
Stan Hu authored
This upgrade properly supports regional STS endpoints as well as the ability to set the minimum and maximum multipart chunk size. Diff: https://github.com/fog/fog-aws/compare/v3.9.0..v3.12.0 Changelog: fixed
-
- 08 Sep, 2021 2 commits
-
-
Pavel Shutsin authored
Can be used to increase max SAML message size Changelog: added EE: true
-
Heinrich Lee Yu authored
This prepares us for upgrading the redis-rb gem to 4.2+ which is required for Sidekiq 6
-
- 02 Sep, 2021 1 commit
-
-
Bob Van Landuyt authored
This includes a bugfix for label ordering: if metrics were reported with a different label ordering than they were initialized with, they would not get stored in the file and thus not reported when scraped. Diff in https://my.diffend.io/gems/prometheus-client-mmap/0.14.0/0.15.0 Merge request with the changes https://gitlab.com/gitlab-org/prometheus-client-mmap/-/merge_requests/60
-
- 30 Aug, 2021 1 commit
-
-
Patrick Steinhardt authored
Upgrade Gitaly's protobuf definitions to v14.3.0-rc1. Amongst other changes, this also includes the new `with_paths` field in the ListBlobs RPC call.
-
- 25 Aug, 2021 4 commits
-
-
Alex Kalderimis authored
This enables us to make use of `strict_mode`, preventing denial of service attacks. Changelog: security
-
Aleksei Lipniagov authored
This will include fix for noisy warnings visible when running the app with Ruby 3. Changelog: other
-
Matthias Kaeppler authored
The newer shared library contains CPU instructions that are incompatible with some customer machines. We need to ignore deprecation warnings from related files as well until this is resolved. Changelog: fixed
-
Heinrich Lee Yu authored
This includes a performance improvement when generating API routes Changelog: performance
-
- 16 Aug, 2021 1 commit
-
-
Jeremy Jackson authored
-
- 11 Aug, 2021 1 commit
-
-
Aleksei Lipniagov authored
To fix https://github.com/thoughtbot/factory_bot/issues/1458. Changelog: other
-
- 04 Aug, 2021 2 commits
-
-
Andrejs Cunskis authored
-
Matthias Kaeppler authored
These are the minimum versions required to add Ruby 3 support.
-
- 02 Aug, 2021 1 commit
-
-
Matthias Kaeppler authored
This ensures that deprecation warnings coming from both Ruby and Rails are logged to a new log file, deprecations_json.log. Changelog: added
-
- 30 Jul, 2021 1 commit
-
-
Jeremy Jackson authored
-
- 29 Jul, 2021 1 commit
-
-
Matthias Kaeppler authored
It is my understanding that this is currently unused and just tech debt, but it is sitting in the path for the Ruby 3 migration, and using the latest version resolves this problem.
-
- 28 Jul, 2021 1 commit
-
-
Patrick Steinhardt authored
When writing a repo's path (e.g. "gitlab-org/gitlab") into the gitconfig, we currently use the `SetConfig()` RPC. This RPC has been deprecated by Gitaly in favor of a new `SetFullPath()`, which can only be used to explicitly write the repo's path into the gitconfig. Convert the code to use the new RPC.
-
- 26 Jul, 2021 1 commit
-
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-