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-04-27Add Let's Encrypt application settingsVladimir Shushlin
Store Let's Encrypt account email in application settings Also add explicit terms of service consent
2019-04-27Add deployment events to chat notification servicesJason Goodman
This enables sending a chat message to Slack or Mattermost upon a successful, failed, or canceled deployment
2019-04-26Add ProjectMetricsDashboardSetting model and tableReuben Pereira
This new table will be used to store the external_dashboard_url which allows users to add a link to their external dashboards (ex Grafana) to the Metrics dashboard.
2019-04-23Merge branch 'upgrade-to-rails-5-1' into 'master'Rémy Coutable
Upgrade Rails to 5.1 See merge request gitlab-org/gitlab-ce!27480
2019-04-23Merge branch 'pages-domain-letsencrypt-settings' into 'master'Andreas Brandl
Add auto_ssl_enabled to pages domains See merge request gitlab-org/gitlab-ce!27304
2019-04-23Upgrade Rails to 5.1.6.1Jasper Maes
Model.new.attributes now also returns encrypted attributes.
2019-04-17Bump version of knative from 0.3 -> 0.5Chris Baumbauer
2019-04-12Add auto_ssl_enabled for pages domainsVladimir Shushlin
2019-04-11Restore index on services.typeSean McGivern
2019-04-10Revert "Remove HipChat integration from GitLab"Sean McGivern
This reverts commit a5378665a1dc0b9c8dc3a4fa279a0eb78aac5aac.
2019-04-09Mark unverified pages domains for removalVladimir Shushlin
Set pages_domain.remove_at when disabling it Add specs for marking pages domain for removal Notify user that domain is being removed Add documentation
2019-04-09Move Contribution Analytics related spec in ↵Imre Farkas
spec/features/groups/group_page_with_external_authorization_service_spec to EE
2019-04-09Fix backport of project_creation_level migrationKamil Trzciński
2019-04-09Fix the backported migrationMichael Kozono
For those who upgraded to a version that included the previous backport implementation with migration 20190311132500.
2019-04-08Backport `add_default_project_creation_setting` to CEKamil Trzciński
2019-04-06Add Knative metrics to PrometheusChris Baumbauer
2019-04-05Add part of needed codeGosia Ksionek
Add columns to store project creation settings Add project creation level column in groups and default project creation column in application settings Remove obsolete line from schema Update migration with project_creation_level column existence check Rename migrations to avoid conflicts Update migration methods Update migration method
2019-04-05Revert "Merge branch 'if-57131-external_auth_to_ce' into 'master'"Andreas Brandl
This reverts merge request !26823
2019-04-05Move Contribution Analytics related spec in ↵Imre Farkas
spec/features/groups/group_page_with_external_authorization_service_spec to EE
2019-04-05Add limit of 128 characters to users nameBrandon Labuschagne
Truncate existing users names which exceed 128 characters Include test for truncating users names
2019-04-02Merge branch 'jarv/dev-to-gitlab-2019-04-02' into 'master'Robert Speicher
Jarv/dev to gitlab 2019 04 02 Closes #2810 See merge request gitlab-org/gitlab-ce!26846
2019-04-02Merge branch 'issue_51789_part_1' into 'master'Sean McGivern
Migrate issuable states to integer patch 1 of 2 Closes #51789 See merge request gitlab-org/gitlab-ce!25107
2019-04-02Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into ↵John Jarvis
jarv/dev-to-gitlab-2019-04-02
2019-04-02Add new field to Clusters tableMayra Cabrera
Adds boolean field 'managed' to clusters table. This new column will be used to distinguish those clusters that are automatically managed by gitlab. Needed for https://gitlab.com/gitlab-org/gitlab-ce/issues/56557
2019-03-28Merge branch '54670-external-diffs-when-outdated' into 'master'Sean McGivern
Allow external diffs to be used conditionally Closes #54670 See merge request gitlab-org/gitlab-ce!25432
2019-03-27Merge masterFelipe Artur
2019-03-27Allow external diffs to be used conditionallyNick Thomas
Since external diffs are likely to be a bit slower than in-database ones, add a mode that makes diffs external after they've been obsoleted by events. This should strike a balance between performance and disk space. A background cron drives the majority of migrations, since diffs become outdated through user actions.
2019-03-27Prepare suggestion implementation for multi-lineOswaldo Ferreira
Adds the groundwork needed in order to persist multi-line suggestions, while providing the parsing strategy which will be reused for the **Preview** as well.
2019-03-26Add multi-line suggestion migrationsOswaldo Ferreira
Adds outdated, lines_above and lines_below columns to suggestions table. outdated - boolean which represents whether the suggestion is outdated or not. For instance, if any line changed after you left the multi-line suggestion, even though the note is not outdated, it helps tracking if the content has changed in the latest file. We cache this information in a column given it's not a cheap operation to do for every suggestion in the request time. lines_below, lines_above - persists the parsed arguments from `suggestion:-10+3` syntax, where `10` would be lines_above and 3 lines_below. We need that to dynamically calculate which lines we should monitor for outdating / persisting the correct content in from_content column.
2019-03-26Add multiple assignees migration and table populationOswaldo Ferreira
This will be further required for supporting multi-assignees MRs
2019-03-20Return cached languages if they've been detected beforeIgor Drozdov
2019-03-13Run rubocop -aNick Thomas
2019-03-12Enable/disable Auto DevOps at Group levelMayra Cabrera
- Includes instance methods on Group model to detect when a group has AutoDevOps explicitly/implicitly enabled/disabled. - Includes migration to add a new column to namespaces table - Add UI necessary modifications - Add service and controller to update auto devops related instances - Updates project and groups auto devops badges Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52447
2019-03-08Add support for ingress hostnameswalkafwalka
2019-03-06Revert "Merge branch '54924-clean-up-data' into 'master'"Robert Speicher
This reverts commit c9ecc71ab91b0b55f9aba632f9e7b305191a458c, reversing changes made to c3c8dbf8fa4090bb090071d320a31857eb709d3d.
2019-03-06Use encrypted runner tokensKamil Trzciński
This makes code to support encrypted runner tokens. This code also finished previously started encryption process.
2019-03-01Clean up `noteable_id` for notes on commitsHeinrich Lee Yu
This was incorrectly set by a bug in: https://gitlab.com/gitlab-org/gitlab-ce/issues/54924
2019-02-28Merge branch '56863-system-messages-in-email' into 'master'Douglas Barbosa Alexandre
Show header and footer system messages in email Closes #56863 See merge request gitlab-org/gitlab-ce!25474
2019-02-28Add project level config for merge pipelinesShinya Maeda
Add schema Add CE counter part Add default value for Add changelog Fix schema Add test Fix schema Fix schema version Remove default value for
2019-02-27Show header and footer system messages in emailAlexandru Croitor
* Add email_header_and_footer_enabled flag to appearances table * Set email_header_and_footer_enabled default value to false * Add checkbox to appearance to toggle show header and footer in emails * Add email_header_and_footer_enabled to allowed params in controller * Add header and footer messages to the html and text email layouts * Remove the color styling for emails header and footer * Add empty_mailer layout for emails without layout, to have the header and footer applied
2019-02-27add trigram database index on tagsAlexis Reigel
2019-02-27Merge branch ↵Kamil Trzciński
'10014-ee-spec-models-ci-build_spec-rb-ee-spec-requests-api-runner_spec-rb-and-ee-spec-services-ci-process_pipeline_service_spec-rb-are-all-failing-ce' into 'master' Revert "Merge branch 'revert-8baf9e5f' into 'master'" See merge request gitlab-org/gitlab-ce!25584
2019-02-27Merge branch '42086-project-fetch-statistics-api-http-only' into 'master'Nick Thomas
Resolve "Project fetch statistics API (HTTP only)" Closes #42086 See merge request gitlab-org/gitlab-ce!23596
2019-02-27Revert "Merge branch 'revert-8baf9e5f' into 'master'"Matija Čupić
This reverts commit f5201a816f2eff9393e16f362403451e5d86ee6c, reversing changes made to 48e6db0dad6f256e8423e0bd6c9b254803f50ccf.
2019-02-27Add project http fetch statistics APIJacopo
The API get projects/:id/traffic/fetches allows user with write access to the repository to get the number of clones for the last 30 days.
2019-02-27Persist source sha and target sha for merge pipelinesShinya Maeda
source_sha and target_sha are used for merge request pipelines
2019-02-26Revert "Merge branch '13784-simple-masking-of-protected-variables-in-logs' ↵Kamil Trzciński
into 'master'" This reverts merge request !25293
2019-02-26Add Maskable concern for CI variablesMatija Čupić
This adds a concern that abstracts the concept of masking a variable, including the RegEx for validation.
2019-02-21Port EE System Header And Footer feature to CEDouwe Maan
remove EE specific code remove EE licence checks move migration from EE to CE folder structure move specs from EE to CE folder structure remove EE specific flag specs
2019-02-19Merge branch 'master' into issue_51789_part_1Felipe Artur