1# frozen_string_literal: true
2
3source 'https://rubygems.org'
4
5if ENV.fetch('BUNDLER_CHECKSUM_VERIFICATION_OPT_IN', 'false') != 'false' # this verification is still experimental
6 $LOAD_PATH.unshift(File.expand_path("vendor/gems/bundler-checksum/lib", __dir__))
7 require 'bundler-checksum'
8 BundlerChecksum.patch!
9end
10
11# Please see https://docs.gitlab.com/ee/development/feature_categorization/#gemfile
12ignore_feature_category = Module.new do
13 def gem(*arguments, feature_category: nil, **keyword_arguments) # rubocop:disable Lint/UnusedMethodArgument
14 super(*arguments, **keyword_arguments)
15 end
16end
17
18extend ignore_feature_category
19
20gem 'bundler-checksum', '~> 0.1.0', path: 'vendor/gems/bundler-checksum', require: false # rubocop:todo Gemfile/MissingFeatureCategory
21
22# NOTE: When incrementing the major or minor version here, also increment activerecord_version
23# in vendor/gems/attr_encrypted/attr_encrypted.gemspec until we resolve
24# https://gitlab.com/gitlab-org/gitlab/-/issues/375713
25#
26# See https://docs.gitlab.com/ee/development/gemfile.html#upgrade-rails for guidelines when upgrading Rails
27gem 'rails', '~> 7.0.8' # rubocop:todo Gemfile/MissingFeatureCategory
28
29gem 'activerecord-gitlab', path: 'gems/activerecord-gitlab' # rubocop:todo Gemfile/MissingFeatureCategory
30
31gem 'vite_rails' # rubocop:todo Gemfile/MissingFeatureCategory
32
33gem 'bootsnap', '~> 1.16.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
34
35gem 'openssl', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory
36gem 'ipaddr', '~> 1.2.5' # rubocop:todo Gemfile/MissingFeatureCategory
37
38gem 'gitlab-safe_request_store', path: 'gems/gitlab-safe_request_store' # rubocop:todo Gemfile/MissingFeatureCategory
39
40# GitLab Monorepo Gems
41group :monorepo do
42 gem 'gitlab-utils', path: 'gems/gitlab-utils' # rubocop:todo Gemfile/MissingFeatureCategory
43end
44
45# Responders respond_to and respond_with
46gem 'responders', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory
47
48gem 'sprockets', '~> 3.7.0' # rubocop:todo Gemfile/MissingFeatureCategory
49
50gem 'view_component', '~> 3.6.0' # rubocop:todo Gemfile/MissingFeatureCategory
51
52# Supported DBs
53gem 'pg', '~> 1.5.4' # rubocop:todo Gemfile/MissingFeatureCategory
54
55gem 'neighbor', '~> 0.2.3' # rubocop:todo Gemfile/MissingFeatureCategory
56
57gem 'rugged', '~> 1.6' # rubocop:todo Gemfile/MissingFeatureCategory
58
59gem 'faraday', '~> 1.0' # rubocop:todo Gemfile/MissingFeatureCategory
60gem 'marginalia', '~> 1.11.1' # rubocop:todo Gemfile/MissingFeatureCategory
61
62# Authorization
63gem 'declarative_policy', '~> 1.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
64
65# Authentication libraries
66gem 'devise', '~> 4.8.1' # rubocop:todo Gemfile/MissingFeatureCategory
67gem 'devise-pbkdf2-encryptable', '~> 0.0.0', path: 'vendor/gems/devise-pbkdf2-encryptable' # rubocop:todo Gemfile/MissingFeatureCategory
68gem 'bcrypt', '~> 3.1', '>= 3.1.14' # rubocop:todo Gemfile/MissingFeatureCategory
69gem 'doorkeeper', '~> 5.6', '>= 5.6.6' # rubocop:todo Gemfile/MissingFeatureCategory
70gem 'doorkeeper-openid_connect', '~> 1.8', '>= 1.8.7' # rubocop:todo Gemfile/MissingFeatureCategory
71gem 'rexml', '~> 3.2.6' # rubocop:todo Gemfile/MissingFeatureCategory
72gem 'ruby-saml', '~> 1.15.0' # rubocop:todo Gemfile/MissingFeatureCategory
73gem 'omniauth', '~> 2.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
74gem 'omniauth-auth0', '~> 3.1' # rubocop:todo Gemfile/MissingFeatureCategory
75gem 'omniauth-azure-activedirectory-v2', '~> 2.0' # rubocop:todo Gemfile/MissingFeatureCategory
76gem 'omniauth-azure-oauth2', '~> 0.0.9', path: 'vendor/gems/omniauth-azure-oauth2' # See gem README.md # rubocop:todo Gemfile/MissingFeatureCategory
77gem 'omniauth-dingtalk-oauth2', '~> 1.0' # rubocop:todo Gemfile/MissingFeatureCategory
78gem 'omniauth-alicloud', '~> 3.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
79gem 'omniauth-facebook', '~> 4.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
80gem 'omniauth-github', '2.0.1' # rubocop:todo Gemfile/MissingFeatureCategory
81gem 'omniauth-gitlab', '~> 4.0.0', path: 'vendor/gems/omniauth-gitlab' # See vendor/gems/omniauth-gitlab/README.md # rubocop:todo Gemfile/MissingFeatureCategory
82gem 'omniauth-google-oauth2', '~> 1.1' # rubocop:todo Gemfile/MissingFeatureCategory
83gem 'omniauth-oauth2-generic', '~> 0.2.2' # rubocop:todo Gemfile/MissingFeatureCategory
84gem 'omniauth-saml', '~> 2.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
85gem 'omniauth-shibboleth-redux', '~> 2.0', require: 'omniauth-shibboleth' # rubocop:todo Gemfile/MissingFeatureCategory
86gem 'omniauth-twitter', '~> 1.4' # rubocop:todo Gemfile/MissingFeatureCategory
87gem 'omniauth_crowd', '~> 2.4.0', path: 'vendor/gems/omniauth_crowd' # See vendor/gems/omniauth_crowd/README.md # rubocop:todo Gemfile/MissingFeatureCategory
88gem 'omniauth_openid_connect', '~> 0.6.1' # rubocop:todo Gemfile/MissingFeatureCategory
89# Locked until Ruby 3.0 upgrade since upgrading will pull in an updated net-smtp gem.
90# See https://docs.gitlab.com/ee/development/emails.html#rationale.
91gem 'openid_connect', '= 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
92gem 'omniauth-salesforce', '~> 1.0.5', path: 'vendor/gems/omniauth-salesforce' # See gem README.md # rubocop:todo Gemfile/MissingFeatureCategory
93gem 'omniauth-atlassian-oauth2', '~> 0.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
94gem 'rack-oauth2', '~> 1.21.3' # rubocop:todo Gemfile/MissingFeatureCategory
95gem 'jwt', '~> 2.5' # rubocop:todo Gemfile/MissingFeatureCategory
96
97# Kerberos authentication. EE-only
98gem 'gssapi', '~> 1.3.1', group: :kerberos # rubocop:todo Gemfile/MissingFeatureCategory
99gem 'timfel-krb5-auth', '~> 0.8', group: :kerberos # rubocop:todo Gemfile/MissingFeatureCategory
100
101# Spam and anti-bot protection
102gem 'recaptcha', '~> 5.12', require: 'recaptcha/rails' # rubocop:todo Gemfile/MissingFeatureCategory
103gem 'akismet', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory
104gem 'invisible_captcha', '~> 2.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
105
106# Two-factor authentication
107gem 'devise-two-factor', '~> 4.1.1' # rubocop:todo Gemfile/MissingFeatureCategory
108gem 'rqrcode', '~> 2.0', feature_category: :system_access
109
110gem 'attr_encrypted', '~> 3.2.4', path: 'vendor/gems/attr_encrypted' # rubocop:todo Gemfile/MissingFeatureCategory
111
112# GitLab Pages
113gem 'validates_hostname', '~> 1.0.13' # rubocop:todo Gemfile/MissingFeatureCategory
114gem 'rubyzip', '~> 2.3.2', require: 'zip' # rubocop:todo Gemfile/MissingFeatureCategory
115# GitLab Pages letsencrypt support
116gem 'acme-client', '~> 2.0' # rubocop:todo Gemfile/MissingFeatureCategory
117
118# Browser detection
119gem 'browser', '~> 5.3.1' # rubocop:todo Gemfile/MissingFeatureCategory
120
121# OS detection for usage ping
122gem 'ohai', '~> 17.9' # rubocop:todo Gemfile/MissingFeatureCategory
123
124# GPG
125gem 'gpgme', '~> 2.0.23' # rubocop:todo Gemfile/MissingFeatureCategory
126
127# LDAP Auth
128# GitLab fork with several improvements to original library. For full list of changes
129# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
130gem 'gitlab_omniauth-ldap', '~> 2.2.0', require: 'omniauth-ldap' # rubocop:todo Gemfile/MissingFeatureCategory
131gem 'net-ldap', '~> 0.17.1' # rubocop:todo Gemfile/MissingFeatureCategory
132
133# API
134gem 'grape', '~> 1.7.1', feature_category: :api
135gem 'grape-entity', '~> 0.10.0', feature_category: :api
136gem 'grape-swagger', '~> 1.6.1', group: [:development, :test], feature_category: :api
137gem 'grape-swagger-entity', '~> 0.5.1', group: [:development, :test], feature_category: :api
138gem 'grape-path-helpers', '~> 1.7.1', feature_category: :api
139gem 'rack-cors', '~> 2.0.1', require: 'rack/cors' # rubocop:todo Gemfile/MissingFeatureCategory
140
141# GraphQL API
142gem 'graphql', '~> 2.0.27', feature_category: :api
143gem 'graphql-docs', '~> 4.0.0', group: [:development, :test], feature_category: :api
144gem 'graphiql-rails', '~> 1.8.0', feature_category: :api
145gem 'apollo_upload_server', '~> 2.1.0', feature_category: :api
146gem 'graphlient', '~> 0.5.0', feature_category: :importers # Used by BulkImport feature (group::import)
147
148# Generate Fake data
149gem 'ffaker', '~> 2.10' # rubocop:todo Gemfile/MissingFeatureCategory
150
151gem 'hashie', '~> 5.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
152
153# Pagination
154gem 'kaminari', '~> 1.2.2' # rubocop:todo Gemfile/MissingFeatureCategory
155
156# HAML
157gem 'hamlit', '~> 2.15.0' # rubocop:todo Gemfile/MissingFeatureCategory
158
159# Files attachments
160gem 'carrierwave', '~> 1.3' # rubocop:todo Gemfile/MissingFeatureCategory
161gem 'mini_magick', '~> 4.10.1' # rubocop:todo Gemfile/MissingFeatureCategory
162
163# for backups
164gem 'fog-aws', '~> 3.18' # rubocop:todo Gemfile/MissingFeatureCategory
165# Locked until fog-google resolves https://github.com/fog/fog-google/issues/421.
166# Also see config/initializers/fog_core_patch.rb.
167gem 'fog-core', '= 2.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
168gem 'fog-google', '~> 1.19', require: 'fog/google' # rubocop:todo Gemfile/MissingFeatureCategory
169gem 'fog-local', '~> 0.8' # rubocop:todo Gemfile/MissingFeatureCategory
170# NOTE:
171# the fog-aliyun gem since v0.4 pulls in aliyun-sdk transitively, which monkey-patches
172# the rest-client gem to drop the Content-Length header field for chunked transfers,
173# which may have knock-on effects on other features using `RestClient`.
174# We may want to update this dependency if this is ever addressed upstream, e.g. via
175# https://github.com/aliyun/aliyun-oss-ruby-sdk/pull/93
176gem 'fog-aliyun', '~> 0.4' # rubocop:todo Gemfile/MissingFeatureCategory
177gem 'gitlab-fog-azure-rm', '~> 1.8.0', require: 'fog/azurerm' # rubocop:todo Gemfile/MissingFeatureCategory
178
179# for Google storage
180gem 'google-cloud-storage', '~> 1.44.0' # rubocop:todo Gemfile/MissingFeatureCategory
181gem 'google-apis-core', '~> 0.10.0' # rubocop:todo Gemfile/MissingFeatureCategory
182gem 'google-apis-compute_v1', '~> 0.57.0' # rubocop:todo Gemfile/MissingFeatureCategory
183gem 'google-apis-container_v1', '~> 0.43.0' # rubocop:todo Gemfile/MissingFeatureCategory
184gem 'google-apis-container_v1beta1', '~> 0.43.0' # rubocop:todo Gemfile/MissingFeatureCategory
185gem 'google-apis-cloudbilling_v1', '~> 0.21.0' # rubocop:todo Gemfile/MissingFeatureCategory
186gem 'google-apis-cloudresourcemanager_v1', '~> 0.31.0' # rubocop:todo Gemfile/MissingFeatureCategory
187gem 'google-apis-iam_v1', '~> 0.36.0' # rubocop:todo Gemfile/MissingFeatureCategory
188gem 'google-apis-serviceusage_v1', '~> 0.28.0' # rubocop:todo Gemfile/MissingFeatureCategory
189gem 'google-apis-sqladmin_v1beta4', '~> 0.41.0' # rubocop:todo Gemfile/MissingFeatureCategory
190gem 'google-apis-androidpublisher_v3', '~> 0.34.0' # rubocop:todo Gemfile/MissingFeatureCategory
191
192# Seed data
193gem 'seed-fu', '~> 2.3.7' # rubocop:todo Gemfile/MissingFeatureCategory
194
195# Search
196gem 'elasticsearch-model', '~> 7.2' # rubocop:todo Gemfile/MissingFeatureCategory
197gem 'elasticsearch-rails', '~> 7.2', require: 'elasticsearch/rails/instrumentation' # rubocop:todo Gemfile/MissingFeatureCategory
198gem 'elasticsearch-api', '7.13.3' # rubocop:todo Gemfile/MissingFeatureCategory
199gem 'aws-sdk-core', '~> 3.185.1' # rubocop:todo Gemfile/MissingFeatureCategory
200gem 'aws-sdk-cloudformation', '~> 1' # rubocop:todo Gemfile/MissingFeatureCategory
201gem 'aws-sdk-s3', '~> 1.136.0' # rubocop:todo Gemfile/MissingFeatureCategory
202gem 'faraday_middleware-aws-sigv4', '~>0.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
203gem 'typhoeus', '~> 1.4.0' # Used with Elasticsearch to support http keep-alive connections # rubocop:todo Gemfile/MissingFeatureCategory
204
205# Markdown and HTML processing
206gem 'html-pipeline', '~> 2.14.3' # rubocop:todo Gemfile/MissingFeatureCategory
207gem 'deckar01-task_list', '2.3.3' # rubocop:todo Gemfile/MissingFeatureCategory
208gem 'gitlab-markup', '~> 1.9.0', require: 'github/markup' # rubocop:todo Gemfile/MissingFeatureCategory
209gem 'commonmarker', '~> 0.23.10' # rubocop:todo Gemfile/MissingFeatureCategory
210gem 'kramdown', '~> 2.3.1' # rubocop:todo Gemfile/MissingFeatureCategory
211gem 'RedCloth', '~> 4.3.2' # rubocop:todo Gemfile/MissingFeatureCategory
212gem 'org-ruby', '~> 0.9.12' # rubocop:todo Gemfile/MissingFeatureCategory
213gem 'creole', '~> 0.5.0' # rubocop:todo Gemfile/MissingFeatureCategory
214gem 'wikicloth', '0.8.1' # rubocop:todo Gemfile/MissingFeatureCategory
215gem 'asciidoctor', '~> 2.0.18' # rubocop:todo Gemfile/MissingFeatureCategory
216gem 'asciidoctor-include-ext', '~> 0.4.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
217gem 'asciidoctor-plantuml', '~> 0.0.16' # rubocop:todo Gemfile/MissingFeatureCategory
218gem 'asciidoctor-kroki', '~> 0.8.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
219gem 'rouge', '~> 4.1.3' # rubocop:todo Gemfile/MissingFeatureCategory
220gem 'truncato', '~> 0.7.12' # rubocop:todo Gemfile/MissingFeatureCategory
221gem 'nokogiri', '~> 1.15', '>= 1.15.4' # rubocop:todo Gemfile/MissingFeatureCategory
222
223# Calendar rendering
224gem 'icalendar' # rubocop:todo Gemfile/MissingFeatureCategory
225
226# Diffs
227gem 'diffy', '~> 3.4' # rubocop:todo Gemfile/MissingFeatureCategory
228gem 'diff_match_patch', '~> 0.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
229
230# Application server
231gem 'rack', '~> 2.2.8' # rubocop:todo Gemfile/MissingFeatureCategory
232# https://github.com/zombocom/rack-timeout/blob/master/README.md#rails-apps-manually
233gem 'rack-timeout', '~> 0.6.3', require: 'rack/timeout/base' # rubocop:todo Gemfile/MissingFeatureCategory
234
235group :puma do
236 gem 'puma', '~> 6.4', require: false # rubocop:todo Gemfile/MissingFeatureCategory
237 gem 'sd_notify', '~> 0.1.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
238end
239
240# State machine
241gem 'state_machines-activerecord', '~> 0.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
242
243# CI domain tags
244gem 'acts-as-taggable-on', '~> 9.0' # rubocop:todo Gemfile/MissingFeatureCategory
245
246# Background jobs
247gem 'sidekiq', '~> 6.5.7' # rubocop:todo Gemfile/MissingFeatureCategory
248gem 'sidekiq-cron', '~> 1.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
249gem 'redis-namespace', '~> 1.9.0' # rubocop:todo Gemfile/MissingFeatureCategory
250gem 'gitlab-sidekiq-fetcher', path: 'vendor/gems/sidekiq-reliable-fetch', require: 'sidekiq-reliable-fetch' # rubocop:todo Gemfile/MissingFeatureCategory
251
252# Cron Parser
253gem 'fugit', '~> 1.8.1' # rubocop:todo Gemfile/MissingFeatureCategory
254
255# HTTP requests
256gem 'httparty', '~> 0.21.0' # rubocop:todo Gemfile/MissingFeatureCategory
257
258# Colored output to console
259gem 'rainbow', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory
260
261# Progress bar
262gem 'ruby-progressbar', '~> 1.10' # rubocop:todo Gemfile/MissingFeatureCategory
263
264# Linear-time regex library for untrusted regular expressions
265gem 're2', '2.1.3' # rubocop:todo Gemfile/MissingFeatureCategory
266
267# Misc
268
269gem 'semver_dialects', '~> 1.2.1' # rubocop:todo Gemfile/MissingFeatureCategory
270gem 'version_sorter', '~> 2.3' # rubocop:todo Gemfile/MissingFeatureCategory
271gem 'csv_builder', path: 'gems/csv_builder' # rubocop:todo Gemfile/MissingFeatureCategory
272
273# Export Ruby Regex to Javascript
274gem 'js_regex', '~> 3.8' # rubocop:todo Gemfile/MissingFeatureCategory
275
276# User agent parsing
277gem 'device_detector' # rubocop:todo Gemfile/MissingFeatureCategory
278
279# Redis
280gem 'redis', '~> 4.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
281gem 'connection_pool', '~> 2.4' # rubocop:todo Gemfile/MissingFeatureCategory
282
283# Redis session store
284gem 'redis-actionpack', '~> 5.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
285
286# Discord integration
287gem 'discordrb-webhooks', '~> 3.4', require: false # rubocop:todo Gemfile/MissingFeatureCategory
288
289# Jira integration
290gem 'jira-ruby', '~> 2.1.4' # rubocop:todo Gemfile/MissingFeatureCategory
291gem 'atlassian-jwt', '~> 0.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
292
293# Slack integration
294gem 'slack-messenger', '~> 2.3.4' # rubocop:todo Gemfile/MissingFeatureCategory
295
296# FogBugz integration
297gem 'ruby-fogbugz', '~> 0.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
298
299# Kubernetes integration
300gem 'kubeclient', '~> 4.11.0' # rubocop:todo Gemfile/MissingFeatureCategory
301
302# AI
303gem 'ruby-openai', '~> 3.7' # rubocop:todo Gemfile/MissingFeatureCategory
304gem 'circuitbox', '2.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
305
306# Sanitize user input
307gem 'sanitize', '~> 6.0.2' # rubocop:todo Gemfile/MissingFeatureCategory
308gem 'babosa', '~> 2.0' # rubocop:todo Gemfile/MissingFeatureCategory
309
310# Sanitizes SVG input
311gem 'loofah', '~> 2.21.4' # rubocop:todo Gemfile/MissingFeatureCategory
312
313# Used to provide license templates
314gem 'licensee', '~> 9.16' # rubocop:todo Gemfile/MissingFeatureCategory
315
316# Detect and convert string character encoding
317gem 'charlock_holmes', '~> 0.7.7' # rubocop:todo Gemfile/MissingFeatureCategory
318
319# Detect mime content type from content
320gem 'ruby-magic', '~> 0.6' # rubocop:todo Gemfile/MissingFeatureCategory
321
322# Faster blank
323gem 'fast_blank', '~> 1.0.1' # rubocop:todo Gemfile/MissingFeatureCategory
324
325# Parse time & duration
326gem 'gitlab-chronic', '~> 0.10.5' # rubocop:todo Gemfile/MissingFeatureCategory
327gem 'gitlab_chronic_duration', '~> 0.12' # rubocop:todo Gemfile/MissingFeatureCategory
328
329gem 'rack-proxy', '~> 0.7.7' # rubocop:todo Gemfile/MissingFeatureCategory
330
331gem 'sassc-rails', '~> 2.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
332gem 'autoprefixer-rails', '10.2.5.1' # rubocop:todo Gemfile/MissingFeatureCategory
333gem 'terser', '1.0.2' # rubocop:todo Gemfile/MissingFeatureCategory
334
335gem 'click_house-client', path: 'gems/click_house-client', require: 'click_house/client' # rubocop:todo Gemfile/MissingFeatureCategory
336gem 'addressable', '~> 2.8' # rubocop:todo Gemfile/MissingFeatureCategory
337gem 'tanuki_emoji', '~> 0.7' # rubocop:todo Gemfile/MissingFeatureCategory
338gem 'gon', '~> 6.4.0' # rubocop:todo Gemfile/MissingFeatureCategory
339gem 'request_store', '~> 1.5.1' # rubocop:todo Gemfile/MissingFeatureCategory
340gem 'base32', '~> 0.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
341
342gem 'gitlab-license', '~> 2.3' # rubocop:todo Gemfile/MissingFeatureCategory
343
344# Protect against bruteforcing
345gem 'rack-attack', '~> 6.7.0' # rubocop:todo Gemfile/MissingFeatureCategory
346
347# Sentry integration
348gem 'sentry-raven', '~> 3.1' # rubocop:todo Gemfile/MissingFeatureCategory
349gem 'sentry-ruby', '~> 5.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
350gem 'sentry-rails', '~> 5.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
351gem 'sentry-sidekiq', '~> 5.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
352
353# PostgreSQL query parsing
354#
355gem 'pg_query', '~> 4.2.3' # rubocop:todo Gemfile/MissingFeatureCategory
356
357gem 'gitlab-schema-validation', path: 'gems/gitlab-schema-validation' # rubocop:todo Gemfile/MissingFeatureCategory
358gem 'gitlab-http', path: 'gems/gitlab-http' # rubocop:todo Gemfile/MissingFeatureCategory
359
360gem 'premailer-rails', '~> 1.10.3' # rubocop:todo Gemfile/MissingFeatureCategory
361
362gem 'gitlab-labkit', '~> 0.34.0' # rubocop:todo Gemfile/MissingFeatureCategory
363gem 'thrift', '>= 0.16.0' # rubocop:todo Gemfile/MissingFeatureCategory
364
365# I18n
366gem 'rails-i18n', '~> 7.0' # rubocop:todo Gemfile/MissingFeatureCategory
367gem 'gettext_i18n_rails', '~> 1.11.0' # rubocop:todo Gemfile/MissingFeatureCategory
368gem 'gettext_i18n_rails_js', '~> 1.3' # rubocop:todo Gemfile/MissingFeatureCategory
369gem 'gettext', '~> 3.3', require: false, group: :development # rubocop:todo Gemfile/MissingFeatureCategory
370
371gem 'batch-loader', '~> 2.0.1' # rubocop:todo Gemfile/MissingFeatureCategory
372
373# Perf bar
374gem 'peek', '~> 1.1' # rubocop:todo Gemfile/MissingFeatureCategory
375
376# Google Cloud Profiler support
377gem 'cloud_profiler_agent', '~> 0.0.0', path: 'vendor/gems/cloud_profiler_agent', require: false # rubocop:todo Gemfile/MissingFeatureCategory
378
379# Snowplow events tracking
380gem 'snowplow-tracker', '~> 0.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
381
382# Metrics
383gem 'webrick', '~> 1.8.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
384gem 'prometheus-client-mmap', '~> 0.28', '>= 0.28.1', require: 'prometheus/client' # rubocop:todo Gemfile/MissingFeatureCategory
385
386gem 'warning', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
387
388group :development do
389 gem 'lefthook', '~> 1.5.2', require: false, feature_category: :tooling
390 gem 'rubocop', feature_category: :tooling
391 gem 'solargraph', '~> 0.47.2', require: false # rubocop:todo Gemfile/MissingFeatureCategory
392
393 gem 'letter_opener_web', '~> 2.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
394 gem 'lookbook', '~> 2.0', '>= 2.0.1' # rubocop:todo Gemfile/MissingFeatureCategory
395
396 # Better errors handler
397 gem 'better_errors', '~> 2.10.1' # rubocop:todo Gemfile/MissingFeatureCategory
398
399 gem 'sprite-factory', '~> 1.7' # rubocop:todo Gemfile/MissingFeatureCategory
400
401 gem 'listen', '~> 3.7' # rubocop:todo Gemfile/MissingFeatureCategory
402end
403
404group :development, :test do
405 gem 'deprecation_toolkit', '~> 1.5.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
406 gem 'bullet', '~> 7.1.1' # rubocop:todo Gemfile/MissingFeatureCategory
407 gem 'parser', '~> 3.2', '>= 3.2.2.4' # rubocop:todo Gemfile/MissingFeatureCategory
408 gem 'pry-byebug' # rubocop:todo Gemfile/MissingFeatureCategory
409 gem 'pry-rails', '~> 0.3.9' # rubocop:todo Gemfile/MissingFeatureCategory
410 gem 'pry-shell', '~> 0.6.4' # rubocop:todo Gemfile/MissingFeatureCategory
411
412 gem 'awesome_print', require: false # rubocop:todo Gemfile/MissingFeatureCategory
413
414 gem 'database_cleaner', '~> 1.7.0' # rubocop:todo Gemfile/MissingFeatureCategory
415 gem 'factory_bot_rails', '~> 6.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
416 gem 'rspec-rails', '~> 6.0.3' # rubocop:todo Gemfile/MissingFeatureCategory
417
418 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
419 gem 'minitest', '~> 5.11.0' # rubocop:todo Gemfile/MissingFeatureCategory
420
421 gem 'spring', '~> 4.1.0' # rubocop:todo Gemfile/MissingFeatureCategory
422 gem 'spring-commands-rspec', '~> 1.0.4' # rubocop:todo Gemfile/MissingFeatureCategory
423
424 gem 'gitlab-styles', '~> 10.1.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
425
426 gem 'haml_lint', '~> 0.40.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
427 gem 'bundler-audit', '~> 0.9.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
428
429 # Benchmarking & profiling
430 gem 'benchmark-ips', '~> 2.11.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
431 gem 'benchmark-memory', '~> 0.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
432
433 # Profiling data from CI/CD pipelines
434 gem 'influxdb-client', '~> 2.9', require: false # rubocop:todo Gemfile/MissingFeatureCategory
435
436 gem 'knapsack', '~> 1.21.1', feature_category: :tooling
437 gem 'crystalball', '~> 0.7.0', require: false, feature_category: :tooling
438 gem 'test_file_finder', '~> 0.1.3', feature_category: :tooling
439
440 gem 'simple_po_parser', '~> 1.1.6', require: false # rubocop:todo Gemfile/MissingFeatureCategory
441
442 gem 'png_quantizator', '~> 0.2.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
443
444 gem 'parallel', '~> 1.19', require: false # rubocop:todo Gemfile/MissingFeatureCategory
445
446 gem 'sigdump', '~> 0.2.4', require: 'sigdump/setup' # rubocop:todo Gemfile/MissingFeatureCategory
447
448 gem 'pact', '~> 1.63' # rubocop:todo Gemfile/MissingFeatureCategory
449end
450
451group :development, :test, :danger do
452 gem 'gitlab-dangerfiles', '~> 4.3.2', require: false, feature_category: :tooling
453end
454
455group :development, :test, :coverage do
456 gem 'simplecov', '~> 0.21', require: false, feature_category: :tooling
457 gem 'simplecov-lcov', '~> 0.8.0', require: false, feature_category: :tooling
458 gem 'simplecov-cobertura', '~> 2.1.0', require: false, feature_category: :tooling
459 gem 'undercover', '~> 0.4.4', require: false, feature_category: :tooling
460end
461
462# Gems required in omnibus-gitlab pipeline
463group :development, :test, :omnibus do
464 gem 'license_finder', '~> 7.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
465end
466
467# Gems required in various pipelines
468group :development, :test, :monorepo do
469 gem 'gitlab-rspec', path: 'gems/gitlab-rspec' # rubocop:todo Gemfile/MissingFeatureCategory
470 gem 'rspec_flaky', path: 'gems/rspec_flaky' # rubocop:todo Gemfile/MissingFeatureCategory
471end
472
473group :test do
474 gem 'fuubar', '~> 2.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
475 gem 'rspec-retry', '~> 0.6.2', feature_category: :tooling
476 gem 'rspec_profiling', '~> 0.0.6', feature_category: :tooling
477 gem 'rspec-benchmark', '~> 0.6.0', feature_category: :tooling
478 gem 'rspec-parameterized', '~> 1.0', require: false, feature_category: :tooling
479
480 gem 'capybara', '~> 3.39', '>= 3.39.2' # rubocop:todo Gemfile/MissingFeatureCategory
481 gem 'capybara-screenshot', '~> 1.0.26' # rubocop:todo Gemfile/MissingFeatureCategory
482 gem 'selenium-webdriver', '~> 4.14' # rubocop:todo Gemfile/MissingFeatureCategory
483
484 gem 'graphlyte', '~> 1.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
485
486 gem 'shoulda-matchers', '~> 5.1.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
487 gem 'email_spec', '~> 2.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
488 gem 'webmock', '~> 3.19.1' # rubocop:todo Gemfile/MissingFeatureCategory
489 gem 'rails-controller-testing' # rubocop:todo Gemfile/MissingFeatureCategory
490 gem 'concurrent-ruby', '~> 1.1' # rubocop:todo Gemfile/MissingFeatureCategory
491 gem 'test-prof', '~> 1.2.3' # rubocop:todo Gemfile/MissingFeatureCategory
492 gem 'rspec_junit_formatter' # rubocop:todo Gemfile/MissingFeatureCategory
493 gem 'guard-rspec' # rubocop:todo Gemfile/MissingFeatureCategory
494 gem 'axe-core-rspec' # rubocop:todo Gemfile/MissingFeatureCategory
495
496 # Moved in `test` because https://gitlab.com/gitlab-org/gitlab/-/issues/217527
497 gem 'derailed_benchmarks', require: false # rubocop:todo Gemfile/MissingFeatureCategory
498
499 gem 'gitlab_quality-test_tooling', '~> 1.3.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
500end
501
502gem 'octokit', '~> 6.0' # rubocop:todo Gemfile/MissingFeatureCategory
503
504gem 'gitlab-mail_room', '~> 0.0.23', require: 'mail_room' # rubocop:todo Gemfile/MissingFeatureCategory
505
506gem 'email_reply_trimmer', '~> 0.1' # rubocop:todo Gemfile/MissingFeatureCategory
507gem 'html2text' # rubocop:todo Gemfile/MissingFeatureCategory
508
509gem 'stackprof', '~> 0.2.25', require: false # rubocop:todo Gemfile/MissingFeatureCategory
510gem 'rbtrace', '~> 0.4', require: false # rubocop:todo Gemfile/MissingFeatureCategory
511gem 'memory_profiler', '~> 1.0', require: false # rubocop:todo Gemfile/MissingFeatureCategory
512gem 'activerecord-explain-analyze', '~> 0.1', require: false # rubocop:todo Gemfile/MissingFeatureCategory
513
514# OAuth
515gem 'oauth2', '~> 2.0' # rubocop:todo Gemfile/MissingFeatureCategory
516
517# Health check
518gem 'health_check', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory
519
520# System information
521gem 'vmstat', '~> 2.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
522gem 'sys-filesystem', '~> 1.4.3' # rubocop:todo Gemfile/MissingFeatureCategory
523
524# NTP client
525gem 'net-ntp' # rubocop:todo Gemfile/MissingFeatureCategory
526
527# SSH keys support
528gem 'ssh_data', '~> 1.3' # rubocop:todo Gemfile/MissingFeatureCategory
529
530# Spamcheck GRPC protocol definitions
531gem 'spamcheck', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
532
533# Gitaly GRPC protocol definitions
534gem 'gitaly', '~> 16.5.0.pre.rc1' # rubocop:todo Gemfile/MissingFeatureCategory
535
536# KAS GRPC protocol definitions
537gem 'kas-grpc', '~> 0.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
538
539gem 'grpc', '~> 1.58.0' # rubocop:todo Gemfile/MissingFeatureCategory
540
541gem 'google-protobuf', '~> 3.24', '>= 3.24.4' # rubocop:todo Gemfile/MissingFeatureCategory
542
543gem 'toml-rb', '~> 2.2.0' # rubocop:todo Gemfile/MissingFeatureCategory
544
545# Feature toggles
546gem 'flipper', '~> 0.26.2' # rubocop:todo Gemfile/MissingFeatureCategory
547gem 'flipper-active_record', '~> 0.26.2' # rubocop:todo Gemfile/MissingFeatureCategory
548gem 'flipper-active_support_cache_store', '~> 0.26.2' # rubocop:todo Gemfile/MissingFeatureCategory
549gem 'unleash', '~> 3.2.2' # rubocop:todo Gemfile/MissingFeatureCategory
550gem 'gitlab-experiment', '~> 0.8.0' # rubocop:todo Gemfile/MissingFeatureCategory
551
552# Structured logging
553gem 'lograge', '~> 0.5' # rubocop:todo Gemfile/MissingFeatureCategory
554gem 'grape_logging', '~> 1.8', feature_category: :api
555
556# DNS Lookup
557gem 'gitlab-net-dns', '~> 0.9.2' # rubocop:todo Gemfile/MissingFeatureCategory
558
559# Countries list
560gem 'countries', '~> 4.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
561
562gem 'retriable', '~> 3.1.2' # rubocop:todo Gemfile/MissingFeatureCategory
563
564# LRU cache
565gem 'lru_redux' # rubocop:todo Gemfile/MissingFeatureCategory
566
567# Locked as long as quoted-printable encoding issues are not resolved
568# Monkey-patched in `config/initializers/mail_encoding_patch.rb`
569# See https://gitlab.com/gitlab-org/gitlab/issues/197386
570#
571# `config/initializers/mail_starttls_patch.rb` has also been patched to
572# fix STARTTLS handling until https://github.com/mikel/mail/pull/1536 is
573# released.
574gem 'mail', '= 2.8.1' # rubocop:todo Gemfile/MissingFeatureCategory
575gem 'mail-smtp_pool', '~> 0.1.0', path: 'vendor/gems/mail-smtp_pool', require: false # rubocop:todo Gemfile/MissingFeatureCategory
576
577gem 'microsoft_graph_mailer', '~> 0.1.0', path: 'vendor/gems/microsoft_graph_mailer' # rubocop:todo Gemfile/MissingFeatureCategory
578
579# File encryption
580gem 'lockbox', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
581
582# Email validation
583gem 'valid_email', '~> 0.1' # rubocop:todo Gemfile/MissingFeatureCategory
584
585# JSON
586gem 'jsonb_accessor', '~> 1.3.10' # rubocop:todo Gemfile/MissingFeatureCategory
587gem 'json', '~> 2.6.3' # rubocop:todo Gemfile/MissingFeatureCategory
588gem 'json_schemer', '~> 0.2.18' # rubocop:todo Gemfile/MissingFeatureCategory
589gem 'oj', '~> 3.13.21' # rubocop:todo Gemfile/MissingFeatureCategory
590gem 'oj-introspect', '~> 0.7' # rubocop:todo Gemfile/MissingFeatureCategory
591gem 'multi_json', '~> 1.14.1' # rubocop:todo Gemfile/MissingFeatureCategory
592gem 'yajl-ruby', '~> 1.4.3', require: 'yajl' # rubocop:todo Gemfile/MissingFeatureCategory
593
594gem 'webauthn', '~> 3.0' # rubocop:todo Gemfile/MissingFeatureCategory
595
596# IPAddress utilities
597gem 'ipaddress', '~> 0.8.3' # rubocop:todo Gemfile/MissingFeatureCategory
598
599gem 'parslet', '~> 1.8' # rubocop:todo Gemfile/MissingFeatureCategory
600
601gem 'ipynbdiff', path: 'gems/ipynbdiff', require: 'ipynb_diff' # rubocop:todo Gemfile/MissingFeatureCategory
602
603gem 'ed25519', '~> 1.3.0' # rubocop:todo Gemfile/MissingFeatureCategory
604
605# Error Tracking OpenAPI client
606# See https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/development/rake_tasks.md#update-openapi-client-for-error-tracking-feature
607gem 'error_tracking_open_api', path: 'gems/error_tracking_open_api' # rubocop:todo Gemfile/MissingFeatureCategory
608
609# Vulnerability advisories
610gem 'cvss-suite', '~> 3.0.1', require: 'cvss_suite' # rubocop:todo Gemfile/MissingFeatureCategory
611
612# Work with RPM packages
613gem 'arr-pm', '~> 0.0.12' # rubocop:todo Gemfile/MissingFeatureCategory
614
615# Remote Development
616gem 'devfile', '~> 0.0.23.pre.alpha1' # rubocop:todo Gemfile/MissingFeatureCategory
617
618# Apple plist parsing
619gem 'CFPropertyList', '~> 3.0.0' # rubocop:todo Gemfile/MissingFeatureCategory
620gem 'app_store_connect' # rubocop:todo Gemfile/MissingFeatureCategory
621
622# For phone verification
623gem 'telesignenterprise', '~> 2.2' # rubocop:todo Gemfile/MissingFeatureCategory
624
625# BufferedIO patch
626# Updating this version will require updating scripts/allowed_warnings.txt
627gem 'net-protocol', '~> 0.1.3' # rubocop:todo Gemfile/MissingFeatureCategory
628# Lock this until we make DNS rebinding work with the updated net-http:
629# https://gitlab.com/gitlab-org/gitlab/-/issues/413528
630gem 'net-http', '= 0.1.1' # rubocop:todo Gemfile/MissingFeatureCategory
631
632gem 'duo_api', '~> 1.3' # rubocop:todo Gemfile/MissingFeatureCategory