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-10-15Update CHANGELOG.md for 11.3.5GitLab Release Tools Bot
[ci skip]
2018-10-15Merge branch 'enable-frozen-string-lib-gitlab' into 'master'Rémy Coutable
Enable some frozen string in lib/gitlab See merge request gitlab-org/gitlab-ce!22304
2018-10-15Merge branch '52421-show-canary-no-canary-in-the-performance-bar' into 'master'Sean McGivern
Resolve "Show canary / no-canary in the performance bar" Closes #52421 See merge request gitlab-org/gitlab-ce!22222
2018-10-15Only display merge commit SHA when it existsMark Chao
2018-10-13Merge branch 'fix-dupilicate-key-license-management' into 'master'Dmitriy Zaporozhets
Fix duplicated key in license management job gitlab-org/gitlab-ce#52609 Closes #52609 See merge request gitlab-org/gitlab-ce!22311
2018-10-13Enable some frozen string in lib/gitlabgfyoung
Enable frozen string for the following files: * lib/gitlab/auth/**/*.rb * lib/gitlab/badge/**/*.rb * lib/gitlab/bare_repository_import/**/*.rb * lib/gitlab/bitbucket_import/**/*.rb * lib/gitlab/bitbucket_server_import/**/*.rb * lib/gitlab/cache/**/*.rb * lib/gitlab/checks/**/*.rb Partially addresses #47424.
2018-10-13add changelog entryAdam Lemanski
2018-10-12Merge branch '52614-update-job-started-check' into 'master'Tim Zallmann
Updates the check for started in job header See merge request gitlab-org/gitlab-ce!22329
2018-10-12Add stage name in job.json responseSteve Azzopardi
2018-10-12Updates the check for started in job headerFilipa Lacerda
The function that was checking if the job was started or not was expecting a boolean, however it was receiving a null. During the refactor the condition was changed, causing the function to break with null This commit fixes the check
2018-10-12Merge branch 'fl-update-svgs' into 'master'Mike Greiling
Updates gitlab-svg dependency See merge request gitlab-org/gitlab-ce!22299
2018-10-12Show if the host is a canary host in the perf barSean McGivern
If the request came from a canary host, show this in the performance bar by: 1. Adding a bird emoji. 2. Colouring the hostname yellow.
2018-10-12Merge branch '52608-sidebar' into 'master'Tim Zallmann
Hide job sidebar on mobile Closes #52608 See merge request gitlab-org/gitlab-ce!22314
2018-10-12Merge branch '52361-fix-file-tree-mobile' into 'master'Filipa Lacerda
Resolve "Make file browser hidden by default for mobile screens" and improve layout in small screens too Closes #52361 See merge request gitlab-org/gitlab-ce!22273
2018-10-12Updates gitlab-svg dependencyFilipa Lacerda
2018-10-12Hide job sidebar on mobileFilipa Lacerda
This commit adds back `js-` classes needed to automatically collapse the sidebar on resize.
2018-10-12Improve MR file tree on small screensAndré Luís
2018-10-12Fix broken file name navigation on MRsJacques Erasmus
2018-10-11Fix erased block not being rendered when job was erasedFilipa Lacerda
2018-10-11Merge branch 'gt-update-application-copy-secret-to-clipboard-data' into 'master'Annabel Dunstone Gray
Update copy to clipboard button data for application secret Closes #52572 See merge request gitlab-org/gitlab-ce!22268
2018-10-11Merge branch 'sh-fix-project-deletion-with-export' into 'master'Robert Speicher
Fix project deletion when there is a export available Closes #52362 See merge request gitlab-org/gitlab-ce!22276
2018-10-11Merge branch '52472-pipeline-endpoint-json' into 'master'Tim Zallmann
Adds `.json` to the end of pipelines endpoint Closes #52472 See merge request gitlab-org/gitlab-ce!22293
2018-10-11Stuck block URL links to runners settingsFilipa Lacerda
2018-10-11Merge branch 'even-more-frozen-string-lib' into 'master'Rémy Coutable
Enable even more frozen string in lib/**/*.rb See merge request gitlab-org/gitlab-ce!22206
2018-10-11Feature improved branch filter sortingJason Rutherford
2018-10-11Add new sort option "most_stars" to "Group > Children" pagesRene Hennig
2018-10-11Adds MR id to changelog entryFilipa Lacerda
2018-10-11Adds `.json` to the end of pipelines endpointFilipa Lacerda
When the job page is rendered we fetch the pipeline endpoint to render the stages in the sidebar. Without `.json` the response is cached, and when the user goes back to the pipeline's page it renders the json output instead of the Vue app
2018-10-10Fix project deletion when there is a export availableStan Hu
Project deletions were failing with "Can't modify frozen hash" because: 1. Project#remove_exports was called in the after_destroy hook 2. This would remove the file and update ImportExportUpload 3. ImportExportUpload#save would attempt to write to a destroyed model To avoid this, we just check if ImportExportUpload has been destroyed before attempting to save it. This would have a side effect of not running after_commit hooks to delete the repository on disk, making it impossible to delete the project entirely. Closes #52362
2018-10-10Update copy to clipboard button data for application secretGeorge Tsiolis
2018-10-10Remove Git circuit breakerZeger-Jan van de Weg
Was introduced in the time that GitLab still used NFS, which is not required anymore in most cases. By removing this, the API it calls will return empty responses. This interface has to be removed in the next major release, expected to be 12.0.
2018-10-09Merge branch 'gt-update-wiki-empty-state' into 'master'Fatih Acet
Update wiki empty state See merge request gitlab-org/gitlab-ce!22218
2018-10-09Merge branch '52367-cleanup-web-hooks-columns' into 'master'Rémy Coutable
Remove unencrypted webhook token and URL columns Closes #52367 See merge request gitlab-org/gitlab-ce!22199
2018-10-09Merge branch '52408-pip-cache-dir-to-cache-python-dependencies' into 'master'Kamil Trzciński
Use the standard PIP_CACHE_DIR for Python dependency caching template Closes #52408 See merge request gitlab-org/gitlab-ce!22211
2018-10-09Remove unencrypted webhook token and URL columnsNick Thomas
2018-10-09Update wiki empty stateGeorge Tsiolis
- Align heading text to the left according to #40468
2018-10-09Merge branch 'sh-handle-invalid-comparison' into 'master'Douwe Maan
Reject invalid branch names in repository compare controller Closes #51003 See merge request gitlab-org/gitlab-ce!22186
2018-10-09Merge branch 'rails5-user-status-spec' into 'master'Sean McGivern
Rails5: fix user edit profile clear status spec See merge request gitlab-org/gitlab-ce!22169
2018-10-09Use the standard PIP_CACHE_DIR for Python dependency caching templateTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2018-10-08Reject invalid branch names in repository compare controllerStan Hu
Closes #51003
2018-10-08Merge branch ↵Mike Greiling
'52353-keyboard-navigation-project-slug-is-not-focused-on-new-project-page' into 'master' Resolve "Keyboard navigation: "Project slug" is not focused on "New project" page" Closes #52353 See merge request gitlab-org/gitlab-ce!22198
2018-10-08Merge branch 'osw-remove-dead-code-on-mr-show' into 'master'Robert Speicher
Removes expensive dead code on main MR page request Closes #51172 See merge request gitlab-org/gitlab-ce!22153
2018-10-08Enable even more frozen string in lib/**/*.rbgfyoung
Enables frozen string for the following files: * lib/generators/**/*.rb * lib/gitaly/**/*.rb * lib/google_api/**/*.rb * lib/haml_lint/**/*.rb * lib/json_web_token/**/*.rb * lib/mattermost/**/*.rb * lib/microsoft_teams/**/*.rb * lib/object_storage/**/*.rb * lib/omni_auth/**/*.rb * lib/peek/**/*.rb * lib/rouge/**/*.rb * lib/rspec_flaky/**/*.rb * lib/system_check/**/*.rb Partially addresses #47424.
2018-10-08Focus project slug on tab navigationMartin Wortschack
2018-10-08Remove duplicate button from the markdown header toolbarGeorge Tsiolis
2018-10-08Merge branch '52193-Pipeline-graph-is-not-vertically-aligned-in-commit-page' ↵Filipa Lacerda
into 'master' Resolve "Pipeline graph is not vertically aligned in commit page" Closes #52193 See merge request gitlab-org/gitlab-ce!22173
2018-10-08fix vertical alignment in commit pageJohann Hubert Sonntagbauer
2018-10-08Merge branch 'Fix-pipeline-redirect' into 'master'Grzegorz Bizon
Redirect to the pipeline builds page when a build is canceled Closes #39161 See merge request gitlab-org/gitlab-ce!21595
2018-10-08Resolve "Merge request buttons spacing incorrect"Jacques Erasmus
2018-10-08Merge branch 'more-frozen-string-enable-lib' into 'master'Rémy Coutable
Enable more frozen string in lib/**/*.rb See merge request gitlab-org/gitlab-ce!22174