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-15Adds download CSV functionality to dropdown in metricsLaura Montemayor
This MR adds the functionality to download metrics data as CSV. It also removes the exportMetricsToCsvEnabled feature flag which was used before the dropdown was implemented to display a button.
2019-08-15Add link to resend confirmation emailAlex Buijs
This link is shown when a user tries to login with an unconfirmed email address and the grace period has expired
2019-08-15Changed selection classes to harmonize with other settingsMarc Schwede
2019-08-14Migrate remaining users with null private_profileAdam Hegyi
2019-08-14Merge remote-tracking branch ↵John T Skarbek
'dev/security-2873-restrict-slash-commands-to-users-who-can-log-in'
2019-08-14Revert "Merge branch '64341-data-and-privacy-agreement-for-gitlab-users' ↵Kushal Pandya
into 'master'" This reverts merge request !30808
2019-08-14Track page views for cycle analytics show pageAdam Hegyi
This change adds a new counter 'cycle_analytics_views' to the usage data metrics to count the page views for cycle analytics show page.
2019-08-14Fix style-lint errors in wiki.scssHimanshu Kapoor
There were two errors: duplicate styles and @extend used with a class name. I added `.top-area` class to all the instances where `.wiki-page-header` is used since %top-area didn't really make a lot of sense as a placeholder selector. This is also consistent with behaviour on other pages where the `.top-area` class is used alongside the other classes for the specific header styling.
2019-08-14Merge branch 'sh-optimize-commit-deltas-post-receive' into 'master'Nick Thomas
Reduce Gitaly calls in PostReceive Closes #65878 See merge request gitlab-org/gitlab-ce!31741
2019-08-14Add notification for updated privacy policyDennis Tang
This adds a notification to let users know of our updated privacy policy. Users can dismiss the notification either by following the link or closing the notification via an "x" icon.
2019-08-14Merge branch '10-adjust-copy-for-adding-additional-members' into 'master'Tim Zallmann
Adjust copy for adding additional members See merge request gitlab-org/gitlab-ce!31726
2019-08-14Merge branch '66008-fix-project-image-in-slack-notifications' into 'master'Robert Speicher
Fix project avatar image in Slack pipeline notifications Closes #66008 See merge request gitlab-org/gitlab-ce!31788
2019-08-14Add usage pings for source code pushesIgor
Source Code Usage Ping for Create SMAU
2019-08-14Merge branch 'bump_helm_kubectl_gitlab' into 'master'Douglas Barbosa Alexandre
Bump Helm to 2.14.3 and kubectl to 1.11.10 See merge request gitlab-org/gitlab-ce!31716
2019-08-13Rework retry strategy for remote mirrorsBob Van Landuyt
**Prevention of running 2 simultaneous updates** Instead of using `RemoteMirror#update_status` and raise an error if it's already running to prevent the same mirror being updated at the same time we now use `Gitlab::ExclusiveLease` for that. When we fail to obtain a lease in 3 tries, 30 seconds apart, we bail and reschedule. We'll reschedule faster for the protected branches. If the mirror already ran since it was scheduled, the job will be skipped. **Error handling: Remote side** When an update fails because of a `Gitlab::Git::CommandError`, we won't track this error in sentry, this could be on the remote side: for example when branches have diverged. In this case, we'll try 3 times scheduled 1 or 5 minutes apart. In between, the mirror is marked as "to_retry", the error would be visible to the user when they visit the settings page. After 3 tries we'll mark the mirror as failed and notify the user. We won't track this error in sentry, as it's not likely we can help it. The next event that would trigger a new refresh. **Error handling: our side** If an unexpected error occurs, we mark the mirror as failed, but we'd still retry the job based on the regular sidekiq retries with backoff. Same as we used to The error would be reported in sentry, since its likely we need to do something about it.
2019-08-13Merge branch 'sh-only-flush-tags-once-per-push' into 'master'Douwe Maan
Only expire tag cache once per push See merge request gitlab-org/gitlab-ce!31641
2019-08-13Fix project image in Slack pipeline notificationsNathan Friend
This commit fixes the project avatar images that are rendered in the footer of Slack pipeline notifications. Previously, the image URLs provided to Slack were relative URLs; now they are absolute.
2019-08-13representing error message with .flash-container elementMesut Güneş
2019-08-13Update personal access token api scope descriptionNick Kipling
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-13Reduce Gitaly calls in PostReceiveStan Hu
This commit reduces I/O load and memory utilization during PostReceive for the common case when no project hooks or services are set up. We saw a Gitaly N+1 issue in `CommitDelta` when many tags or branches are pushed. We can reduce this overhead in the common case because we observe that most new projects do not have any Web hooks or services, especially when they are first created. Previously, `BaseHooksService` unconditionally iterated through the last 20 commits of each ref to build the `push_data` structure. The `push_data` structured was used in numerous places: 1. Building the push payload in `EventCreateService` 2. Creating a CI pipeline 3. Executing project Web or system hooks 4. Executing project services 5. As the return value of `BaseHooksService#execute` 6. `BranchHooksService#invalidated_file_types` We only need to generate the full `push_data` for items 3, 4, and 6. Item 1: `EventCreateService` only needs the last commit and doesn't actually need the commit deltas. Item 2: In addition, `Ci::CreatePipelineService` only needed a subset of the parameters. Item 5: The return value of `BaseHooksService#execute` also wasn't being used anywhere. Item 6: This is only used when pushing to the default branch, so if many tags are pushed we can save significant I/O here. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65878 Fic
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-12Add changelog entryAlex Buijs
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-12Bump Helm to 2.14.3 and kubectl to 1.11.10Thong Kuah
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