Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 3月 08, 2025
  2. 2月 27, 2025
  3. 2月 16, 2025
  4. 2月 10, 2025
  5. 2月 03, 2025
    • Peter Leitzen's avatar
      CI: Don't show dots to indicate RuboCop's progress · 09e1d323
      Peter Leitzen 创作于
      Showing the progress (`.`) in CI does not provide any value and wastes
      CPU and storage resources.
      
      Dots are still shown in local environments (when `CI` is not `1`) or
      when overridden by `--format <something else>` on the command line.
      09e1d323
  6. 1月 31, 2025
  7. 12月 17, 2024
  8. 12月 10, 2024
  9. 12月 09, 2024
    • Halil Coban's avatar
      Add RuboCop rule to enforce class-level allow_access_with_scope · 66ac821c
      Halil Coban 创作于
      Implement RuboCop rule to prevent misuse of allow_access_with_scope
      method. This ensures the method is only used at the class level, not
      nested in namespaces. Because, if this method is called multiple times
      on the same class, the scopes are all aggregated
      
      Changelog: other
      66ac821c
  10. 11月 20, 2024
  11. 11月 14, 2024
  12. 11月 12, 2024
  13. 11月 11, 2024
  14. 11月 05, 2024
  15. 10月 29, 2024
  16. 10月 22, 2024
  17. 10月 21, 2024
  18. 10月 08, 2024
  19. 9月 17, 2024
  20. 8月 22, 2024
  21. 7月 17, 2024
  22. 7月 13, 2024
  23. 7月 03, 2024
  24. 7月 01, 2024
  25. 6月 25, 2024
    • Abdul Wadood's avatar
      Move Include param to .rubocop.yml · b7b73ee0
      Abdul Wadood 创作于
      Here we're moving the Include param that specifies the list of files
      where a cop should run. The param was not working because it should
      reside in the `.rubocop.yml` file and not in the rubocop todo file.
      
      I have checked for other such instance and there are not any.
      b7b73ee0
  26. 6月 12, 2024
    • Nick Malcolm's avatar
      Use the `RESTRICT_ON_SEND` optimization and remove special cases · 9bdcaa1a
      Nick Malcolm 创作于
      Instead of using a double negative @splattael suggested matching on
      all params, ehn permitting when params is used safely.
      
      With that we could simplify the node pattern while making the cop rule
      faster and perhaps more secure. There's no special case made for methods
      like page, per, puts, has_key, etc.
      
      The downside is the number of rubocop exceptions when from 225 to 379.
      9bdcaa1a
  27. 6月 04, 2024
  28. 5月 25, 2024
    • Fabio Pitino's avatar
      Regenerate Rubocop todo file for Gitlab/BoundedContexts · d67231aa
      Fabio Pitino 创作于
      The todo file was not including some files where constants
      were declared in the compact form `class SomeModule::SomeClass`.
      We could have missed to regenerate the todo file after some
      changes in the cop's logic.
      
      Added a spec example to ensure we are covering for the compact
      version.
      d67231aa
  29. 5月 18, 2024
  30. 5月 16, 2024
    • Jon Jenkins's avatar
      Run migrations in milestone order · b807a0ba
      Jon Jenkins 创作于
      Instead of running migrations in integer version order, we will run
      migrations in milestone order, using the 'milestone' parameter added to
      migrations.
      
      Changelog: added
      b807a0ba
  31. 5月 03, 2024
  32. 4月 12, 2024
  33. 3月 28, 2024
  34. 3月 08, 2024
加载中