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
path: root/app
AgeCommit message (Collapse)Author
2019-05-06Allow projects to use instance level clustersJames Fargher
There are two cluster hierarchies one for the deployment platform and one for controllers. The main difference is that deployment platforms do not check user permissions and only return the first match.
2019-05-06Instance level kubernetes clusters adminJames Fargher
Instance level clusters were already mostly supported, this change adds admin area controllers for cluster CRUD
2019-05-06Merge branch '61469-align-play-icon' into 'master'Kushal Pandya
Aligns the play button for stages Closes #61469 See merge request gitlab-org/gitlab-ce!28124
2019-05-06Show health graphs on group-levelPeter Leitzen
Tweak cluster helper and refactor its specs.
2019-05-06Destroy repo mirrors instead of disabling themLuke Bennett
It is important to destroy data related to repo mirrors when they are disabled. Use `_destroy` nested attribute instead of `enabled` for push mirrors. Call `remove_import_data` after saving a project if its pull mirror is disabled.
2019-05-06Implement support for CI variables of type fileKrasimir Angelov
Add env_var and file as supported types for CI variables. Variables of type file expose to users existing gitlab-runner behaviour - save variable value into a temp file and set the path to this file in an ENV var named after the variable key. Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
2019-05-06Fix uploading of LFS tracked file through UIPatrick Bajao
2019-05-06Aligns the play button for stagesFilipa Lacerda
2019-05-06Resolved EE differences for issues page indexConstance Okoghenun
2019-05-06Merge branch '30093-apply-bfg-object-map-to-database' into 'master'Douwe Maan
Remove cleaned up OIDs from database and cache Closes #30093 See merge request gitlab-org/gitlab-ce!26555
2019-05-06Merge branch ↵Filipa Lacerda
'58105-pipeline-author-and-commit-author-too-close-together-in-pipeline-list' into 'master' Improve pipelines table spacing, add triggerer column Closes #38802 and #58105 See merge request gitlab-org/gitlab-ce!26136
2019-05-06Merge branch 'fix-merge-request-pipeline-exist-method' into 'master'Bob Van Landuyt
Fix duplicate merge request pipelines created by Sidekiq worker retry See merge request gitlab-org/gitlab-ce!26643
2019-05-06Remove cleaned up OIDs from database and cacheNick Thomas
2019-05-06Merge branch 'jej/session-stored-globaly' into 'master'Dmitriy Zaporozhets
Session stored globally per request See merge request gitlab-org/gitlab-ce!27658
2019-05-06Allow usage of quick actions for internal usersPeter Leitzen
Just prevent support bots from using quick actions in EE
2019-05-06Fix merge request pipeline exist methodShinya Maeda
Refactor
2019-05-05Run rubocop -a on CE filesStan Hu
2019-05-04Resolve "Sort by due date and popularity in both directions"Nermin Vehabovic
2019-05-04Merge branch '59365-include-time-window-parameters-in-the-url-query-string' ↵Fatih Acet
into 'master' Resolve "Include time window parameters in the URL query string" Closes #59365 See merge request gitlab-org/gitlab-ce!27230
2019-05-03Add localization for 'API' in triggerer columnmfluharty
2019-05-03Add pipeline triggerer column, adjust columnsmfluharty
Move pipeline triggerer avatar to its own column Adjust the widths of other columns to accommodate new column Add wrap class to commit column to prevent overlap
2019-05-03Merge branch '10763-track-uninstall-button-clicks-ce' into 'master'Filipa Lacerda
CE Backport of tracking uninstall button click See merge request gitlab-org/gitlab-ce!28012
2019-05-03Allow guests users to access project releasesKrasimir Angelov
This is step one of resolving https://gitlab.com/gitlab-org/gitlab-ce/issues/56838. Here is what changed: - Revert the security fix from bdee9e8412d. - Do not leak repository information (tag name, commit) to guests in API responses. - Do not include links to source code in API responses for users that do not have download_code access. - Show Releases in sidebar for guests. - Do not display links to source code under Assets for users that do not have download_code access. GET ':id/releases/:tag_name' still do not allow guests to access releases. This is to prevent guessing tag existence.
2019-05-03Internationalisation of reports directoryBrandon Labuschagne
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
2019-05-03Merge branch 'expand-diff-performance' into 'master'Filipa Lacerda
Impove the performance of expanding full diff Closes #58597 See merge request gitlab-org/gitlab-ce!27413
2019-05-03Internationalisation of javascript/s* directoriesBrandon Labuschagne
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
2019-05-03Merge branch ↵Phil Hughes
'9971-move-ee-differences-for-app-assets-javascripts-notes-components-note_form-vue-ce' into 'master' EE Backport to CE of EE!11151 See merge request gitlab-org/gitlab-ce!27824
2019-05-03Impove the performance of expanding full diffPhil Hughes
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58597
2019-05-03Add gitlab-managed option to clusters formMayra Cabrera
When this option is enabled, GitLab will create namespaces and service accounts as usual. When disabled, GitLab wont create any project specific kubernetes resources Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56557
2019-05-03Use git_garbage_collect_worker to run pack_refsJan Provaznik
PackRefs is not an expensive gitaly call - we want to call it more often (than as part of full `gc`) because it helps to keep number of refs files small - too many refs file may be a problem for deployments with slow storage.
2019-05-02CE-backport track uninstall button clicksEnrique Alcantara
2019-05-02Adds a way to start multiple manual jobs in stageMayra Cabrera
- Adds an endpoint on PipelinesController - Adds a service that iterates over every build in a stage and plays it. - Includes 'play_manual' details on EntitySerializer - Builds a new Stage state: PlayManual. An stage can take this status if it has manual builds or an skipped, scheduled or manual status - Includes FE modifications and specs
2019-05-02Add support for two-step Gitaly Rebase RPCLuke Duncalfe
The new two-step Gitaly `Rebase` RPC yields the rebase commit SHA to the client before proceeding with the rebase. This avoids an issue where the rebase commit SHA was returned when the RPC had fully completed, and in some cases this would be after the Rails `post_receive` worker services had already run. In these situations, the merge request did not yet have its rebase_commit_sha attribute set introducing the possibility for bugs (such as previous approvals being reset). https://gitlab.com/gitlab-org/gitlab-ee/issues/5966
2019-05-02Merge branch '27777-drop-projects-ci_id-column' into 'master'Douglas Barbosa Alexandre
Resolve "Drop "projects"."ci_id" column" Closes #27777 See merge request gitlab-org/gitlab-ce!27623
2019-05-02Merge branch 'remove-comment-personal-snippet-permission' into 'master'Douwe Maan
Remove the `comment_personal_snippet` permission Closes #56688 See merge request gitlab-org/gitlab-ce!27999
2019-05-02Update deployment chat message notificationJason Goodman
Include link to user and commit title. Rearrange text
2019-05-02Add packages_size to ProjectStatisticsAlessio Caiazza
This new field will allow to keep track of the storage used by the packages features, it provides also aggregation at namespace level.
2019-05-02Merge branch '9932-fix-deprecated-attribute_changed-ce' into 'master'Andreas Brandl
[CE] Remove deprecated usage of `attribute_changed?` See merge request gitlab-org/gitlab-ce!27577
2019-05-02Remove unused projects.ci_id columnDmitriy Zaporozhets
And remove Gitlab::Ci::Trace#deprecated_path as it relies on ci_id Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-05-02Uninstall application confirm modal componentEnrique Alcántara
- Vue confirmation modal implementation - CSS tweaks for modal default height
2019-05-02Internationalisation of diff_note directoryBrandon Labuschagne
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
2019-05-02Internationalisation of pages directoryBrandon Labuschagne
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
2019-05-02Merge branch 'fix-ide-relative-url-bug' into 'master'Phil Hughes
Fix IDE get file data with '/' as relative root See merge request gitlab-org/gitlab-ce!27911
2019-05-02EE Backport to CE of Note Form EE DiffsSam Bigelow
This moves all EE Specific lines into the ee directory CE Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/11151/commits?view=parallel
2019-05-02Internationalisation of merge_conflicts directoryBrandon Labuschagne
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
2019-05-02Internationalisation of javascript/t* directoriesBrandon Labuschagne
This is one of many MRs opened in order to improve the overall internationalisation of the GitLab codebase. i18n documentation https://docs.gitlab.com/ee/development/i18n/externalization.html
2019-05-02Merge branch ↵Filipa Lacerda
'59898-fix-the-following-style-lint-errors-and-warnings-for-app-assets-stylesheets-pages-commits-scss' into 'master' Resolve "Fix the following style-lint errors and warnings for `app/assets/stylesheets/pages/commits.scss`" Closes #59898 See merge request gitlab-org/gitlab-ce!27647
2019-05-02Merge branch 'masked-variables-docs-update' into 'master'Filipa Lacerda
Clarify masked variable message, add docs link See merge request gitlab-org/gitlab-ce!27156
2019-05-02Merge branch ↵Douwe Maan
'53064-bypassing-pipeline-jobs-by-canceling-the-pipeline-and-manually-running-later-jobs' into 'master' Disable retrying cancelled jobs Closes #53064 See merge request gitlab-org/gitlab-ce!27503
2019-05-02Remove the `comment_personal_snippet` permissionSean McGivern
This is now entirely handled by `create_note`: 1. Project snippets prevent `create_note`. 2. Uploads already only support routing for personal snippets. This simplifies some policies and access checks, too!