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-09-11JIRA integration: Fix favicon imagejira-favicon-linkArturo Herrero
2019-09-11Backport changes for 16252 in EE add current_user to report comparison servicesCan Eldem
2019-09-11Disable "transfer group" button when no parent group is selectedJan Beckmann
Refactor project_edit.js to be reusable for this purpose Closes #64799
2019-09-11Merge branch '61927-pages-custom-domain-virtual-domain' into 'master'Kamil Trzciński
Add support for custom domains to the Pages internal API See merge request gitlab-org/gitlab-ce!32735
2019-09-11Add 30 and 60 minute bucketsElliot Rushton
2019-09-11Merge branch 'dz-fix-add-cluster-doc-links' into 'master'Kushal Pandya
Fix doc links for adding a cluster to a project See merge request gitlab-org/gitlab-ce!32890
2019-09-11Enables Run Pipeline button to be renderedFilipa Lacerda
In the Merge Request view, under pipelines tab the user can see a run pipeline button Adds axios post request to button click Adds the logic to handle the user click, refresh the table and disable the button while thee request is being made Updates UI for desktop and mobile Adds specs Regenerates potfile Follow-up after review Uses .finally to avoid code repetition
2019-09-11Merge branch 'sh-fix-oauth-application-page' into 'master'Rémy Coutable
Optimize /admin/applications so that it does not timeout Closes #67228 See merge request gitlab-org/gitlab-ce!32852
2019-09-11Merge branch '65988-optimize-snippet-listings' into 'master'Thong Kuah
Optimize queries for snippet listings See merge request gitlab-org/gitlab-ce!32576
2019-09-11Fix CSP failure patching graphiql viewAlessio Caiazza
Backporting https://github.com/rmosolgo/graphiql-rails/pull/71
2019-09-11Merge branch '66023-public-private-fork-counts' into 'master'Stan Hu
Resolve "Forks count do not match after searching" Closes #66023 See merge request gitlab-org/gitlab-ce!31930
2019-09-11Prevent archived projects from showing up in global searchDavid Palubin
2019-09-11Fix N+1s queriesDouglas Barbosa Alexandre
2019-09-11Add global toast moduleFernando Arias
**Why?** https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/15015#note_210891978
2019-09-10Merge remote-tracking branch 'origin/master' into ↵Douglas Barbosa Alexandre
camilstaps/gitlab-ce-new-66023-public-private-fork-counts
2019-09-10Remove vue resource from sidebar serviceWinnie Hellmann
Fixes https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/32400
2019-09-10Merge branch '34338-details-element' into 'master'Annabel Dunstone Gray
Add padding to details element in markdown Closes #34338 See merge request gitlab-org/gitlab-ce!32716
2019-09-10Merge branch 'remove-old-ignore-column' into 'master'Peter Leitzen
Remove some old `ignore_column` in AR models [CE] See merge request gitlab-org/gitlab-ce!31001
2019-09-10Merge branch '64251-redis-set-cache-mark-2' into 'master'Stan Hu
Re-introduce the Redis set cache for branch and tag names - but don't enable it yet See merge request gitlab-org/gitlab-ce!32412
2019-09-10Remove ignore_column occurence in CE codeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-09-10Async import custom stage form componentsEzekiel Kigbo
Imports the files needed for the custom stage form and adds the EE specific css. Added stub addStageMixin
2019-09-10Fix doc links for adding a cluster to a projectdocs/dz-fix-cluster-doc-linksDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-09-10Merge branch 'fj-62807-not-prefill-target-branch' into 'master'Lin Jen-Shin
Avoid filling target branch when unknown and source is default branch Closes #62807 See merge request gitlab-org/gitlab-ce!32701
2019-09-10Don't use the redis set cache yetNick Thomas
For zero-downtime deployed in a mixed code environment between 12.2 and 12.3, the branch and tag name cache is incorrectly invalidated - a push to an old machine will not clear the redis set version of the cache on the new machine. This commit ensures that, in 12.3, both set and non-set versions of the cache are invalidated, but does not write or consult the set version of the cache. . In 12.4, it will be safe to switch branch and tag names to the redis set cache both it and the legacy cache will be invalidated appropriately in such a mixed code environment. This delays the full implementation of the feature by one release, but in the absence of a credible feature-flagging strategy, and amidst an abundance of caution about the effects of too-eager cache expiration, I believe this is the best approach available to us.
2019-09-10Add controller concern for paginated collectionsMarkus Koller
We had similar code in a few places to redirect to the last page if the given page number is out of range. This unifies the handling in a new controller concern and adds usage of it in all snippet listings.
2019-09-10Optimize queries for snippet listingsMarkus Koller
- Avoid N+1 queries for authors and comment counts - Avoid an additional snippet existence query
2019-09-10Revert "Revert "Cache branch and tag names as Redis sets""Nick Thomas
This reverts commit c6ccc07f48c7c1f9da43ecd82015500a4340544d.
2019-09-10Avoid setting merge request target branch when source if default branchFrancisco Javier López
In case the source and the target project are the same, the source branch is the default branch, and the target branch is not present, we will avoid prefilling the target branch with the repository default branch. Letting the user decide.
2019-09-10Add event presenterJan Provaznik
This presenter will be used in an upcoming MR which adds rendering of epic events on group activity page.
2019-09-10Provide urls for Merge Requests and Issue linksEtienne Baqué
2019-09-10Apply suggestion to app/views/projects/forks/index.html.hamlStan Hu
2019-09-10Optimize /admin/applications so that it does not timeoutStan Hu
On our dev instance, /admin/applications as not loading because: 1. There was an unindexed query by `application_id`. 2. There was an expensive query that attempted to load 1 million unique entries via ActiveRecord just to find the unique count. We fix the first issue by adding an index for that column. We fix the second issue with a simple SELECT COUNT(DISTINCT resource_owner_id) SQL query. In addition, we add pagination to avoid loading more than 20 applications at once. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/67228
2019-09-10Add support for custom domains to the internal Pages APIKrasimir Angelov
Update the `/internal/pages` endpoint to return virtual domain configuration for custom domains.
2019-09-10Make Rubocop happyDouglas Barbosa Alexandre
2019-09-10Merge branch 'qa/e2e-tests-for-issue-weights' into 'master'Walmyr Lima e Silva Filho
Backport of end-to-end test for visualizing issue weight on different pages See merge request gitlab-org/gitlab-ce!32766
2019-09-10Merge branch 'jivanvl-add-caret-icon-dashboard' into 'master'Clement Ho
Add caret icons to the monitoring dashboard See merge request gitlab-org/gitlab-ce!32239
2019-09-10Merge branch '13095-missing-borders-between-settings-items' into 'master'Paul Slaughter
[CE] Resolve "Missing borders between settings items" See merge request gitlab-org/gitlab-ce!32828
2019-09-10Remove N+1 queriesDouglas Barbosa Alexandre
2019-09-10Merge remote-tracking branch 'origin/master' into ↵Douglas Barbosa Alexandre
camilstaps/gitlab-ce-new-66023-public-private-fork-counts
2019-09-09Merge branch 'api_settings' into 'master'Douglas Barbosa Alexandre
Improve application settings API Closes #58180 See merge request gitlab-org/gitlab-ce!31149
2019-09-09Create new feature flagged UI for cloud providersEnrique Alcántara
- Create HAML UI select a cloud provider to create a cluster. - Add query param to :new cluster view to display a specific cluster provider form depending on the value of the provider query param. - Update unit tests and e2e tests to reflect these changes
2019-09-09Expose update project service JSON endpointPeter Leitzen
Utilize `json_fields` to expose fields via `Service#as_json(only: json_fields)`.
2019-09-09Add padding to details element in markdownJarek Ostrowski
Add MR to changelog entry Adjust to give margin bottom to details instead of last-child Remove trailing whitespace
2019-09-09CE - Resolve "Missing borders between settings items"Marcel van Remmerden
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14877
2019-09-09Add caret icons to the monitoring dashboardJose Vargas
The carets will function as a button that will allow the panels from the monitoring dashboard to collapse and show panels
2019-09-09Merge branch '60724-watch-button' into 'master'Clement Ho
Give notification buttons btn-xs class Closes #60724 See merge request gitlab-org/gitlab-ce!32827
2019-09-09Merge branch ↵Clement Ho
'9102-hide-dismissed-vulnerabilities-in-the-group-security-dashboard-backport' into 'master' Add toggle to show/hide dismissed vulnerabilities (ports ee!15333) See merge request gitlab-org/gitlab-ce!32413
2019-09-09Give notification buttons btn-xs classJarek Ostrowski
Add changelog
2019-09-09Settings API: domain_{black,white}list should be arraysMathieu Parent
As in documentation. Fixes: #58180. Also remove the requirement between domain_blacklist_enabled and domain_blacklist.
2019-09-09Merge branch 'events-delete-all' into 'master'Lin Jen-Shin
Use delete_all for deleting events See merge request gitlab-org/gitlab-ce!32751