Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 3月 10, 2025
  2. 2月 26, 2025
  3. 2月 09, 2025
  4. 1月 17, 2025
  5. 12月 20, 2024
  6. 11月 13, 2024
  7. 10月 21, 2024
  8. 10月 16, 2024
  9. 10月 07, 2024
  10. 10月 04, 2024
  11. 9月 17, 2024
  12. 9月 12, 2024
    • Peter Leitzen's avatar
      Detect incompatible use of `Struct.new` in specs · 9e467d81
      Peter Leitzen 创作于
      This commit patches `Struct.new` in specs when `keyword_init` is missing
      and a Hash passed.
      
      Reason: Since Ruby 3.2 `Struct` supports kwargs by default so
      `keyword_init: true` is no longer required.  We are running Ruby 3.2 in
      MRs and Ruby 3.1 on master so occasionally master is broken due to this
      incompatibility.
      
      This slows down creation of Struct objects in specs by factor 3.
      9e467d81
  13. 9月 10, 2024
  14. 9月 09, 2024
  15. 9月 06, 2024
  16. 9月 05, 2024
  17. 8月 12, 2024
    • Igor Drozdov's avatar
      Explicitly state returning columns for p_ci_builds · 3e801a4b
      Igor Drozdov 创作于
      This new PR assigns auto populated columns:
      https://github.com/rails/rails/pull/48241
      
      However, a column is identified as auto-populated if it contains
      default value with nextval function.
      
      The id column of p_ci_builds table is auto-populated via a trigger
      and it's not identified as an auto-populated column by Rails.
      
      Let's explicitly return ['id'] in a function that expects a list
      of auto-populated columns
      3e801a4b
  18. 7月 08, 2024
  19. 6月 27, 2024
  20. 6月 05, 2024
  21. 5月 28, 2024
  22. 5月 23, 2024
  23. 5月 01, 2024
  24. 4月 28, 2024
  25. 4月 24, 2024
  26. 4月 17, 2024
  27. 2月 27, 2024
    • Kassio Borges's avatar
      Fix composability of `:published_event` with `:not_publish_event` · fe7cd8a3
      Kassio Borges 创作于
      Currently it's not possible to use `:published_event` and
      `:not_publish_event` together as both matchers are stubbing the
      `Gitlab::EventStore#publish` method, so only the first matcher will save
      a list of the _published_ events.
      
      To fix that, now we're using `RSpec::PublishedGitlabEventStoreEvents`
      to centralized all the events published within an example. This will
      enable us to match by multiple events or compose `:published_event` and
      `:not_publish_event` in the same spec.
      
      Changelog: fixed
      fe7cd8a3
  28. 2月 20, 2024
  29. 2月 15, 2024
  30. 2月 14, 2024
  31. 2月 08, 2024
  32. 11月 30, 2023
  33. 11月 14, 2023
  34. 11月 03, 2023
  35. 10月 28, 2023
  36. 10月 19, 2023
加载中