Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 7月 16, 2024
  2. 7月 11, 2024
  3. 7月 04, 2024
  4. 6月 27, 2024
  5. 6月 18, 2024
  6. 6月 10, 2024
  7. 6月 07, 2024
  8. 6月 06, 2024
  9. 6月 05, 2024
  10. 5月 24, 2024
  11. 5月 13, 2024
  12. 5月 09, 2024
  13. 5月 07, 2024
  14. 5月 03, 2024
  15. 4月 23, 2024
  16. 4月 17, 2024
  17. 3月 29, 2024
  18. 3月 05, 2024
  19. 2月 23, 2024
  20. 2月 16, 2024
  21. 2月 13, 2024
  22. 2月 03, 2024
  23. 2月 02, 2024
  24. 2月 01, 2024
  25. 1月 24, 2024
  26. 1月 17, 2024
  27. 1月 05, 2024
    • Stan Hu's avatar
      Make bundler-checksum work with Bundler v2.5.0 (part 2) · 79a61126
      Stan Hu 创作于
      Bundler v2.5.0 introduced a CHECKSUMS section in Gemfile.lock and
      significantly refactored checksums into `Bundler::Checksum`.  The
      refactoring dropped the `Bundler::RubyGemsGemInstaller#checksum_type`
      method, causing pre-install checks to fail with `NoMethodError:
      undefined method 'checksum_type'` as seen in
      https://gitlab.com/gitlab-org/gitlab/-/jobs/5861840560.
      
      This commit fixes the digest comparison to use the digest set
      in `Bundler::Checksum`. This change needs to be backwards
      compatible with Bundler v2.4.x until we require v2.5.x.
      
      Changelog: fixed
      未验证
      79a61126
    • Stan Hu's avatar
      Fix Ruby not starting if newer version of date gem installed · 5779c228
      Stan Hu 创作于
      If you had date v3.3.4 installed, Puma and Sidekiq would not start
      due to this error message:
      
      ```
      `check_for_activated_spec!': You have already activated date
       3.3.4, but your Gemfile requires date 3.3.3. Prepending `bundle
      exec` to your command may solve this. (Gem::LoadError)
      ```
      
      This occurred because the `require 'date'` inside
      `vendor/gems/attr_encrypted/attr_encrypted.gemspec` caused
      Ruby to load the latest version of `date`, but then this conflicts
      with the version specified in `Gemfile.lock`.
      
      To avoid this problem, drop the use of the date in the gemspec.
      未验证
      5779c228
  28. 1月 04, 2024
  29. 12月 23, 2023
  30. 12月 18, 2023
  31. 12月 13, 2023
  32. 12月 05, 2023
  33. 11月 24, 2023
  34. 11月 21, 2023
加载中