1. 23 7月, 2019 1 次提交
  2. 22 7月, 2019 1 次提交
  3. 20 7月, 2019 2 次提交
  4. 18 7月, 2019 1 次提交
  5. 17 7月, 2019 1 次提交
  6. 16 7月, 2019 2 次提交
  7. 14 7月, 2019 1 次提交
  8. 12 7月, 2019 1 次提交
  9. 05 7月, 2019 3 次提交
  10. 04 7月, 2019 3 次提交
  11. 03 7月, 2019 5 次提交
  12. 02 7月, 2019 5 次提交
  13. 01 7月, 2019 1 次提交
  14. 29 6月, 2019 1 次提交
  15. 27 6月, 2019 1 次提交
    • T
      Add cluster_id to deployments table as an FK · 525edec7
      Thong Kuah 提交于
      We nullify when cluster is deleted as we want to keep the deployment
      record around.
      
      Add cluster as an optional association
      
      We will have only cluster for deployments where the build deploys to a
      kubernetes cluster
      525edec7
  16. 26 6月, 2019 2 次提交
  17. 25 6月, 2019 5 次提交
  18. 21 6月, 2019 1 次提交
    • V
      Don't show private keys for letsencrypt certs · 6119d5ad
      Vladimir Shushlin 提交于
      Adds enum certificate_source to pages_domains table
      with default manually_uploaded
      
      Mark certificates as 'gitlab_provided'
      if the were obtained through Let's Encrypt
      
      Mark certificates as 'user_provided' if they were uploaded through
      controller or api
      
      Only show private key in domain edit form if it is 'user_provided'
      
      Only show LetsEncrypt option if is enabled by application settings
      (and feature flag)
      
      Refactor and fix some specs to match new logic
      
      Don't show Let's Encrypt certificates as well
      6119d5ad
  19. 20 6月, 2019 2 次提交
    • O
      Automatically update MR merge-ref along merge status · 3af348b6
      Oswaldo Ferreira 提交于
      This couples the code that transitions the `MergeRequest#merge_status`
      and refs/merge-requests/:iid/merge ref update.
      
      In general, instead of directly telling `MergeToRefService` to update
      the merge ref, we should rely on `MergeabilityCheckService` to keep
      both the merge status and merge ref synced. Now, if the merge_status is
      `can_be_merged` it means the merge-ref is also updated to the latest.
      
      We've also updated the logic to be more systematic and less user-based.
      3af348b6
    • S
      Remove import columns from projects table · 6c0bc9ab
      Stan Hu 提交于
      In https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/21497, we
      migrated all project import data into a separate table,
      `project_import_data`.  In addition, we also added:
      
      ```
      ignore_column :import_status, :import_jid, :import_error
      ```
      
      In https://gitlab.com/gitlab-com/gl-infra/production/issues/908, we
      observed some of these `import_error` columns consumed megabytes of
      error backtraces and caused slow loading of projects whenever a `SELECT
      * from projects` query loaded the row into memory.
      
      Since we have long migrated away from these columns, we can now drop
      these columns entirely.
      6c0bc9ab
  20. 19 6月, 2019 1 次提交