Skip to content
Snippets Groups Projects
  1. Jul 15, 2022
    • Michał Zając's avatar
      Add index on security_findings(uuid id DESC) · d8fb8e55
      Michał Zając authored and Adam Hegyi's avatar Adam Hegyi committed
      The index was created asynchronously on GitLab.com via
      !91884
      and this will result in a no-op. This migration is added for other
      GitLab installations.
      
      Changelog: added
      d8fb8e55
    • Carla Drago's avatar
      Update default value for project_import_level · 3c103b2c
      Carla Drago authored and George Koltsov's avatar George Koltsov committed
      This migration changes the default value for the
      project_import_level column on the namespace_settings
      table. It is needed because the initial default was not
      mapped to the member.access_level values of a group (which
      correspond to owner, maintiner, developer etc).
      
      Changelog: fixed
      
      Fix structure.sql schema file
      3c103b2c
  2. Jul 14, 2022
    • Steve Abrams's avatar
      Move finalize background migration to post-deploy · f4223962
      Steve Abrams authored
      Move CleanupBackfillDraftStatusOnMergeRequests to
      post-deployment migration and no-op the standard migration.
      
      Changelog: other
      f4223962
    • Nicolas Dular's avatar
      Preview free user cap only for specific namespaces · 9cda29ff
      Nicolas Dular authored
      This adds the field `include_for_free_user_cap_preview` to
      `namespace_settings` to only show the preview of free user cap when
      1. The Feature flag is enabled (`preview_free_user_cap`)
      2. The namespace has `include_for_free_user_cap_preview` set to `true`
      
      This enables us to rollout the preview per namespace, which would not be
      possible (performant enough) if we would use Feature Flag subjects.
      
      Changelog: added
      9cda29ff
  3. Jul 13, 2022
  4. Jul 12, 2022
  5. Jul 11, 2022
  6. Jul 08, 2022
  7. Jul 07, 2022
    • Michał Zając's avatar
      Create index on security_findings asynchronously · e3047d15
      Michał Zając authored and Mayra Cabrera's avatar Mayra Cabrera committed
      We need an (uuid, id DESC) index on security_findings so that our new
      Vulnerabilities::Finding creation service object doesn't timeout.
      
      The timeout can occur when trying to fetch a security_findings rows via
      an UUID because we have a UNIQUE index on (uuid, scan_id) which models
      the possibility of finding the same exact vulnerability in subsequent
      scans.
      
      Changelog: added
      e3047d15
  8. Jul 06, 2022
  9. Jul 05, 2022
  10. Jul 04, 2022
  11. Jul 01, 2022
  12. Jun 30, 2022
    • Pedro Pombeiro's avatar
      Add ci_runner_versions table · ad889756
      Pedro Pombeiro authored and Mayra Cabrera's avatar Mayra Cabrera committed
      Changelog: added
      ad889756
    • Brian Williams's avatar
      Add sbom_sources table and model · 02400b71
      Brian Williams authored
      This adds a new table named `sbom_sources` along with its associated
      model. This is part two of a three-phase implementation for adding new
      models to support the tracking of Software Bill of Materials (SBoM)
      components in GitLab. `sbom_sources` will be used in order to track the
      location in which an SBoM component originated from. For example,
      library components are typically detected from a dependency file, such
      as `package-lock.json`.
      
      Changelog: added
      02400b71
Loading