Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2018-11-20Enable even more frozen string for lib/gitlabgfyoung
Enables frozen string for the following: * lib/gitlab/patch/**/*.rb * lib/gitlab/popen/**/*.rb * lib/gitlab/profiler/**/*.rb * lib/gitlab/project_authorizations/**/*.rb * lib/gitlab/prometheus/**/*.rb * lib/gitlab/query_limiting/**/*.rb * lib/gitlab/quick_actions/**/*.rb * lib/gitlab/redis/**/*.rb * lib/gitlab/request_profiler/**/*.rb * lib/gitlab/search/**/*.rb * lib/gitlab/sherlock/**/*.rb * lib/gitlab/sidekiq_middleware/**/*.rb * lib/gitlab/slash_commands/**/*.rb * lib/gitlab/sql/**/*.rb * lib/gitlab/template/**/*.rb * lib/gitlab/testing/**/*.rb * lib/gitlab/utils/**/*.rb * lib/gitlab/webpack/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
2018-09-25Use Vue component for job artifacts, Commit and Trigger VariablesFilipa Lacerda
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉
2017-11-02fix bracket stylingMike Greiling
2017-10-30allow inspect_request to inject request headers in order to test Sendfile ↵Mike Greiling
requests in jobs_spec.rb
2017-10-24slow down requests for dropzone uploads to avoid race conditionsMike Greiling
2017-10-24fix rubocop violationsMike Greiling
2017-10-23add InspectRequests helperMike Greiling
2017-10-23implement basic request inspector for use in Capybara testsMike Greiling
2017-03-22Introduce a new middleware for the test environment that can block requestsRémy Coutable
The idea is that after each feature spec example, we block all incoming requests at the Rack level, go to the 'about:blank' page, and wait until the current requests reach 0. This should solve the problem where a request would end after database cleaner performed the database truncation. The problem was that a GET request can still lead to records creation (e.g. namespaces or routes). Signed-off-by: Rémy Coutable <remy@rymai.me>