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/db
AgeCommit message (Collapse)Author
2019-04-11Merge branch 'restore-hipchat' into 'master'Nick Thomas
Revert "Remove HipChat integration from GitLab" Closes #60042 See merge request gitlab-org/gitlab-ce!27172
2019-04-11Restore index on services.typeSean McGivern
2019-04-10Fix ApplicationSetting development seedRémy Coutable
It could happen that there's a cached (in Redis) ApplicationSetting record, and calling `Gitlab::CurrentSettings.current_application_settings` only returns it instead of creating a new DB record, which makes the `ApplicationSetting.current_without_cache.update!` call fail. Signed-off-by: Rémy Coutable <remy@rymai.me>
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-09Merge branch 'osw-multi-assignees-merge-requests' into 'master'Nick Thomas
[Backport] Support multiple assignees for merge requests See merge request gitlab-org/gitlab-ce!27089
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-09[CE] Support multiple assignees for merge requestsOswaldo Ferreira
Backports https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10161 (code out of ee/ folder).
2019-04-08Backport `add_default_project_creation_setting` to CEKamil Trzciński
2019-04-06Merge branch '58612-clean-up-notes-data' into 'master'Stan Hu
Clean up `noteable_id` for notes on commits Closes #58612 See merge request gitlab-org/gitlab-ce!26104
2019-04-06Add Knative metrics to PrometheusChris Baumbauer
2019-04-06Clean 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 Also adds a `batch_size` option to `update_column_in_batches`
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-05Merge branch '57493-add-limit-to-user-name' into 'master'Andreas Brandl
Add a length limit of 128 char to the user name field See merge request gitlab-org/gitlab-ce!26146
2019-04-05Merge branch '59162-fix-review-apps-initial-seeding' into 'master'Dmitriy Zaporozhets
Fix race condition in ApplicationSettingImplementation.create_from_defaults Closes #59162 See merge request gitlab-org/gitlab-ce!26319
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-04Add v2 to reserved top level routesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-04-04Fix race cond. in ApplicationSettingImplementation.create_from_defaultsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
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-27Merge branch 'osw-multi-line-suggestions-creation-strategy' into 'master'Andreas Brandl
Prepares suggestion implementation for multi-line support See merge request gitlab-org/gitlab-ce!26057
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-27Merge branch 'qa-create-personal-access-token-in-seeds' into 'master'Andreas Brandl
Add seed for personal access token Closes #59500 See merge request gitlab-org/gitlab-ce!26582
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 seed for personal access tokenSanad Liaquat
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-12Add labels to seeded issues and merge requestsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
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-01Remove auto vacuum logic, decrease batch size and intervalFelipe Artur
2019-03-01Migrate sidekiq queue to the new :hashed_storage namespaceGabriel Mazetto
`project_migrate_hashed_storage` is now `hashed_storage:hashed_storage_project_migrate`
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