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-09-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-12Merge branch 'static-objects-external-storage' into 'master'Thong Kuah
Enable serving static objects from an external storage See merge request gitlab-org/gitlab-ce!31025
2019-09-10Enable serving static objects from an external storageAhmad Sherif
It consists of two parts: 1. Redirecting users to the configured external storage 1. Allowing the external storage to request the static object(s) on behalf of the user by means of specific tokens Part of https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/6829
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-06If user can't activate error tracking display a learn more button pointingManeschi Romain
to doc
2019-09-05Merge branch '66067-pages-domain-doesnt-set-target-blank' into 'master'Dmitriy Zaporozhets
Makes custom Pages domain open as external link in new tab Closes #66067 See merge request gitlab-org/gitlab-ce!32130
2019-09-05Use stub_rails_env for Rails.env stubbingAsh McKenzie
RailsHelpers.stub_rails_env takes care of stubbing Rails.env
2019-09-04Let project reporters create issue from group boardsFelipe Artur
The current state of group issue boards does not show the "Add issues" button on the UI for users that are reporters of group child projects.
2019-09-04Allow for the passing of options to external_linkjakeburden
2019-09-03Create and use external_link helperjakeburden
Creates a helper method that takes body text and a url. The output is a external link with icon. It contains the noopenner noreferrer attributes for security. Usage: external_link(domain.title, domain.url) Add rspec test for ExternalLinkHelper Add changelog for MR 32130
2019-09-03Merge branch '66741-remove-spec-rails_helper-rb' into 'master'Grzegorz Bizon
Remove spec/rails_helper.rb Closes #66741 See merge request gitlab-org/gitlab-ce!32380
2019-09-02Fix upload URLs in MarkdownHeinrich Lee Yu
Fixes RelativeLinkFilter for users that don't have access to the project's repository
2019-08-30Fix for #56295, https://gitlab.com/gitlab-org/gitlab-ce/issues/56295.Jesse Hall
All avatars now visible in commit trailers.
2019-08-30Improve search result labelsMarkus Koller
- Use "results" instead of "blobs", "wiki blobs", "snippet blobs" - Use "comments" instead of "notes" - Use correct pluralization - Don't add "1 - 10 of" if there's only one page
2019-08-30Replace rails_helper.rb with spec_helper.rbAsh McKenzie
rails_helper.rb's only logic was to require spec_helper.rb.
2019-08-30Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqRobert Speicher
2019-08-30Merge branch 'security-fix-html-injection-for-label-description-ce-master' ↵GitLab Release Tools Bot
into 'master' Fix HTML injection for label description See merge request gitlab/gitlabhq!3250
2019-08-30Merge branch 'security-hide_merge_request_ids_on_emails' into 'master'GitLab Release Tools Bot
Prevent disclosure of merge request id via email See merge request gitlab/gitlabhq!3313
2019-08-30Merge branch 'security-exposed-default-branch' into 'master'GitLab Release Tools Bot
Avoid exposing unaccessible repo data upon GFM post processing See merge request gitlab/gitlabhq!3344
2019-08-29fix: show preferred commit email in empty project pageYuping Zuo
2019-08-29Merge branch 'local-test-failures' into 'master'Robert Speicher
git-user-related local test failures See merge request gitlab-org/gitlab-ce!31437
2019-08-24Change misleading pipeline status tooltipScott Hampton
Some pipeline status icon tooltips were showing "Commit: ..." which customers found to be misleading since it was not the commit that was failing but the pipeline. We are changing all status icon tooltips to say "Pipeline: ..." instead of "Commit: ..." now.
2019-08-21Avoid exposing unaccessible repo data upon GFM processingOswaldo Ferreira
When post-processing relative links to absolute links RelativeLinkFilter didn't take into consideration that internal repository data could be exposed for users that do not have repository access to the project. This commit solves that by checking whether the user can `download_code` at this repository, avoiding any processing of this filter if the user can't. Additionally, if we're processing for a group ( no project was given), we check if the user can read it in order to expand the href as an extra. That doesn't seem necessarily a breach now, but an extra check doesn't hurt as after all the user needs to be able to `read_group`.
2019-08-19Prevent disclosure of merge request id via emailFelipe Artur
Do not disclosure merge request id via email for unauthorized users when closing issues.
2019-08-17UI for disabling group/project email notificationBrett Walker
- Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
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-14Migrates Snowplow backend from EE to CEJeremy Jackson
This introduces several changes, but these are all just ported from the EE project.
2019-08-14Revert "Merge branch '64341-data-and-privacy-agreement-for-gitlab-users' ↵Kushal Pandya
into 'master'" This reverts merge request !30808
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-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-07Add tests for starrers viewsCamil Staps
2019-08-06Add top navigation analytics linkLuke Bennett
2019-08-05Fix HTML injection for label descriptionPatrick Derichs
Add changelog entry Add spec
2019-08-03git-user-related local test failuresDavid H. Wilkins
Some of the tests fail locally due to the git user being different than it is on the test runners. I'd really like to be able to run all of the tests locally.
2019-07-29Change qa-reverse-sort class references to rspec-reverse-sortTanya Pazitny
2019-07-26Merge branch 'remove-nested-groups-checks' into 'master'Lin Jen-Shin
Remove code related to object hierarchy and MySQL Closes #65056 and #65055 See merge request gitlab-org/gitlab-ce!31095
2019-07-26Fix error rendering submodules in MR diffs when there is no .gitmodulesDouwe Maan
Without this change, we get a NoMethodError on nil
2019-07-25Remove code related to object hierarchy in MySQLHeinrich Lee Yu
These are not required because MySQL is not supported anymore
2019-07-24Merge branch '62217-follow-up-from-fix-display-of-promote-to-group-label' ↵Douwe Maan
into 'master' Remove project param from `#show_label_issuables_link?` Closes #62217 See merge request gitlab-org/gitlab-ce!31038
2019-07-24Add links in admin area overviewIllya Klymov
Introduces new `feature_entry` helper for dashboard. This helper reduces code duplication when listing available features and relevant links to configuration sections
2019-07-23Remove project from show_label_issuables_link?Heinrich Lee Yu
The project param is unnecessary here
2019-07-22Ensure SubmoduleHelper works outside view contextDouwe Maan
2019-07-17Fetch latest link in the description for zoom link, add more tests and ↵Rajendra kadam
remove frontend spec unnecessary tests
2019-07-15Hide restricted and disallowed visibility radiosLuke Bennett
Show a message if many levels are restricted and a different message if all levels are restricted.
2019-07-15Add more file extentions to file type icon classPeter Dave Hello