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
2018-12-04Replace admin sidebar feature spec with view specRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-26Convert "New menu" feature spec to a view specRobert Speicher
A feature spec to test this simple behavior takes about 2 minutes to run in CI. Everything it's testing is conditionals and `href` attributes, which can easily be done in a view spec that runs in about 8 seconds.
2018-11-07Copy changes for abuse clarityJeremy Watson
2018-11-05Merge branch 'fast_project_blob_path' into 'master'Douwe Maan
Improve performance of tree rendering in repositories with a lot of items See merge request gitlab-org/gitlab-ce!16511
2018-10-31Improve performance of tree rendering in repositories with lots of itemsDrew Blessing
Rails is slow to generate paths dynamically especially when called hundreds/thousands of times. Also, rendering many partials hundreds of times can be slower. This change reduces the number of partials rendered and introduces two fast path methods to speed up path generation.
2018-10-30Make Highlight accept language paramMark Chao
This replaces the repository param. This allows more flexiblity as sometimes we have highlight content not related to repository. Sometimes we know ahead of time the language of the content. Lastly language determination seems better fit as a logic in the Blob class. `repository` param is only used to determine the language, which seems to be the responsiblity of Blob.
2018-10-22Add tests for shared/runners/show.html.haml viewTomasz Maczukin
2018-10-03Uses Vue app to render part of job show pageFilipa Lacerda
2018-10-02Merge branch 'bvl-show-pre-release-sha' into 'master'Sean McGivern
Show the commit-sha for pre-release versions Closes #52050 See merge request gitlab-org/gitlab-ce!22026
2018-10-02Show the commit-sha for pre-release versionsBob Van Landuyt
The pre-release tags are set at the beginning of a release, so it would be impossible to figure out which version was running if we're running nightlies. In that case it's better to still link to the SHA. These versions don't get deployed to .com.
2018-10-01Merge remote-tracking branch 'dev/master'Bob Van Landuyt
2018-10-01Merge branch ↵Bob Van Landuyt
'security-6881-project-group-approvers-leaks-private-group-info-ce' into 'master' [master] CE: Project group approvers leaks private group info See merge request gitlab/gitlabhq!2488
2018-10-01Link to the tag from a version instead of commitBob Van Landuyt
This will result in a 404 when running an unreleased security patch while still allowing users to find the commit when it is made available.
2018-09-25Use Vue component for job artifacts, Commit and Trigger VariablesFilipa Lacerda
2018-09-24Applies the CE backport of EE#657Tiago Botelho
2018-09-14Correct usage of the have_link matcherRobert Speicher
The second option to this matcher should be an options hash; anything else is just ignored, which can lead to false positives in tests. We see one such false positive in the "Learn more" link test in `spec/features/projects/blobs/blob_show_spec.rb`.
2018-09-06Resolve "Improve project overview UI"Dennis Tang
2018-08-22Speed up diff comparisons by limiting number of commit messages renderedStan Hu
When a diff has a significant number of commits, the previous behavior would attempt to render the Markdown on all the commit messages but only display 1000 of them. To avoid additional work, we only need to render the Markdown on the set that is displayed.
2018-08-10Quick actions are now also supported on commitsPeter Leitzen
2018-08-01Merge branch 'bvl-user-status-message-35463' into 'master'Rémy Coutable
Allow users to set a status Closes #35463 See merge request gitlab-org/gitlab-ce!20614
2018-07-30Show the status of a user in interactionsBob Van Landuyt
The status is shown for - The author of a commit when viewing a commit - Notes on a commit (regular/diff) - The user that triggered a pipeline when viewing a pipeline - The author of a merge request when viewing a merge request - The author of notes on a merge request (regular/diff) - The author of an issue when viewing an issue - The author of notes on an issue - The author of a snippet when viewing a snippet - The author of notes on a snippet - A user's profile page - The list of members of a group/user
2018-07-26DNS Prefetching + Preconnect of assets_host (CDN Domain)Tim Zallmann
2018-07-18Features/show project id on home panelTuğçe Nur Taş
2018-07-11Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao
2018-07-09Updates from `rubocop -a`Lin Jen-Shin
2018-06-22Show a reCAPTCHA on signin page if custom header is setStan Hu
This will only be displayed if `X-GitLab-Show-Login-Captcha` is set as an HTTP header.
2018-06-13Render access denied without messageBob Van Landuyt
The `errors/access_denied` page should not fail to render when no message is provided. When accessing something as a sessionless user, we should also display the terms message if possible.
2018-06-06fix broken specsMike Greiling
2018-05-26Fix fast admin counters not working when PostgreSQL has secondariesStan Hu
This commit does a number of things: 1. Reduces the number of queries needed by perform a single query to get all the tuples for the relevant rows. 2. Uses a transaction to query the tuple counts to ensure that the data is retrieved from the primary. Closes #46742
2018-05-24Replace Gitlab::REVISION with Gitlab.revision and handle installations ↵Rémy Coutable
without a .git directory Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-05-16Project Sidebar: Split CI/CD into CI/CD and OperationsLukas Eipert
2018-05-04Backports every CE related change from ee-44542 to CETiago Botelho
2018-04-20Create autodevops settings sectionsJose Ivan Vargas
2018-04-16Merge branch 'ash.mckenzie/include-sha-with-version' into 'master'Nick Thomas
Include git SHA with GitLab version on Admin Dashboard See merge request gitlab-org/gitlab-ce!18331
2018-04-16Merge branch 'deprecation-warning-for-dynamic-milestones' into 'master'Filipa Lacerda
Deprecation warning for dynamic milestones Closes #42336 See merge request gitlab-org/gitlab-ce!17505
2018-04-12Spec improvements for speed, reliability and readabilityBob Van Landuyt
2018-04-12Include git SHA with GitLab versionAsh McKenzie
2018-04-11Hide file/directory creation buttonsBob Van Landuyt
2018-04-11Share collaboration check between view and presenterBob Van Landuyt
2018-04-10Add ability checks in views where they were previously missingDouwe Maan
2018-04-09Merge remote-tracking branch 'origin/master' into ↵Luke Bennett
deprecation-warning-for-dynamic-milestones
2018-04-07Merge branch '42568-pipeline-empty-state' into 'master'Kamil Trzciński
Resolve "Wrong empty state for cancelled build, hides existing logs!" Closes #42568 See merge request gitlab-org/gitlab-ce!17646
2018-04-06Implement a new SHA partial for commit listsShah El-Rahman
2018-04-06Merge branch 'master' into '42568-pipeline-empty-state'Kamil Trzciński
# Conflicts: # app/views/projects/jobs/show.html.haml # lib/gitlab/ci/status/core.rb
2018-04-06Resolve "Show `failure_reason` and upgrade tooltips of jobs"Mayra Cabrera
2018-04-05Merge remote-tracking branch 'origin/master' into ↵Luke Bennett
deprecation-warning-for-dynamic-milestones
2018-04-04Move leftovers from pipelines_settings_controller to settings/ci_cd_controllerTomasz Maczukin
2018-04-03Set up traces in build show specMatija Čupić
2018-03-27Build ci/lint pageMayra Cabrera
- Includes new image from gitlab-svgs - Updates dependency for svgs
2018-03-27Make ci/lint page context aware:Mayra Cabrera
- Create ci/lints controller inside project/ - Move js pages to be inside projects/ - Copy view ci/lint view to be inside project folder - Remove ci/lint view and js files Closes #43603