gitlab-org--gitlab-foss/lib/gitlab
Zeger-Jan van de Weg 896c0bdbfb
Allow public forks to be deduplicated
When a project is forked, the new repository used to be a deep copy of everything
stored on disk by leveraging `git clone`. This works well, and makes isolation
between repository easy. However, the clone is at the start 100% the same as the
origin repository. And in the case of the objects in the object directory, this
is almost always going to be a lot of duplication.

Object Pools are a way to create a third repository that essentially only exists
for its 'objects' subdirectory. This third repository's object directory will be
set as alternate location for objects. This means that in the case an object is
missing in the local repository, git will look in another location. This other
location is the object pool repository.

When Git performs garbage collection, it's smart enough to check the
alternate location. When objects are duplicated, it will allow git to
throw one copy away. This copy is on the local repository, where to pool
remains as is.

These pools have an origin location, which for now will always be a
repository that itself is not a fork. When the root of a fork network is
forked by a user, the fork still clones the full repository. Async, the
pool repository will be created.

Either one of these processes can be done earlier than the other. To
handle this race condition, the Join ObjectPool operation is
idempotent. Given its idempotent, we can schedule it twice, with the
same effect.

To accommodate the holding of state two migrations have been added.
1. Added a state column to the pool_repositories column. This column is
managed by the state machine, allowing for hooks on transitions.
2. pool_repositories now has a source_project_id. This column in
convenient to have for multiple reasons: it has a unique index allowing
the database to handle race conditions when creating a new record. Also,
it's nice to know who the host is. As that's a short link to the fork
networks root.

Object pools are only available for public project, which use hashed
storage and when forking from the root of the fork network. (That is,
the project being forked from itself isn't a fork)

In this commit message I use both ObjectPool and Pool repositories,
which are alike, but different from each other. ObjectPool refers to
whatever is on the disk stored and managed by Gitaly. PoolRepository is
the record in the database.
2018-12-07 19:18:37 +01:00
..
auth Add config to disable impersonation 2018-11-29 09:37:16 +01:00
background_migration Use a 32-byte version of db_key_base for web hooks 2018-12-05 00:00:42 +00:00
badge Rename project's pipelines relation 2018-12-05 14:39:15 +00:00
bare_repository_import Enable some frozen string in lib/gitlab 2018-10-13 02:31:31 -07:00
bitbucket_import Removes all the irrelevant import related code and columns 2018-11-27 12:58:13 +00:00
bitbucket_server_import Removes all the irrelevant import related code and columns 2018-11-27 12:58:13 +00:00
cache Use strong memoize utility 2018-11-26 17:41:41 +08:00
checks CE port Refactor Gitlab::Checks::ChangeAccess class 2018-12-04 11:55:49 +00:00
ci Rename project's pipelines relation 2018-12-05 14:39:15 +00:00
cleanup Disable existing offenses for the CodeReuse cops 2018-09-11 17:32:00 +02:00
cluster Reserve more RAM for master process in Puma 2018-11-01 00:29:16 -07:00
config ci/config: generalize Config validation into Gitlab::Config:: module 2018-11-29 16:09:18 +01:00
conflict Enable even more frozen string in lib/gitlab 2018-11-06 22:47:32 -08:00
cross_project_access Enable even more frozen string in lib/gitlab 2018-11-06 22:47:32 -08:00
cycle_analytics Enable even more frozen string in lib/gitlab 2018-11-06 22:47:32 -08:00
data_builder Enable even more frozen string in lib/gitlab 2018-11-06 22:47:32 -08:00
database Backports some changes from gitlab-ee!7885 2018-12-07 08:29:53 -05:00
dependency_linker Enable even more frozen string in lib/gitlab 2018-11-06 22:47:32 -08:00
diff Avoid 500's when serializing legacy diff notes 2018-12-04 13:13:22 -02:00
downtime_check Enable even more frozen string in lib/gitlab 2018-11-06 22:47:32 -08:00
email Merge branch 'frozen-string-lib-gitlab-more' into 'master' 2018-11-09 17:26:46 +00:00
etag_caching Enable even more frozen string in lib/gitlab 2018-11-06 22:47:32 -08:00
fogbugz_import Enable even more frozen string in lib/gitlab 2018-11-13 11:42:15 -08:00
gfm Eliminate duplicated words 2018-11-22 01:01:23 +09:00
git Allow public forks to be deduplicated 2018-12-07 19:18:37 +01:00
git_access_result New GitAccessResult::Success/CustomAction 2018-09-06 18:38:19 +10:00
gitaly_client Allow public forks to be deduplicated 2018-12-07 19:18:37 +01:00
github_import Removes all the irrelevant import related code and columns 2018-11-27 12:58:13 +00:00
gitlab_import Enable even more frozen string in lib/gitlab 2018-11-13 11:42:15 -08:00
google_code_import Enable even more frozen string in lib/gitlab 2018-11-13 11:42:15 -08:00
gpg Gracefully handle unknown/invalid GPG keys 2018-12-05 10:55:30 -08:00
grape_logging Log and pass correlation-id between Unicorn, Sidekiq and Gitaly 2018-12-06 20:46:14 +01:00
graphql Suggests issues when typing title 2018-11-27 15:10:40 +00:00
graphs Enable even more frozen string in lib/gitlab 2018-11-13 11:42:15 -08:00
hashed_storage Enable even more frozen string in lib/gitlab 2018-11-13 11:42:15 -08:00
health_checks Enable even more frozen string in lib/gitlab 2018-11-13 11:42:15 -08:00
hook_data Enable even more frozen string for lib/gitlab 2018-11-16 17:41:14 -08:00
i18n Eliminate duplicated words 2018-11-22 01:01:23 +09:00
import Eliminate duplicated words 2018-11-22 01:01:23 +09:00
import_export Encrypt CI/CD builds tokens 2018-12-07 10:42:47 +01:00
kubernetes Modify service so that it can be re-run 2018-12-05 10:16:44 +13:00
legacy_github_import Removes all the irrelevant import related code and columns 2018-11-27 12:58:13 +00:00
manifest_import Enable even more frozen string for lib/gitlab 2018-11-16 17:41:14 -08:00
metrics Enable even more frozen string for lib/gitlab 2018-11-16 17:41:14 -08:00
middleware Add `::` to Gitlab::Middleware::CorrelationId 2018-12-07 12:18:03 +00:00
patch Make it clear that we intent to use | over || 2018-10-26 18:43:33 +08:00
performance_bar Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
popen Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
profiler Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
project_authorizations Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
prometheus Extract query variables into own module 2018-11-23 22:35:38 +01:00
query_limiting Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
quick_actions Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
redis Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
request_profiler Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
sanitizers Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
search Optimized file search to work without limits 2018-12-06 09:25:09 +01:00
serializer Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
sherlock Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
sidekiq_logging Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
sidekiq_middleware Log and pass correlation-id between Unicorn, Sidekiq and Gitaly 2018-12-06 20:46:14 +01:00
sidekiq_status Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
sidekiq_versioning Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
slash_commands Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
sql Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
template Prevent a path traversal attack on global file templates 2018-12-05 14:12:35 +00:00
testing Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
utils Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
verify Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
view/presenter Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
webpack Enable even more frozen string for lib/gitlab 2018-11-19 18:24:22 -08:00
access.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
action_rate_limiter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
allowable.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
app_logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
asciidoc.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
audit_json_logger.rb Add support for JSON logging for audit events 2018-10-18 15:59:12 -07:00
auth.rb Revert "LfsToken uses JSONWebToken::HMACToken by default" 2018-12-05 07:03:28 +00:00
background_migration.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
base_doorkeeper_controller.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
blame.rb Make Highlight accept language param 2018-10-30 15:44:55 +08:00
blob_helper.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
branch_push_merge_commit_analyzer.rb Fix commit with two parents is set with wrong direct_ancestor 2018-12-07 21:00:47 +08:00
build_access.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
changes_list.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
chat_name_token.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
ci_access.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
closing_issue_extractor.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
color_schemes.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
config_helper.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
contributions_calendar.rb Replace deprecated uniq on a Relation with distinct 2018-10-26 18:19:28 +02:00
contributor.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
correlation_id.rb Revert "Prefer to use correlation-id in logs" 2018-12-06 21:46:31 +01:00
cross_project_access.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
crypto_helper.rb Ensure that db encryption keys have proper bytesize 2018-11-22 15:35:49 +01:00
current_settings.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
daemon.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
database.rb CE port of 'Move EE specific code from Gitbab::Database into ee' 2018-11-26 17:14:05 -02:00
dependency_linker.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
downtime_check.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
ee_compat_check.rb Fix ee-compat-check by not modifying frozen strings 2018-10-23 09:15:17 -06:00
emoji.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
encoding_helper.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
environment.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
environment_logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
exclusive_lease.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
exclusive_lease_helpers.rb Lock writes to trace stream 2018-11-27 17:55:20 +01:00
fake_application_settings.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
favicon.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
file_detector.rb Fix rubocop warning 2018-11-16 12:09:18 +01:00
file_finder.rb Optimized file search to work without limits 2018-12-06 09:25:09 +01:00
file_markdown_link_builder.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
file_type_detection.rb
git.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
git_access.rb Iterating through commit list times out 2018-10-25 10:52:03 +01:00
git_access_wiki.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
git_logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
git_post_receive.rb Removes idenfitication by commit from Gitlab::Identifier 2018-10-25 11:36:26 +01:00
git_ref_validator.rb Gracefully handle references with null bytes 2018-11-26 14:14:16 -08:00
gitaly_client.rb Revert "Prefer to use correlation-id in logs" 2018-12-06 21:46:31 +01:00
github_import.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
gl_id.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
gl_repository.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
gon_helper.rb Make sure there's only one slash as path separator 2018-11-09 15:36:45 -08:00
gpg.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
graphql.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
group_hierarchy.rb Various improvements to hierarchy sorting 2018-12-05 10:16:44 +13:00
highlight.rb Move :plain option to Highlight class 2018-10-30 15:44:55 +08:00
http.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
http_io.rb Fix deadlock on ChunkedIO 2018-11-26 13:15:46 +01:00
i18n.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
identifier.rb Removes idenfitication by commit from Gitlab::Identifier 2018-10-25 11:36:26 +01:00
import_export.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
import_formatter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
import_sources.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
incoming_email.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
insecure_key_fingerprint.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
issuable_metadata.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
issuable_sorter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
issuables_count_for_state.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
issues_labels.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
job_waiter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
json_logger.rb Log and pass correlation-id between Unicorn, Sidekiq and Gitaly 2018-12-06 20:46:14 +01:00
kubernetes.rb Make KUBECONFIG nil if KUBE_TOKEN is nil 2018-11-30 11:03:42 +01:00
language_data.rb Remove dependencies on Linguist 2018-10-12 17:17:30 -07:00
language_detection.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
lazy.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
lfs_token.rb Revert "LfsToken uses JSONWebToken::HMACToken by default" 2018-12-05 07:03:28 +00:00
logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
mail_room.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
markup_helper.rb Remove extra whitespace on markup_helper.rb 2018-11-02 15:10:41 +00:00
metrics.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
multi_collection_paginator.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
namespace_sanitizer.rb Add Clusters::KubernetesNamespace model 2018-10-22 09:54:00 -05:00
null_request_store.rb Use a null object with RequestStore 2018-09-24 12:11:26 -07:00
omniauth_initializer.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
optimistic_locking.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
other_markup.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
otp_key_rotator.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
pages.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
pages_client.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
pages_transfer.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
path_regex.rb Fix typos in comments and specs 2018-11-01 08:59:20 +02:00
performance_bar.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
plugin.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
plugin_logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
polling_interval.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
popen.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
private_commit_email.rb Match users better by their private commit email 2018-11-19 12:45:07 +00:00
profiler.rb Allow profiler to authenticate by stubbing users directly 2018-11-26 11:18:03 +00:00
project_search_results.rb Optimized file search to work without limits 2018-12-06 09:25:09 +01:00
project_service_logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
project_template.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
project_transfer.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
prometheus_client.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
protocol_access.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
proxy_http_connection_adapter.rb Fix typos in comments and specs 2018-11-01 08:59:20 +02:00
query_limiting.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
recaptcha.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
reference_counter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
reference_extractor.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
regex.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
repo_path.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
repository_cache.rb Change project cache key to depend on ID instead of full path 2018-11-16 16:22:53 +01:00
repository_cache_adapter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
repository_check_logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
request_context.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
request_forgery_protection.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
request_profiler.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
route_map.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
routing.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
safe_request_store.rb Use a null object with RequestStore 2018-09-24 12:11:26 -07:00
search_results.rb Optimized file search to work without limits 2018-12-06 09:25:09 +01:00
seeder.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
sentry.rb Revert "Prefer to use correlation-id in logs" 2018-12-06 21:46:31 +01:00
setup_helper.rb Remove broken git storage for testing 2018-10-23 10:36:47 +02:00
shard_health_cache.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
shell.rb Stop Repository#fetch_remote from using Gitlab::Shell 2018-11-06 12:42:00 +00:00
shell_adapter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
sherlock.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
sidekiq_config.rb Backport of gitlab-ee!8470 2018-11-19 16:29:19 -05:00
sidekiq_logger.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
sidekiq_status.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
sidekiq_versioning.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
snippet_search_results.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
ssh_public_key.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
string_placeholder_replacer.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
string_range_marker.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
string_regex_marker.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
task_helpers.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
tcp_checker.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
template_helper.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
temporarily_allow.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
themes.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
time_tracking_formatter.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
timeless.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
tree_summary.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
untrusted_regexp.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
update_path_error.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
upgrader.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
uploads_transfer.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
url_blocker.rb Merge branch 'security-11-5-fix-webhook-ssrf-ipv6' into 'security-11-5' 2018-11-28 19:14:36 -05:00
url_builder.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
url_sanitizer.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
usage_data.rb Use approximate counts for big tables 2018-12-06 16:07:14 +00:00
user_access.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
user_extractor.rb Merge branch 'gt-update-typos-in-comments-and-specs' into 'master' 2018-11-01 10:34:23 +00:00
utils.rb Merge branch '54857-fix-templates-path-traversal' into 'master' 2018-12-06 18:38:43 +00:00
version_info.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
visibility_level.rb Enable frozen string for lib/gitlab/*.rb 2018-10-22 07:00:50 +00:00
web_ide_commits_counter.rb Implements Web IDE commits counter in Redis 2018-10-03 11:34:48 +01:00
wiki_file_finder.rb Optimized file search to work without limits 2018-12-06 09:25:09 +01:00
workhorse.rb Add feature flag for workhorse content type calculation 2018-12-06 21:22:39 +00:00