Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 3月 11, 2025
  2. 3月 06, 2025
  3. 2月 08, 2025
  4. 2月 07, 2025
  5. 2月 06, 2025
  6. 1月 26, 2025
  7. 1月 23, 2025
  8. 1月 22, 2025
  9. 1月 17, 2025
  10. 1月 10, 2025
  11. 1月 07, 2025
  12. 12月 27, 2024
  13. 12月 12, 2024
  14. 12月 10, 2024
  15. 11月 19, 2024
  16. 11月 16, 2024
    • Lukas Wanko's avatar
      Allow Sidekiq workers to be disabled by default by configuration · 64cd00b6
      Lukas Wanko 创作于
      Till now, we enabled all workers when a node was connected as a geo
      node; we now only enable the needed geo workers. With that, we can
      in the future disable the offline cloud license provision worker for SaaS.
      
      This features is behind a feature flag disable_bulk_sidekiq_job_activation
      
      EE: true
      Changelog: added
      64cd00b6
  17. 11月 12, 2024
  18. 11月 08, 2024
  19. 10月 29, 2024
  20. 10月 26, 2024
    • Sylvester Chin's avatar
      Support data consistency overrides for specific db in ApplicationWorker · 855dbf09
      Sylvester Chin 创作于
      This change adds a `overrides` keyword argument to the
      `data_consistency` method in `WorkerAttributes`. In
      `MODE_MULTIPLE_DATABASES`, data consistency for specified databases are
      overrriden.
      
      For example, `data_consistency :always, overrides: { ci: :sticky }`
      would stick main db connections to primary while ci db connections will
      prefer the read replicas.
      
      Changelog: other
      855dbf09
  21. 10月 24, 2024
  22. 10月 21, 2024
  23. 10月 16, 2024
  24. 10月 15, 2024
    • Stan Hu's avatar
      Back up secrets.yml if it changes · 2169cb60
      Stan Hu 创作于
      We've seen in development that secrets.yml quietly changed for some
      reason. Back up this file in case the old values need to be restored.
      
      Changelog: changed
      2169cb60
  25. 10月 09, 2024
  26. 10月 07, 2024
  27. 9月 27, 2024
  28. 9月 26, 2024
  29. 9月 25, 2024
  30. 9月 12, 2024
  31. 8月 30, 2024
  32. 8月 27, 2024
  33. 8月 25, 2024
    • Stan Hu's avatar
      Disable Sidekiq worker open transaction check in JS specs · 8decab7a
      Stan Hu 创作于
      When transactional tests are enabled, Rails ensures that all threads
      use the same connection for accessing the database. However this may
      cause a false positive with the Sidekiq worker open transaction
      check because:
      
      1. A browser may have multiple requests in-flight.
      2. A transaction may start in the middle of another request. For example,
      an update to a merge request column initiates a transaction via SAVEPOINT.
      
      To avoid false positives, disable this check for JavaScript feature
      specs run. The alternative is to use the deletion strategy, but that
      would significantly slow tests.
      
      Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/478601
      8decab7a
  34. 8月 13, 2024
    • Igor Drozdov's avatar
      Add ActiveRecord::Enum patch · f08e8c4b
      Igor Drozdov 创作于
      It removes newly introduced check that doesn't allow defining
      an enum without backed column.
      
      A migration job fails because it:
      
      - Performs database migration on a particular version
      - The version does not contain email_confirmation_setting column
      - Performs another migration that initializes Rails env
      - Initializers call Gitlab::CurrentSetting
      - ApplicationSetting tries to define email_confirmation_setting enum
      - Fails because the enum is not backed by a column
      f08e8c4b
  35. 8月 12, 2024
  36. 7月 30, 2024
加载中