- 17 Jun, 2017 3 commits
- 16 Jun, 2017 37 commits
-
-
Robert Speicher authored
Remove unnecessary spec file See merge request !12233
-
Clement Ho authored
Increase karma socket timeout Closes #33735 See merge request !12226
-
Mike Greiling authored
-
Robert Speicher authored
Fixes boards_spec failure Closes #33614 See merge request !12230
-
-
Annabel Dunstone Gray authored
Fixed overflow on mobile screens for the slash commands Closes #29013 See merge request !12100
-
Jose Ivan Vargas Lopez authored
-
Felipe Artur authored
-
Annabel Dunstone Gray authored
Backport panels.scss styles from EE See merge request !12206
-
Douwe Maan authored
Add table for files in merge request diffs See merge request !12047
-
Douwe Maan authored
Show private subgroups if member of parent group Closes #32135 See merge request !11764
-
Robert Speicher authored
Call Capybara.reset_sessions! before block_and_wait_for_requests_complete Closes #33779 See merge request !12224
-
Sean McGivern authored
This adds an ID-less table containing one row per file, per merge request diff. It has a column for each attribute on Gitlab::Git::Diff that is serialised currently, with the advantage that we can easily query the attributes of this new table. It does not migrate existing data, so we have fallback code when the legacy st_diffs column is present instead. For a merge request diff to be valid, it should have at most one of: * Rows in this new table, with the correct merge_request_diff_id. * A non-NULL st_diffs column. It may have neither, if the diff is empty.
-
Phil Hughes authored
Closes #33614
-
Sean McGivern authored
Rename "Slash commands" to "Quick actions" Closes #27070 See merge request !11811
-
Sean McGivern authored
Remove issuable drag and drop and sorting from milestone view Closes #20900 See merge request !11950
-
Annabel Dunstone Gray authored
Add missing bottom border to blame age legend Closes #33739 See merge request !12205
-
Douwe Maan authored
Missing translations for the project & repository pages. Closes #33420 See merge request !12052
-
Rémy Coutable authored
capybara/rspec already calls Capybara.reset_sessions! in an `after` hook, but `block_and_wait_for_requests_complete` is called before it so by calling it explicitely here, we prevent any new requests from being fired. See https://github.com/teamcapybara/capybara/blob/ffb41cfad620de1961bb49b1562a9fa9b28c0903/lib/capybara/rspec.rb#L20-L25Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Felipe Artur authored
-
Felipe Artur authored
-
Felipe Artur authored
-
Felipe Artur authored
-
Felipe Artur authored
-
Felipe Artur authored
-
Marcia Ramos authored
Document the Delete Merged Branches functionality See merge request !12217
-
Phil Hughes authored
Create responsive mobile view for pipelines table Closes #31415 See merge request !12171
-
Annabel Dunstone Gray authored
-
Rémy Coutable authored
Add French translations for Cycle Analytics, Project, and Repository pages. Closes #32998 and #33140 See merge request !12200
-
Rémy Coutable authored
Speed up used languages calculation on charts page See merge request !12212
-
Achilleas Pipinellis authored
-
Robert Speicher authored
set ENV['prometheus_multiproc_dir'] in config/boot.rb instead of config.ru See merge request !12201
-
Sean McGivern authored
We removed calls from our code to Rugged::Repository#fetch_attributes: <https://gitlab.com/gitlab-org/gitlab_git/commit/340e111e040ae847b614d35b4d3173ec48329015> However, we didn't remove calls from within Linguist. This method is only called when calculating the languages for a repository on the Charts page: <https://github.com/github/linguist/blob/v4.7.0/lib/linguist/lazy_blob.rb#L33-L36> We can safely use our own Gitlab::Git::Attributes here. On staging, for the GitLab CE repo, this makes the calculation take about a third of the time: # Before Benchmark.realtime do Linguist::Repository.new(repository.rugged, repository.rugged.head.target_id).languages end #=> 23.67193900188431 # After Benchmark.realtime do Linguist::Repository.new(repository.rugged, repository.rugged.head.target_id).languages end #=> 8.945212290156633
-
Rémy Coutable authored
Wait for all Ajax and Vue requests to complete in JavaScript tests Closes #33756 See merge request !12203
-
Achilleas Pipinellis authored
Convdev docs See merge request !12189
-
Rémy Coutable authored
Clarify job selection algorithm docs See merge request !12199