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-02-07Merge branch 'zj-refs-hash' into 'master'Sean McGivern
Don't use rugged in Repository#refs_hash Closes gitaly#880 See merge request gitlab-org/gitlab-ce!16827
2018-02-07Don't use rugged in Repository#refs_hashZeger-Jan van de Weg
The refs hash is used to determine what branches and tags have a commit as head in the network graph. The previous implementation depended on Rugged#references. The problem with this implementation was that it depended on rugged, but also that it iterated over all references and thus loading more data than needed if for example the project uses CI/CD environments, Pipelines, or Merge Requests. Given only refs are checked the network cares about the GraphHelper#refs method has no need to reject those, simplifying the method. Closes gitlab-org/gitaly#880
2018-02-07Merge branch '38175-add-domain-field-to-auto-devops-application-setting' ↵Kamil Trzciński
into 'master' Resolve "Add domain field to Auto DevOps application setting" Closes #38175 See merge request gitlab-org/gitlab-ce!16604
2018-02-06Merge branch 'fix/show-sidebar-sub-level-items-for-billing' into 'master'Sean McGivern
Override group sidebar links See merge request gitlab-org/gitlab-ce!16942
2018-02-06Override group sidebar linksGeorge Tsiolis
2018-02-0631885 - Ability to transfer a single group to another groupMayra Cabrera
2018-02-06Merge branch '41672-emphasize-gke-cluster-to-new-users' into 'master'Clement Ho
Add feature highlight blue dot to GKE "Clusters" sidebar item Closes #41672 See merge request gitlab-org/gitlab-ce!16379
2018-02-05Restore feature_highlight codeEric Eastwood
From https://gitlab.com/gitlab-org/gitlab-ce/issues/36760 Was reverted in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/14373
2018-02-05Allow moving wiki pages from the UIFrancisco Javier López
2018-02-05Refactor .show_gke_cluster_integration_callout?Matija Čupić
2018-02-03Change UserCallout feautre_name to enumMatija Čupić
2018-02-03Merge branch 'master' into persistent-calloutsMatija Čupić
2018-02-03Refactor AutoDevopsHelper.missing_auto_devops_domain?Matija Čupić
2018-02-03Rename Callout to UserCalloutMatija Čupić
2018-02-02Merge branch 'master' into ↵Matija Čupić
38175-add-domain-field-to-auto-devops-application-setting
2018-02-02Merge branch 'webpack-auto-config' into 'master'Jacob Schatz
Automatically Generate Webpack Entry Points See merge request gitlab-org/gitlab-ce!16865
2018-02-02Merge branch 'master' into ↵Matija Čupić
38175-add-domain-field-to-auto-devops-application-setting
2018-02-02Rename AutoDevopsHelper helper methodsMatija Čupić
2018-02-02use Gitlab::UserSettings directly as a singleton instead of ↵Mario de la Ossa
including/extending it
2018-02-02update webpack helper to automatically include route-based entry pointsMike Greiling
2018-02-02Use policies instead of role checks in ClustersHelperMatija Čupić
2018-02-02Remove dismissed_state from Callout modelMatija Čupić
2018-02-02Fix AutoDevOpsHelper helper methodsMatija Čupić
2018-02-02Add specs for .auto_devops_warning_messageMatija Čupić
2018-02-01Merge branch 'backport-ee-4644-geo-selective-sync-by-shard' into 'master'Robert Speicher
Backport changes in the application settings helper to CE See merge request gitlab-org/gitlab-ce!16801
2018-02-01Add callout priority enumMatija Čupić
2018-01-31Refactor repository_storages_options_for_selectNick Thomas
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2018-01-30Extract feature name into constantMatija Čupić
2018-01-30Show GKE cluster callout for project owner as wellMatija Čupić
2018-01-30Add safe navigation for users without callout stateMatija Čupić
2018-01-30Add check for guest userMatija Čupić
2018-01-28Merge branch 'master' into ↵Matija Čupić
38175-add-domain-field-to-auto-devops-application-setting
2018-01-28Make default_avatar return a full path.Felix Geyer
Callers expect a URL. This fixes the avatars in commit lists when a user has no avatar and Gravatar is disabled. Closes #38715
2018-01-27Implement CalloutsHelperMatija Čupić
2018-01-26Merge branch 'fix-local-rspec-tests' into 'master'Mike Greiling
Fix local RSpec tests due to bug in `webpack_bundle_tag` Closes #42368 See merge request gitlab-org/gitlab-ce!16724
2018-01-25fix bug in webpack_helper in which force_same_domain argument was ignored ↵Mike Greiling
breaking local rspec tests
2018-01-25Resolve "Link to Clusters in Auto DevOps instead of Kubernetes service"Fabio Busatto
2018-01-24Use limit for search count queriesJan Provaznik
Search query is especially slow if a user searches a generic string which matches many records, in such case search can take tens of seconds or time out. To speed up the search query, we search only for first 1000 records, if there is >1000 matching records we just display "1000+" instead of precise total count supposing that with such amount the exact count is not so important for the user. Because for issues even limited search was not fast enough, 2-phase approach is used for issues: first we use simpler/faster query to get all public issues, if this exceeds the limit, we just return the limit. If the amount of matching results is lower than limit, we re-run more complex search query (which includes also confidential issues). Re-running the complex query should be fast enough in such case because the amount of matching issues is lower than limit. Because exact total_count is now limited, this patch also switches to to "prev/next" pagination. Related #40540
2018-01-22Expose auto_devops_domain in admin settings viewMatija Čupić
2018-01-22Merge branch '42206-permit-password-for-git-param' into 'master'Rémy Coutable
Resolve "Password authentication enabled for Git over HTTP(S) can not be disabled via UI" Closes #42206 See merge request gitlab-org/gitlab-ce!16577
2018-01-19Permits 'password_authentication_enabled_for_git' parameter for ↵Mark Fletcher
ApplicationSettingsController
2018-01-19Merge branch '41532-email-reason' into 'master'Sean McGivern
Show why a notification email was sent Closes #41532 and #1366 See merge request gitlab-org/gitlab-ce!16160
2018-01-19WebIDE: Fix Commit bugsTim Zallmann
2018-01-19Merge branch '41247-timestamp' into 'master'Robert Speicher
Use last_edited_at instead of updated_at for displaying issuable last change Closes #41247 See merge request gitlab-org/gitlab-ce!16406
2018-01-18Merge branch 'issue_37143_2' into 'master'Sean McGivern
Remove unnecessary query from labels dropdown Closes #37143 See merge request gitlab-org/gitlab-ce!16520
2018-01-18Remove unnecessary query from labels filterFelipe Artur
2018-01-18Return last edited time instead of update timeJan Provaznik
For issuable models we keep two timestamps: updated_at which is updated whenever any model attribute is changed, last_edited_at which is changed when only title or description is changed. In UI bellow description we display who and when updated the item. But last_edited_by (used for 'who') is mistakenly combined with updated_at (when), last_edited_at should be used instead. Closes #41247
2018-01-17Resolve "Closed issue label in todo's styling is difficult to read"Simon Knox
2018-01-17Initial work to add notification reason to emailsMario de la Ossa
Adds `#build_notification_recipients` to `NotificationRecipientService` that returns the `NotificationRecipient` objects in order to be able to access the new attribute `reason`. This new attribute is used in the different notifier methods in order to add the reason as a header: `X-GitLab-NotificationReason`. Only the reason with the most priority gets sent.