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
2019-08-13Only expire tag cache once per pushStan Hu
Previously each tag in a push would invoke the Gitaly `FindAllTags` RPC since the tag cache would be invalidated with every tag. We can eliminate those extraneous calls by expiring the tag cache once in `PostReceive` and taking advantage of the cached tags. Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/65795
2019-08-13Merge branch '65803-invalidate-branches-cache-on-refresh' into 'master'Bob Van Landuyt
Only expire branch cache once per push See merge request gitlab-org/gitlab-ce!31653
2019-08-13Merge branch 'fix-filename-length' into 'master'Rémy Coutable
Ensure changelog filenames have length less than 99 characters See merge request gitlab-org/gitlab-ce!31752
2019-08-13Upgrade Gitaly to v1.59.0GitalyBot
2019-08-13Rename changelog files to have their less than 100 characters longBalasankar "Balu" C
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
2019-08-13Improve quick action error messagesHeinrich Lee Yu
Standardize punctuation and format
2019-08-13Merge branch ↵Thong Kuah
'63942-remove-config-action_dispatch-use_authenticated_cookie_encryption-configuration' into 'master' Remove `config.action_dispatch.use_authenticated_cookie_encryption` configuration Closes #63942 See merge request gitlab-org/gitlab-ce!31463
2019-08-13Merge branch 'ce-12547-load-search-counts-async' into 'master'Michael Kozono
Load search result counts asynchronously (CE) See merge request gitlab-org/gitlab-ce!31663
2019-08-13Merge branch 'sh-fix-import-export-suggestions' into 'master'Michael Kozono
Properly save suggestions in project exports Closes #65880 See merge request gitlab-org/gitlab-ce!31690
2019-08-13Enable use of Rails' new cookie encryptionHeinrich Lee Yu
Old cookies are still valid and are automatically upgraded by Rails
2019-08-12Load search result counts asynchronouslyMarkus Koller
Querying all counts for the different search results in the same request led to timeouts, so we now only calculate the count for the *current* search results, and request the others in separate asynchronous calls.
2019-08-12Merge branch '65790-highlight' into 'master'Annabel Dunstone Gray
Adds highlight to collapsible line in job log Closes #65790 See merge request gitlab-org/gitlab-ce!31665
2019-08-12Resolve "Add externalization and fix regression in shortcuts helper modal"Thomas Randolph
2019-08-12Merge branch 'update-graphicsmagick-to-1.3.33' into 'master'Stan Hu
Update GraphicsMagick from 1.3.29 to 1.3.33 See merge request gitlab-org/gitlab-ce!31692
2019-08-12Update GraphicsMagick from 1.3.29 to 1.3.33 for CI testsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2019-08-12Adds highlight to collapsible lineFilipa Lacerda
In the job log adds a highlight when hovering the collapsible line
2019-08-12Merge branch '65278-fix-puma-master-counter-wipe' into 'master'Stan Hu
Fix active metric files being wiped after the app starts See merge request gitlab-org/gitlab-ce!31668
2019-08-12Merge branch 'georgekoltsov/63408-user-mapping' into 'master'Grzegorz Bizon
Add author lines to project import comments See merge request gitlab-org/gitlab-ce!31579
2019-08-12Merge branch 'georgekoltsov/51260-add-filtering-to-bitbucket-server-import' ↵Tim Zallmann
into 'master' Add BitBucketServerImport project filtering See merge request gitlab-org/gitlab-ce!31420
2019-08-12Merge branch 'alipniagov-fix-wiki_can_not_be_created_total-counter' into ↵Thong Kuah
'master' Fix :wiki_can_not_be_created_total counter See merge request gitlab-org/gitlab-ce!31673
2019-08-12Fix metric files being wiped after the app startsAleksei Lipniagov
When we hit our app with the initial request, in `warmup`, some metrics already being created as well as corresponding files. If we do `multiproc_file_dir` cleanup after that, we delete the files from the dir while keeping them in memory which leads to the incorrect behavior: the metric is being updated in in-memory, while is not present in the db, not sent to Prometheus as the result.
2019-08-12Merge branch '61332-web-ide-mr-branch-dropdown-closes-unexpectedly' into ↵Kushal Pandya
'master' Resolve "Web IDE MR/branch dropdown closes unexpectedly" Closes #61332 See merge request gitlab-org/gitlab-ce!31523
2019-08-12Add BitbucketServerController filtering specGeorge Koltsov
2019-08-12Add changelog entryGeorge Koltsov
2019-08-12Merge branch ↵Filipa Lacerda
'44036-someone-edited-the-issue-at-the-same-time-is-regularly-seen-despite-that-being-a-filthy-lie' into 'master' Fix incorrectly displayed conflict warning See merge request gitlab-org/gitlab-ce!31469
2019-08-12Merge branch 'sh-break-out-invited-group-members' into 'master'Ash McKenzie
Make it easier to find invited group members Closes #61948 See merge request gitlab-org/gitlab-ce!28436
2019-08-12Add kbd shortcuts for discussion navigationSam Bigelow
Add keyboard shortcuts `p` and `n` to navigate duscussions.
2019-08-12Fix conflict warning being incorrectly displayedHeinrich Lee Yu
Hide warning when update request is in progress
2019-08-11Properly save suggestions in project exportsStan Hu
Previously imports would fail if a merge request note included a suggestion with an `ActiveRecord::HasManyThroughCantAssociateThroughHasOneOrManyReflection` exception. This was happening because suggestions were listed as a descendant of merge requests, but this doesn't work because suggestions are directly associated with notes, not merge requests, and that association is lost. Rails also disallows creating intializing a has_many association through a different object. We fix this by making `suggestions` a child of `notes` within a merge request. This doesn't fix previously broken exported project exports, but new exports will work. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65880
2019-08-10Replace ... with new expansion optionsSamantha Ming
- expand upwards - expand downwards - expand all in both inline and parallel views
2019-08-10Split MR widget into cached and non-cached serializersIgor
Splits auto-refreshing of MR widget into 2 requests: - the one which uses etag-caching and invalidates the fields on change - the one without caching The idea is to gradually move all the fields to etag-cached endpoint
2019-08-09Merge branch 'issue_58494' into 'master'Robert Speicher
Prevent rewritting plain links as embedded Closes #58494 See merge request gitlab-org/gitlab-ce!31489
2019-08-09Remove gfm_embed_metrics flag from BETristan Read
Removes the feature flag that controls whether metrics dashboard urls unfurl the metrics dashboard charts.
2019-08-09Adds button to download metrics data as csvLaura Montemayor
This MR adds a temporary button to be able to download the Prometheus metrics from charts to CSV format.
2019-08-09Merge branch 'master' into sh-break-out-invited-group-membersStan Hu
2019-08-09Add repo-refs control for search pageminghuan lei
- only in blobs result
2019-08-09Merge branch 'revert-d61dab91' into 'master'Bob Van Landuyt
Revert "Merge branch '65152-selective-highlight' into 'master'" See merge request gitlab-org/gitlab-ce!31643
2019-08-09Merge branch 'fix-job-log-formatting' into 'master'Filipa Lacerda
Fix job log where spans were displayed in block Closes #65686 See merge request gitlab-org/gitlab-ce!31674
2019-08-09Improve layout of dropdowns in metrics pageMiguel Rincon
Ensure layout works on xs and sm screens Add check in case buttons are not present Apply Prettier to file Remove unused class and div, reduce margins
2019-08-09Resolve "Add tooltip to improve clarity of "detached" label/state in the ↵Nick Kipling
merge request pipeline"
2019-08-09Fix job log where spans were displayed in blockFabio Pitino
This is a temporary, not ideal, solution but it fixes the main issue that the customer are complaining about, which is that color changes are broken down in several lines which makes the log not readable.
2019-08-09Fix :wiki_can_not_be_created_total counterAleksei Lipniagov
2019-08-09Merge branch 'visual-review-tools-constant-storage-keys' into 'master'Paul Slaughter
Visual review app gitlab storage keys See merge request gitlab-org/gitlab-ce!31427
2019-08-09Shrink size of please register or sign in boxMarcel van Remmerden
2019-08-09Invalidate branches cache on PostReceivePatrick Bajao
Whenever `PostReceive` is enqueued, `UpdateMergeRequestsWorker` is enqueued and `MergeRequests::RefreshService` is called, it'll check if the source branch of each MR asssociated to the push exists or not via `MergeRequest#source_branch_exists?`. The said method will call `Repository#branch_exists?` which is cached in `Rails.cache`. When the cache contains outdated data and the source branch actually exists, the `MergeRequests#RefreshService` job will close associated MRs which is not correct. The fix is to expire the branches cache of the project so we have updated data during the post receive hook which will help in the accuracy of the check if we need to close associated MRs or not.
2019-08-09Revert "Merge branch ↵Winnie Hellmann
'4221-board-milestone-should-persist-any-none-properly-ce' into 'master'" This reverts merge request !30613
2019-08-09Add Gitaly and Rugged call timing in Sidekiq logsStan Hu
This will help identify Sidekiq jobs that invoke excessive number of filesystem access. The timing data is stored in `RequestStore`, but this is only active within the middleware and is not directly accessible to the Sidekiq logger. However, it is possible for the middleware to modify the job hash to pass this data along to the logger.
2019-08-09Focus on the input when clicked outside the inputHimanshu Kapoor
Fixed in MR list and branch list components. Earlier clicking right outside the input box closed the dropdown, which was unexpected behaviour. To make it consistent with the behaviour of select2 jquery plugin, I have made clicking outside the input focus on the input by using a label.
2019-08-09Merge branch '39217-remove-kubernetes-service-integration' into 'master'James Lopez
Remove KubernetesService integration See merge request gitlab-org/gitlab-ce!31365
2019-08-09Merge branch '65700-document-max-replication-slots-pg-ha' into 'master'Achilleas Pipinellis
Add max_replication_slots to PG HA documentation Closes #65700 See merge request gitlab-org/gitlab-ce!31534