summaryrefslogtreecommitdiff
path: root/Gemfile
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch ↵Stan Hu2019-08-141-0/+1
|\ | | | | | | | | | | | | '46548-open-source-alternative-to-recaptcha-for-gitlab-com-registration' into 'master' Open source alternative to reCAPTCHA for GitLab.com registration See merge request gitlab-org/gitlab-ce!31625
| * Add invisible_captcha gemAlex Buijs2019-08-091-0/+1
| |
* | Migrates Snowplow backend from EE to CEJeremy Jackson2019-08-141-0/+3
| | | | | | | | | | This introduces several changes, but these are all just ported from the EE project.
* | Update Gitaly server and gem to 1.58.0Jacob Vosmaer2019-08-121-2/+2
| |
* | Merge branch 'sh-update-ruby-labkit' into 'master'Robert Speicher2019-08-121-1/+1
|\ \ | | | | | | | | | | | | Update gitlab-labkit to 0.4.2 See merge request gitlab-org/gitlab-ce!31685
| * | Update gitlab-labkit to 0.4.2sh-update-ruby-labkitStan Hu2019-08-101-1/+1
| |/ | | | | | | | | | | | | | | This relaxes the gRPC version so that it can be updated. Also adds cache support for distributed tracing. Full release notes: https://gitlab.com/gitlab-org/labkit-ruby/-/tags
* | Bump nokogiri to 1.10.4bump-nokogiri-1.10.4Thong Kuah2019-08-121-1/+1
|/ | | | | This pulls in fix for CVE-2019-5477, where usage of Nokogiri::CSS::Tokenizer#load_file leads to potential command injection.
* Remove GC metrics from performance barSean McGivern2019-08-061-1/+0
| | | | | | These were disabled in production mode, but that also broke the rest of the performance bar. As they were only enabled in development mode, we can just remove them for now.
* Merge branch 'update-reliable-fetcher' into 'master'Sean McGivern2019-08-061-1/+1
|\ | | | | | | | | Update reliable fetcher See merge request gitlab-org/gitlab-ce!31416
| * Update reliable fetcherupdate-reliable-fetcherValery Sizov2019-08-061-1/+1
| | | | | | | | We added retry_count increment when job is recovered
* | Use Rails 5.2 Redis caching storesh-use-redis-caching-storeStan Hu2019-08-051-4/+4
|/ | | | | | | | | | | | This is the first step in providing a fault-tolerant and distributed Redis caching store. We disable compression to avoid introducing a change that could have an adverse effect in production. Note that we won't be able to take advantage of the fault-tolerance and distributed features yet until we solve https://gitlab.com/gitlab-org/gitlab-ce/issues/64829. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64794
* Remove line profiler from performance barSean McGivern2019-07-301-1/+0
| | | | | | | | | 1. The output isn't great. It can be hard to find hotspots and, even when you do find them, to find why those are hotspots. 2. It uses some jQuery-specific frontend code which we can remove now that we don't have this any more. 3. It's only possible to profile the initial request, not any subsequent AJAX requests.
* Merge branch 'determinstic_dns_specs' into 'master'Douglas Barbosa Alexandre2019-07-301-1/+0
|\ | | | | | | | | Have deterministic DNS for specs See merge request gitlab-org/gitlab-ce!31086
| * Write out sham_rack gemThong Kuah2019-07-291-1/+0
| | | | | | | | | | | | | | This means we have one less Net::HTTP monkeypatch. sham_rack cannot handle IPv6 addresses which means it breaks Net::HTTP connections because it monkey-patches Net::HTTP
* | Update rouge to v3.7.0Stan Hu2019-07-291-1/+1
|/ | | | | | | | This adds support for a number of new languages (e.g. Ada) and fixes a number of lexers: https://github.com/rouge-ruby/rouge/compare/v3.5.1..v3.7.0 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64625
* Replace peek-pg with our own implementationremove-peek-pgSean McGivern2019-07-261-2/+1
| | | | | | | | | | This uses an ActiveRecord subscriber to get queries and calculate the total query time from that. This means that the total will always be consistent with the queries in the table. It does however mean that we could potentially miss some queries that don't go through ActiveRecord. Making this change also allows us to unify the response JSON a little bit, making the frontend slightly simpler as a result.
* Remove dead MySQL codeNick Thomas2019-07-231-2/+0
| | | | None of this code can be reached any more, so it can all be removed
* Make Bootsnap available via ENABLE_BOOTSNAP=1Stan Hu2019-07-191-1/+2
| | | | | | | | | | | | | Bootsnap speeds up Rails loading and now ships by default with Rails 5.2 apps. We should promote this to a default gem and test it out in production. This will also make it possible for the Helm Charts to take advantage of this. It appears that Bootsnap with Rails 5.2.3 and all the GitLab CE gems loads fine on an ARM platform now, so it's possible that https://gitlab.com/gitlab-org/gitlab-ce/issues/34799 has been resolved. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/45230
* Fix inconsistency in Redis performance bar statssh-fix-redis-performance-barStan Hu2019-07-171-1/+0
| | | | | | | | | | | | | | | | peek-redis resets its counters at the start of an ActionController notification (`start_processing.action_controller`), which causes it to miss some Redis queries that precede it, such as the database load balancer and Rack Attack queries. This produces inconsistencies in the performance bar between the number of calls and their durations with the actual calls in the detailed view. We fix this by getting rid of peek-redis in favor of consolidating all logic into the `RedisDetailed` view, which tracks Redis queries using `RequestStore`. This has the nice property of removing thread-specific counters as well. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64707
* Bump fog-aws to v3.5.2sh-bump-fog-awsStan Hu2019-07-161-1/+1
| | | | | | | | | | This will make it possible for Oracle Cloud to work with S3 by disabling Signature V4 streaming (https://github.com/fog/fog-aws/issues/523). Full CHANGELOG: https://github.com/fog/fog-aws/blob/master/CHANGELOG.md Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63041
* Upgrade Gitaly-Proto to 1.37.0Zeger-Jan van de Weg2019-07-161-1/+1
| | | | | This was done to perform some local testing, but while the change was already made it made sense to commit the change.
* Upgrade to Rails 5.2upgrade-rails-5-2-ceHeinrich Lee Yu2019-07-121-1/+1
| | | | Updates changed method names and fixes spec failures
* Improve Graphql DocsFelipe Artur2019-07-111-0/+1
| | | | Adds more friendly docs for GraphQl implementation
* Upgrade rspec-rails to 3.8.2 and dependenciessh-bump-rspec-versionsDouglas Barbosa Alexandre2019-07-101-1/+1
| | | | | | | | This brings the rspec-core version in line with the Gitaly changes and introduces Rails 5.1/5.2 improvements. Full CHANGELOG: https://github.com/rspec/rspec-rails/blob/master/Changelog.md
* Merge branch 'update-net-ssh' into 'master'Robert Speicher2019-07-091-1/+1
|\ | | | | | | | | Update net-ssh gem to ~> 5.2 See merge request gitlab-org/gitlab-ce!30341
| * Update net-ssh gem to ~> 5.2Pirate Praveen2019-07-041-1/+1
| |
* | Centralize config for markdownlintMarkus Koller2019-07-091-0/+1
| | | | | | | | | | | | | | | | The configuration is currently only specified in CI, by moving it into `.mdlrc` we get immediate feedback locally in supported editors. To ensure `mdl` is available it's also added to the `Gemfile`, though CI will still use the version installed in the `gitlab-docs-lint` image.
* | Bump prometheus-client-mmap to 0.9.8sh-bump-prom-mmap-gemStan Hu2019-07-081-1/+1
| | | | | | | | | | | | | | This fixes a critical error where a nil exception would be hit if an error occurred while logging a Prometheus metric: https://gitlab.com/gitlab-org/prometheus-client-mmap/merge_requests/36
* | Merge branch 'sh-bump-prometheus-client-mmap-0.9.7' into 'master'Kamil Trzciński2019-07-081-1/+1
|\ \ | | | | | | | | | | | | Upgrade prometheus-client-mmap to 0.9.7 See merge request gitlab-org/gitlab-ce!30430
| * | Upgrade prometheus-client-mmap to 0.9.7sh-bump-prometheus-client-mmap-0.9.7Stan Hu2019-07-051-1/+1
| | | | | | | | | | | | This removes a warning message when prometheus_multiproc_dir is not set.
* | | Upgrade Rouge to 3.5.1sh-upgrade-rouge-3.5.1Stan Hu2019-07-061-1/+1
|/ / | | | | | | | | | | This release includes continued improvements to the library, fixes for a number of lexers and support for three new languages: https://github.com/rouge-ruby/rouge/releases
* | Extend MergeToRefService for creating merge ref from the other refShinya Maeda2019-07-051-1/+1
|/ | | | | | | Currently, MergeToRefService is specifically designed for createing merge commits from source branch and target branch of merge reqeusts. We extend this behavior to source branch and any target ref paths.
* Update the 'default_value_for' gem to 3.2.0update-default_value_for-to-3-2-0Rémy Coutable2019-07-011-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Merge branch 'update-prometheus-client-mmap' into 'master'Stan Hu2019-06-281-1/+1
|\ | | | | | | | | | | | | Update prometheus-client-mmap to 0.9.6 Closes #63872 See merge request gitlab-org/gitlab-ce!30165
| * Update prometheus-client-mmap to 0.9.6update-prometheus-client-mmapKamil Trzciński2019-06-281-1/+1
| |
* | Replace 'JIRA' with 'Jira'Takuya Noguchi2019-06-281-1/+1
|/ | | | | | https://community.atlassian.com/t5/Jira-questions/Is-it-quot-JIRA-quot-or-quot-Jira-quot/qaq-p/681163 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
* Move `derailed_benchmarks` gem to default group62722-move-derailed-benchmarks-to-global-gem-sectionAleksei Lipniagov2019-06-241-1/+3
| | | | | Some benchmarks of the gem require booting the app in `production` environment.
* Merge branch 'asciidoctor-upgrade' into 'master'Douwe Maan2019-06-181-2/+2
|\ | | | | | | | | | | | | Upgrade asciidoctor version to 2.0.10 and change method names in html5_converter Closes #63304 See merge request gitlab-org/gitlab-ce!29741
| * Upgrade asciidoctor version to 2.0.10 and change menthod names in ↵raju2492019-06-171-2/+2
| | | | | | | | html5_converter
* | Upgrade gitlab-labkit to 0.3.0Stan Hu2019-06-171-1/+1
|/ | | | | | This matches the version used in Gitaly, bumps the gRPC version to be aligned with GitLab CE/EE, and adds gRPC interceptor support: https://gitlab.com/gitlab-org/labkit-ruby/compare/v0.2.0...v0.3.0
* Add basic support for AsciiDoc include directiveGuillaume Grossetie2019-06-141-0/+1
| | | | See http://asciidoctor.org/docs/user-manual/#include-directive
* Merge branch 'sh-update-openid-omniauth-gem' into 'master'Douglas Barbosa Alexandre2019-06-121-1/+1
|\ | | | | | | | | Bump omniauth_openid_connect to 0.3.1 See merge request gitlab-org/gitlab-ce!29387
| * Bump omniauth_openid_connect to 0.3.1sh-update-openid-omniauth-gemStan Hu2019-06-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | In https://gitlab.com/gitlab-org/gitlab-ce/issues/62208, users were seeing 404 errors when they configured their OpenID provider without a name parameter since OmniAuth would use the name `openidconnect` instead `openid_connect`. https://github.com/m0n9oose/omniauth_openid_connect/pull/23 makes the default parameter `openid_connect` so this additional initializer in GitLab is not necessary. Plus, this change enables users to use multiple OpenID Connect providers if they desire.
* | Upgrade to Capybara 3Heinrich Lee Yu2019-06-121-1/+1
|/ | | | | Fix whitespace in specs because normalize_ws is slightly different from Capybara 2 behavior
* Bump sentry-raven to 2.9Utkarsh Gupta2019-06-071-1/+1
|
* Update rspec-retry to fix Selenium NoSuchDriverError errorsRémy Coutable2019-06-061-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Add client code to call GetObjectDirectorySize RPC11126-fix-repository-size-check-cePatrick Bajao2019-06-051-1/+1
| | | | CE port of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/13460
* Add activerecord-explain-analyze gemToon Claes2019-06-031-0/+1
| | | | | | | | | | | | | | | | | | | This gem allows you to get the `EXPLAIN ANALYZE` query plan, directly from the Rails console. The gem is installed with `require: false`, but if it was loaded on launch, this would be it's memory load: ``` TOP: 145.3086 MiB rails/all: 22.4844 MiB ... activerecord-explain-analyze: 2.9648 MiB active_record/connection_adapters/postgresql_adapter: 2.9648 MiB pg: 2.9648 MiB pg_ext: 2.9648 MiB ... ```
* Added rack-timeout for PumaJan Provaznik2019-05-291-0/+1
| | | | | | | It assures that requests are aborted after 60 seconds, otherwise an exception is raised. This exception is logged by Sentry, also there is a Prometheus counter for measuring number of requests in each state.
* Add benchmark-memory Ruby gemAsh McKenzie2019-05-271-1/+2
|