Skip to content
Snippets Groups Projects
  1. Feb 13, 2020
  2. Nov 25, 2019
    • Arturo Herrero's avatar
      Encrypt application settings with pre and post deployments · cc9a30c7
      Arturo Herrero authored
      We had concerns about the cached values on Redis with the previous two
      releases strategy:
      
      First release (this commit):
        - Create new encrypted fields in the database.
        - Start populating new encrypted fields, read the encrypted fields or
          fallback to the plaintext fields.
        - Backfill the data removing the plaintext fields to the encrypted
          fields.
      Second release:
        - Remove the virtual attribute (created in step 2).
        - Drop plaintext columns from the database (empty columns after
          step 3).
      
      We end up with a better strategy only using migration scripts in one
      release:
        - Pre-deployment migration: Add columns required for storing encrypted
          values.
        - Pre-deployment migration: Store the encrypted values in the new
          columns.
        - Post-deployment migration: Remove the old unencrypted columns
      cc9a30c7
  3. Nov 21, 2019
    • Arturo Herrero's avatar
      Encrypt application setting tokens · 03ae7517
      Arturo Herrero authored
      This is the plan to encrypt the plaintext tokens:
      
      First release (this commit):
        1. Create new encrypted fields in the database.
        2. Start populating new encrypted fields, read the encrypted fields or
           fallback to the plaintext fields.
        3. Backfill the data removing the plaintext fields to the encrypted fields.
      
      Second release:
        4. Remove the virtual attribute (created in step 2).
        5. Drop plaintext columns from the database (empty columns after step 3).
      03ae7517
  4. Nov 19, 2019
  5. Nov 04, 2019
  6. Oct 22, 2019
  7. Sep 20, 2019
  8. Sep 18, 2019
  9. Sep 17, 2019
  10. Sep 16, 2019
  11. Sep 13, 2019
  12. Sep 12, 2019
  13. Sep 10, 2019
  14. Sep 05, 2019
    • Fabio Pitino's avatar
      CE port for pipelines for external pull requests · ca6a1f33
      Fabio Pitino authored
      Detect if pipeline runs for a GitHub pull request
      
      When using a mirror for CI/CD only we register a pull_request
      webhook. When a pull_request webhook is received, if the
      source branch SHA matches the actual head of the branch in the
      repository we create immediately a new pipeline for the
      external pull request. Otherwise we store the
      pull request info for when the push webhook is received.
      
      When using "only/except: external_pull_requests" we can detect
      if the pipeline has a open pull request on GitHub and create or
      not the job based on that.
      ca6a1f33
    • Cédric Tabin's avatar
      New interruptible attribute supported in YAML parsing. · e195e486
      Cédric Tabin authored
      Since it is not possible to dynamically detect if a job is automatically
      cancellable or not, a this new attribute is necessary. Moreover, it let
      the maintainer of the repo to adjust the behaviour of the auto cancellation
      feature to match exactly what he needs.
      e195e486
    • Kerri Miller's avatar
      Add structure to support EE feature of COAR · 0e40b41e
      Kerri Miller authored and Nick Thomas's avatar Nick Thomas committed
      These are the structural changes for supporting the EE feature of moving
      "code_owner_approval_required" state from existing on a project to being
      on the protected branches individually, allowing for CODEOWNER
      validation on push events.
      0e40b41e
  15. Sep 04, 2019
  16. Sep 03, 2019
  17. Sep 02, 2019
    • Andreas Brandl's avatar
      Remove Users.support_bot column · 1b81a81b
      Andreas Brandl authored
      This column is not present in `db/schema.rb` and hence needs to be
      removed conditionally.
      
      See https://gitlab.com/gitlab-org/gitlab-ce/issues/66901 for background
      Unverified
      1b81a81b
    • Andreas Brandl's avatar
      Replace indexes for counting active users · 5b4108f0
      Andreas Brandl authored
      This adjusts the partial condition for an index. The index is intended
      to be used when counting active users with `ghost IS NOT TRUE AND
      bot_type IS NULL`.
      
      With the current index, this wasn't working as the partial condition
      didn't match the query: `ghost <> TRUE` is not semantically equivalent
      to `ghost IS NOT TRUE` (null semantics).
      
      The reason we add an index particularly intended for EE is that the EE
      query is going to have the additional part `AND bot_type IS NULL`
      whereas the CE query doesn't. Logically, it'd be enough to have an index
      for `ghost IS NOT TRUE`. However, on GitLab.com, the query planner makes
      poor choices when the additional `AND bot_type IS NULL` part is present:
      It goes for the index on `bot_type` and doesn't use the partial index.
      
      Note the existing index isn't being used at all according to GitLab.com
      index statistics. Hence we can first remove it and don't have to worry
      about the window of time without an index.
      
      Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/66770
      Unverified
      5b4108f0
  18. Aug 30, 2019
  19. Aug 29, 2019
  20. Aug 28, 2019
  21. Aug 27, 2019
  22. Aug 26, 2019
Loading