BigW Consortium Gitlab

  1. 18 Jul, 2017 3 commits
  2. 17 Jul, 2017 3 commits
  3. 14 Jul, 2017 5 commits
  4. 13 Jul, 2017 3 commits
  5. 12 Jul, 2017 1 commit
  6. 11 Jul, 2017 1 commit
  7. 10 Jul, 2017 2 commits
  8. 07 Jul, 2017 19 commits
    • Remove many N+1 queries with merge requests API · b963d45c
      Stan Hu authored
      Identified via `ENABLE_BULLET=1 bundle exec rspec spec/requests/api/merge_requests_spec.rb:34`
      
      Improves speed of #34159
    • fix spec · 6d28ad84
      James Lopez authored
    • fix created_after · e5acf85c
      James Lopez authored
    • Native group milestones · b5f596c3
      Felipe Artur authored
    • Added EachBatch for iterating tables in batches · ff78af15
      Yorick Peterse authored
      This module provides a class method called `each_batch` that can be used
      to iterate tables in batches in a more efficient way compared to Rails'
      `in_batches` method. This commit also includes a RuboCop cop to
      blacklist the use of `in_batches` in favour of this new method.
    • Fix dashboard labels dropdown · 6b4da27e
      Nick Thomas authored
    • Use new `each_batch` helper instead of custom one · b41b4d2e
      Grzegorz Bizon authored
      In stage_id backgrond migration.
    • Speed up `all_commit_shas` for new merge requests · 4c0864fd
      Sean McGivern authored
      For merge requests created after 9.4, we have a `merge_request_diff_commits`
      table we can get all the SHAs from very quickly. We just need to exclude these
      when we load from the legacy format, by ignoring diffs with no serialised
      commits.
      
      Once these have been migrated in the background, every MR will see this
      improvement.
    • Added EachBatch for iterating tables in batches · 5f9c8458
      Yorick Peterse authored
      This module provides a class method called `each_batch` that can be used
      to iterate tables in batches in a more efficient way compared to Rails'
      `in_batches` method. This commit also includes a RuboCop cop to
      blacklist the use of `in_batches` in favour of this new method.
    • Fix ShaAttribute concern when there is no table · 38fd773b
      Sean McGivern authored
      When this is added to a new model, it would fail before the migrations were run
      - including when trying to run migrations in production mode!
    • Fix offline runner detection · eec8a0b1
      Alessio Caiazza authored
    • Use ancestors for avoiding N queries · bd846f7d
      Shinya Maeda authored
    • Basic BE change · 5b095475
      Shinya Maeda authored
      Fix static-snalysis
      
      Move the precedence of group secure variable before project secure variable. Allow project_id to be null.
      
      Separate Ci::VariableProject and Ci::VariableGroup
      
      Add the forgotton files
      
      Add migration file to update type of ci_variables
      
      Fix form_for fpr VariableProject
      
      Fix test
      
      Change the table structure according to the yorik advice
      
      Add necessary migration files. Remove unnecessary migration spec.
      
      Revert safe_model_attributes.yml
      
      Fix models
      
      Fix spec
      
      Avoid self.variable. Use becomes for correct routing.
      
      Use unique index on group_id and key
      
      Add null: false for t.timestamps
      
      Fix schema version
      
      Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable
      
      Rename the rest of them
      
      Add the rest of files
      
      Basic BE change
      
      Fix static-snalysis
      
      Move the precedence of group secure variable before project secure variable. Allow project_id to be null.
      
      Separate Ci::VariableProject and Ci::VariableGroup
      
      Add the forgotton files
      
      Add migration file to update type of ci_variables
      
      Fix form_for fpr VariableProject
      
      Fix test
      
      Change the table structure according to the yorik advice
      
      Add necessary migration files. Remove unnecessary migration spec.
      
      Revert safe_model_attributes.yml
      
      Fix models
      
      Fix spec
      
      Avoid self.variable. Use becomes for correct routing.
      
      Use unique index on group_id and key
      
      Add null: false for t.timestamps
      
      Fix schema version
      
      Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable
      
      Rename the rest of them
      
      Add the rest of files
      
      Implement CURD
      
      Rename codes related to VariableGroup and VariableProject FE part
      
      Remove unneccesary changes
      
      Make Fe code up-to-date
      
      Add protected flag to migration file
      
      Protected group variables essential package
      
      Update schema
      
      Improve doc
      
      Fix logic and spec for models
      
      Fix logic and spec for controllers
      
       Fix logic and spec for views(pre feature)
      
      Add feature spec
      
      Fixed bugs. placeholder. reveal button. doc.
      
      Add changelog
      
      Remove unnecessary comment
      
      godfat nice catches
      
      Improve secret_variables_for arctecture
      
      Fix spec
      
      Fix StaticAnlysys & path_regex spec
      
      Revert "Improve secret_variables_for arctecture"
      
      This reverts commit c3216ca212322ecf6ca534cb12ce75811a4e77f1.
      
      Use ayufan suggestion for secret_variables_for
      
      Use find instead of find_by
      
      Fix spec message for variable is invalid
      
      Fix spec remove variable.group_id = group.id
      
      godffat spec nitpicks
      
      Use include Gitlab::Routing.url_helpers for presenter spec
    • Don't use Flipper for the Performance Bar · 97611c88
      Rémy Coutable authored
      The implementation now simply rely on the
      `performance_bar_allowed_group_id` Application Setting.
      Signed-off-by: 's avatarRémy Coutable <remy@rymai.me>
  9. 06 Jul, 2017 3 commits