summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated discussion loading to be deferred and in the statetz-mr-new-datastructureTim Zallmann2018-08-212-9/+15
|
* Added constants for Render values + Optimised for LoopTim Zallmann2018-08-211-0/+1
|
* Loading Discussions later on DiffsTim Zallmann2018-08-217-66/+160
|
* Fixed error in mutations of diff + removed unused varsTim Zallmann2018-08-211-2/+0
|
* Incremental RenderingTim Zallmann2018-08-213-3/+4
|
* Reset Tooltip directive Init + Fixed Karma TestTim Zallmann2018-08-211-4/+2
|
* Button with Icon only rendered when hovered, deferred lazy Image checking + ↵Tim Zallmann2018-08-211-2/+4
| | | | ImageViewer + Tooltip
* Updated the Diff Line Gutter ContentTim Zallmann2018-08-211-3/+3
|
* Only rendering diff for nowTim Zallmann2018-08-217-140/+88
|
* Start of non getter VersionTim Zallmann2018-08-212-3/+3
|
* Set Performance Mode + Added Gutter Content back inTim Zallmann2018-08-211-0/+2
|
* Merge branch 'update-chart-for-ga-doc' into 'master'Achilleas Pipinellis2018-08-217-137/+217
|\ | | | | | | | | Update `gitlab` chart docs for GA See merge request gitlab-org/gitlab-ce!21215
| * Update `gitlab` chart docs for GAJoshua Lambert2018-08-217-137/+217
|/
* Merge branch 'tc-api-fork-owners' into 'master'Grzegorz Bizon2018-08-216-37/+103
|\ | | | | | | | | | | | | Allow project owners to set up forking relation through API Closes #40550 See merge request gitlab-org/gitlab-ce!18104
| * Clean up LFS objects when creating fork relationToon Claes2018-08-203-0/+21
| | | | | | | | | | | | | | | | | | A forked project stores its LFS objects in the `forked_from_project`. So the LFS objects become inaccessible, and therefore delete them from the database so they'll get cleaned up. To be refactored when implementing https://gitlab.com/gitlab-org/gitlab-ce/issues/39769
| * Allow project owners to set up forking relation through APIToon Claes2018-08-204-37/+82
| | | | | | | | | | | | | | | | Before this change only GitLab admins where allowed to set up forking relation through the API. This changes that so project owners can do this too. Closes gitlab-org/gitlab-ce#40550.
* | Merge branch '49993-fix-remember-sorting-issue-mr' into 'master'29398-support-kubernetes-rbac-for-gitlab-managed-apps-3Sean McGivern2018-08-214-17/+77
|\ \ | | | | | | | | | | | | | | | | | | Resolve "Separate remembering sorting issues/merge requests" Closes #49993 See merge request gitlab-org/gitlab-ce!21153
| * | Resolve "Separate remembering sorting issues/merge requests"🙈 jacopo beschi 🙉2018-08-214-17/+77
|/ /
* | Merge branch 'ce-6752-jira-branches' into 'master'Sean McGivern2018-08-214-1/+25
|\ \ | | | | | | | | | | | | Backport of gitlab-org/gitlab-ee!6876 See merge request gitlab-org/gitlab-ce!21266
| * | Backport of gitlab-org/gitlab-ee!6876ce-6752-jira-branchesMario de la Ossa2018-08-204-1/+25
| | |
* | | Merge branch '49179-fill-with-js-directly-qa' into 'master'Grzegorz Bizon2018-08-211-1/+7
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Resolve "[QA] Automation Triage 11.1.0 RC9 - Filling textarea with deploy key timeouts sometime" Closes #49179 See merge request gitlab-org/gitlab-ce!21258
| * | | Fill variable text with JS directly to speed up49179-fill-with-js-directly-qaLin Jen-Shin2018-08-171-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's too slow to use `set(value)`, often timing out. Filling with JS is much faster for longer text, especially when the key size is larger than 8192. Before this patch: ``` Top 3 slowest examples (256.83 seconds, 89.4% of total time): cloning code using a deploy key user sets up a deploy key with QA::Runtime::Key::RSA(8192) to clone code using pipelines 161.26 seconds ./qa/specs/features/project/deploy_key_clone_spec.rb:42 cloning code using a deploy key user sets up a deploy key with QA::Runtime::Key::ECDSA(521) to clone code using pipelines 47.79 seconds ./qa/specs/features/project/deploy_key_clone_spec.rb:42 cloning code using a deploy key user sets up a deploy key with QA::Runtime::Key::ED25519() to clone code using pipelines 47.79 seconds ./qa/specs/features/project/deploy_key_clone_spec.rb:42 ``` Note that 161.26 was timed out. So it would actually take longer if it could ever complete. After patch: ``` Top 3 slowest examples (166.72 seconds, 83.8% of total time): cloning code using a deploy key user sets up a deploy key with QA::Runtime::Key::RSA(8192) to clone code using pipelines 83.66 seconds ./qa/specs/features/project/deploy_key_clone_spec.rb:42 cloning code using a deploy key user sets up a deploy key with QA::Runtime::Key::ECDSA(521) to clone code using pipelines 42.78 seconds ./qa/specs/features/project/deploy_key_clone_spec.rb:42 cloning code using a deploy key user sets up a deploy key with QA::Runtime::Key::ED25519() to clone code using pipelines 40.27 seconds ./qa/specs/features/project/deploy_key_clone_spec.rb:42 ``` Not that faster for smaller keys, but it's much faster for RSA 8192 (2 times faster). This was inspired from: https://github.com/teamcapybara/capybara/blob/679548cea10773d45e32808f4d964377cfe5e892/lib/capybara/selenium/node.rb#L217 Where it's clearing the field by filling an empty string. Here we do the same for the exact value we want to fill.
* | | | Merge branch 'fa-add_jira_specs' into 'master'Sean McGivern2018-08-211-121/+134
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Add JIRA service specs to commit object See merge request gitlab-org/gitlab-ce!21116
| * | | | Add JIRA service specs to commit objectFelipe Artur2018-08-211-121/+134
|/ / / /
* | | | Merge branch '48869-wiki-slugs-with-spaces' into 'master'Sean McGivern2018-08-214-0/+149
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Resolve "Wiki: links with spaces in the url render incorrectly with CommonMark" See merge request gitlab-org/gitlab-ce!20417
| * | | | Resolve "Wiki: links with spaces in the url render incorrectly with CommonMark"Brett Walker2018-08-214-0/+149
|/ / / /
* | | | Merge branch '50323-fix-clusters-application-prometheus-test' into 'master'Grzegorz Bizon2018-08-211-10/+7
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Fix bad test from 20765 MR" Closes #50323 See merge request gitlab-org/gitlab-ce!21219
| * | | | Convert the #install_command spec to promethus#install_command as the subject50323-fix-clusters-application-prometheus-testThong Kuah2018-08-151-10/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes this consistent with the specs for other applications as well as fixing a bug in the 'application failed to install previously' spec
* | | | | Merge branch 'qa-staging-2' into 'master'Grzegorz Bizon2018-08-2111-39/+114
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [QA] Improve the fork scenario to take a username and password instead of always… Closes gitlab-org/quality/staging#2 See merge request gitlab-org/gitlab-ce!21090
| * | | | | [QA] Improve the fork scenario to take a username and password instead of ↵qa-staging-2Rémy Coutable2018-08-2011-39/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | always creating a new user Fixes https://gitlab.com/gitlab-org/quality/staging/issues/2. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | Merge branch 'ce-ccr/6274_add_weight_to_payload' into 'master'Rémy Coutable2018-08-213-62/+66
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Port of ccr/6274/add_weight_to_payload to CE See merge request gitlab-org/gitlab-ce!21315
| * | | | | | Port of ccr/6274/add_weight_to_payload to CEChantal Rollison2018-08-213-62/+66
|/ / / / / /
* | | | | | Merge branch 'fix_events_permission_#49255' into 'master'Grzegorz Bizon2018-08-214-8/+62
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add authenticate to events api. fix #49255 Closes #49255 See merge request gitlab-org/gitlab-ce!20627
| * | | | | | Add authenticate to events api. fix #49255Warren Parad2018-08-164-8/+62
| | | | | | |
* | | | | | | Merge branch 'qa-fix-broken-pathing' into 'master'Rémy Coutable2018-08-213-3/+3
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix broken pathing (remove extraneous ../) See merge request gitlab-org/gitlab-ce!21318
| * | | | | | | fix broken pathing (remove extraneous ../)Dan Davison2018-08-213-3/+3
|/ / / / / / /
* | | | | | | Merge branch '42754-runners-pagination' into 'master'Mike Greiling2018-08-212-1/+6
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "UX bug in CI Runner settings on projects with many runners" Closes #42754 See merge request gitlab-org/gitlab-ce!21314
| * | | | | | Does not collapse runners section when using pagination42754-runners-paginationFilipa Lacerda2018-08-202-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Includes settings hash on runners pagination links
* | | | | | | Merge branch '48145-illustration' into 'master'Annabel Gray2018-08-202-1/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Job page illustration overflows on mobile" Closes #48145 See merge request gitlab-org/gitlab-ce!21313
| * | | | | | | Define width as max-width to allow svgs to scale in smaller screens48145-illustrationFilipa Lacerda2018-08-202-1/+6
| |/ / / / / /
* | | | | | | Merge branch '50019-remove-redundant-header-from-metrics-page' into 'master'Clement Ho2018-08-203-8/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Remove redundant header from metrics page" Closes #50019 See merge request gitlab-org/gitlab-ce!21282
| * | | | | | | Resolve "Remove redundant header from metrics page"Adriel Santiago2018-08-203-8/+6
|/ / / / / / /
* | | | | | | Merge branch 'qa-smoke-tests' into 'master'Rémy Coutable2018-08-2035-100/+207
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add initial smoke tests and documentation See merge request gitlab-org/gitlab-ce!20568
| * | | | | | | add initial smoke tests and documentationDan Davison2018-08-2035-100/+207
|/ / / / / / /
* | | | | | | Merge branch '6010_remove_gemnasium_service' into 'master'Rémy Coutable2018-08-2014-208/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove Gemnasium service See merge request gitlab-org/gitlab-ce!21185
| * | | | | | | Remove Gemnasium serviceGilbert Roulot2018-08-2014-208/+6
|/ / / / / / /
* | | | | | | Merge branch 'patch-24' into 'master'Rémy Coutable2018-08-201-5/+5
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | use nfs4 mount to match other docs See merge request gitlab-org/gitlab-ce!21270
| * | | | | | use nfs4Ben Bodenmiller2018-08-171-5/+5
| | | | | | |
* | | | | | | Merge branch 'master' into 'master'Grzegorz Bizon2018-08-204-0/+8
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #47845 - Propagate failure_reason to job webhook See merge request gitlab-org/gitlab-ce!21143
| * | | | | | | Documentation for failure_reason in job webhookMaciej Sokolowski2018-08-201-0/+1
| | | | | | | |