bundler 2.7.2 → 4.0.0.beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +990 -917
  3. data/README.md +4 -4
  4. data/bundler.gemspec +3 -3
  5. data/lib/bundler/build_metadata.rb +2 -2
  6. data/lib/bundler/capistrano.rb +1 -19
  7. data/lib/bundler/cli/cache.rb +1 -11
  8. data/lib/bundler/cli/common.rb +20 -3
  9. data/lib/bundler/cli/config.rb +1 -2
  10. data/lib/bundler/cli/console.rb +5 -0
  11. data/lib/bundler/cli/exec.rb +29 -4
  12. data/lib/bundler/cli/gem.rb +19 -33
  13. data/lib/bundler/cli/install.rb +7 -82
  14. data/lib/bundler/cli/issue.rb +2 -2
  15. data/lib/bundler/cli/list.rb +33 -2
  16. data/lib/bundler/cli/plugin.rb +5 -1
  17. data/lib/bundler/cli/show.rb +1 -1
  18. data/lib/bundler/cli/update.rb +3 -3
  19. data/lib/bundler/cli.rb +75 -83
  20. data/lib/bundler/compact_index_client.rb +0 -1
  21. data/lib/bundler/current_ruby.rb +3 -15
  22. data/lib/bundler/definition.rb +45 -35
  23. data/lib/bundler/deployment.rb +1 -64
  24. data/lib/bundler/digest.rb +1 -1
  25. data/lib/bundler/dsl.rb +13 -35
  26. data/lib/bundler/endpoint_specification.rb +0 -22
  27. data/lib/bundler/errors.rb +1 -5
  28. data/lib/bundler/feature_flag.rb +0 -33
  29. data/lib/bundler/fetcher/compact_index.rb +1 -1
  30. data/lib/bundler/friendly_errors.rb +2 -2
  31. data/lib/bundler/index.rb +0 -7
  32. data/lib/bundler/inline.rb +1 -1
  33. data/lib/bundler/installer/gem_installer.rb +0 -11
  34. data/lib/bundler/installer.rb +0 -6
  35. data/lib/bundler/lockfile_generator.rb +1 -1
  36. data/lib/bundler/lockfile_parser.rb +2 -12
  37. data/lib/bundler/man/bundle-add.1 +1 -1
  38. data/lib/bundler/man/bundle-binstubs.1 +3 -6
  39. data/lib/bundler/man/bundle-binstubs.1.ronn +4 -6
  40. data/lib/bundler/man/bundle-cache.1 +2 -14
  41. data/lib/bundler/man/bundle-cache.1.ronn +1 -14
  42. data/lib/bundler/man/bundle-check.1 +2 -5
  43. data/lib/bundler/man/bundle-check.1.ronn +0 -5
  44. data/lib/bundler/man/bundle-clean.1 +1 -1
  45. data/lib/bundler/man/bundle-config.1 +6 -33
  46. data/lib/bundler/man/bundle-config.1.ronn +20 -55
  47. data/lib/bundler/man/bundle-console.1 +1 -1
  48. data/lib/bundler/man/bundle-doctor.1 +1 -1
  49. data/lib/bundler/man/bundle-env.1 +1 -1
  50. data/lib/bundler/man/bundle-exec.1 +2 -5
  51. data/lib/bundler/man/bundle-exec.1.ronn +1 -5
  52. data/lib/bundler/man/bundle-fund.1 +1 -1
  53. data/lib/bundler/man/bundle-gem.1 +3 -6
  54. data/lib/bundler/man/bundle-gem.1.ronn +2 -5
  55. data/lib/bundler/man/bundle-help.1 +1 -1
  56. data/lib/bundler/man/bundle-info.1 +1 -1
  57. data/lib/bundler/man/bundle-init.1 +1 -1
  58. data/lib/bundler/man/bundle-install.1 +8 -59
  59. data/lib/bundler/man/bundle-install.1.ronn +12 -107
  60. data/lib/bundler/man/bundle-issue.1 +1 -1
  61. data/lib/bundler/man/bundle-licenses.1 +1 -1
  62. data/lib/bundler/man/bundle-list.1 +6 -1
  63. data/lib/bundler/man/bundle-list.1.ronn +5 -0
  64. data/lib/bundler/man/bundle-lock.1 +1 -1
  65. data/lib/bundler/man/bundle-open.1 +1 -1
  66. data/lib/bundler/man/bundle-outdated.1 +1 -1
  67. data/lib/bundler/man/bundle-platform.1 +1 -1
  68. data/lib/bundler/man/bundle-plugin.1 +2 -9
  69. data/lib/bundler/man/bundle-plugin.1.ronn +0 -8
  70. data/lib/bundler/man/bundle-pristine.1 +1 -1
  71. data/lib/bundler/man/bundle-remove.1 +2 -8
  72. data/lib/bundler/man/bundle-remove.1.ronn +1 -8
  73. data/lib/bundler/man/bundle-show.1 +2 -5
  74. data/lib/bundler/man/bundle-show.1.ronn +0 -4
  75. data/lib/bundler/man/bundle-update.1 +1 -1
  76. data/lib/bundler/man/bundle-version.1 +1 -1
  77. data/lib/bundler/man/bundle.1 +1 -10
  78. data/lib/bundler/man/bundle.1.ronn +0 -9
  79. data/lib/bundler/man/gemfile.5 +1 -1
  80. data/lib/bundler/man/index.txt +0 -2
  81. data/lib/bundler/materialization.rb +1 -1
  82. data/lib/bundler/plugin/installer.rb +0 -10
  83. data/lib/bundler/plugin/source_list.rb +1 -1
  84. data/lib/bundler/plugin.rb +1 -1
  85. data/lib/bundler/resolver.rb +1 -1
  86. data/lib/bundler/ruby_dsl.rb +2 -0
  87. data/lib/bundler/ruby_version.rb +1 -3
  88. data/lib/bundler/rubygems_ext.rb +1 -1
  89. data/lib/bundler/rubygems_gem_installer.rb +1 -1
  90. data/lib/bundler/rubygems_integration.rb +1 -5
  91. data/lib/bundler/self_manager.rb +1 -1
  92. data/lib/bundler/settings.rb +7 -26
  93. data/lib/bundler/shared_helpers.rb +8 -20
  94. data/lib/bundler/source/git/git_proxy.rb +3 -11
  95. data/lib/bundler/source/git.rb +2 -3
  96. data/lib/bundler/source/path.rb +3 -7
  97. data/lib/bundler/source/rubygems.rb +11 -17
  98. data/lib/bundler/source.rb +1 -1
  99. data/lib/bundler/source_list.rb +4 -45
  100. data/lib/bundler/source_map.rb +2 -5
  101. data/lib/bundler/spec_set.rb +6 -15
  102. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +7 -129
  103. data/lib/bundler/templates/newgem/circleci/config.yml.tt +12 -0
  104. data/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +1 -1
  105. data/lib/bundler/templates/newgem/ext/newgem/extconf-go.rb.tt +11 -0
  106. data/lib/bundler/templates/newgem/ext/newgem/go.mod.tt +5 -0
  107. data/lib/bundler/templates/newgem/ext/newgem/newgem-go.c.tt +2 -0
  108. data/lib/bundler/templates/newgem/ext/newgem/newgem.go.tt +31 -0
  109. data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +6 -0
  110. data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  111. data/lib/bundler/templates/newgem/newgem.gemspec.tt +4 -1
  112. data/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +26 -23
  113. data/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
  114. data/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +50 -6
  115. data/lib/bundler/vendor/fileutils/lib/fileutils.rb +57 -52
  116. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +5 -2
  117. data/lib/bundler/vendor/thor/lib/thor/runner.rb +1 -1
  118. data/lib/bundler/vendor/uri/lib/uri/common.rb +57 -15
  119. data/lib/bundler/vendor/uri/lib/uri/file.rb +1 -1
  120. data/lib/bundler/vendor/uri/lib/uri/generic.rb +34 -21
  121. data/lib/bundler/vendor/uri/lib/uri/http.rb +12 -0
  122. data/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +9 -8
  123. data/lib/bundler/vendor/uri/lib/uri/version.rb +2 -2
  124. data/lib/bundler/version.rb +1 -1
  125. data/lib/bundler/vlad.rb +1 -14
  126. data/lib/bundler.rb +6 -28
  127. metadata +9 -13
  128. data/lib/bundler/cli/inject.rb +0 -60
  129. data/lib/bundler/cli/viz.rb +0 -31
  130. data/lib/bundler/graph.rb +0 -152
  131. data/lib/bundler/man/bundle-inject.1 +0 -31
  132. data/lib/bundler/man/bundle-inject.1.ronn +0 -32
  133. data/lib/bundler/man/bundle-viz.1 +0 -30
  134. data/lib/bundler/man/bundle-viz.1.ronn +0 -36
  135. data/lib/bundler/similarity_detector.rb +0 -63
data/CHANGELOG.md CHANGED
@@ -1,2024 +1,2097 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.0.0.beta1 (2025-11-20)
4
+
5
+ ### Security:
6
+
7
+ - Bump up vendored URI to 1.0.4 [#9031](https://github.com/ruby/rubygems/pull/9031)
8
+
9
+ ### Breaking changes:
10
+
11
+ - Fix triple spacing when generating lockfile [#9076](https://github.com/ruby/rubygems/pull/9076)
12
+ - Hide patchlevel from lockfile [#7772](https://github.com/ruby/rubygems/pull/7772)
13
+ - Remove `bundler_4_mode` [#9038](https://github.com/ruby/rubygems/pull/9038)
14
+ - Pick and add extra changes for 4.0.0 version [#9018](https://github.com/ruby/rubygems/pull/9018)
15
+ - Replaced Bundler::SharedHelpers.major_deprecation to feature_removed! or feature_deprecated! [#9016](https://github.com/ruby/rubygems/pull/9016)
16
+ - Removed legacy_check option from SpecSet#for [#9015](https://github.com/ruby/rubygems/pull/9015)
17
+ - Removed deprecated legacy windows platform support [#9013](https://github.com/ruby/rubygems/pull/9013)
18
+ - Make update_requires_all_flag to settings [#9011](https://github.com/ruby/rubygems/pull/9011)
19
+ - Make default cli command settings [#9010](https://github.com/ruby/rubygems/pull/9010)
20
+ - Make global_gem_cache flag to settings [#9009](https://github.com/ruby/rubygems/pull/9009)
21
+ - Consolidate removal of `Bundler.rubygems.all_specs` [#9008](https://github.com/ruby/rubygems/pull/9008)
22
+ - Consolidate removal of `Bundler::SpecSet#-` and `Bundler::SpecSet#<<` [#9007](https://github.com/ruby/rubygems/pull/9007)
23
+ - Replaced Bundler.feature_flag.plugins? to Bundler.settings [#9006](https://github.com/ruby/rubygems/pull/9006)
24
+ - Switch to 4.0.0.dev in development version [#9002](https://github.com/ruby/rubygems/pull/9002)
25
+ - Make `bundle show --outdated` raise an error [#8980](https://github.com/ruby/rubygems/pull/8980)
26
+ - Make `--local-git` flag to `bundle plugin install` raise an error [#8979](https://github.com/ruby/rubygems/pull/8979)
27
+ - Switch `cache_all` to be `true` by default [#8975](https://github.com/ruby/rubygems/pull/8975)
28
+ - Completely forbid passing `--ext` to `bundle gem` without a value [#8976](https://github.com/ruby/rubygems/pull/8976)
29
+ - Switch `lockfile_checksums` to be `true` by default [#8981](https://github.com/ruby/rubygems/pull/8981)
30
+ - Make `bundle install --binstubs` raise an error [#8978](https://github.com/ruby/rubygems/pull/8978)
31
+ - Make `bundle remove --install` raise an error [#8977](https://github.com/ruby/rubygems/pull/8977)
32
+ - Remove support for multiple global sources in Gemfile & lockfile [#8968](https://github.com/ruby/rubygems/pull/8968)
33
+ - Remove `allow_offline_install` setting [#8969](https://github.com/ruby/rubygems/pull/8969)
34
+ - Completely remove `--rubocop` flag to `bundle gem`, and related configuration [#8967](https://github.com/ruby/rubygems/pull/8967)
35
+ - Completely remove all remembered CLI flags [#8958](https://github.com/ruby/rubygems/pull/8958)
36
+ - Remove implementation of `deployment`, `capistrano` and `vlad` entrypoints [#8957](https://github.com/ruby/rubygems/pull/8957)
37
+ - Remove deprecated `Bundler.*clean*`, and `Bundler.environment` helpers [#8924](https://github.com/ruby/rubygems/pull/8924)
38
+ - Remove deprecated `bundle viz` and `bundle inject` commands [#8923](https://github.com/ruby/rubygems/pull/8923)
39
+ - Removed to workaround for Bundler 2.2 [#8903](https://github.com/ruby/rubygems/pull/8903)
40
+
41
+ ### Features:
42
+
43
+ - Update Bundler::CurrentRuby::ALL_RUBY_VERSIONS [#9058](https://github.com/ruby/rubygems/pull/9058)
44
+ - Introduce `bundle list --format=json` [#8728](https://github.com/ruby/rubygems/pull/8728)
45
+
46
+ ### Performance:
47
+
48
+ - Replace instance method look up in plugin installer [#9094](https://github.com/ruby/rubygems/pull/9094)
49
+ - Adjust the API_REQUEST_LIMIT to make less network roundtrip [#9071](https://github.com/ruby/rubygems/pull/9071)
50
+
51
+ ### Enhancements:
52
+
53
+ - Use DidYouMean::SpellChecker for gem suggestions in Bundler [#3857](https://github.com/ruby/rubygems/pull/3857)
54
+ - Update all vendored libraries to latest version [#9089](https://github.com/ruby/rubygems/pull/9089)
55
+ - We don't need to allow some warning now [#9074](https://github.com/ruby/rubygems/pull/9074)
56
+ - Shell out fewer times [#9068](https://github.com/ruby/rubygems/pull/9068)
57
+ - Build gems directly instead of shelling out [#9053](https://github.com/ruby/rubygems/pull/9053)
58
+ - Support to embedded Pathname [#9056](https://github.com/ruby/rubygems/pull/9056)
59
+ - Forcely activate irb when running with bundle console [#9033](https://github.com/ruby/rubygems/pull/9033)
60
+ - Update Magnus version in Rust extension gem template [#9025](https://github.com/ruby/rubygems/pull/9025)
61
+ - Postpone to remove legacy mingw platform [#9023](https://github.com/ruby/rubygems/pull/9023)
62
+ - Add checksum of gems hosted on private servers: [#9004](https://github.com/ruby/rubygems/pull/9004)
63
+ - Loading support on Windows [#8254](https://github.com/ruby/rubygems/pull/8254)
64
+
65
+ ### Bug fixes:
66
+
67
+ - Fix `bundle install` when the Gemfile contains "install_if" git gems: [#8992](https://github.com/ruby/rubygems/pull/8992)
68
+ - Fix installation issue related to path sources and precompiled gems [#8973](https://github.com/ruby/rubygems/pull/8973)
69
+ - Fix outdated lockfile during `bundle lock` when source changes [#8962](https://github.com/ruby/rubygems/pull/8962)
70
+ - Raise error on missing version file [#8963](https://github.com/ruby/rubygems/pull/8963)
71
+
72
+ ### Documentation:
73
+
74
+ - Small clarifications to Bundler 4 upgrade docs [#8964](https://github.com/ruby/rubygems/pull/8964)
75
+
3
76
  ## 2.7.2 (2025-09-09)
4
77
 
5
78
  ### Enhancements:
6
79
 
7
- - Improve error message when the same source is specified through `gemspec` and `path` [#8460](https://github.com/rubygems/rubygems/pull/8460)
8
- - Raise an error in frozen mode if some registry gems have empty checksums [#8888](https://github.com/rubygems/rubygems/pull/8888)
9
- - Bump vendored thor to 1.4.0 [#8883](https://github.com/rubygems/rubygems/pull/8883)
10
- - Delay default path and global cache changes to Bundler 5 [#8867](https://github.com/rubygems/rubygems/pull/8867)
11
- - Fix spacing in bundle gem newgem.gemspec.tt [#8865](https://github.com/rubygems/rubygems/pull/8865)
80
+ - Improve error message when the same source is specified through `gemspec` and `path` [#8460](https://github.com/ruby/rubygems/pull/8460)
81
+ - Raise an error in frozen mode if some registry gems have empty checksums [#8888](https://github.com/ruby/rubygems/pull/8888)
82
+ - Bump vendored thor to 1.4.0 [#8883](https://github.com/ruby/rubygems/pull/8883)
83
+ - Delay default path and global cache changes to Bundler 5 [#8867](https://github.com/ruby/rubygems/pull/8867)
84
+ - Fix spacing in bundle gem newgem.gemspec.tt [#8865](https://github.com/ruby/rubygems/pull/8865)
12
85
 
13
86
  ### Bug fixes:
14
87
 
15
- - Fix `bundle cache --frozen` and `bundle cache --no-prune` not printing a deprecation message [#8926](https://github.com/rubygems/rubygems/pull/8926)
16
- - Fix local installation incorrectly forced if there's a `vendor/cache` directory and frozen mode is set [#8925](https://github.com/rubygems/rubygems/pull/8925)
17
- - Fix `bundle lock --update <gem>` with `--lockfile` flag updating all gems [#8922](https://github.com/rubygems/rubygems/pull/8922)
18
- - Fix `bundle show --verbose` and recommend it as an alternative to `bundle show --outdated` [#8915](https://github.com/rubygems/rubygems/pull/8915)
19
- - Fix `bundle cache --no-all` not printing a deprecation warning [#8912](https://github.com/rubygems/rubygems/pull/8912)
20
- - Fix `bundle update foo` unable to update foo in an edge case [#8897](https://github.com/rubygems/rubygems/pull/8897)
21
- - Fix Bundler printing more flags than actually passed in verbose mode [#8914](https://github.com/rubygems/rubygems/pull/8914)
22
- - Fix bundler failing to install sorbet-static in truffleruby when there's no lockfile [#8872](https://github.com/rubygems/rubygems/pull/8872)
88
+ - Fix `bundle cache --frozen` and `bundle cache --no-prune` not printing a deprecation message [#8926](https://github.com/ruby/rubygems/pull/8926)
89
+ - Fix local installation incorrectly forced if there's a `vendor/cache` directory and frozen mode is set [#8925](https://github.com/ruby/rubygems/pull/8925)
90
+ - Fix `bundle lock --update <gem>` with `--lockfile` flag updating all gems [#8922](https://github.com/ruby/rubygems/pull/8922)
91
+ - Fix `bundle show --verbose` and recommend it as an alternative to `bundle show --outdated` [#8915](https://github.com/ruby/rubygems/pull/8915)
92
+ - Fix `bundle cache --no-all` not printing a deprecation warning [#8912](https://github.com/ruby/rubygems/pull/8912)
93
+ - Fix `bundle update foo` unable to update foo in an edge case [#8897](https://github.com/ruby/rubygems/pull/8897)
94
+ - Fix Bundler printing more flags than actually passed in verbose mode [#8914](https://github.com/ruby/rubygems/pull/8914)
95
+ - Fix bundler failing to install sorbet-static in truffleruby when there's no lockfile [#8872](https://github.com/ruby/rubygems/pull/8872)
23
96
 
24
97
  ### Documentation:
25
98
 
26
- - Improve documentation of `bundle doctor`, `bundle plugin`, and `bundle config` [#8919](https://github.com/rubygems/rubygems/pull/8919)
27
- - Make sure all CLI flags and subcommands are documented [#8861](https://github.com/rubygems/rubygems/pull/8861)
99
+ - Improve documentation of `bundle doctor`, `bundle plugin`, and `bundle config` [#8919](https://github.com/ruby/rubygems/pull/8919)
100
+ - Make sure all CLI flags and subcommands are documented [#8861](https://github.com/ruby/rubygems/pull/8861)
28
101
 
29
102
  ## 2.7.1 (2025-07-21)
30
103
 
31
104
  ### Enhancements:
32
105
 
33
- - Add some missing deprecation messages [#8844](https://github.com/rubygems/rubygems/pull/8844)
106
+ - Add some missing deprecation messages [#8844](https://github.com/ruby/rubygems/pull/8844)
34
107
 
35
108
  ### Bug fixes:
36
109
 
37
- - Cancel deprecation of `--force` flag to `bundle install` and `bundle update` [#8843](https://github.com/rubygems/rubygems/pull/8843)
110
+ - Cancel deprecation of `--force` flag to `bundle install` and `bundle update` [#8843](https://github.com/ruby/rubygems/pull/8843)
38
111
 
39
112
  ### Documentation:
40
113
 
41
- - Clarify documentation about new default gem installation directory in Bundler 4 [#8857](https://github.com/rubygems/rubygems/pull/8857)
42
- - Use mailto link in Code of Conduct [#8849](https://github.com/rubygems/rubygems/pull/8849)
43
- - Update Code of Conduct email to conduct@rubygems.org [#8848](https://github.com/rubygems/rubygems/pull/8848)
44
- - Add missing link to `irb` repo in DEBUGGING.md [#8842](https://github.com/rubygems/rubygems/pull/8842)
114
+ - Clarify documentation about new default gem installation directory in Bundler 4 [#8857](https://github.com/ruby/rubygems/pull/8857)
115
+ - Use mailto link in Code of Conduct [#8849](https://github.com/ruby/rubygems/pull/8849)
116
+ - Update Code of Conduct email to conduct@rubygems.org [#8848](https://github.com/ruby/rubygems/pull/8848)
117
+ - Add missing link to `irb` repo in DEBUGGING.md [#8842](https://github.com/ruby/rubygems/pull/8842)
45
118
 
46
119
  ## 2.7.0 (2025-07-16)
47
120
 
48
121
  ### Breaking changes:
49
122
 
50
- - Stop allowing calling `#gem` on random objects [#8819](https://github.com/rubygems/rubygems/pull/8819)
51
- - Remove `path_relative_to_cwd` setting [#8815](https://github.com/rubygems/rubygems/pull/8815)
52
- - Remove the `default_install_uses_path` and `auto_clean_without_path` settings [#8814](https://github.com/rubygems/rubygems/pull/8814)
53
- - Remove `print_only_version_number` setting [#8799](https://github.com/rubygems/rubygems/pull/8799)
54
- - Drop support for Ruby 3.1 [#8634](https://github.com/rubygems/rubygems/pull/8634)
55
- - Raise an error if incompatible or merge if compatible when a gemspec development dep is duplicated in Gemfile [#8556](https://github.com/rubygems/rubygems/pull/8556)
56
- - Remove MD5 digesting of compact index responses [#8530](https://github.com/rubygems/rubygems/pull/8530)
57
- - Stop generating binstubs for Bundler itself [#8345](https://github.com/rubygems/rubygems/pull/8345)
123
+ - Stop allowing calling `#gem` on random objects [#8819](https://github.com/ruby/rubygems/pull/8819)
124
+ - Remove `path_relative_to_cwd` setting [#8815](https://github.com/ruby/rubygems/pull/8815)
125
+ - Remove the `default_install_uses_path` and `auto_clean_without_path` settings [#8814](https://github.com/ruby/rubygems/pull/8814)
126
+ - Remove `print_only_version_number` setting [#8799](https://github.com/ruby/rubygems/pull/8799)
127
+ - Drop support for Ruby 3.1 [#8634](https://github.com/ruby/rubygems/pull/8634)
128
+ - Raise an error if incompatible or merge if compatible when a gemspec development dep is duplicated in Gemfile [#8556](https://github.com/ruby/rubygems/pull/8556)
129
+ - Remove MD5 digesting of compact index responses [#8530](https://github.com/ruby/rubygems/pull/8530)
130
+ - Stop generating binstubs for Bundler itself [#8345](https://github.com/ruby/rubygems/pull/8345)
58
131
 
59
132
  ### Deprecations:
60
133
 
61
- - Deprecate unused `Bundler::SpecSet` methods [#8777](https://github.com/rubygems/rubygems/pull/8777)
62
- - Deprecate `x64-mingw32` in favour of `x64-mingw-ucrt` [#8733](https://github.com/rubygems/rubygems/pull/8733)
63
- - Deprecate legacy windows platforms (`:mswin`, `:mingw`) in Gemfile DSL in favor of `:windows` [#8447](https://github.com/rubygems/rubygems/pull/8447)
64
- - Deprecate `CurrentRuby#maglev?` and other related maglev methods [#8452](https://github.com/rubygems/rubygems/pull/8452)
134
+ - Deprecate unused `Bundler::SpecSet` methods [#8777](https://github.com/ruby/rubygems/pull/8777)
135
+ - Deprecate `x64-mingw32` in favour of `x64-mingw-ucrt` [#8733](https://github.com/ruby/rubygems/pull/8733)
136
+ - Deprecate legacy windows platforms (`:mswin`, `:mingw`) in Gemfile DSL in favor of `:windows` [#8447](https://github.com/ruby/rubygems/pull/8447)
137
+ - Deprecate `CurrentRuby#maglev?` and other related maglev methods [#8452](https://github.com/ruby/rubygems/pull/8452)
65
138
 
66
139
  ### Features:
67
140
 
68
- - Allow simulating "Bundler 4 mode" more easily [#6472](https://github.com/rubygems/rubygems/pull/6472)
141
+ - Allow simulating "Bundler 4 mode" more easily [#6472](https://github.com/ruby/rubygems/pull/6472)
69
142
 
70
143
  ### Performance:
71
144
 
72
- - Cache git sources with commit SHA refs [#8741](https://github.com/rubygems/rubygems/pull/8741)
145
+ - Cache git sources with commit SHA refs [#8741](https://github.com/ruby/rubygems/pull/8741)
73
146
 
74
147
  ### Enhancements:
75
148
 
76
- - Load RubyGems extensions in the first place [#8835](https://github.com/rubygems/rubygems/pull/8835)
77
- - Update gemspec based on provided github username when exists [#8790](https://github.com/rubygems/rubygems/pull/8790)
78
- - Fail fast when connection errors happen [#8784](https://github.com/rubygems/rubygems/pull/8784)
79
- - Introduce a `verbose` setting to enable verbose output for all commands [#8801](https://github.com/rubygems/rubygems/pull/8801)
80
- - Introduce `gem.bundle` setting to run `bundle install` automatically after `bundle gem`, and make it the default [#8671](https://github.com/rubygems/rubygems/pull/8671)
81
- - Handle `Errno::EADDRNOTAVAIL` errors gracefully [#8776](https://github.com/rubygems/rubygems/pull/8776)
82
- - Use `persist-credentials: false` in workflow generated by `bundle gem` [#8779](https://github.com/rubygems/rubygems/pull/8779)
83
- - Recognize JRuby loaded from a classloader, not just any JAR [#8567](https://github.com/rubygems/rubygems/pull/8567)
84
- - Validate lockfile dependencies with bundle install [#8666](https://github.com/rubygems/rubygems/pull/8666)
85
- - Ignore local specifications if they have incorrect dependencies [#8647](https://github.com/rubygems/rubygems/pull/8647)
86
- - Move most of `Bundler::GemHelpers` to `Gem::Platform` [#8703](https://github.com/rubygems/rubygems/pull/8703)
87
- - Improve `spec.files` in the `.gemspec` template [#8732](https://github.com/rubygems/rubygems/pull/8732)
88
-
89
- ### Bug fixes:
90
-
91
- - Fix double `bundle gem` prompts [#8825](https://github.com/rubygems/rubygems/pull/8825)
92
- - Fix date displayed in `bundle version` help text [#8806](https://github.com/rubygems/rubygems/pull/8806)
93
- - Fix `bundle console` printing bug report template on `NameError` during require [#8804](https://github.com/rubygems/rubygems/pull/8804)
94
- - Fix `Bundler.original_env['GEM_HOME']` when Bundler is trampolined [#8781](https://github.com/rubygems/rubygems/pull/8781)
95
- - Fix rdoc issues when running `gem` commands in a `bundle exec` context [#8770](https://github.com/rubygems/rubygems/pull/8770)
96
- - Never ignore gems from path sources during activation [#8766](https://github.com/rubygems/rubygems/pull/8766)
97
- - Fix `bundle install` after pinning a git source with subgems [#8745](https://github.com/rubygems/rubygems/pull/8745)
98
- - Let `bundle update --bundler` upgrade bundler even if restarts are disabled [#8729](https://github.com/rubygems/rubygems/pull/8729)
149
+ - Load RubyGems extensions in the first place [#8835](https://github.com/ruby/rubygems/pull/8835)
150
+ - Update gemspec based on provided github username when exists [#8790](https://github.com/ruby/rubygems/pull/8790)
151
+ - Fail fast when connection errors happen [#8784](https://github.com/ruby/rubygems/pull/8784)
152
+ - Introduce a `verbose` setting to enable verbose output for all commands [#8801](https://github.com/ruby/rubygems/pull/8801)
153
+ - Introduce `gem.bundle` setting to run `bundle install` automatically after `bundle gem`, and make it the default [#8671](https://github.com/ruby/rubygems/pull/8671)
154
+ - Handle `Errno::EADDRNOTAVAIL` errors gracefully [#8776](https://github.com/ruby/rubygems/pull/8776)
155
+ - Use `persist-credentials: false` in workflow generated by `bundle gem` [#8779](https://github.com/ruby/rubygems/pull/8779)
156
+ - Recognize JRuby loaded from a classloader, not just any JAR [#8567](https://github.com/ruby/rubygems/pull/8567)
157
+ - Validate lockfile dependencies with bundle install [#8666](https://github.com/ruby/rubygems/pull/8666)
158
+ - Ignore local specifications if they have incorrect dependencies [#8647](https://github.com/ruby/rubygems/pull/8647)
159
+ - Move most of `Bundler::GemHelpers` to `Gem::Platform` [#8703](https://github.com/ruby/rubygems/pull/8703)
160
+ - Improve `spec.files` in the `.gemspec` template [#8732](https://github.com/ruby/rubygems/pull/8732)
161
+
162
+ ### Bug fixes:
163
+
164
+ - Fix double `bundle gem` prompts [#8825](https://github.com/ruby/rubygems/pull/8825)
165
+ - Fix date displayed in `bundle version` help text [#8806](https://github.com/ruby/rubygems/pull/8806)
166
+ - Fix `bundle console` printing bug report template on `NameError` during require [#8804](https://github.com/ruby/rubygems/pull/8804)
167
+ - Fix `Bundler.original_env['GEM_HOME']` when Bundler is trampolined [#8781](https://github.com/ruby/rubygems/pull/8781)
168
+ - Fix rdoc issues when running `gem` commands in a `bundle exec` context [#8770](https://github.com/ruby/rubygems/pull/8770)
169
+ - Never ignore gems from path sources during activation [#8766](https://github.com/ruby/rubygems/pull/8766)
170
+ - Fix `bundle install` after pinning a git source with subgems [#8745](https://github.com/ruby/rubygems/pull/8745)
171
+ - Let `bundle update --bundler` upgrade bundler even if restarts are disabled [#8729](https://github.com/ruby/rubygems/pull/8729)
99
172
 
100
173
  ### Documentation:
101
174
 
102
- - Rewrite and complete UPGRADING document [#8817](https://github.com/rubygems/rubygems/pull/8817)
103
- - Document that `global_gem_cache` also caches compiled extensions [#8823](https://github.com/rubygems/rubygems/pull/8823)
104
- - Add `default_cli_command` documentation [#8816](https://github.com/rubygems/rubygems/pull/8816)
105
- - Add a root CONTRIBUTING.md file [#8822](https://github.com/rubygems/rubygems/pull/8822)
106
- - Add a SECURITY.md file [#8812](https://github.com/rubygems/rubygems/pull/8812)
107
- - Update man pages for the `bundle doctor ssl` subcommand [#8803](https://github.com/rubygems/rubygems/pull/8803)
108
- - Remove duplicate documentation for `--changelog` flag [#8756](https://github.com/rubygems/rubygems/pull/8756)
109
- - Fix typos making some lists in documentation render incorrectly [#8759](https://github.com/rubygems/rubygems/pull/8759)
110
- - Fix heading ranks in documentation [#8711](https://github.com/rubygems/rubygems/pull/8711)
111
- - Clarify differences between `frozen` and `deployment` settings, and other bundle-config documentation improvements [#8715](https://github.com/rubygems/rubygems/pull/8715)
175
+ - Rewrite and complete UPGRADING document [#8817](https://github.com/ruby/rubygems/pull/8817)
176
+ - Document that `global_gem_cache` also caches compiled extensions [#8823](https://github.com/ruby/rubygems/pull/8823)
177
+ - Add `default_cli_command` documentation [#8816](https://github.com/ruby/rubygems/pull/8816)
178
+ - Add a root CONTRIBUTING.md file [#8822](https://github.com/ruby/rubygems/pull/8822)
179
+ - Add a SECURITY.md file [#8812](https://github.com/ruby/rubygems/pull/8812)
180
+ - Update man pages for the `bundle doctor ssl` subcommand [#8803](https://github.com/ruby/rubygems/pull/8803)
181
+ - Remove duplicate documentation for `--changelog` flag [#8756](https://github.com/ruby/rubygems/pull/8756)
182
+ - Fix typos making some lists in documentation render incorrectly [#8759](https://github.com/ruby/rubygems/pull/8759)
183
+ - Fix heading ranks in documentation [#8711](https://github.com/ruby/rubygems/pull/8711)
184
+ - Clarify differences between `frozen` and `deployment` settings, and other bundle-config documentation improvements [#8715](https://github.com/ruby/rubygems/pull/8715)
112
185
 
113
186
  ## 2.6.9 (2025-05-13)
114
187
 
115
188
  ### Enhancements:
116
189
 
117
- - Fix doctor command parsing of otool output [#8665](https://github.com/rubygems/rubygems/pull/8665)
118
- - Add SSL troubleshooting to `bundle doctor` [#8624](https://github.com/rubygems/rubygems/pull/8624)
119
- - Let `bundle lock --normalize-platforms` remove invalid platforms [#8631](https://github.com/rubygems/rubygems/pull/8631)
190
+ - Fix doctor command parsing of otool output [#8665](https://github.com/ruby/rubygems/pull/8665)
191
+ - Add SSL troubleshooting to `bundle doctor` [#8624](https://github.com/ruby/rubygems/pull/8624)
192
+ - Let `bundle lock --normalize-platforms` remove invalid platforms [#8631](https://github.com/ruby/rubygems/pull/8631)
120
193
 
121
194
  ### Bug fixes:
122
195
 
123
- - Fix `bundle lock` sometimes allowing invalid platforms into the lockfile [#8630](https://github.com/rubygems/rubygems/pull/8630)
124
- - Fix false positive warning about insecure materialization in frozen mode [#8629](https://github.com/rubygems/rubygems/pull/8629)
196
+ - Fix `bundle lock` sometimes allowing invalid platforms into the lockfile [#8630](https://github.com/ruby/rubygems/pull/8630)
197
+ - Fix false positive warning about insecure materialization in frozen mode [#8629](https://github.com/ruby/rubygems/pull/8629)
125
198
 
126
199
  ## 2.6.8 (2025-04-13)
127
200
 
128
201
  ### Enhancements:
129
202
 
130
- - Refine `bundle update --verbose` logs [#8627](https://github.com/rubygems/rubygems/pull/8627)
131
- - Improve bug report instructions [#8607](https://github.com/rubygems/rubygems/pull/8607)
203
+ - Refine `bundle update --verbose` logs [#8627](https://github.com/ruby/rubygems/pull/8627)
204
+ - Improve bug report instructions [#8607](https://github.com/ruby/rubygems/pull/8607)
132
205
 
133
206
  ### Bug fixes:
134
207
 
135
- - Fix `bundle update` crash in an edge case [#8626](https://github.com/rubygems/rubygems/pull/8626)
136
- - Fix `bundle lock --normalize-platforms` regression [#8620](https://github.com/rubygems/rubygems/pull/8620)
208
+ - Fix `bundle update` crash in an edge case [#8626](https://github.com/ruby/rubygems/pull/8626)
209
+ - Fix `bundle lock --normalize-platforms` regression [#8620](https://github.com/ruby/rubygems/pull/8620)
137
210
 
138
211
  ## 2.6.7 (2025-04-03)
139
212
 
140
213
  ### Enhancements:
141
214
 
142
- - Fix crash when server compact index API implementation only lists versions [#8594](https://github.com/rubygems/rubygems/pull/8594)
143
- - Fix lockfile when a gem ends up accidentally under two different sources [#8579](https://github.com/rubygems/rubygems/pull/8579)
144
- - Refuse to install and print an error in frozen mode if some entries are missing in CHECKSUMS lockfile section [#8563](https://github.com/rubygems/rubygems/pull/8563)
145
- - Support git 2.49 [#8581](https://github.com/rubygems/rubygems/pull/8581)
146
- - Improve wording of a few messages [#8570](https://github.com/rubygems/rubygems/pull/8570)
215
+ - Fix crash when server compact index API implementation only lists versions [#8594](https://github.com/ruby/rubygems/pull/8594)
216
+ - Fix lockfile when a gem ends up accidentally under two different sources [#8579](https://github.com/ruby/rubygems/pull/8579)
217
+ - Refuse to install and print an error in frozen mode if some entries are missing in CHECKSUMS lockfile section [#8563](https://github.com/ruby/rubygems/pull/8563)
218
+ - Support git 2.49 [#8581](https://github.com/ruby/rubygems/pull/8581)
219
+ - Improve wording of a few messages [#8570](https://github.com/ruby/rubygems/pull/8570)
147
220
 
148
221
  ### Bug fixes:
149
222
 
150
- - Fix `bundle add` sometimes generating invalid lockfiles [#8586](https://github.com/rubygems/rubygems/pull/8586)
223
+ - Fix `bundle add` sometimes generating invalid lockfiles [#8586](https://github.com/ruby/rubygems/pull/8586)
151
224
 
152
225
  ### Performance:
153
226
 
154
- - Implement pub_grub strategy interface [#8589](https://github.com/rubygems/rubygems/pull/8589)
155
- - Update vendored pub_grub [#8571](https://github.com/rubygems/rubygems/pull/8571)
227
+ - Implement pub_grub strategy interface [#8589](https://github.com/ruby/rubygems/pull/8589)
228
+ - Update vendored pub_grub [#8571](https://github.com/ruby/rubygems/pull/8571)
156
229
 
157
230
  ## 2.6.6 (2025-03-13)
158
231
 
159
232
  ### Enhancements:
160
233
 
161
- - Fix `ENAMETOOLONG` error when creating compact index cache [#5578](https://github.com/rubygems/rubygems/pull/5578)
162
- - Use shorthand hash syntax for bundle add [#8547](https://github.com/rubygems/rubygems/pull/8547)
163
- - Update vendored uri to 1.0.3 [#8534](https://github.com/rubygems/rubygems/pull/8534)
164
- - Retry gracefully on blank partial response in compact index [#8524](https://github.com/rubygems/rubygems/pull/8524)
165
- - Give a better error when trying to write the lock file on a read-only filesystem [#5920](https://github.com/rubygems/rubygems/pull/5920)
166
- - Improve log messages when lockfile platforms are added [#8523](https://github.com/rubygems/rubygems/pull/8523)
167
- - Allow noop `bundle install` to work on read-only or protected folders [#8519](https://github.com/rubygems/rubygems/pull/8519)
234
+ - Fix `ENAMETOOLONG` error when creating compact index cache [#5578](https://github.com/ruby/rubygems/pull/5578)
235
+ - Use shorthand hash syntax for bundle add [#8547](https://github.com/ruby/rubygems/pull/8547)
236
+ - Update vendored uri to 1.0.3 [#8534](https://github.com/ruby/rubygems/pull/8534)
237
+ - Retry gracefully on blank partial response in compact index [#8524](https://github.com/ruby/rubygems/pull/8524)
238
+ - Give a better error when trying to write the lock file on a read-only filesystem [#5920](https://github.com/ruby/rubygems/pull/5920)
239
+ - Improve log messages when lockfile platforms are added [#8523](https://github.com/ruby/rubygems/pull/8523)
240
+ - Allow noop `bundle install` to work on read-only or protected folders [#8519](https://github.com/ruby/rubygems/pull/8519)
168
241
 
169
242
  ### Bug fixes:
170
243
 
171
- - Detect partial gem installs from a git source so that they are reinstalled on a successive run [#8539](https://github.com/rubygems/rubygems/pull/8539)
172
- - Modify `bundle doctor` to not report issue when files aren't writable [#8520](https://github.com/rubygems/rubygems/pull/8520)
244
+ - Detect partial gem installs from a git source so that they are reinstalled on a successive run [#8539](https://github.com/ruby/rubygems/pull/8539)
245
+ - Modify `bundle doctor` to not report issue when files aren't writable [#8520](https://github.com/ruby/rubygems/pull/8520)
173
246
 
174
247
  ### Performance:
175
248
 
176
- - Optimize resolution by removing an array allocation from `Candidate#<=>` [#8559](https://github.com/rubygems/rubygems/pull/8559)
249
+ - Optimize resolution by removing an array allocation from `Candidate#<=>` [#8559](https://github.com/ruby/rubygems/pull/8559)
177
250
 
178
251
  ### Documentation:
179
252
 
180
- - Update docs for with/without consistency [#8555](https://github.com/rubygems/rubygems/pull/8555)
181
- - Recommend non-deprecated methods in `bundle exec` documentation [#8537](https://github.com/rubygems/rubygems/pull/8537)
182
- - Hint about default group when using `only` configuration option [#8536](https://github.com/rubygems/rubygems/pull/8536)
253
+ - Update docs for with/without consistency [#8555](https://github.com/ruby/rubygems/pull/8555)
254
+ - Recommend non-deprecated methods in `bundle exec` documentation [#8537](https://github.com/ruby/rubygems/pull/8537)
255
+ - Hint about default group when using `only` configuration option [#8536](https://github.com/ruby/rubygems/pull/8536)
183
256
 
184
257
  ## 2.6.5 (2025-02-20)
185
258
 
186
259
  ### Enhancements:
187
260
 
188
- - Fix lockfile platforms inconveniently added on JRuby [#8494](https://github.com/rubygems/rubygems/pull/8494)
261
+ - Fix lockfile platforms inconveniently added on JRuby [#8494](https://github.com/ruby/rubygems/pull/8494)
189
262
 
190
263
  ### Bug fixes:
191
264
 
192
- - Fix resolver issue due to ill-defined version ranges being created [#8503](https://github.com/rubygems/rubygems/pull/8503)
193
- - Make sure empty gems are not reinstalled every time [#8502](https://github.com/rubygems/rubygems/pull/8502)
265
+ - Fix resolver issue due to ill-defined version ranges being created [#8503](https://github.com/ruby/rubygems/pull/8503)
266
+ - Make sure empty gems are not reinstalled every time [#8502](https://github.com/ruby/rubygems/pull/8502)
194
267
 
195
268
  ## 2.6.4 (2025-02-17)
196
269
 
197
270
  ### Enhancements:
198
271
 
199
- - Make Bundler never instantiate development dependencies [#8486](https://github.com/rubygems/rubygems/pull/8486)
200
- - Fix some invalid options to `gem` DSL not getting reported as invalid [#8480](https://github.com/rubygems/rubygems/pull/8480)
201
- - Add `irb` to a Gemfile for a newly created gem [#8467](https://github.com/rubygems/rubygems/pull/8467)
202
- - Auto-heal empty installation directory [#8457](https://github.com/rubygems/rubygems/pull/8457)
203
- - Fix `bundle console` unnecessarily trying to load IRB twice [#8443](https://github.com/rubygems/rubygems/pull/8443)
204
- - Add ruby_34 and ruby_35 as valid platform: [#8430](https://github.com/rubygems/rubygems/pull/8430)
205
- - Consider gems under `platform: :windows` filter in Gemfile when running on Windows with ARM architecture [#8428](https://github.com/rubygems/rubygems/pull/8428)
272
+ - Make Bundler never instantiate development dependencies [#8486](https://github.com/ruby/rubygems/pull/8486)
273
+ - Fix some invalid options to `gem` DSL not getting reported as invalid [#8480](https://github.com/ruby/rubygems/pull/8480)
274
+ - Add `irb` to a Gemfile for a newly created gem [#8467](https://github.com/ruby/rubygems/pull/8467)
275
+ - Auto-heal empty installation directory [#8457](https://github.com/ruby/rubygems/pull/8457)
276
+ - Fix `bundle console` unnecessarily trying to load IRB twice [#8443](https://github.com/ruby/rubygems/pull/8443)
277
+ - Add ruby_34 and ruby_35 as valid platform: [#8430](https://github.com/ruby/rubygems/pull/8430)
278
+ - Consider gems under `platform: :windows` filter in Gemfile when running on Windows with ARM architecture [#8428](https://github.com/ruby/rubygems/pull/8428)
206
279
 
207
280
  ### Bug fixes:
208
281
 
209
- - Fix regression when running `bundle update <foo>` would sometimes downgrade a top level dependency [#8491](https://github.com/rubygems/rubygems/pull/8491)
210
- - Fix dependency locking when Bundler finds incorrect lockfile dependencies [#8489](https://github.com/rubygems/rubygems/pull/8489)
211
- - Raise error when lockfile is missing deps in frozen mode [#8483](https://github.com/rubygems/rubygems/pull/8483)
212
- - Fix `bundle install --prefer-local` sometimes installing very old versions [#8484](https://github.com/rubygems/rubygems/pull/8484)
213
- - Fix incorrect error message when running `bundle update` in frozen mode [#8481](https://github.com/rubygems/rubygems/pull/8481)
214
- - Keep platform variants in `vendor/cache` even if incompatible with the current Ruby version [#8471](https://github.com/rubygems/rubygems/pull/8471)
215
- - Fix `bundle console` printing bug report template incorrectly [#8436](https://github.com/rubygems/rubygems/pull/8436)
216
- - Fix `--prefer-local` not respecting default gems [#8412](https://github.com/rubygems/rubygems/pull/8412)
282
+ - Fix regression when running `bundle update <foo>` would sometimes downgrade a top level dependency [#8491](https://github.com/ruby/rubygems/pull/8491)
283
+ - Fix dependency locking when Bundler finds incorrect lockfile dependencies [#8489](https://github.com/ruby/rubygems/pull/8489)
284
+ - Raise error when lockfile is missing deps in frozen mode [#8483](https://github.com/ruby/rubygems/pull/8483)
285
+ - Fix `bundle install --prefer-local` sometimes installing very old versions [#8484](https://github.com/ruby/rubygems/pull/8484)
286
+ - Fix incorrect error message when running `bundle update` in frozen mode [#8481](https://github.com/ruby/rubygems/pull/8481)
287
+ - Keep platform variants in `vendor/cache` even if incompatible with the current Ruby version [#8471](https://github.com/ruby/rubygems/pull/8471)
288
+ - Fix `bundle console` printing bug report template incorrectly [#8436](https://github.com/ruby/rubygems/pull/8436)
289
+ - Fix `--prefer-local` not respecting default gems [#8412](https://github.com/ruby/rubygems/pull/8412)
217
290
 
218
291
  ### Performance:
219
292
 
220
- - Improve resolution performance [#8458](https://github.com/rubygems/rubygems/pull/8458)
293
+ - Improve resolution performance [#8458](https://github.com/ruby/rubygems/pull/8458)
221
294
 
222
295
  ### Documentation:
223
296
 
224
- - Fix more broken links [#8416](https://github.com/rubygems/rubygems/pull/8416)
297
+ - Fix more broken links [#8416](https://github.com/ruby/rubygems/pull/8416)
225
298
 
226
299
  ## 2.6.3 (2025-01-16)
227
300
 
228
301
  ### Enhancements:
229
302
 
230
- - Don't fallback to evaluating YAML gemspecs as Ruby code [#8404](https://github.com/rubygems/rubygems/pull/8404)
231
- - Print message when blocking on file locks [#8299](https://github.com/rubygems/rubygems/pull/8299)
232
- - Add support for mise version manager file [#8356](https://github.com/rubygems/rubygems/pull/8356)
233
- - Add Ruby 3.5 to Gemfile DSL platform values [#8365](https://github.com/rubygems/rubygems/pull/8365)
303
+ - Don't fallback to evaluating YAML gemspecs as Ruby code [#8404](https://github.com/ruby/rubygems/pull/8404)
304
+ - Print message when blocking on file locks [#8299](https://github.com/ruby/rubygems/pull/8299)
305
+ - Add support for mise version manager file [#8356](https://github.com/ruby/rubygems/pull/8356)
306
+ - Add Ruby 3.5 to Gemfile DSL platform values [#8365](https://github.com/ruby/rubygems/pull/8365)
234
307
 
235
308
  ### Bug fixes:
236
309
 
237
- - Revert RubyGems plugins getting loaded on `Bundler.require` [#8410](https://github.com/rubygems/rubygems/pull/8410)
238
- - Fix platform specific gems sometimes being removed from the lockfile [#8401](https://github.com/rubygems/rubygems/pull/8401)
239
- - Serialize gemspec when caching git source [#8403](https://github.com/rubygems/rubygems/pull/8403)
240
- - Fix crash on read-only filesystems in Ruby 3.4 [#8372](https://github.com/rubygems/rubygems/pull/8372)
241
- - Fix `bundle outdated <GEM>` failing if not all gems are installed [#8361](https://github.com/rubygems/rubygems/pull/8361)
242
- - Fix `bundle install` crash on Windows [#8362](https://github.com/rubygems/rubygems/pull/8362)
310
+ - Revert RubyGems plugins getting loaded on `Bundler.require` [#8410](https://github.com/ruby/rubygems/pull/8410)
311
+ - Fix platform specific gems sometimes being removed from the lockfile [#8401](https://github.com/ruby/rubygems/pull/8401)
312
+ - Serialize gemspec when caching git source [#8403](https://github.com/ruby/rubygems/pull/8403)
313
+ - Fix crash on read-only filesystems in Ruby 3.4 [#8372](https://github.com/ruby/rubygems/pull/8372)
314
+ - Fix `bundle outdated <GEM>` failing if not all gems are installed [#8361](https://github.com/ruby/rubygems/pull/8361)
315
+ - Fix `bundle install` crash on Windows [#8362](https://github.com/ruby/rubygems/pull/8362)
243
316
 
244
317
  ### Documentation:
245
318
 
246
- - Fix broken links in the documents [#8389](https://github.com/rubygems/rubygems/pull/8389)
319
+ - Fix broken links in the documents [#8389](https://github.com/ruby/rubygems/pull/8389)
247
320
 
248
321
  ## 2.6.2 (2024-12-23)
249
322
 
250
323
  ### Bug fixes:
251
324
 
252
- - Restart using `Process.argv0` only if `$PROGRAM_NAME` is not a script [#8343](https://github.com/rubygems/rubygems/pull/8343)
325
+ - Restart using `Process.argv0` only if `$PROGRAM_NAME` is not a script [#8343](https://github.com/ruby/rubygems/pull/8343)
253
326
 
254
327
  ### Documentation:
255
328
 
256
- - Fix typo in `bundle lock` man page synopsis (`--add-checkums` → `--add-checksums`) [#8350](https://github.com/rubygems/rubygems/pull/8350)
329
+ - Fix typo in `bundle lock` man page synopsis (`--add-checkums` → `--add-checksums`) [#8350](https://github.com/ruby/rubygems/pull/8350)
257
330
 
258
331
  ## 2.6.1 (2024-12-17)
259
332
 
260
333
  ### Bug fixes:
261
334
 
262
- - Fix missing `Gem::Uri.redact` on some Ruby 3.1 versions [#8337](https://github.com/rubygems/rubygems/pull/8337)
263
- - Fix `bundle lock --add-checksums` when gems are already installed [#8326](https://github.com/rubygems/rubygems/pull/8326)
335
+ - Fix missing `Gem::Uri.redact` on some Ruby 3.1 versions [#8337](https://github.com/ruby/rubygems/pull/8337)
336
+ - Fix `bundle lock --add-checksums` when gems are already installed [#8326](https://github.com/ruby/rubygems/pull/8326)
264
337
 
265
338
  ## 2.6.0 (2024-12-16)
266
339
 
267
340
  ### Security:
268
341
 
269
- - Fix gemfury credentials written to logs in verbose mode [#8283](https://github.com/rubygems/rubygems/pull/8283)
270
- - Fix private registry credentials being written to logs [#8222](https://github.com/rubygems/rubygems/pull/8222)
342
+ - Fix gemfury credentials written to logs in verbose mode [#8283](https://github.com/ruby/rubygems/pull/8283)
343
+ - Fix private registry credentials being written to logs [#8222](https://github.com/ruby/rubygems/pull/8222)
271
344
 
272
345
  ### Breaking changes:
273
346
 
274
- - Drop ruby 3.0 support [#8091](https://github.com/rubygems/rubygems/pull/8091)
275
- - Remove client-side MD5 ETag transition from compact index client [#7677](https://github.com/rubygems/rubygems/pull/7677)
347
+ - Drop ruby 3.0 support [#8091](https://github.com/ruby/rubygems/pull/8091)
348
+ - Remove client-side MD5 ETag transition from compact index client [#7677](https://github.com/ruby/rubygems/pull/7677)
276
349
 
277
350
  ### Deprecations:
278
351
 
279
- - Cancel `bundle console` deprecation [#8218](https://github.com/rubygems/rubygems/pull/8218)
280
- - Warn when platform of installed gem differs from platform in the lockfile [#8029](https://github.com/rubygems/rubygems/pull/8029)
281
- - Cancel deprecation of Gemfiles without a global source [#8213](https://github.com/rubygems/rubygems/pull/8213)
352
+ - Cancel `bundle console` deprecation [#8218](https://github.com/ruby/rubygems/pull/8218)
353
+ - Warn when platform of installed gem differs from platform in the lockfile [#8029](https://github.com/ruby/rubygems/pull/8029)
354
+ - Cancel deprecation of Gemfiles without a global source [#8213](https://github.com/ruby/rubygems/pull/8213)
282
355
 
283
356
  ### Features:
284
357
 
285
- - Add a `lockfile_checksums` configuration to include checksums in fresh lockfiles [#8219](https://github.com/rubygems/rubygems/pull/8219)
286
- - Add `bundle lock --add-checksums` to add checksums to an existing lockfile [#8214](https://github.com/rubygems/rubygems/pull/8214)
358
+ - Add a `lockfile_checksums` configuration to include checksums in fresh lockfiles [#8219](https://github.com/ruby/rubygems/pull/8219)
359
+ - Add `bundle lock --add-checksums` to add checksums to an existing lockfile [#8214](https://github.com/ruby/rubygems/pull/8214)
287
360
 
288
361
  ### Performance:
289
362
 
290
- - Enable a couple of performance cops [#8261](https://github.com/rubygems/rubygems/pull/8261)
291
- - Remove override of worker jobs for `bundle install --local` [#8248](https://github.com/rubygems/rubygems/pull/8248)
363
+ - Enable a couple of performance cops [#8261](https://github.com/ruby/rubygems/pull/8261)
364
+ - Remove override of worker jobs for `bundle install --local` [#8248](https://github.com/ruby/rubygems/pull/8248)
292
365
 
293
366
  ### Enhancements:
294
367
 
295
- - Support `bundle exec <relative-path-to-script>` when `Kernel.exec` is used under the hood [#8294](https://github.com/rubygems/rubygems/pull/8294)
296
- - Improve working with different rubies using the same lockfile [#8251](https://github.com/rubygems/rubygems/pull/8251)
297
- - Define a few `inspect` methods to help debugging [#8266](https://github.com/rubygems/rubygems/pull/8266)
298
- - Include original error when openssl fails to load [#8232](https://github.com/rubygems/rubygems/pull/8232)
299
- - Automatically fix lockfile when it's missing dependencies [#8103](https://github.com/rubygems/rubygems/pull/8103)
300
- - Fix some JRuby warnings when using `bundler/setup` with Ruby's -w flag [#8205](https://github.com/rubygems/rubygems/pull/8205)
301
- - Add a `--normalize-platforms` flag to `bundle lock` [#7896](https://github.com/rubygems/rubygems/pull/7896)
302
- - Add plugin hooks for Bundler.require [#3439](https://github.com/rubygems/rubygems/pull/3439)
368
+ - Support `bundle exec <relative-path-to-script>` when `Kernel.exec` is used under the hood [#8294](https://github.com/ruby/rubygems/pull/8294)
369
+ - Improve working with different rubies using the same lockfile [#8251](https://github.com/ruby/rubygems/pull/8251)
370
+ - Define a few `inspect` methods to help debugging [#8266](https://github.com/ruby/rubygems/pull/8266)
371
+ - Include original error when openssl fails to load [#8232](https://github.com/ruby/rubygems/pull/8232)
372
+ - Automatically fix lockfile when it's missing dependencies [#8103](https://github.com/ruby/rubygems/pull/8103)
373
+ - Fix some JRuby warnings when using `bundler/setup` with Ruby's -w flag [#8205](https://github.com/ruby/rubygems/pull/8205)
374
+ - Add a `--normalize-platforms` flag to `bundle lock` [#7896](https://github.com/ruby/rubygems/pull/7896)
375
+ - Add plugin hooks for Bundler.require [#3439](https://github.com/ruby/rubygems/pull/3439)
303
376
 
304
377
  ### Bug fixes:
305
378
 
306
- - Fix restarting with locked version when `$PROGRAM_NAME` has been changed [#8320](https://github.com/rubygems/rubygems/pull/8320)
307
- - Restore the previous cache format for git sources [#8296](https://github.com/rubygems/rubygems/pull/8296)
308
- - Fix installs of subdependencies of unlocked dependencies to be conservative [#8281](https://github.com/rubygems/rubygems/pull/8281)
309
- - Fix test task name on generated readme when using test-unit [#8291](https://github.com/rubygems/rubygems/pull/8291)
310
- - Fix `bundle exec` executable detection on windows [#8276](https://github.com/rubygems/rubygems/pull/8276)
311
- - Fix `bundle remove` sometimes not removing gems [#8278](https://github.com/rubygems/rubygems/pull/8278)
312
- - Fix issue with git gems locking incorrect specs sometimes [#8269](https://github.com/rubygems/rubygems/pull/8269)
379
+ - Fix restarting with locked version when `$PROGRAM_NAME` has been changed [#8320](https://github.com/ruby/rubygems/pull/8320)
380
+ - Restore the previous cache format for git sources [#8296](https://github.com/ruby/rubygems/pull/8296)
381
+ - Fix installs of subdependencies of unlocked dependencies to be conservative [#8281](https://github.com/ruby/rubygems/pull/8281)
382
+ - Fix test task name on generated readme when using test-unit [#8291](https://github.com/ruby/rubygems/pull/8291)
383
+ - Fix `bundle exec` executable detection on windows [#8276](https://github.com/ruby/rubygems/pull/8276)
384
+ - Fix `bundle remove` sometimes not removing gems [#8278](https://github.com/ruby/rubygems/pull/8278)
385
+ - Fix issue with git gems locking incorrect specs sometimes [#8269](https://github.com/ruby/rubygems/pull/8269)
313
386
 
314
387
  ### Documentation:
315
388
 
316
- - Normalize command flag documentation and make sure all flags are documented [#8313](https://github.com/rubygems/rubygems/pull/8313)
317
- - Add missing man pages for `bundle env` and `bundle licenses` [#8315](https://github.com/rubygems/rubygems/pull/8315)
318
- - Add man page for 'bundle issue' command [#8271](https://github.com/rubygems/rubygems/pull/8271)
319
- - Add man page for 'bundle fund' command [#8258](https://github.com/rubygems/rubygems/pull/8258)
320
- - Move pry-related contents to `debugging.md` [#8263](https://github.com/rubygems/rubygems/pull/8263)
321
- - Add debugging instruction on Windows [#8236](https://github.com/rubygems/rubygems/pull/8236)
322
- - Unify rubygems and bundler docs directory [#8159](https://github.com/rubygems/rubygems/pull/8159)
389
+ - Normalize command flag documentation and make sure all flags are documented [#8313](https://github.com/ruby/rubygems/pull/8313)
390
+ - Add missing man pages for `bundle env` and `bundle licenses` [#8315](https://github.com/ruby/rubygems/pull/8315)
391
+ - Add man page for 'bundle issue' command [#8271](https://github.com/ruby/rubygems/pull/8271)
392
+ - Add man page for 'bundle fund' command [#8258](https://github.com/ruby/rubygems/pull/8258)
393
+ - Move pry-related contents to `debugging.md` [#8263](https://github.com/ruby/rubygems/pull/8263)
394
+ - Add debugging instruction on Windows [#8236](https://github.com/ruby/rubygems/pull/8236)
395
+ - Unify rubygems and bundler docs directory [#8159](https://github.com/ruby/rubygems/pull/8159)
323
396
 
324
397
  ## 2.5.23 (2024-11-05)
325
398
 
326
399
  ### Enhancements:
327
400
 
328
- - Add useful error message for plugin load [#7639](https://github.com/rubygems/rubygems/pull/7639)
329
- - Indent github workflow steps for generated gems [#8193](https://github.com/rubygems/rubygems/pull/8193)
330
- - Improve several permission errors [#8168](https://github.com/rubygems/rubygems/pull/8168)
331
- - Add `bundle add` `--quiet` option [#8157](https://github.com/rubygems/rubygems/pull/8157)
401
+ - Add useful error message for plugin load [#7639](https://github.com/ruby/rubygems/pull/7639)
402
+ - Indent github workflow steps for generated gems [#8193](https://github.com/ruby/rubygems/pull/8193)
403
+ - Improve several permission errors [#8168](https://github.com/ruby/rubygems/pull/8168)
404
+ - Add `bundle add` `--quiet` option [#8157](https://github.com/ruby/rubygems/pull/8157)
332
405
 
333
406
  ### Bug fixes:
334
407
 
335
- - Fix incompatible encodings error when paths with UTF-8 characters are involved [#8196](https://github.com/rubygems/rubygems/pull/8196)
336
- - Update `--ext=rust` to support compiling the native extension from source [#7610](https://github.com/rubygems/rubygems/pull/7610)
337
- - Print a proper error when there's a previous empty installation path with bad permissions [#8169](https://github.com/rubygems/rubygems/pull/8169)
338
- - Fix running `bundler` (with a final `r`) in a `bundle exec` context [#8165](https://github.com/rubygems/rubygems/pull/8165)
339
- - Handle two `gemspec` usages in same Gemfile with same dep and compatible requirements [#7999](https://github.com/rubygems/rubygems/pull/7999)
340
- - Fix `bundle check` sometimes locking gems under the wrong source [#8148](https://github.com/rubygems/rubygems/pull/8148)
408
+ - Fix incompatible encodings error when paths with UTF-8 characters are involved [#8196](https://github.com/ruby/rubygems/pull/8196)
409
+ - Update `--ext=rust` to support compiling the native extension from source [#7610](https://github.com/ruby/rubygems/pull/7610)
410
+ - Print a proper error when there's a previous empty installation path with bad permissions [#8169](https://github.com/ruby/rubygems/pull/8169)
411
+ - Fix running `bundler` (with a final `r`) in a `bundle exec` context [#8165](https://github.com/ruby/rubygems/pull/8165)
412
+ - Handle two `gemspec` usages in same Gemfile with same dep and compatible requirements [#7999](https://github.com/ruby/rubygems/pull/7999)
413
+ - Fix `bundle check` sometimes locking gems under the wrong source [#8148](https://github.com/ruby/rubygems/pull/8148)
341
414
 
342
415
  ### Documentation:
343
416
 
344
- - Remove confusing `bundle config` documentation [#8177](https://github.com/rubygems/rubygems/pull/8177)
345
- - Rename bundler inline's `install` parameter and clarify docs [#8170](https://github.com/rubygems/rubygems/pull/8170)
346
- - Clarify `bundle install --quiet` documentation [#8163](https://github.com/rubygems/rubygems/pull/8163)
417
+ - Remove confusing `bundle config` documentation [#8177](https://github.com/ruby/rubygems/pull/8177)
418
+ - Rename bundler inline's `install` parameter and clarify docs [#8170](https://github.com/ruby/rubygems/pull/8170)
419
+ - Clarify `bundle install --quiet` documentation [#8163](https://github.com/ruby/rubygems/pull/8163)
347
420
 
348
421
  ## 2.5.22 (2024-10-16)
349
422
 
350
423
  ### Enhancements:
351
424
 
352
- - Update vendored `uri` and `net-http` [#8112](https://github.com/rubygems/rubygems/pull/8112)
425
+ - Update vendored `uri` and `net-http` [#8112](https://github.com/ruby/rubygems/pull/8112)
353
426
 
354
427
  ### Bug fixes:
355
428
 
356
- - Fix bundler sometimes crashing because of trying to use a version of psych compiled for a different Ruby [#8104](https://github.com/rubygems/rubygems/pull/8104)
429
+ - Fix bundler sometimes crashing because of trying to use a version of psych compiled for a different Ruby [#8104](https://github.com/ruby/rubygems/pull/8104)
357
430
 
358
431
  ## 2.5.21 (2024-10-03)
359
432
 
360
433
  ### Bug fixes:
361
434
 
362
- - Fix bug report template printed when changing a path source to a git source in frozen mode [#8079](https://github.com/rubygems/rubygems/pull/8079)
363
- - Fix `stub.activated?` sometimes returning false after activation under bundler [#8073](https://github.com/rubygems/rubygems/pull/8073)
364
- - Fix old cache format detection when application is not source controlled [#8076](https://github.com/rubygems/rubygems/pull/8076)
365
- - Fix `bundler/inline` resetting ENV changes [#8059](https://github.com/rubygems/rubygems/pull/8059)
435
+ - Fix bug report template printed when changing a path source to a git source in frozen mode [#8079](https://github.com/ruby/rubygems/pull/8079)
436
+ - Fix `stub.activated?` sometimes returning false after activation under bundler [#8073](https://github.com/ruby/rubygems/pull/8073)
437
+ - Fix old cache format detection when application is not source controlled [#8076](https://github.com/ruby/rubygems/pull/8076)
438
+ - Fix `bundler/inline` resetting ENV changes [#8059](https://github.com/ruby/rubygems/pull/8059)
366
439
 
367
440
  ## 2.5.20 (2024-09-24)
368
441
 
369
442
  ### Enhancements:
370
443
 
371
- - Don't try to auto-install dev versions of Bundler not available remotely [#8045](https://github.com/rubygems/rubygems/pull/8045)
372
- - Don't try to install locked bundler when `--local` is passed [#8041](https://github.com/rubygems/rubygems/pull/8041)
444
+ - Don't try to auto-install dev versions of Bundler not available remotely [#8045](https://github.com/ruby/rubygems/pull/8045)
445
+ - Don't try to install locked bundler when `--local` is passed [#8041](https://github.com/ruby/rubygems/pull/8041)
373
446
 
374
447
  ### Bug fixes:
375
448
 
376
- - Fix `bundler/inline` overwriting lockfiles [#8055](https://github.com/rubygems/rubygems/pull/8055)
377
- - Ensure refs directory in cached git source [#8047](https://github.com/rubygems/rubygems/pull/8047)
378
- - Fix `bundle outdated` with `--group` option [#8052](https://github.com/rubygems/rubygems/pull/8052)
449
+ - Fix `bundler/inline` overwriting lockfiles [#8055](https://github.com/ruby/rubygems/pull/8055)
450
+ - Ensure refs directory in cached git source [#8047](https://github.com/ruby/rubygems/pull/8047)
451
+ - Fix `bundle outdated` with `--group` option [#8052](https://github.com/ruby/rubygems/pull/8052)
379
452
 
380
453
  ## 2.5.19 (2024-09-18)
381
454
 
382
455
  ### Enhancements:
383
456
 
384
- - Raise original errors when unexpected errors happen during Gemfile evaluation [#8003](https://github.com/rubygems/rubygems/pull/8003)
385
- - Make an exe file executable when generating new gems [#8020](https://github.com/rubygems/rubygems/pull/8020)
386
- - Gracefully handle gem activation conflicts in inline mode [#5535](https://github.com/rubygems/rubygems/pull/5535)
387
- - Don't include hook templates in cached git source [#8013](https://github.com/rubygems/rubygems/pull/8013)
388
- - Fix some errors about a previous installation folder that's unsafe to remove, when there's no need to remove it [#7985](https://github.com/rubygems/rubygems/pull/7985)
389
- - Emit progress to stderr during `bundle outdated --parseable` [#7966](https://github.com/rubygems/rubygems/pull/7966)
390
- - Reject unknown platforms when running `bundle lock --add-platform` [#7967](https://github.com/rubygems/rubygems/pull/7967)
391
- - Emit progress to stderr when `--print` is passed to `bundle lock` [#7957](https://github.com/rubygems/rubygems/pull/7957)
457
+ - Raise original errors when unexpected errors happen during Gemfile evaluation [#8003](https://github.com/ruby/rubygems/pull/8003)
458
+ - Make an exe file executable when generating new gems [#8020](https://github.com/ruby/rubygems/pull/8020)
459
+ - Gracefully handle gem activation conflicts in inline mode [#5535](https://github.com/ruby/rubygems/pull/5535)
460
+ - Don't include hook templates in cached git source [#8013](https://github.com/ruby/rubygems/pull/8013)
461
+ - Fix some errors about a previous installation folder that's unsafe to remove, when there's no need to remove it [#7985](https://github.com/ruby/rubygems/pull/7985)
462
+ - Emit progress to stderr during `bundle outdated --parseable` [#7966](https://github.com/ruby/rubygems/pull/7966)
463
+ - Reject unknown platforms when running `bundle lock --add-platform` [#7967](https://github.com/ruby/rubygems/pull/7967)
464
+ - Emit progress to stderr when `--print` is passed to `bundle lock` [#7957](https://github.com/ruby/rubygems/pull/7957)
392
465
 
393
466
  ### Bug fixes:
394
467
 
395
- - Fix `bundle install --local` hitting the network when default gems are included [#8027](https://github.com/rubygems/rubygems/pull/8027)
396
- - Remove temporary `.lock` files unintentionally left around by gem installer [#8022](https://github.com/rubygems/rubygems/pull/8022)
397
- - Fix `bundle exec rake install` failing when local gem has extensions [#7977](https://github.com/rubygems/rubygems/pull/7977)
398
- - Load gemspecs in the context of its parent also when using local overrides [#7993](https://github.com/rubygems/rubygems/pull/7993)
399
- - Fix `bundler/inline` failing in Ruby 3.2 due to conflicting `securerandom` versions [#7984](https://github.com/rubygems/rubygems/pull/7984)
400
- - Don't blow up when explicit version is removed from some git sources [#7973](https://github.com/rubygems/rubygems/pull/7973)
401
- - Fix `gem exec rails new project` failing on Ruby 3.2 [#7960](https://github.com/rubygems/rubygems/pull/7960)
468
+ - Fix `bundle install --local` hitting the network when default gems are included [#8027](https://github.com/ruby/rubygems/pull/8027)
469
+ - Remove temporary `.lock` files unintentionally left around by gem installer [#8022](https://github.com/ruby/rubygems/pull/8022)
470
+ - Fix `bundle exec rake install` failing when local gem has extensions [#7977](https://github.com/ruby/rubygems/pull/7977)
471
+ - Load gemspecs in the context of its parent also when using local overrides [#7993](https://github.com/ruby/rubygems/pull/7993)
472
+ - Fix `bundler/inline` failing in Ruby 3.2 due to conflicting `securerandom` versions [#7984](https://github.com/ruby/rubygems/pull/7984)
473
+ - Don't blow up when explicit version is removed from some git sources [#7973](https://github.com/ruby/rubygems/pull/7973)
474
+ - Fix `gem exec rails new project` failing on Ruby 3.2 [#7960](https://github.com/ruby/rubygems/pull/7960)
402
475
 
403
476
  ### Documentation:
404
477
 
405
- - Improve `bundle add` man page [#5903](https://github.com/rubygems/rubygems/pull/5903)
406
- - Add some documentation about backwards compatibility [#7964](https://github.com/rubygems/rubygems/pull/7964)
478
+ - Improve `bundle add` man page [#5903](https://github.com/ruby/rubygems/pull/5903)
479
+ - Add some documentation about backwards compatibility [#7964](https://github.com/ruby/rubygems/pull/7964)
407
480
 
408
481
  ## 2.5.18 (2024-08-26)
409
482
 
410
483
  ### Enhancements:
411
484
 
412
- - Don't remove existing platform gems when PLATFORMS section is badly indented [#7916](https://github.com/rubygems/rubygems/pull/7916)
485
+ - Don't remove existing platform gems when PLATFORMS section is badly indented [#7916](https://github.com/ruby/rubygems/pull/7916)
413
486
 
414
487
  ### Bug fixes:
415
488
 
416
- - Fix error message when Bundler refuses to install due to frozen being set without a lockfile [#7955](https://github.com/rubygems/rubygems/pull/7955)
417
- - Fix several issues with the `--prefer-local` flag [#7951](https://github.com/rubygems/rubygems/pull/7951)
418
- - Restore support for passing relative paths to `git:` sources [#7950](https://github.com/rubygems/rubygems/pull/7950)
419
- - Regenerate previous git application caches that didn't include bare repos [#7926](https://github.com/rubygems/rubygems/pull/7926)
420
- - Fix `bundle update <indirect_dep>` failing to upgrade when versions present in two different sources [#7915](https://github.com/rubygems/rubygems/pull/7915)
489
+ - Fix error message when Bundler refuses to install due to frozen being set without a lockfile [#7955](https://github.com/ruby/rubygems/pull/7955)
490
+ - Fix several issues with the `--prefer-local` flag [#7951](https://github.com/ruby/rubygems/pull/7951)
491
+ - Restore support for passing relative paths to `git:` sources [#7950](https://github.com/ruby/rubygems/pull/7950)
492
+ - Regenerate previous git application caches that didn't include bare repos [#7926](https://github.com/ruby/rubygems/pull/7926)
493
+ - Fix `bundle update <indirect_dep>` failing to upgrade when versions present in two different sources [#7915](https://github.com/ruby/rubygems/pull/7915)
421
494
 
422
495
  ### Documentation:
423
496
 
424
- - Change new gem README template to have copyable code blocks [#7935](https://github.com/rubygems/rubygems/pull/7935)
497
+ - Change new gem README template to have copyable code blocks [#7935](https://github.com/ruby/rubygems/pull/7935)
425
498
 
426
499
  ## 2.5.17 (2024-08-01)
427
500
 
428
501
  ### Enhancements:
429
502
 
430
- - Print better log message when current platform is not present in the lockfile [#7891](https://github.com/rubygems/rubygems/pull/7891)
431
- - Explicitly encode `Gem::Dependency` to yaml [#7867](https://github.com/rubygems/rubygems/pull/7867)
432
- - Enable lockfile checksums on future Bundler 3 when there's no previous lockfile [#7805](https://github.com/rubygems/rubygems/pull/7805)
503
+ - Print better log message when current platform is not present in the lockfile [#7891](https://github.com/ruby/rubygems/pull/7891)
504
+ - Explicitly encode `Gem::Dependency` to yaml [#7867](https://github.com/ruby/rubygems/pull/7867)
505
+ - Enable lockfile checksums on future Bundler 3 when there's no previous lockfile [#7805](https://github.com/ruby/rubygems/pull/7805)
433
506
 
434
507
  ### Bug fixes:
435
508
 
436
- - Fix truffleruby removing gems from lockfile [#7795](https://github.com/rubygems/rubygems/pull/7795)
437
- - Fix `bundle check` exit code when gem git source is not checked out [#7894](https://github.com/rubygems/rubygems/pull/7894)
438
- - Generate gems.rb from Gemfile.tt template for `bundle-gem` [#7853](https://github.com/rubygems/rubygems/pull/7853)
439
- - Fix git source cache being used as the install location [#4469](https://github.com/rubygems/rubygems/pull/4469)
440
- - Fix `bundle exec gem uninstall` [#7886](https://github.com/rubygems/rubygems/pull/7886)
509
+ - Fix truffleruby removing gems from lockfile [#7795](https://github.com/ruby/rubygems/pull/7795)
510
+ - Fix `bundle check` exit code when gem git source is not checked out [#7894](https://github.com/ruby/rubygems/pull/7894)
511
+ - Generate gems.rb from Gemfile.tt template for `bundle-gem` [#7853](https://github.com/ruby/rubygems/pull/7853)
512
+ - Fix git source cache being used as the install location [#4469](https://github.com/ruby/rubygems/pull/4469)
513
+ - Fix `bundle exec gem uninstall` [#7886](https://github.com/ruby/rubygems/pull/7886)
441
514
 
442
515
  ## 2.5.16 (2024-07-18)
443
516
 
444
517
  ### Bug fixes:
445
518
 
446
- - Fix platform removal regression when `platforms:` used in the Gemfile [#7864](https://github.com/rubygems/rubygems/pull/7864)
447
- - Fix standalone script when default gems with extensions are used [#7870](https://github.com/rubygems/rubygems/pull/7870)
448
- - Fix another case of `bundle lock --add-platform` doing nothing [#7848](https://github.com/rubygems/rubygems/pull/7848)
449
- - Fix bad error messages when using `bundle add` with frozen mode set [#7845](https://github.com/rubygems/rubygems/pull/7845)
450
- - Fix generic platform gems getting incorrectly removed from lockfile [#7833](https://github.com/rubygems/rubygems/pull/7833)
519
+ - Fix platform removal regression when `platforms:` used in the Gemfile [#7864](https://github.com/ruby/rubygems/pull/7864)
520
+ - Fix standalone script when default gems with extensions are used [#7870](https://github.com/ruby/rubygems/pull/7870)
521
+ - Fix another case of `bundle lock --add-platform` doing nothing [#7848](https://github.com/ruby/rubygems/pull/7848)
522
+ - Fix bad error messages when using `bundle add` with frozen mode set [#7845](https://github.com/ruby/rubygems/pull/7845)
523
+ - Fix generic platform gems getting incorrectly removed from lockfile [#7833](https://github.com/ruby/rubygems/pull/7833)
451
524
 
452
525
  ### Performance:
453
526
 
454
- - Use `caller_locations` instead of splitting `caller` [#7708](https://github.com/rubygems/rubygems/pull/7708)
527
+ - Use `caller_locations` instead of splitting `caller` [#7708](https://github.com/ruby/rubygems/pull/7708)
455
528
 
456
529
  ## 2.5.15 (2024-07-09)
457
530
 
458
531
  ### Enhancements:
459
532
 
460
- - Support `--no-test`, `--no-ci`, and `--no-linter` options [#7780](https://github.com/rubygems/rubygems/pull/7780)
461
- - Allow bundle command in new gems with invalid metadata [#7707](https://github.com/rubygems/rubygems/pull/7707)
533
+ - Support `--no-test`, `--no-ci`, and `--no-linter` options [#7780](https://github.com/ruby/rubygems/pull/7780)
534
+ - Allow bundle command in new gems with invalid metadata [#7707](https://github.com/ruby/rubygems/pull/7707)
462
535
 
463
536
  ### Bug fixes:
464
537
 
465
- - Protect creating RubyGems binstubs with a file lock [#7841](https://github.com/rubygems/rubygems/pull/7841)
466
- - Only allow valid values for `--test`, `--ci`, and `--linter` options [#7801](https://github.com/rubygems/rubygems/pull/7801)
467
- - Fix `bundle lock --add-platform <current_platform>` doing nothing [#7803](https://github.com/rubygems/rubygems/pull/7803)
468
- - Print a proper error when bin dir does not have writable permission bit [#7794](https://github.com/rubygems/rubygems/pull/7794)
538
+ - Protect creating RubyGems binstubs with a file lock [#7841](https://github.com/ruby/rubygems/pull/7841)
539
+ - Only allow valid values for `--test`, `--ci`, and `--linter` options [#7801](https://github.com/ruby/rubygems/pull/7801)
540
+ - Fix `bundle lock --add-platform <current_platform>` doing nothing [#7803](https://github.com/ruby/rubygems/pull/7803)
541
+ - Print a proper error when bin dir does not have writable permission bit [#7794](https://github.com/ruby/rubygems/pull/7794)
469
542
 
470
543
  ### Documentation:
471
544
 
472
- - Regenerate bundler docs for June 2024 [#7787](https://github.com/rubygems/rubygems/pull/7787)
545
+ - Regenerate bundler docs for June 2024 [#7787](https://github.com/ruby/rubygems/pull/7787)
473
546
 
474
547
  ## 2.5.14 (2024-06-21)
475
548
 
476
549
  ### Bug fixes:
477
550
 
478
- - Fix credentials being re-added when re-resolving without a full unlock [#7767](https://github.com/rubygems/rubygems/pull/7767)
479
- - Fix `bundle update <gem_name>` edge case [#7770](https://github.com/rubygems/rubygems/pull/7770)
480
- - Fix `bundle fund` when the gemfile contains optional groups [#7758](https://github.com/rubygems/rubygems/pull/7758)
551
+ - Fix credentials being re-added when re-resolving without a full unlock [#7767](https://github.com/ruby/rubygems/pull/7767)
552
+ - Fix `bundle update <gem_name>` edge case [#7770](https://github.com/ruby/rubygems/pull/7770)
553
+ - Fix `bundle fund` when the gemfile contains optional groups [#7758](https://github.com/ruby/rubygems/pull/7758)
481
554
 
482
555
  ## 2.5.13 (2024-06-14)
483
556
 
484
557
  ### Bug fixes:
485
558
 
486
- - Fix funding metadata not being printed in some situations [#7746](https://github.com/rubygems/rubygems/pull/7746)
487
- - Make sure to not re-resolve when a not fully specific local platform is locked [#7751](https://github.com/rubygems/rubygems/pull/7751)
488
- - Don't print bug report template when bin dir is not writable [#7748](https://github.com/rubygems/rubygems/pull/7748)
559
+ - Fix funding metadata not being printed in some situations [#7746](https://github.com/ruby/rubygems/pull/7746)
560
+ - Make sure to not re-resolve when a not fully specific local platform is locked [#7751](https://github.com/ruby/rubygems/pull/7751)
561
+ - Don't print bug report template when bin dir is not writable [#7748](https://github.com/ruby/rubygems/pull/7748)
489
562
 
490
563
  ## 2.5.12 (2024-06-13)
491
564
 
492
565
  ### Enhancements:
493
566
 
494
- - Keep credentials in lockfile if they are already there [#7720](https://github.com/rubygems/rubygems/pull/7720)
495
- - Auto switch to locked bundler version even when using binstubs [#7719](https://github.com/rubygems/rubygems/pull/7719)
496
- - Don't validate local gemspecs twice unnecessarily [#7725](https://github.com/rubygems/rubygems/pull/7725)
497
- - Improve default gem handling by treating default gems as any other gem [#7673](https://github.com/rubygems/rubygems/pull/7673)
567
+ - Keep credentials in lockfile if they are already there [#7720](https://github.com/ruby/rubygems/pull/7720)
568
+ - Auto switch to locked bundler version even when using binstubs [#7719](https://github.com/ruby/rubygems/pull/7719)
569
+ - Don't validate local gemspecs twice unnecessarily [#7725](https://github.com/ruby/rubygems/pull/7725)
570
+ - Improve default gem handling by treating default gems as any other gem [#7673](https://github.com/ruby/rubygems/pull/7673)
498
571
 
499
572
  ### Bug fixes:
500
573
 
501
- - Fix slow and incorrect resolution when adding `sorbet` to a Gemfile and the lockfile only includes "RUBY" in the platforms section [#7731](https://github.com/rubygems/rubygems/pull/7731)
502
- - Fix duplicated config keys generated when `fallback_timeout` uri option is used [#7704](https://github.com/rubygems/rubygems/pull/7704)
503
- - Fix `bundle exec` no longer working in truffleruby after explicit `require` of `pathname` was removed [#7703](https://github.com/rubygems/rubygems/pull/7703)
504
- - Don't let `bundle config` report a path without a Gemfile as "local app" [#7687](https://github.com/rubygems/rubygems/pull/7687)
574
+ - Fix slow and incorrect resolution when adding `sorbet` to a Gemfile and the lockfile only includes "RUBY" in the platforms section [#7731](https://github.com/ruby/rubygems/pull/7731)
575
+ - Fix duplicated config keys generated when `fallback_timeout` uri option is used [#7704](https://github.com/ruby/rubygems/pull/7704)
576
+ - Fix `bundle exec` no longer working in truffleruby after explicit `require` of `pathname` was removed [#7703](https://github.com/ruby/rubygems/pull/7703)
577
+ - Don't let `bundle config` report a path without a Gemfile as "local app" [#7687](https://github.com/ruby/rubygems/pull/7687)
505
578
 
506
579
  ### Documentation:
507
580
 
508
- - Clarify BUNDLE_USER_CONFIG is a file [#7668](https://github.com/rubygems/rubygems/pull/7668)
581
+ - Clarify BUNDLE_USER_CONFIG is a file [#7668](https://github.com/ruby/rubygems/pull/7668)
509
582
 
510
583
  ## 2.5.11 (2024-05-28)
511
584
 
512
585
  ### Deprecations:
513
586
 
514
- - Deprecate Bundler constants [#7653](https://github.com/rubygems/rubygems/pull/7653)
587
+ - Deprecate Bundler constants [#7653](https://github.com/ruby/rubygems/pull/7653)
515
588
 
516
589
  ### Enhancements:
517
590
 
518
- - Bump `bundle gem` generated COC to Contributor Covenant 2.1 [#7692](https://github.com/rubygems/rubygems/pull/7692)
519
- - Retry a full clone when git server does not support shallow capabilities [#7649](https://github.com/rubygems/rubygems/pull/7649)
591
+ - Bump `bundle gem` generated COC to Contributor Covenant 2.1 [#7692](https://github.com/ruby/rubygems/pull/7692)
592
+ - Retry a full clone when git server does not support shallow capabilities [#7649](https://github.com/ruby/rubygems/pull/7649)
520
593
 
521
594
  ### Bug fixes:
522
595
 
523
- - Fix regression when caching gems from secondary sources [#7659](https://github.com/rubygems/rubygems/pull/7659)
524
- - Fix error when Bundler installation is corrupted [#7642](https://github.com/rubygems/rubygems/pull/7642)
525
- - Fix crash caused by RubyGems `require` gem activation logic running before Bundler can properly register its own monkeypatches [#7647](https://github.com/rubygems/rubygems/pull/7647)
596
+ - Fix regression when caching gems from secondary sources [#7659](https://github.com/ruby/rubygems/pull/7659)
597
+ - Fix error when Bundler installation is corrupted [#7642](https://github.com/ruby/rubygems/pull/7642)
598
+ - Fix crash caused by RubyGems `require` gem activation logic running before Bundler can properly register its own monkeypatches [#7647](https://github.com/ruby/rubygems/pull/7647)
526
599
 
527
600
  ### Performance:
528
601
 
529
- - Update cache checksums to decrease string allocations [#7637](https://github.com/rubygems/rubygems/pull/7637)
530
- - Fix performance regression in applications with a local cache [#7680](https://github.com/rubygems/rubygems/pull/7680)
602
+ - Update cache checksums to decrease string allocations [#7637](https://github.com/ruby/rubygems/pull/7637)
603
+ - Fix performance regression in applications with a local cache [#7680](https://github.com/ruby/rubygems/pull/7680)
531
604
 
532
605
  ### Documentation:
533
606
 
534
- - Recommend `bin/rake` over `rake` in contributing docs [#7648](https://github.com/rubygems/rubygems/pull/7648)
535
- - Monthly man update for May 2024 [#7640](https://github.com/rubygems/rubygems/pull/7640)
536
- - Clarify Bundler support policy [#7633](https://github.com/rubygems/rubygems/pull/7633)
607
+ - Recommend `bin/rake` over `rake` in contributing docs [#7648](https://github.com/ruby/rubygems/pull/7648)
608
+ - Monthly man update for May 2024 [#7640](https://github.com/ruby/rubygems/pull/7640)
609
+ - Clarify Bundler support policy [#7633](https://github.com/ruby/rubygems/pull/7633)
537
610
 
538
611
  ## 2.5.10 (2024-05-03)
539
612
 
540
613
  ### Security:
541
614
 
542
- - Never write credentials to lockfiles [#7560](https://github.com/rubygems/rubygems/pull/7560)
615
+ - Never write credentials to lockfiles [#7560](https://github.com/ruby/rubygems/pull/7560)
543
616
 
544
617
  ### Enhancements:
545
618
 
546
- - Add auto_install support to require "bundler/setup" [#6561](https://github.com/rubygems/rubygems/pull/6561)
547
- - Add `--glob` flag to `bundle add` [#7557](https://github.com/rubygems/rubygems/pull/7557)
619
+ - Add auto_install support to require "bundler/setup" [#6561](https://github.com/ruby/rubygems/pull/6561)
620
+ - Add `--glob` flag to `bundle add` [#7557](https://github.com/ruby/rubygems/pull/7557)
548
621
 
549
622
  ### Bug fixes:
550
623
 
551
- - Make sure `bundle update <specific_gems>` can always update to the latest resolvable version of each requested gem [#7558](https://github.com/rubygems/rubygems/pull/7558)
552
- - Show better error when installed gemspecs are unreadable [#7603](https://github.com/rubygems/rubygems/pull/7603)
553
- - Fix `bundle update` not working on an out of sync lockfile [#7607](https://github.com/rubygems/rubygems/pull/7607)
554
- - Don't upcase Windows ENV before backing it up [#7574](https://github.com/rubygems/rubygems/pull/7574)
555
- - Properly resolve aliases when `bundle help` is run [#7601](https://github.com/rubygems/rubygems/pull/7601)
556
- - Fix issue installing gems with linux-musl variant on non musl linux [#7583](https://github.com/rubygems/rubygems/pull/7583)
624
+ - Make sure `bundle update <specific_gems>` can always update to the latest resolvable version of each requested gem [#7558](https://github.com/ruby/rubygems/pull/7558)
625
+ - Show better error when installed gemspecs are unreadable [#7603](https://github.com/ruby/rubygems/pull/7603)
626
+ - Fix `bundle update` not working on an out of sync lockfile [#7607](https://github.com/ruby/rubygems/pull/7607)
627
+ - Don't upcase Windows ENV before backing it up [#7574](https://github.com/ruby/rubygems/pull/7574)
628
+ - Properly resolve aliases when `bundle help` is run [#7601](https://github.com/ruby/rubygems/pull/7601)
629
+ - Fix issue installing gems with linux-musl variant on non musl linux [#7583](https://github.com/ruby/rubygems/pull/7583)
557
630
 
558
631
  ### Documentation:
559
632
 
560
- - Clarify `bundle check` behaviour in docs [#7613](https://github.com/rubygems/rubygems/pull/7613)
633
+ - Clarify `bundle check` behaviour in docs [#7613](https://github.com/ruby/rubygems/pull/7613)
561
634
 
562
635
  ## 2.5.9 (2024-04-12)
563
636
 
564
637
  ### Bug fixes:
565
638
 
566
- - Fix installing plugins via relative paths [#7571](https://github.com/rubygems/rubygems/pull/7571)
639
+ - Fix installing plugins via relative paths [#7571](https://github.com/ruby/rubygems/pull/7571)
567
640
 
568
641
  ## 2.5.8 (2024-04-11)
569
642
 
570
643
  ### Enhancements:
571
644
 
572
- - Allow installing plugins from path via CLI [#6960](https://github.com/rubygems/rubygems/pull/6960)
573
- - Improve validation of `bundle plugin install` options [#7529](https://github.com/rubygems/rubygems/pull/7529)
645
+ - Allow installing plugins from path via CLI [#6960](https://github.com/ruby/rubygems/pull/6960)
646
+ - Improve validation of `bundle plugin install` options [#7529](https://github.com/ruby/rubygems/pull/7529)
574
647
 
575
648
  ### Bug fixes:
576
649
 
577
- - Fix resolver error message when it runs out of versions due to `--strict --patch` filtering out everything [#7527](https://github.com/rubygems/rubygems/pull/7527)
578
- - Fix incorrect `bundle update --bundler` message [#7516](https://github.com/rubygems/rubygems/pull/7516)
650
+ - Fix resolver error message when it runs out of versions due to `--strict --patch` filtering out everything [#7527](https://github.com/ruby/rubygems/pull/7527)
651
+ - Fix incorrect `bundle update --bundler` message [#7516](https://github.com/ruby/rubygems/pull/7516)
579
652
 
580
653
  ## 2.5.7 (2024-03-22)
581
654
 
582
655
  ### Deprecations:
583
656
 
584
- - Deprecate `bundle plugin install --local-git=` [#7048](https://github.com/rubygems/rubygems/pull/7048)
657
+ - Deprecate `bundle plugin install --local-git=` [#7048](https://github.com/ruby/rubygems/pull/7048)
585
658
 
586
659
  ### Enhancements:
587
660
 
588
- - Ignore commented out keys in config file [#7514](https://github.com/rubygems/rubygems/pull/7514)
589
- - Fix exclusion of `.gemspec` file itself in `bundle gem` generated gemspec file [#7488](https://github.com/rubygems/rubygems/pull/7488)
590
- - Remove redundant configs from `bundle gem` generated rubocop configuration [#7478](https://github.com/rubygems/rubygems/pull/7478)
591
- - Add `gitlab:` git source shorthand [#7449](https://github.com/rubygems/rubygems/pull/7449)
592
- - Use full path for `instance_eval` in `Bundler::DSL#eval_gemfile` [#7471](https://github.com/rubygems/rubygems/pull/7471)
661
+ - Ignore commented out keys in config file [#7514](https://github.com/ruby/rubygems/pull/7514)
662
+ - Fix exclusion of `.gemspec` file itself in `bundle gem` generated gemspec file [#7488](https://github.com/ruby/rubygems/pull/7488)
663
+ - Remove redundant configs from `bundle gem` generated rubocop configuration [#7478](https://github.com/ruby/rubygems/pull/7478)
664
+ - Add `gitlab:` git source shorthand [#7449](https://github.com/ruby/rubygems/pull/7449)
665
+ - Use full path for `instance_eval` in `Bundler::DSL#eval_gemfile` [#7471](https://github.com/ruby/rubygems/pull/7471)
593
666
 
594
667
  ### Documentation:
595
668
 
596
- - Use https instead of http in documentation links [#7481](https://github.com/rubygems/rubygems/pull/7481)
669
+ - Use https instead of http in documentation links [#7481](https://github.com/ruby/rubygems/pull/7481)
597
670
 
598
671
  ## 2.5.6 (2024-02-06)
599
672
 
600
673
  ### Deprecations:
601
674
 
602
- - Refactor lockfile generation and deprecate `Definition#lock` with explicit lockfile [#7047](https://github.com/rubygems/rubygems/pull/7047)
675
+ - Refactor lockfile generation and deprecate `Definition#lock` with explicit lockfile [#7047](https://github.com/ruby/rubygems/pull/7047)
603
676
 
604
677
  ### Enhancements:
605
678
 
606
- - Bump `required_ruby_version` to be used in `bundle gem` template [#7430](https://github.com/rubygems/rubygems/pull/7430)
679
+ - Bump `required_ruby_version` to be used in `bundle gem` template [#7430](https://github.com/ruby/rubygems/pull/7430)
607
680
 
608
681
  ### Bug fixes:
609
682
 
610
- - Fix musl platform not being added to the lockfile [#7441](https://github.com/rubygems/rubygems/pull/7441)
611
- - Let `Bundler.with_original_env` properly restore env variables originally empty [#7383](https://github.com/rubygems/rubygems/pull/7383)
683
+ - Fix musl platform not being added to the lockfile [#7441](https://github.com/ruby/rubygems/pull/7441)
684
+ - Let `Bundler.with_original_env` properly restore env variables originally empty [#7383](https://github.com/ruby/rubygems/pull/7383)
612
685
 
613
686
  ## 2.5.5 (2024-01-18)
614
687
 
615
688
  ### Bug fixes:
616
689
 
617
- - Fix development dependency not being added if introduced by two gemspecs [#7358](https://github.com/rubygems/rubygems/pull/7358)
618
- - Fix ETag quoting regression in If-None-Match header of compact index request [#7352](https://github.com/rubygems/rubygems/pull/7352)
690
+ - Fix development dependency not being added if introduced by two gemspecs [#7358](https://github.com/ruby/rubygems/pull/7358)
691
+ - Fix ETag quoting regression in If-None-Match header of compact index request [#7352](https://github.com/ruby/rubygems/pull/7352)
619
692
 
620
693
  ### Documentation:
621
694
 
622
- - Refer to underscores as underscores [#7364](https://github.com/rubygems/rubygems/pull/7364)
695
+ - Refer to underscores as underscores [#7364](https://github.com/ruby/rubygems/pull/7364)
623
696
 
624
697
  ## 2.5.4 (2024-01-04)
625
698
 
626
699
  ### Bug fixes:
627
700
 
628
- - Fix resolution when different platform specific gems have different dependencies [#7324](https://github.com/rubygems/rubygems/pull/7324)
701
+ - Fix resolution when different platform specific gems have different dependencies [#7324](https://github.com/ruby/rubygems/pull/7324)
629
702
 
630
703
  ## 2.5.3 (2023-12-22)
631
704
 
632
705
  ### Bug fixes:
633
706
 
634
- - Fix incorrect error when Gemfile overrides a gemspec development dependency [#7319](https://github.com/rubygems/rubygems/pull/7319)
707
+ - Fix incorrect error when Gemfile overrides a gemspec development dependency [#7319](https://github.com/ruby/rubygems/pull/7319)
635
708
 
636
709
  ## 2.5.2 (2023-12-21)
637
710
 
638
711
  ### Enhancements:
639
712
 
640
- - Avoid vendored thor gem polluting the global namespace [#7305](https://github.com/rubygems/rubygems/pull/7305)
713
+ - Avoid vendored thor gem polluting the global namespace [#7305](https://github.com/ruby/rubygems/pull/7305)
641
714
 
642
715
  ### Bug fixes:
643
716
 
644
- - Fix `bundle update --bundler` when latest version does not support current ruby [#7310](https://github.com/rubygems/rubygems/pull/7310)
645
- - Fix incorrect lockfiles being generated in some situations [#7307](https://github.com/rubygems/rubygems/pull/7307)
646
- - Fix incorrect re-resolve messages [#7306](https://github.com/rubygems/rubygems/pull/7306)
717
+ - Fix `bundle update --bundler` when latest version does not support current ruby [#7310](https://github.com/ruby/rubygems/pull/7310)
718
+ - Fix incorrect lockfiles being generated in some situations [#7307](https://github.com/ruby/rubygems/pull/7307)
719
+ - Fix incorrect re-resolve messages [#7306](https://github.com/ruby/rubygems/pull/7306)
647
720
 
648
721
  ## 2.5.1 (2023-12-15)
649
722
 
650
723
  ### Bug fixes:
651
724
 
652
- - Fix `ruby` Gemfile DSL with `file:` parameter no longer working [#7288](https://github.com/rubygems/rubygems/pull/7288)
725
+ - Fix `ruby` Gemfile DSL with `file:` parameter no longer working [#7288](https://github.com/ruby/rubygems/pull/7288)
653
726
 
654
727
  ### Performance:
655
728
 
656
- - Save array allocation for every dependency in Gemfile [#7270](https://github.com/rubygems/rubygems/pull/7270)
729
+ - Save array allocation for every dependency in Gemfile [#7270](https://github.com/ruby/rubygems/pull/7270)
657
730
 
658
731
  ## 2.5.0 (2023-12-15)
659
732
 
660
733
  ### Breaking changes:
661
734
 
662
- - Drop ruby 2.6 and 2.7 support [#7116](https://github.com/rubygems/rubygems/pull/7116)
663
- - The `:mswin`, `:mswin64`, `:mingw`, and `:x64_mingw` Gemfile `platform` values are soft-deprecated and aliased to `:windows` [#6391](https://github.com/rubygems/rubygems/pull/6391)
735
+ - Drop ruby 2.6 and 2.7 support [#7116](https://github.com/ruby/rubygems/pull/7116)
736
+ - The `:mswin`, `:mswin64`, `:mingw`, and `:x64_mingw` Gemfile `platform` values are soft-deprecated and aliased to `:windows` [#6391](https://github.com/ruby/rubygems/pull/6391)
664
737
 
665
738
  ### Features:
666
739
 
667
- - Leverage ruby feature to warn when requiring default gems not included in the bundle that will be turned into bundled gems in the future [#6831](https://github.com/rubygems/rubygems/pull/6831)
668
- - Introduce `bundle config set version` feature to choose the version of Bundler that should be used and potentially disable using the `lockfile` version by setting it to `system` [#6817](https://github.com/rubygems/rubygems/pull/6817)
740
+ - Leverage ruby feature to warn when requiring default gems not included in the bundle that will be turned into bundled gems in the future [#6831](https://github.com/ruby/rubygems/pull/6831)
741
+ - Introduce `bundle config set version` feature to choose the version of Bundler that should be used and potentially disable using the `lockfile` version by setting it to `system` [#6817](https://github.com/ruby/rubygems/pull/6817)
669
742
 
670
743
  ### Performance:
671
744
 
672
- - Use match? when regexp match data is unused [#7263](https://github.com/rubygems/rubygems/pull/7263)
673
- - Avoid some allocations when evaluating `ruby` Gemfile DSL [#7251](https://github.com/rubygems/rubygems/pull/7251)
674
- - Reduce array allocations when loading definition [#7199](https://github.com/rubygems/rubygems/pull/7199)
675
- - Avoid re-compiling static regexp in a loop [#7198](https://github.com/rubygems/rubygems/pull/7198)
676
- - Reduce allocations when installing gems with bundler [#6977](https://github.com/rubygems/rubygems/pull/6977)
677
- - Use a shared connection pool for fetching gems [#7079](https://github.com/rubygems/rubygems/pull/7079)
678
- - Reduce allocations when parsing compact index [#6971](https://github.com/rubygems/rubygems/pull/6971)
745
+ - Use match? when regexp match data is unused [#7263](https://github.com/ruby/rubygems/pull/7263)
746
+ - Avoid some allocations when evaluating `ruby` Gemfile DSL [#7251](https://github.com/ruby/rubygems/pull/7251)
747
+ - Reduce array allocations when loading definition [#7199](https://github.com/ruby/rubygems/pull/7199)
748
+ - Avoid re-compiling static regexp in a loop [#7198](https://github.com/ruby/rubygems/pull/7198)
749
+ - Reduce allocations when installing gems with bundler [#6977](https://github.com/ruby/rubygems/pull/6977)
750
+ - Use a shared connection pool for fetching gems [#7079](https://github.com/ruby/rubygems/pull/7079)
751
+ - Reduce allocations when parsing compact index [#6971](https://github.com/ruby/rubygems/pull/6971)
679
752
 
680
753
  ### Enhancements:
681
754
 
682
- - Add 3.4 as a supported ruby version in Gemfile DSL [#7264](https://github.com/rubygems/rubygems/pull/7264)
683
- - Improve install advice when some gems are not found [#7265](https://github.com/rubygems/rubygems/pull/7265)
684
- - Vendor `net-http`, `net-protocol`, `resolv`, and `timeout` to reduce conflicts between Gemfile gems and internal dependencies [#6793](https://github.com/rubygems/rubygems/pull/6793)
685
- - Allow `bundle pristine` to run in parallel [#6927](https://github.com/rubygems/rubygems/pull/6927)
686
- - Make `bundle lock` always touch the lockfile in non-frozen mode [#7220](https://github.com/rubygems/rubygems/pull/7220)
687
- - Use `Minitest::TestTask` in a template file for `minitest` [#7234](https://github.com/rubygems/rubygems/pull/7234)
688
- - Add missing services to CI detection and make it consistent between RubyGems and Bundler [#7205](https://github.com/rubygems/rubygems/pull/7205)
689
- - Allow auto-install to install missing git gems [#7197](https://github.com/rubygems/rubygems/pull/7197)
690
- - Stop remembering cli flags like `--jobs` or `--retry` in configuration [#7191](https://github.com/rubygems/rubygems/pull/7191)
691
- - Simplify remembered flags deprecation message [#7189](https://github.com/rubygems/rubygems/pull/7189)
692
- - Make sure to `require "rubygems"` explicitly [#7139](https://github.com/rubygems/rubygems/pull/7139)
693
- - Handle development dependencies duplicated in gemspec vs Gemfile [#6014](https://github.com/rubygems/rubygems/pull/6014)
694
- - Make lockfiles generated on macOS include a lock for Linux by default [#5700](https://github.com/rubygems/rubygems/pull/5700)
695
- - Only add a dummy bundler spec to the metadata source when necessary [#4443](https://github.com/rubygems/rubygems/pull/4443)
755
+ - Add 3.4 as a supported ruby version in Gemfile DSL [#7264](https://github.com/ruby/rubygems/pull/7264)
756
+ - Improve install advice when some gems are not found [#7265](https://github.com/ruby/rubygems/pull/7265)
757
+ - Vendor `net-http`, `net-protocol`, `resolv`, and `timeout` to reduce conflicts between Gemfile gems and internal dependencies [#6793](https://github.com/ruby/rubygems/pull/6793)
758
+ - Allow `bundle pristine` to run in parallel [#6927](https://github.com/ruby/rubygems/pull/6927)
759
+ - Make `bundle lock` always touch the lockfile in non-frozen mode [#7220](https://github.com/ruby/rubygems/pull/7220)
760
+ - Use `Minitest::TestTask` in a template file for `minitest` [#7234](https://github.com/ruby/rubygems/pull/7234)
761
+ - Add missing services to CI detection and make it consistent between RubyGems and Bundler [#7205](https://github.com/ruby/rubygems/pull/7205)
762
+ - Allow auto-install to install missing git gems [#7197](https://github.com/ruby/rubygems/pull/7197)
763
+ - Stop remembering cli flags like `--jobs` or `--retry` in configuration [#7191](https://github.com/ruby/rubygems/pull/7191)
764
+ - Simplify remembered flags deprecation message [#7189](https://github.com/ruby/rubygems/pull/7189)
765
+ - Make sure to `require "rubygems"` explicitly [#7139](https://github.com/ruby/rubygems/pull/7139)
766
+ - Handle development dependencies duplicated in gemspec vs Gemfile [#6014](https://github.com/ruby/rubygems/pull/6014)
767
+ - Make lockfiles generated on macOS include a lock for Linux by default [#5700](https://github.com/ruby/rubygems/pull/5700)
768
+ - Only add a dummy bundler spec to the metadata source when necessary [#4443](https://github.com/ruby/rubygems/pull/4443)
696
769
 
697
770
  ### Bug fixes:
698
771
 
699
- - Resolve `ruby file: ".ruby-version"` relative to containing Gemfile [#7250](https://github.com/rubygems/rubygems/pull/7250)
700
- - Implement opaque ETag in Compact Index to avoid falling back to old index in servers with different etag implementations [#7122](https://github.com/rubygems/rubygems/pull/7122)
701
- - Fix `bundle install --system` deprecation advice [#7190](https://github.com/rubygems/rubygems/pull/7190)
702
- - Fix invalid platform removal missing adjacent platforms [#7170](https://github.com/rubygems/rubygems/pull/7170)
772
+ - Resolve `ruby file: ".ruby-version"` relative to containing Gemfile [#7250](https://github.com/ruby/rubygems/pull/7250)
773
+ - Implement opaque ETag in Compact Index to avoid falling back to old index in servers with different etag implementations [#7122](https://github.com/ruby/rubygems/pull/7122)
774
+ - Fix `bundle install --system` deprecation advice [#7190](https://github.com/ruby/rubygems/pull/7190)
775
+ - Fix invalid platform removal missing adjacent platforms [#7170](https://github.com/ruby/rubygems/pull/7170)
703
776
 
704
777
  ### Documentation:
705
778
 
706
- - Add missing --prefer-local to Synopsis in bundle-install.1.ronn [#7194](https://github.com/rubygems/rubygems/pull/7194)
707
- - Update GitHub organization of Standard Ruby in `bundle gem` output and generated configuration [#6818](https://github.com/rubygems/rubygems/pull/6818)
708
- - Replace "prior to" with "immediately after" in `bundle gem` generated README file [#6338](https://github.com/rubygems/rubygems/pull/6338)
779
+ - Add missing --prefer-local to Synopsis in bundle-install.1.ronn [#7194](https://github.com/ruby/rubygems/pull/7194)
780
+ - Update GitHub organization of Standard Ruby in `bundle gem` output and generated configuration [#6818](https://github.com/ruby/rubygems/pull/6818)
781
+ - Replace "prior to" with "immediately after" in `bundle gem` generated README file [#6338](https://github.com/ruby/rubygems/pull/6338)
709
782
 
710
783
  ## 2.4.22 (2023-11-09)
711
784
 
712
785
  ### Enhancements:
713
786
 
714
- - Add Bundler::Plugin.loaded? helper [#6964](https://github.com/rubygems/rubygems/pull/6964)
715
- - Give better error when previous installation folder is insecure to remove [#7030](https://github.com/rubygems/rubygems/pull/7030)
716
- - Set file path when eval-ing local specification in EndpointSpecification [#7106](https://github.com/rubygems/rubygems/pull/7106)
717
- - Git ignore the proper files for the CI service selected for `bundle gem` [#7101](https://github.com/rubygems/rubygems/pull/7101)
718
- - Update vendored thor to v1.3.0 [#7078](https://github.com/rubygems/rubygems/pull/7078)
719
- - Restore using old way of passing Ruby version to resolver [#7066](https://github.com/rubygems/rubygems/pull/7066)
720
- - Bump vendored net-http-persistent to 4.0.2 [#6787](https://github.com/rubygems/rubygems/pull/6787)
787
+ - Add Bundler::Plugin.loaded? helper [#6964](https://github.com/ruby/rubygems/pull/6964)
788
+ - Give better error when previous installation folder is insecure to remove [#7030](https://github.com/ruby/rubygems/pull/7030)
789
+ - Set file path when eval-ing local specification in EndpointSpecification [#7106](https://github.com/ruby/rubygems/pull/7106)
790
+ - Git ignore the proper files for the CI service selected for `bundle gem` [#7101](https://github.com/ruby/rubygems/pull/7101)
791
+ - Update vendored thor to v1.3.0 [#7078](https://github.com/ruby/rubygems/pull/7078)
792
+ - Restore using old way of passing Ruby version to resolver [#7066](https://github.com/ruby/rubygems/pull/7066)
793
+ - Bump vendored net-http-persistent to 4.0.2 [#6787](https://github.com/ruby/rubygems/pull/6787)
721
794
 
722
795
  ### Bug fixes:
723
796
 
724
- - Fix regression when installing native extensions on universal rubies [#7077](https://github.com/rubygems/rubygems/pull/7077)
725
- - Only remove bundler plugin gem when it's inside the cache [#7001](https://github.com/rubygems/rubygems/pull/7001)
726
- - Don't show bug report template when GEM_HOME has no writable bit [#7113](https://github.com/rubygems/rubygems/pull/7113)
727
- - Fix regression in old git versions [#7114](https://github.com/rubygems/rubygems/pull/7114)
728
- - Handle empty array at built-in YAML serializer [#7099](https://github.com/rubygems/rubygems/pull/7099)
729
- - Fix force_ruby_platform: when the lockfile only locks the ruby platform [#6936](https://github.com/rubygems/rubygems/pull/6936)
797
+ - Fix regression when installing native extensions on universal rubies [#7077](https://github.com/ruby/rubygems/pull/7077)
798
+ - Only remove bundler plugin gem when it's inside the cache [#7001](https://github.com/ruby/rubygems/pull/7001)
799
+ - Don't show bug report template when GEM_HOME has no writable bit [#7113](https://github.com/ruby/rubygems/pull/7113)
800
+ - Fix regression in old git versions [#7114](https://github.com/ruby/rubygems/pull/7114)
801
+ - Handle empty array at built-in YAML serializer [#7099](https://github.com/ruby/rubygems/pull/7099)
802
+ - Fix force_ruby_platform: when the lockfile only locks the ruby platform [#6936](https://github.com/ruby/rubygems/pull/6936)
730
803
 
731
804
  ## 2.4.21 (2023-10-17)
732
805
 
733
806
  ### Enhancements:
734
807
 
735
- - Avoid duplicates -rbundler/setup in RUBYOPT with Ruby preview [#7002](https://github.com/rubygems/rubygems/pull/7002)
736
- - Prevent gem activation in standalone mode [#6925](https://github.com/rubygems/rubygems/pull/6925)
737
- - Support Ruby's preview version format (Ex: 3.3.0-preview2) in Gemfile [#7016](https://github.com/rubygems/rubygems/pull/7016)
738
- - Fix `bundle install` when older revisions of git source [#6980](https://github.com/rubygems/rubygems/pull/6980)
739
- - Remove usage of Dir.chdir that only execute a subprocess [#6930](https://github.com/rubygems/rubygems/pull/6930)
808
+ - Avoid duplicates -rbundler/setup in RUBYOPT with Ruby preview [#7002](https://github.com/ruby/rubygems/pull/7002)
809
+ - Prevent gem activation in standalone mode [#6925](https://github.com/ruby/rubygems/pull/6925)
810
+ - Support Ruby's preview version format (Ex: 3.3.0-preview2) in Gemfile [#7016](https://github.com/ruby/rubygems/pull/7016)
811
+ - Fix `bundle install` when older revisions of git source [#6980](https://github.com/ruby/rubygems/pull/6980)
812
+ - Remove usage of Dir.chdir that only execute a subprocess [#6930](https://github.com/ruby/rubygems/pull/6930)
740
813
 
741
814
  ### Bug fixes:
742
815
 
743
- - Don't delete the release version from pre-release string more than once [#7054](https://github.com/rubygems/rubygems/pull/7054)
744
- - Make the `lock` command not be affected by the `frozen` setting [#7034](https://github.com/rubygems/rubygems/pull/7034)
745
- - Raise an error when adding a gem incompatible with some locked platform [#7035](https://github.com/rubygems/rubygems/pull/7035)
746
- - Re-resolve when lockfile is invalid [#7020](https://github.com/rubygems/rubygems/pull/7020)
747
- - Don't re-resolve with prereleases if unlocked gem has no prereleases [#7021](https://github.com/rubygems/rubygems/pull/7021)
748
- - Include gemspec in ExtensionTask for native gem tasks [#7015](https://github.com/rubygems/rubygems/pull/7015)
749
- - Avoid error reporting relative path when validating frozen [#5128](https://github.com/rubygems/rubygems/pull/5128)
750
- - Fix `bundle lock --minor --update <dep>` edge case [#6992](https://github.com/rubygems/rubygems/pull/6992)
751
- - Stop bundler eagerly loading all specs with exts [#6945](https://github.com/rubygems/rubygems/pull/6945)
816
+ - Don't delete the release version from pre-release string more than once [#7054](https://github.com/ruby/rubygems/pull/7054)
817
+ - Make the `lock` command not be affected by the `frozen` setting [#7034](https://github.com/ruby/rubygems/pull/7034)
818
+ - Raise an error when adding a gem incompatible with some locked platform [#7035](https://github.com/ruby/rubygems/pull/7035)
819
+ - Re-resolve when lockfile is invalid [#7020](https://github.com/ruby/rubygems/pull/7020)
820
+ - Don't re-resolve with prereleases if unlocked gem has no prereleases [#7021](https://github.com/ruby/rubygems/pull/7021)
821
+ - Include gemspec in ExtensionTask for native gem tasks [#7015](https://github.com/ruby/rubygems/pull/7015)
822
+ - Avoid error reporting relative path when validating frozen [#5128](https://github.com/ruby/rubygems/pull/5128)
823
+ - Fix `bundle lock --minor --update <dep>` edge case [#6992](https://github.com/ruby/rubygems/pull/6992)
824
+ - Stop bundler eagerly loading all specs with exts [#6945](https://github.com/ruby/rubygems/pull/6945)
752
825
 
753
826
  ### Performance:
754
827
 
755
- - Reduce allocations when parsing lockfile [#6976](https://github.com/rubygems/rubygems/pull/6976)
756
- - Stop allocating the same settings keys repeatedly [#6963](https://github.com/rubygems/rubygems/pull/6963)
828
+ - Reduce allocations when parsing lockfile [#6976](https://github.com/ruby/rubygems/pull/6976)
829
+ - Stop allocating the same settings keys repeatedly [#6963](https://github.com/ruby/rubygems/pull/6963)
757
830
 
758
831
  ### Documentation:
759
832
 
760
- - Improve formatting and global source information in `bundle plugin` man page [#7045](https://github.com/rubygems/rubygems/pull/7045)
761
- - Update man page of `bundle exec` to reflect default true of flag `--keep-file-descriptors` [#7033](https://github.com/rubygems/rubygems/pull/7033)
833
+ - Improve formatting and global source information in `bundle plugin` man page [#7045](https://github.com/ruby/rubygems/pull/7045)
834
+ - Update man page of `bundle exec` to reflect default true of flag `--keep-file-descriptors` [#7033](https://github.com/ruby/rubygems/pull/7033)
762
835
 
763
836
  ## 2.4.20 (2023-09-27)
764
837
 
765
838
  ### Enhancements:
766
839
 
767
- - Bump actions/checkout to v4 in bundler gem template [#6966](https://github.com/rubygems/rubygems/pull/6966)
768
- - Add support for the `ruby-3.2.2` format in the `ruby file:` Gemfile directive, and explicitly test the `3.2.2@gemset` format as rejected [#6954](https://github.com/rubygems/rubygems/pull/6954)
769
- - Support `ruby file: ".tool-versions"` in Gemfile [#6898](https://github.com/rubygems/rubygems/pull/6898)
770
- - Unify LockfileParser loading of SPECS section [#6933](https://github.com/rubygems/rubygems/pull/6933)
771
- - Only check circular deps when dependency api is available, not on full index sources [#6919](https://github.com/rubygems/rubygems/pull/6919)
840
+ - Bump actions/checkout to v4 in bundler gem template [#6966](https://github.com/ruby/rubygems/pull/6966)
841
+ - Add support for the `ruby-3.2.2` format in the `ruby file:` Gemfile directive, and explicitly test the `3.2.2@gemset` format as rejected [#6954](https://github.com/ruby/rubygems/pull/6954)
842
+ - Support `ruby file: ".tool-versions"` in Gemfile [#6898](https://github.com/ruby/rubygems/pull/6898)
843
+ - Unify LockfileParser loading of SPECS section [#6933](https://github.com/ruby/rubygems/pull/6933)
844
+ - Only check circular deps when dependency api is available, not on full index sources [#6919](https://github.com/ruby/rubygems/pull/6919)
772
845
 
773
846
  ### Bug fixes:
774
847
 
775
- - Allow standalone mode to work on a Windows edge case [#6989](https://github.com/rubygems/rubygems/pull/6989)
776
- - Fix `bundle outdated` crashing when both `ref` and `branch` specified for a git gem in Gemfile [#6959](https://github.com/rubygems/rubygems/pull/6959)
777
- - Fix `bundle update --redownload` [#6924](https://github.com/rubygems/rubygems/pull/6924)
778
- - Fixed malformed bundler version in lockfile making Bundler crash [#6920](https://github.com/rubygems/rubygems/pull/6920)
779
- - Fix standalone install crashing when using legacy gemfiles with multiple global sources [#6918](https://github.com/rubygems/rubygems/pull/6918)
780
- - Resolve ruby version file relative to bundle root [#6892](https://github.com/rubygems/rubygems/pull/6892)
848
+ - Allow standalone mode to work on a Windows edge case [#6989](https://github.com/ruby/rubygems/pull/6989)
849
+ - Fix `bundle outdated` crashing when both `ref` and `branch` specified for a git gem in Gemfile [#6959](https://github.com/ruby/rubygems/pull/6959)
850
+ - Fix `bundle update --redownload` [#6924](https://github.com/ruby/rubygems/pull/6924)
851
+ - Fixed malformed bundler version in lockfile making Bundler crash [#6920](https://github.com/ruby/rubygems/pull/6920)
852
+ - Fix standalone install crashing when using legacy gemfiles with multiple global sources [#6918](https://github.com/ruby/rubygems/pull/6918)
853
+ - Resolve ruby version file relative to bundle root [#6892](https://github.com/ruby/rubygems/pull/6892)
781
854
 
782
855
  ### Performance:
783
856
 
784
- - Lazily construct fetcher debug messages [#6973](https://github.com/rubygems/rubygems/pull/6973)
785
- - Avoid allocating empty hashes in Index [#6962](https://github.com/rubygems/rubygems/pull/6962)
786
- - Improve `Bundler::Index` efficiency by removing unnecessary creation and dups [#6931](https://github.com/rubygems/rubygems/pull/6931)
787
- - (Further) Improve Bundler::Settings#[] performance and memory usage [#6923](https://github.com/rubygems/rubygems/pull/6923)
788
- - Don't use full indexes unnecessarily on legacy Gemfiles [#6916](https://github.com/rubygems/rubygems/pull/6916)
789
- - Improve memory usage in Bundler::Settings, and thus improve boot time [#6884](https://github.com/rubygems/rubygems/pull/6884)
857
+ - Lazily construct fetcher debug messages [#6973](https://github.com/ruby/rubygems/pull/6973)
858
+ - Avoid allocating empty hashes in Index [#6962](https://github.com/ruby/rubygems/pull/6962)
859
+ - Improve `Bundler::Index` efficiency by removing unnecessary creation and dups [#6931](https://github.com/ruby/rubygems/pull/6931)
860
+ - (Further) Improve Bundler::Settings#[] performance and memory usage [#6923](https://github.com/ruby/rubygems/pull/6923)
861
+ - Don't use full indexes unnecessarily on legacy Gemfiles [#6916](https://github.com/ruby/rubygems/pull/6916)
862
+ - Improve memory usage in Bundler::Settings, and thus improve boot time [#6884](https://github.com/ruby/rubygems/pull/6884)
790
863
 
791
864
  ## 2.4.19 (2023-08-17)
792
865
 
793
866
  ### Enhancements:
794
867
 
795
- - Add `file` option to `ruby` method in Gemfile [#6876](https://github.com/rubygems/rubygems/pull/6876)
796
- - Show better error when PAT can't authenticate to a private server [#6871](https://github.com/rubygems/rubygems/pull/6871)
797
- - Don't fallback to old dependency API when bad credentials are configured [#6869](https://github.com/rubygems/rubygems/pull/6869)
868
+ - Add `file` option to `ruby` method in Gemfile [#6876](https://github.com/ruby/rubygems/pull/6876)
869
+ - Show better error when PAT can't authenticate to a private server [#6871](https://github.com/ruby/rubygems/pull/6871)
870
+ - Don't fallback to old dependency API when bad credentials are configured [#6869](https://github.com/ruby/rubygems/pull/6869)
798
871
 
799
872
  ### Bug fixes:
800
873
 
801
- - Fix git source conservativeness [#6850](https://github.com/rubygems/rubygems/pull/6850)
874
+ - Fix git source conservativeness [#6850](https://github.com/ruby/rubygems/pull/6850)
802
875
 
803
876
  ### Documentation:
804
877
 
805
- - Clarify that `bundle info` takes a gem name [#6875](https://github.com/rubygems/rubygems/pull/6875)
878
+ - Clarify that `bundle info` takes a gem name [#6875](https://github.com/ruby/rubygems/pull/6875)
806
879
 
807
880
  ## 2.4.18 (2023-08-02)
808
881
 
809
882
  ### Security:
810
883
 
811
- - Merge URI-0.12.2 for Bundler [#6779](https://github.com/rubygems/rubygems/pull/6779)
884
+ - Merge URI-0.12.2 for Bundler [#6779](https://github.com/ruby/rubygems/pull/6779)
812
885
 
813
886
  ### Enhancements:
814
887
 
815
- - Update Magnus version in Rust extension gem template [#6843](https://github.com/rubygems/rubygems/pull/6843)
888
+ - Update Magnus version in Rust extension gem template [#6843](https://github.com/ruby/rubygems/pull/6843)
816
889
 
817
890
  ### Documentation:
818
891
 
819
- - Update bundle-outdated(1) man to use table output [#6833](https://github.com/rubygems/rubygems/pull/6833)
892
+ - Update bundle-outdated(1) man to use table output [#6833](https://github.com/ruby/rubygems/pull/6833)
820
893
 
821
894
  ## 2.4.17 (2023-07-14)
822
895
 
823
896
  ### Enhancements:
824
897
 
825
- - Avoid printing "Using ..." messages when version has not changed [#6804](https://github.com/rubygems/rubygems/pull/6804)
898
+ - Avoid printing "Using ..." messages when version has not changed [#6804](https://github.com/ruby/rubygems/pull/6804)
826
899
 
827
900
  ### Bug fixes:
828
901
 
829
- - Fix `bundler/setup` unintendedly writing to the filesystem [#6814](https://github.com/rubygems/rubygems/pull/6814)
902
+ - Fix `bundler/setup` unintendedly writing to the filesystem [#6814](https://github.com/ruby/rubygems/pull/6814)
830
903
 
831
904
  ## 2.4.16 (2023-07-10)
832
905
 
833
906
  ### Bug fixes:
834
907
 
835
- - Exclude Bundler from missing locked dependencies check [#6792](https://github.com/rubygems/rubygems/pull/6792)
836
- - Fix another incorrect removal of "ruby" platform from lockfile when changing path sources [#6784](https://github.com/rubygems/rubygems/pull/6784)
837
- - Fix git source lockfile instability [#6786](https://github.com/rubygems/rubygems/pull/6786)
908
+ - Exclude Bundler from missing locked dependencies check [#6792](https://github.com/ruby/rubygems/pull/6792)
909
+ - Fix another incorrect removal of "ruby" platform from lockfile when changing path sources [#6784](https://github.com/ruby/rubygems/pull/6784)
910
+ - Fix git source lockfile instability [#6786](https://github.com/ruby/rubygems/pull/6786)
838
911
 
839
912
  ### Documentation:
840
913
 
841
- - `gemfile.5`: Code format the default glob to escape Markdown [#6790](https://github.com/rubygems/rubygems/pull/6790)
914
+ - `gemfile.5`: Code format the default glob to escape Markdown [#6790](https://github.com/ruby/rubygems/pull/6790)
842
915
 
843
916
  ## 2.4.15 (2023-06-29)
844
917
 
845
918
  ### Enhancements:
846
919
 
847
- - Improve edge case error message [#6733](https://github.com/rubygems/rubygems/pull/6733)
920
+ - Improve edge case error message [#6733](https://github.com/ruby/rubygems/pull/6733)
848
921
 
849
922
  ### Bug fixes:
850
923
 
851
- - Fix `bundle lock --update --bundler` [#6213](https://github.com/rubygems/rubygems/pull/6213)
924
+ - Fix `bundle lock --update --bundler` [#6213](https://github.com/ruby/rubygems/pull/6213)
852
925
 
853
926
  ## 2.4.14 (2023-06-12)
854
927
 
855
928
  ### Enhancements:
856
929
 
857
- - Stop publishing Gemfile in default gem template [#6723](https://github.com/rubygems/rubygems/pull/6723)
858
- - Avoid infinite loops when hitting resolution bugs [#6722](https://github.com/rubygems/rubygems/pull/6722)
859
- - Make `LockfileParser` usable with just a lockfile [#6694](https://github.com/rubygems/rubygems/pull/6694)
860
- - Always rely on `$LOAD_PATH` when jumping from `exe/` to `lib/` [#6702](https://github.com/rubygems/rubygems/pull/6702)
861
- - Make `frozen` setting take precedence over `deployment` setting [#6685](https://github.com/rubygems/rubygems/pull/6685)
862
- - Show an error when trying to update bundler in frozen mode [#6684](https://github.com/rubygems/rubygems/pull/6684)
930
+ - Stop publishing Gemfile in default gem template [#6723](https://github.com/ruby/rubygems/pull/6723)
931
+ - Avoid infinite loops when hitting resolution bugs [#6722](https://github.com/ruby/rubygems/pull/6722)
932
+ - Make `LockfileParser` usable with just a lockfile [#6694](https://github.com/ruby/rubygems/pull/6694)
933
+ - Always rely on `$LOAD_PATH` when jumping from `exe/` to `lib/` [#6702](https://github.com/ruby/rubygems/pull/6702)
934
+ - Make `frozen` setting take precedence over `deployment` setting [#6685](https://github.com/ruby/rubygems/pull/6685)
935
+ - Show an error when trying to update bundler in frozen mode [#6684](https://github.com/ruby/rubygems/pull/6684)
863
936
 
864
937
  ### Bug fixes:
865
938
 
866
- - Fix `deployment` vs `path` precedence [#6703](https://github.com/rubygems/rubygems/pull/6703)
867
- - Fix inline mode with multiple sources [#6699](https://github.com/rubygems/rubygems/pull/6699)
939
+ - Fix `deployment` vs `path` precedence [#6703](https://github.com/ruby/rubygems/pull/6703)
940
+ - Fix inline mode with multiple sources [#6699](https://github.com/ruby/rubygems/pull/6699)
868
941
 
869
942
  ## 2.4.13 (2023-05-09)
870
943
 
871
944
  ### Bug fixes:
872
945
 
873
- - Fix unexpected fallbacks to full index by adding FalseClass and Time to the SafeMarshal list [#6655](https://github.com/rubygems/rubygems/pull/6655)
946
+ - Fix unexpected fallbacks to full index by adding FalseClass and Time to the SafeMarshal list [#6655](https://github.com/ruby/rubygems/pull/6655)
874
947
 
875
948
  ### Documentation:
876
949
 
877
- - Fix broken hyperlinks in bundle cache documentation [#6606](https://github.com/rubygems/rubygems/pull/6606)
950
+ - Fix broken hyperlinks in bundle cache documentation [#6606](https://github.com/ruby/rubygems/pull/6606)
878
951
 
879
952
  ## 2.4.12 (2023-04-11)
880
953
 
881
954
  ### Enhancements:
882
955
 
883
- - Remove reference to `pry` gem from generated `bin/console` file [#6515](https://github.com/rubygems/rubygems/pull/6515)
956
+ - Remove reference to `pry` gem from generated `bin/console` file [#6515](https://github.com/ruby/rubygems/pull/6515)
884
957
 
885
958
  ## 2.4.11 (2023-04-10)
886
959
 
887
960
  ### Security:
888
961
 
889
- - Use URI-0.12.1 (safe against CVE-2023-28755 ReDoS vulnerability) [#6558](https://github.com/rubygems/rubygems/pull/6558)
962
+ - Use URI-0.12.1 (safe against CVE-2023-28755 ReDoS vulnerability) [#6558](https://github.com/ruby/rubygems/pull/6558)
890
963
 
891
964
  ### Enhancements:
892
965
 
893
- - Remove one fallback to full indexes on big gemfiles [#6578](https://github.com/rubygems/rubygems/pull/6578)
894
- - Generate native gems with `-fvisibility=hidden` [#6541](https://github.com/rubygems/rubygems/pull/6541)
966
+ - Remove one fallback to full indexes on big gemfiles [#6578](https://github.com/ruby/rubygems/pull/6578)
967
+ - Generate native gems with `-fvisibility=hidden` [#6541](https://github.com/ruby/rubygems/pull/6541)
895
968
 
896
969
  ### Bug fixes:
897
970
 
898
- - Fix resolver hangs when dealing with an incomplete lockfile [#6552](https://github.com/rubygems/rubygems/pull/6552)
899
- - Fix prereleases not being considered by gem version promoter when there's no lockfile [#6537](https://github.com/rubygems/rubygems/pull/6537)
971
+ - Fix resolver hangs when dealing with an incomplete lockfile [#6552](https://github.com/ruby/rubygems/pull/6552)
972
+ - Fix prereleases not being considered by gem version promoter when there's no lockfile [#6537](https://github.com/ruby/rubygems/pull/6537)
900
973
 
901
974
  ## 2.4.10 (2023-03-27)
902
975
 
903
976
  ### Bug fixes:
904
977
 
905
- - Fix some unnecessary top level dependency downgrades [#6535](https://github.com/rubygems/rubygems/pull/6535)
906
- - Fix incorrect ruby platform removal from lockfile when adding Gemfile dependencies [#6540](https://github.com/rubygems/rubygems/pull/6540)
907
- - Fix installing plugins in frozen mode [#6543](https://github.com/rubygems/rubygems/pull/6543)
908
- - Restore "enumerability" of `SpecSet` [#6532](https://github.com/rubygems/rubygems/pull/6532)
978
+ - Fix some unnecessary top level dependency downgrades [#6535](https://github.com/ruby/rubygems/pull/6535)
979
+ - Fix incorrect ruby platform removal from lockfile when adding Gemfile dependencies [#6540](https://github.com/ruby/rubygems/pull/6540)
980
+ - Fix installing plugins in frozen mode [#6543](https://github.com/ruby/rubygems/pull/6543)
981
+ - Restore "enumerability" of `SpecSet` [#6532](https://github.com/ruby/rubygems/pull/6532)
909
982
 
910
983
  ## 2.4.9 (2023-03-20)
911
984
 
912
985
  ### Security:
913
986
 
914
- - Don't recommend `--full-index` on errors [#6493](https://github.com/rubygems/rubygems/pull/6493)
987
+ - Don't recommend `--full-index` on errors [#6493](https://github.com/ruby/rubygems/pull/6493)
915
988
 
916
989
  ### Enhancements:
917
990
 
918
- - Fix duplicated specs in some error messages [#6475](https://github.com/rubygems/rubygems/pull/6475)
919
- - When running `bundle lock --update <name>`, checkout locked revision of unrelated git sources directly [#6459](https://github.com/rubygems/rubygems/pull/6459)
920
- - Avoid expiring git sources when unnecessary [#6458](https://github.com/rubygems/rubygems/pull/6458)
921
- - Use `RbSys::ExtensionTask` when creating new rust gems [#6352](https://github.com/rubygems/rubygems/pull/6352)
922
- - Don't ignore pre-releases when there's only one candidate [#6441](https://github.com/rubygems/rubygems/pull/6441)
991
+ - Fix duplicated specs in some error messages [#6475](https://github.com/ruby/rubygems/pull/6475)
992
+ - When running `bundle lock --update <name>`, checkout locked revision of unrelated git sources directly [#6459](https://github.com/ruby/rubygems/pull/6459)
993
+ - Avoid expiring git sources when unnecessary [#6458](https://github.com/ruby/rubygems/pull/6458)
994
+ - Use `RbSys::ExtensionTask` when creating new rust gems [#6352](https://github.com/ruby/rubygems/pull/6352)
995
+ - Don't ignore pre-releases when there's only one candidate [#6441](https://github.com/ruby/rubygems/pull/6441)
923
996
 
924
997
  ### Bug fixes:
925
998
 
926
- - Fix incorrect removal of ruby platform when auto-healing corrupted lockfiles [#6495](https://github.com/rubygems/rubygems/pull/6495)
927
- - Don't consider platform specific candidates when `force_ruby_platform` set [#6442](https://github.com/rubygems/rubygems/pull/6442)
928
- - Better deal with circular dependencies [#6330](https://github.com/rubygems/rubygems/pull/6330)
999
+ - Fix incorrect removal of ruby platform when auto-healing corrupted lockfiles [#6495](https://github.com/ruby/rubygems/pull/6495)
1000
+ - Don't consider platform specific candidates when `force_ruby_platform` set [#6442](https://github.com/ruby/rubygems/pull/6442)
1001
+ - Better deal with circular dependencies [#6330](https://github.com/ruby/rubygems/pull/6330)
929
1002
 
930
1003
  ### Documentation:
931
1004
 
932
- - Add debugging docs [#6387](https://github.com/rubygems/rubygems/pull/6387)
933
- - Document our current release policy [#6450](https://github.com/rubygems/rubygems/pull/6450)
1005
+ - Add debugging docs [#6387](https://github.com/ruby/rubygems/pull/6387)
1006
+ - Document our current release policy [#6450](https://github.com/ruby/rubygems/pull/6450)
934
1007
 
935
1008
  ## 2.4.8 (2023-03-08)
936
1009
 
937
1010
  ### Security:
938
1011
 
939
- - Safe load all marshaled data [#6384](https://github.com/rubygems/rubygems/pull/6384)
1012
+ - Safe load all marshaled data [#6384](https://github.com/ruby/rubygems/pull/6384)
940
1013
 
941
1014
  ### Enhancements:
942
1015
 
943
- - Better suggestion when `bundler/setup` fails due to missing gems and Gemfile is not the default [#6428](https://github.com/rubygems/rubygems/pull/6428)
944
- - Simplify the gem package file filter in the gemspec template [#6344](https://github.com/rubygems/rubygems/pull/6344)
945
- - Auto-heal corrupted `Gemfile.lock` with no specs [#6423](https://github.com/rubygems/rubygems/pull/6423)
946
- - Auto-heal on corrupted lockfile with missing deps [#6400](https://github.com/rubygems/rubygems/pull/6400)
947
- - Give a better message when Gemfile branch does not exist [#6383](https://github.com/rubygems/rubygems/pull/6383)
1016
+ - Better suggestion when `bundler/setup` fails due to missing gems and Gemfile is not the default [#6428](https://github.com/ruby/rubygems/pull/6428)
1017
+ - Simplify the gem package file filter in the gemspec template [#6344](https://github.com/ruby/rubygems/pull/6344)
1018
+ - Auto-heal corrupted `Gemfile.lock` with no specs [#6423](https://github.com/ruby/rubygems/pull/6423)
1019
+ - Auto-heal on corrupted lockfile with missing deps [#6400](https://github.com/ruby/rubygems/pull/6400)
1020
+ - Give a better message when Gemfile branch does not exist [#6383](https://github.com/ruby/rubygems/pull/6383)
948
1021
 
949
1022
  ### Bug fixes:
950
1023
 
951
- - Respect --no-install option for git: sources [#6088](https://github.com/rubygems/rubygems/pull/6088)
952
- - Fix `gems.rb` lockfile for bundler version lookup in template [#6413](https://github.com/rubygems/rubygems/pull/6413)
1024
+ - Respect --no-install option for git: sources [#6088](https://github.com/ruby/rubygems/pull/6088)
1025
+ - Fix `gems.rb` lockfile for bundler version lookup in template [#6413](https://github.com/ruby/rubygems/pull/6413)
953
1026
 
954
1027
  ### Documentation:
955
1028
 
956
- - Switch supporting explanations to all Ruby Central [#6419](https://github.com/rubygems/rubygems/pull/6419)
1029
+ - Switch supporting explanations to all Ruby Central [#6419](https://github.com/ruby/rubygems/pull/6419)
957
1030
 
958
1031
  ## 2.4.7 (2023-02-15)
959
1032
 
960
1033
  ### Enhancements:
961
1034
 
962
- - Add `--gemfile` flag to `bundle init` to configure gemfile name to generate [#6046](https://github.com/rubygems/rubygems/pull/6046)
963
- - Improve solve failure explanations by using better wording [#6366](https://github.com/rubygems/rubygems/pull/6366)
964
- - Restore better error message when locked ref does not exist [#6356](https://github.com/rubygems/rubygems/pull/6356)
965
- - Avoid crashing when installing from a corrupted lockfile [#6355](https://github.com/rubygems/rubygems/pull/6355)
966
- - Improve wording of unmet dependencies warning [#6357](https://github.com/rubygems/rubygems/pull/6357)
967
- - Add Ruby 3.2 and 3.3 platforms to Gemfile DSL [#6346](https://github.com/rubygems/rubygems/pull/6346)
1035
+ - Add `--gemfile` flag to `bundle init` to configure gemfile name to generate [#6046](https://github.com/ruby/rubygems/pull/6046)
1036
+ - Improve solve failure explanations by using better wording [#6366](https://github.com/ruby/rubygems/pull/6366)
1037
+ - Restore better error message when locked ref does not exist [#6356](https://github.com/ruby/rubygems/pull/6356)
1038
+ - Avoid crashing when installing from a corrupted lockfile [#6355](https://github.com/ruby/rubygems/pull/6355)
1039
+ - Improve wording of unmet dependencies warning [#6357](https://github.com/ruby/rubygems/pull/6357)
1040
+ - Add Ruby 3.2 and 3.3 platforms to Gemfile DSL [#6346](https://github.com/ruby/rubygems/pull/6346)
968
1041
 
969
1042
  ### Bug fixes:
970
1043
 
971
- - Fix crash in pub grub involving empty ranges [#6365](https://github.com/rubygems/rubygems/pull/6365)
972
- - Make gemspec file generated by `bundle gem` properly exclude itself from packaged gem [#6339](https://github.com/rubygems/rubygems/pull/6339)
973
- - Preserve relative path sources in standalone setup [#6327](https://github.com/rubygems/rubygems/pull/6327)
1044
+ - Fix crash in pub grub involving empty ranges [#6365](https://github.com/ruby/rubygems/pull/6365)
1045
+ - Make gemspec file generated by `bundle gem` properly exclude itself from packaged gem [#6339](https://github.com/ruby/rubygems/pull/6339)
1046
+ - Preserve relative path sources in standalone setup [#6327](https://github.com/ruby/rubygems/pull/6327)
974
1047
 
975
1048
  ## 2.4.6 (2023-01-31)
976
1049
 
977
1050
  ### Enhancements:
978
1051
 
979
- - Don't warn on `bundle binstubs --standalone --all` [#6312](https://github.com/rubygems/rubygems/pull/6312)
1052
+ - Don't warn on `bundle binstubs --standalone --all` [#6312](https://github.com/ruby/rubygems/pull/6312)
980
1053
 
981
1054
  ### Bug fixes:
982
1055
 
983
- - Don't undo require decorations made by other gems [#6308](https://github.com/rubygems/rubygems/pull/6308)
984
- - Fix `bundler/inline` not properly installing gems with extensions when used more than once [#6306](https://github.com/rubygems/rubygems/pull/6306)
985
- - Fix `bundler/inline` not skipping installation when gems already there, when used more than once [#6305](https://github.com/rubygems/rubygems/pull/6305)
1056
+ - Don't undo require decorations made by other gems [#6308](https://github.com/ruby/rubygems/pull/6308)
1057
+ - Fix `bundler/inline` not properly installing gems with extensions when used more than once [#6306](https://github.com/ruby/rubygems/pull/6306)
1058
+ - Fix `bundler/inline` not skipping installation when gems already there, when used more than once [#6305](https://github.com/ruby/rubygems/pull/6305)
986
1059
 
987
1060
  ## 2.4.5 (2023-01-21)
988
1061
 
989
1062
  ### Bug fixes:
990
1063
 
991
- - Fix `bundler/inline` not resolving properly if gems not preinstalled [#6282](https://github.com/rubygems/rubygems/pull/6282)
992
- - Fix packages for external platforms being introduced in lockfile when Bundler retries resolution [#6285](https://github.com/rubygems/rubygems/pull/6285)
1064
+ - Fix `bundler/inline` not resolving properly if gems not preinstalled [#6282](https://github.com/ruby/rubygems/pull/6282)
1065
+ - Fix packages for external platforms being introduced in lockfile when Bundler retries resolution [#6285](https://github.com/ruby/rubygems/pull/6285)
993
1066
 
994
1067
  ### Documentation:
995
1068
 
996
- - Update bundle-exec man page to not use deprecated `Bundler.with_clean_env` [#6284](https://github.com/rubygems/rubygems/pull/6284)
1069
+ - Update bundle-exec man page to not use deprecated `Bundler.with_clean_env` [#6284](https://github.com/ruby/rubygems/pull/6284)
997
1070
 
998
1071
  ## 2.4.4 (2023-01-16)
999
1072
 
1000
1073
  ### Bug fixes:
1001
1074
 
1002
- - Fix platform specific gems removed from the lockfile [#6266](https://github.com/rubygems/rubygems/pull/6266)
1003
- - Properly handle incompatibilities on platform specific gems [#6270](https://github.com/rubygems/rubygems/pull/6270)
1004
- - Optimistically exclude prereleases from initial resolution [#6246](https://github.com/rubygems/rubygems/pull/6246)
1005
- - Fix another case of not properly falling back to ruby variant when materializing [#6261](https://github.com/rubygems/rubygems/pull/6261)
1006
- - Skip setting `BUNDLER_SETUP` on Ruby 2.6 [#6252](https://github.com/rubygems/rubygems/pull/6252)
1007
- - Let resolver deal with legacy gems with equivalent version and different dependencies [#6219](https://github.com/rubygems/rubygems/pull/6219)
1075
+ - Fix platform specific gems removed from the lockfile [#6266](https://github.com/ruby/rubygems/pull/6266)
1076
+ - Properly handle incompatibilities on platform specific gems [#6270](https://github.com/ruby/rubygems/pull/6270)
1077
+ - Optimistically exclude prereleases from initial resolution [#6246](https://github.com/ruby/rubygems/pull/6246)
1078
+ - Fix another case of not properly falling back to ruby variant when materializing [#6261](https://github.com/ruby/rubygems/pull/6261)
1079
+ - Skip setting `BUNDLER_SETUP` on Ruby 2.6 [#6252](https://github.com/ruby/rubygems/pull/6252)
1080
+ - Let resolver deal with legacy gems with equivalent version and different dependencies [#6219](https://github.com/ruby/rubygems/pull/6219)
1008
1081
 
1009
1082
  ## 2.4.3 (2023-01-06)
1010
1083
 
1011
1084
  ### Enhancements:
1012
1085
 
1013
- - Enhance `bundle open` command to allow opening subdir/file of gem [#6146](https://github.com/rubygems/rubygems/pull/6146)
1086
+ - Enhance `bundle open` command to allow opening subdir/file of gem [#6146](https://github.com/ruby/rubygems/pull/6146)
1014
1087
 
1015
1088
  ### Bug fixes:
1016
1089
 
1017
- - Fix pointing GitHub sources to PRs [#6241](https://github.com/rubygems/rubygems/pull/6241)
1018
- - Fix version ranges incorrectly handling platforms [#6240](https://github.com/rubygems/rubygems/pull/6240)
1019
- - Cleanup unnecessary gems when removing lockfile platforms [#6234](https://github.com/rubygems/rubygems/pull/6234)
1020
- - When auto-removing RUBY platform don't add specific platform if not needed [#6233](https://github.com/rubygems/rubygems/pull/6233)
1021
- - Fallback to selecting installable candidates if possible when materializing specs [#6225](https://github.com/rubygems/rubygems/pull/6225)
1090
+ - Fix pointing GitHub sources to PRs [#6241](https://github.com/ruby/rubygems/pull/6241)
1091
+ - Fix version ranges incorrectly handling platforms [#6240](https://github.com/ruby/rubygems/pull/6240)
1092
+ - Cleanup unnecessary gems when removing lockfile platforms [#6234](https://github.com/ruby/rubygems/pull/6234)
1093
+ - When auto-removing RUBY platform don't add specific platform if not needed [#6233](https://github.com/ruby/rubygems/pull/6233)
1094
+ - Fallback to selecting installable candidates if possible when materializing specs [#6225](https://github.com/ruby/rubygems/pull/6225)
1022
1095
 
1023
1096
  ### Documentation:
1024
1097
 
1025
- - Fix several typos [#6224](https://github.com/rubygems/rubygems/pull/6224)
1098
+ - Fix several typos [#6224](https://github.com/ruby/rubygems/pull/6224)
1026
1099
 
1027
1100
  ## 2.4.2 (2023-01-01)
1028
1101
 
1029
1102
  ### Performance:
1030
1103
 
1031
- - Speed up resolution by properly merging incompatibility ranges [#6215](https://github.com/rubygems/rubygems/pull/6215)
1104
+ - Speed up resolution by properly merging incompatibility ranges [#6215](https://github.com/ruby/rubygems/pull/6215)
1032
1105
 
1033
1106
  ### Documentation:
1034
1107
 
1035
- - Remove stray word in `bundle config` man page [#6220](https://github.com/rubygems/rubygems/pull/6220)
1108
+ - Remove stray word in `bundle config` man page [#6220](https://github.com/ruby/rubygems/pull/6220)
1036
1109
 
1037
1110
  ## 2.4.1 (2022-12-24)
1038
1111
 
1039
1112
  ### Enhancements:
1040
1113
 
1041
- - Allow Bundler to run on old RubyGems + Ruby 2.7 without warnings [#6187](https://github.com/rubygems/rubygems/pull/6187)
1114
+ - Allow Bundler to run on old RubyGems + Ruby 2.7 without warnings [#6187](https://github.com/ruby/rubygems/pull/6187)
1042
1115
 
1043
1116
  ### Bug fixes:
1044
1117
 
1045
- - Fix dependencies scoped to other platforms making resolver fail [#6189](https://github.com/rubygems/rubygems/pull/6189)
1046
- - Restore annotated git tag support [#6186](https://github.com/rubygems/rubygems/pull/6186)
1118
+ - Fix dependencies scoped to other platforms making resolver fail [#6189](https://github.com/ruby/rubygems/pull/6189)
1119
+ - Restore annotated git tag support [#6186](https://github.com/ruby/rubygems/pull/6186)
1047
1120
 
1048
1121
  ## 2.4.0 (2022-12-24)
1049
1122
 
1050
1123
  ### Security:
1051
1124
 
1052
- - In README generated by `bundle gem`, do not fill rubygems.org install commands with the gem name automatically [#6093](https://github.com/rubygems/rubygems/pull/6093)
1053
- - Use safe Marshal deserialization for dependency API response [#6141](https://github.com/rubygems/rubygems/pull/6141)
1125
+ - In README generated by `bundle gem`, do not fill rubygems.org install commands with the gem name automatically [#6093](https://github.com/ruby/rubygems/pull/6093)
1126
+ - Use safe Marshal deserialization for dependency API response [#6141](https://github.com/ruby/rubygems/pull/6141)
1054
1127
 
1055
1128
  ### Breaking changes:
1056
1129
 
1057
- - Remove Travis CI from gem skeleton [#6150](https://github.com/rubygems/rubygems/pull/6150)
1058
- - Drop support for Ruby 2.3, 2.4, 2.5 and RubyGems 2.5, 2.6, 2.7 [#6107](https://github.com/rubygems/rubygems/pull/6107)
1059
- - Completely remove "auto-sudo" feature [#5888](https://github.com/rubygems/rubygems/pull/5888)
1130
+ - Remove Travis CI from gem skeleton [#6150](https://github.com/ruby/rubygems/pull/6150)
1131
+ - Drop support for Ruby 2.3, 2.4, 2.5 and RubyGems 2.5, 2.6, 2.7 [#6107](https://github.com/ruby/rubygems/pull/6107)
1132
+ - Completely remove "auto-sudo" feature [#5888](https://github.com/ruby/rubygems/pull/5888)
1060
1133
 
1061
1134
  ### Deprecations:
1062
1135
 
1063
- - Turn `--ext` option of `bundle gem` into string. Deprecate usage without explicit value [#6144](https://github.com/rubygems/rubygems/pull/6144)
1136
+ - Turn `--ext` option of `bundle gem` into string. Deprecate usage without explicit value [#6144](https://github.com/ruby/rubygems/pull/6144)
1064
1137
 
1065
1138
  ### Features:
1066
1139
 
1067
- - Add `--ext=rust` support to `bundle gem` for creating simple gems with Rust extensions [#6149](https://github.com/rubygems/rubygems/pull/6149)
1068
- - Migrate our resolver engine to PubGrub [#5960](https://github.com/rubygems/rubygems/pull/5960)
1140
+ - Add `--ext=rust` support to `bundle gem` for creating simple gems with Rust extensions [#6149](https://github.com/ruby/rubygems/pull/6149)
1141
+ - Migrate our resolver engine to PubGrub [#5960](https://github.com/ruby/rubygems/pull/5960)
1069
1142
 
1070
1143
  ### Performance:
1071
1144
 
1072
- - Make cloning git repos faster [#4475](https://github.com/rubygems/rubygems/pull/4475)
1145
+ - Make cloning git repos faster [#4475](https://github.com/ruby/rubygems/pull/4475)
1073
1146
 
1074
1147
  ### Enhancements:
1075
1148
 
1076
- - Add `bundle lock --update --bundler` [#6134](https://github.com/rubygems/rubygems/pull/6134)
1077
- - Support for pre flag in `bundle update`/`bundle lock` [#5258](https://github.com/rubygems/rubygems/pull/5258)
1078
- - Improve error message when changing Gemfile to a mistyped git ref [#6130](https://github.com/rubygems/rubygems/pull/6130)
1079
- - Remove special handling of some `LoadError` and `NoMethodError` [#6115](https://github.com/rubygems/rubygems/pull/6115)
1149
+ - Add `bundle lock --update --bundler` [#6134](https://github.com/ruby/rubygems/pull/6134)
1150
+ - Support for pre flag in `bundle update`/`bundle lock` [#5258](https://github.com/ruby/rubygems/pull/5258)
1151
+ - Improve error message when changing Gemfile to a mistyped git ref [#6130](https://github.com/ruby/rubygems/pull/6130)
1152
+ - Remove special handling of some `LoadError` and `NoMethodError` [#6115](https://github.com/ruby/rubygems/pull/6115)
1080
1153
 
1081
1154
  ### Bug fixes:
1082
1155
 
1083
- - Don't unlock dependencies of a gemspec when its version changes [#6184](https://github.com/rubygems/rubygems/pull/6184)
1084
- - Fix platform specific version for libv8-node and other allowlisted gems not being chosen in Truffleruby [#6169](https://github.com/rubygems/rubygems/pull/6169)
1085
- - Fix `bundle outdated` with both `--groups` and `--parseable` flags [#6148](https://github.com/rubygems/rubygems/pull/6148)
1086
- - Auto-heal lockfile when it's missing specs [#6132](https://github.com/rubygems/rubygems/pull/6132)
1087
- - Fix unintentional downgrades when gemspec DSL is used [#6131](https://github.com/rubygems/rubygems/pull/6131)
1088
- - Fix display of previous gem version when previously downloaded already [#6110](https://github.com/rubygems/rubygems/pull/6110)
1089
- - Fix hang when a lockfile gem does not resolve on the current platform [#6070](https://github.com/rubygems/rubygems/pull/6070)
1156
+ - Don't unlock dependencies of a gemspec when its version changes [#6184](https://github.com/ruby/rubygems/pull/6184)
1157
+ - Fix platform specific version for libv8-node and other allowlisted gems not being chosen in Truffleruby [#6169](https://github.com/ruby/rubygems/pull/6169)
1158
+ - Fix `bundle outdated` with both `--groups` and `--parseable` flags [#6148](https://github.com/ruby/rubygems/pull/6148)
1159
+ - Auto-heal lockfile when it's missing specs [#6132](https://github.com/ruby/rubygems/pull/6132)
1160
+ - Fix unintentional downgrades when gemspec DSL is used [#6131](https://github.com/ruby/rubygems/pull/6131)
1161
+ - Fix display of previous gem version when previously downloaded already [#6110](https://github.com/ruby/rubygems/pull/6110)
1162
+ - Fix hang when a lockfile gem does not resolve on the current platform [#6070](https://github.com/ruby/rubygems/pull/6070)
1090
1163
 
1091
1164
  ### Documentation:
1092
1165
 
1093
- - Improve Bundler setup docs for development [#6154](https://github.com/rubygems/rubygems/pull/6154)
1094
- - Fx link in bundle-platform man page [#6071](https://github.com/rubygems/rubygems/pull/6071)
1166
+ - Improve Bundler setup docs for development [#6154](https://github.com/ruby/rubygems/pull/6154)
1167
+ - Fx link in bundle-platform man page [#6071](https://github.com/ruby/rubygems/pull/6071)
1095
1168
 
1096
1169
  ## 2.3.26 (2022-11-16)
1097
1170
 
1098
1171
  ### Enhancements:
1099
1172
 
1100
- - Map 'universal' to the real arch in Bundler for prebuilt gem selection [#5978](https://github.com/rubygems/rubygems/pull/5978)
1173
+ - Map 'universal' to the real arch in Bundler for prebuilt gem selection [#5978](https://github.com/ruby/rubygems/pull/5978)
1101
1174
 
1102
1175
  ### Documentation:
1103
1176
 
1104
- - Fix '--force' option documentation of 'bundle clean' [#6050](https://github.com/rubygems/rubygems/pull/6050)
1177
+ - Fix '--force' option documentation of 'bundle clean' [#6050](https://github.com/ruby/rubygems/pull/6050)
1105
1178
 
1106
1179
  ## 2.3.25 (2022-11-02)
1107
1180
 
1108
1181
  ### Bug fixes:
1109
1182
 
1110
- - Properly sort specs when materializing [#6015](https://github.com/rubygems/rubygems/pull/6015)
1111
- - Fix bad unfreeze recommendation [#6013](https://github.com/rubygems/rubygems/pull/6013)
1183
+ - Properly sort specs when materializing [#6015](https://github.com/ruby/rubygems/pull/6015)
1184
+ - Fix bad unfreeze recommendation [#6013](https://github.com/ruby/rubygems/pull/6013)
1112
1185
 
1113
1186
  ### Documentation:
1114
1187
 
1115
- - Bring docs for gemfile(5) manpage up to date [#6007](https://github.com/rubygems/rubygems/pull/6007)
1116
- - Fix `github` DSL docs to mention they use https protocol over git under the hood [#5993](https://github.com/rubygems/rubygems/pull/5993)
1188
+ - Bring docs for gemfile(5) manpage up to date [#6007](https://github.com/ruby/rubygems/pull/6007)
1189
+ - Fix `github` DSL docs to mention they use https protocol over git under the hood [#5993](https://github.com/ruby/rubygems/pull/5993)
1117
1190
 
1118
1191
  ## 2.3.24 (2022-10-17)
1119
1192
 
1120
1193
  ### Enhancements:
1121
1194
 
1122
- - Only add extra resolver spec group for Ruby platform when needed [#5698](https://github.com/rubygems/rubygems/pull/5698)
1123
- - Fix little UI issue when bundler shows duplicated gems in a list [#5965](https://github.com/rubygems/rubygems/pull/5965)
1195
+ - Only add extra resolver spec group for Ruby platform when needed [#5698](https://github.com/ruby/rubygems/pull/5698)
1196
+ - Fix little UI issue when bundler shows duplicated gems in a list [#5965](https://github.com/ruby/rubygems/pull/5965)
1124
1197
 
1125
1198
  ### Bug fixes:
1126
1199
 
1127
- - Fix incorrect materialization on Windows [#5975](https://github.com/rubygems/rubygems/pull/5975)
1200
+ - Fix incorrect materialization on Windows [#5975](https://github.com/ruby/rubygems/pull/5975)
1128
1201
 
1129
1202
  ## 2.3.23 (2022-10-05)
1130
1203
 
1131
1204
  ### Enhancements:
1132
1205
 
1133
- - Update GitLab CI template with new one [#5944](https://github.com/rubygems/rubygems/pull/5944)
1206
+ - Update GitLab CI template with new one [#5944](https://github.com/ruby/rubygems/pull/5944)
1134
1207
 
1135
1208
  ### Bug fixes:
1136
1209
 
1137
- - Fix `bundle init` not respecting umask in generated gem's Gemfile [#5947](https://github.com/rubygems/rubygems/pull/5947)
1210
+ - Fix `bundle init` not respecting umask in generated gem's Gemfile [#5947](https://github.com/ruby/rubygems/pull/5947)
1138
1211
 
1139
1212
  ### Performance:
1140
1213
 
1141
- - Further speed up Bundler by not sorting specs unnecessarily [#5868](https://github.com/rubygems/rubygems/pull/5868)
1214
+ - Further speed up Bundler by not sorting specs unnecessarily [#5868](https://github.com/ruby/rubygems/pull/5868)
1142
1215
 
1143
1216
  ### Documentation:
1144
1217
 
1145
- - Update Bundler new feature instructions [#5912](https://github.com/rubygems/rubygems/pull/5912)
1218
+ - Update Bundler new feature instructions [#5912](https://github.com/ruby/rubygems/pull/5912)
1146
1219
 
1147
1220
  ## 2.3.22 (2022-09-07)
1148
1221
 
1149
1222
  ### Enhancements:
1150
1223
 
1151
- - Use a more accurate source code uri in gemspec [#5896](https://github.com/rubygems/rubygems/pull/5896)
1152
- - Support `--path` option in `bundle add` [#5897](https://github.com/rubygems/rubygems/pull/5897)
1153
- - Improve lockfile dependency unlocking [#5881](https://github.com/rubygems/rubygems/pull/5881)
1154
- - Add platform alias `:windows` to Gemfile DSL [#5650](https://github.com/rubygems/rubygems/pull/5650)
1155
- - Make `#to_lock` consistent between `Gem::Dependency` and `Bundler::Dependency` [#5872](https://github.com/rubygems/rubygems/pull/5872)
1156
- - Support marshaled index specifications with `nil` required ruby version [#5824](https://github.com/rubygems/rubygems/pull/5824)
1224
+ - Use a more accurate source code uri in gemspec [#5896](https://github.com/ruby/rubygems/pull/5896)
1225
+ - Support `--path` option in `bundle add` [#5897](https://github.com/ruby/rubygems/pull/5897)
1226
+ - Improve lockfile dependency unlocking [#5881](https://github.com/ruby/rubygems/pull/5881)
1227
+ - Add platform alias `:windows` to Gemfile DSL [#5650](https://github.com/ruby/rubygems/pull/5650)
1228
+ - Make `#to_lock` consistent between `Gem::Dependency` and `Bundler::Dependency` [#5872](https://github.com/ruby/rubygems/pull/5872)
1229
+ - Support marshaled index specifications with `nil` required ruby version [#5824](https://github.com/ruby/rubygems/pull/5824)
1157
1230
 
1158
1231
  ### Bug fixes:
1159
1232
 
1160
- - Fix resolution hanging on musl platforms [#5875](https://github.com/rubygems/rubygems/pull/5875)
1161
- - Fix another regression affecting the sorbet family of gems [#5874](https://github.com/rubygems/rubygems/pull/5874)
1233
+ - Fix resolution hanging on musl platforms [#5875](https://github.com/ruby/rubygems/pull/5875)
1234
+ - Fix another regression affecting the sorbet family of gems [#5874](https://github.com/ruby/rubygems/pull/5874)
1162
1235
 
1163
1236
  ### Documentation:
1164
1237
 
1165
- - Introduce bundle-console(1) man [#5901](https://github.com/rubygems/rubygems/pull/5901)
1166
- - Introduce bundle-version(1) man [#5895](https://github.com/rubygems/rubygems/pull/5895)
1167
- - Introduce bundle-help(1) man [#5886](https://github.com/rubygems/rubygems/pull/5886)
1238
+ - Introduce bundle-console(1) man [#5901](https://github.com/ruby/rubygems/pull/5901)
1239
+ - Introduce bundle-version(1) man [#5895](https://github.com/ruby/rubygems/pull/5895)
1240
+ - Introduce bundle-help(1) man [#5886](https://github.com/ruby/rubygems/pull/5886)
1168
1241
 
1169
1242
  ## 2.3.21 (2022-08-24)
1170
1243
 
1171
1244
  ### Enhancements:
1172
1245
 
1173
- - Backport non gnu libc linux support from RubyGems [#4488](https://github.com/rubygems/rubygems/pull/4488)
1174
- - Improve `Bundler.rm_rf` error message [#5861](https://github.com/rubygems/rubygems/pull/5861)
1175
- - Disallow both `--branch` and `--ref` at the same time in bundle-plugin [#5855](https://github.com/rubygems/rubygems/pull/5855)
1176
- - Restore previous performance of private RubyGems servers [#5826](https://github.com/rubygems/rubygems/pull/5826)
1246
+ - Backport non gnu libc linux support from RubyGems [#4488](https://github.com/ruby/rubygems/pull/4488)
1247
+ - Improve `Bundler.rm_rf` error message [#5861](https://github.com/ruby/rubygems/pull/5861)
1248
+ - Disallow both `--branch` and `--ref` at the same time in bundle-plugin [#5855](https://github.com/ruby/rubygems/pull/5855)
1249
+ - Restore previous performance of private RubyGems servers [#5826](https://github.com/ruby/rubygems/pull/5826)
1177
1250
 
1178
1251
  ### Bug fixes:
1179
1252
 
1180
- - Fix conservative update downgrading top level gems [#5847](https://github.com/rubygems/rubygems/pull/5847)
1181
- - Fix edge case where `bundler/inline` unintentionally skips install [#5848](https://github.com/rubygems/rubygems/pull/5848)
1182
- - Fix `bundle platform` crash when there's a lockfile with no Ruby locked [#5850](https://github.com/rubygems/rubygems/pull/5850)
1183
- - Fix crash when incomplete locked specifications are found in transitive dependencies [#5840](https://github.com/rubygems/rubygems/pull/5840)
1184
- - Fix Ruby platform incorrectly removed on `bundle update` [#5832](https://github.com/rubygems/rubygems/pull/5832)
1253
+ - Fix conservative update downgrading top level gems [#5847](https://github.com/ruby/rubygems/pull/5847)
1254
+ - Fix edge case where `bundler/inline` unintentionally skips install [#5848](https://github.com/ruby/rubygems/pull/5848)
1255
+ - Fix `bundle platform` crash when there's a lockfile with no Ruby locked [#5850](https://github.com/ruby/rubygems/pull/5850)
1256
+ - Fix crash when incomplete locked specifications are found in transitive dependencies [#5840](https://github.com/ruby/rubygems/pull/5840)
1257
+ - Fix Ruby platform incorrectly removed on `bundle update` [#5832](https://github.com/ruby/rubygems/pull/5832)
1185
1258
 
1186
1259
  ### Documentation:
1187
1260
 
1188
- - Explain cancelled CLI deprecations clearly [#5864](https://github.com/rubygems/rubygems/pull/5864)
1189
- - Improve `bundle config` command synopsis [#5854](https://github.com/rubygems/rubygems/pull/5854)
1190
- - Introduce bundle-plugin(1) man [#5853](https://github.com/rubygems/rubygems/pull/5853)
1261
+ - Explain cancelled CLI deprecations clearly [#5864](https://github.com/ruby/rubygems/pull/5864)
1262
+ - Improve `bundle config` command synopsis [#5854](https://github.com/ruby/rubygems/pull/5854)
1263
+ - Introduce bundle-plugin(1) man [#5853](https://github.com/ruby/rubygems/pull/5853)
1191
1264
 
1192
1265
  ## 2.3.20 (2022-08-10)
1193
1266
 
1194
1267
  ### Enhancements:
1195
1268
 
1196
- - Consistently ignore patchlevel when reporting `bundle platform --ruby` [#5793](https://github.com/rubygems/rubygems/pull/5793)
1197
- - Make `--standalone` play nice with `--local` [#5762](https://github.com/rubygems/rubygems/pull/5762)
1198
- - Implement `bundle install --prefer-local` [#5761](https://github.com/rubygems/rubygems/pull/5761)
1269
+ - Consistently ignore patchlevel when reporting `bundle platform --ruby` [#5793](https://github.com/ruby/rubygems/pull/5793)
1270
+ - Make `--standalone` play nice with `--local` [#5762](https://github.com/ruby/rubygems/pull/5762)
1271
+ - Implement `bundle install --prefer-local` [#5761](https://github.com/ruby/rubygems/pull/5761)
1199
1272
 
1200
1273
  ### Bug fixes:
1201
1274
 
1202
- - Fix regression where yanked gems are now unintentionally updated when other gems are unlocked [#5812](https://github.com/rubygems/rubygems/pull/5812)
1203
- - Automatically remove "ruby" from lockfile if incomplete [#5807](https://github.com/rubygems/rubygems/pull/5807)
1204
- - Fix `bundle outdated --strict` showing too many outdated gems [#5798](https://github.com/rubygems/rubygems/pull/5798)
1205
- - Don't discard candidates matching Ruby metadata [#5784](https://github.com/rubygems/rubygems/pull/5784)
1206
- - Fix `bundle outdated` crash in debug mode [#5796](https://github.com/rubygems/rubygems/pull/5796)
1207
- - Fix `ruby` DSL requirement matching for head and prerelease rubies [#5766](https://github.com/rubygems/rubygems/pull/5766)
1275
+ - Fix regression where yanked gems are now unintentionally updated when other gems are unlocked [#5812](https://github.com/ruby/rubygems/pull/5812)
1276
+ - Automatically remove "ruby" from lockfile if incomplete [#5807](https://github.com/ruby/rubygems/pull/5807)
1277
+ - Fix `bundle outdated --strict` showing too many outdated gems [#5798](https://github.com/ruby/rubygems/pull/5798)
1278
+ - Don't discard candidates matching Ruby metadata [#5784](https://github.com/ruby/rubygems/pull/5784)
1279
+ - Fix `bundle outdated` crash in debug mode [#5796](https://github.com/ruby/rubygems/pull/5796)
1280
+ - Fix `ruby` DSL requirement matching for head and prerelease rubies [#5766](https://github.com/ruby/rubygems/pull/5766)
1208
1281
 
1209
1282
  ### Documentation:
1210
1283
 
1211
- - Update Bundler support policies to match what we do these days [#5813](https://github.com/rubygems/rubygems/pull/5813)
1212
- - Fix arguments for bundle-config(1) docs [#5804](https://github.com/rubygems/rubygems/pull/5804)
1213
- - Improve `bundle platform` man page [#5788](https://github.com/rubygems/rubygems/pull/5788)
1214
- - Remove `bundle cache` from deprecated commands list, and consistently link to `bundle cache` in man pages [#5783](https://github.com/rubygems/rubygems/pull/5783)
1215
- - Add package/pack aliases to man pages for cache [#5785](https://github.com/rubygems/rubygems/pull/5785)
1216
- - Add deprecation notice of bundle console [#5775](https://github.com/rubygems/rubygems/pull/5775)
1284
+ - Update Bundler support policies to match what we do these days [#5813](https://github.com/ruby/rubygems/pull/5813)
1285
+ - Fix arguments for bundle-config(1) docs [#5804](https://github.com/ruby/rubygems/pull/5804)
1286
+ - Improve `bundle platform` man page [#5788](https://github.com/ruby/rubygems/pull/5788)
1287
+ - Remove `bundle cache` from deprecated commands list, and consistently link to `bundle cache` in man pages [#5783](https://github.com/ruby/rubygems/pull/5783)
1288
+ - Add package/pack aliases to man pages for cache [#5785](https://github.com/ruby/rubygems/pull/5785)
1289
+ - Add deprecation notice of bundle console [#5775](https://github.com/ruby/rubygems/pull/5775)
1217
1290
 
1218
1291
  ## 2.3.19 (2022-07-27)
1219
1292
 
1220
1293
  ### Enhancements:
1221
1294
 
1222
- - Add `Bundler.settings[:only]` to install gems of the specified groups [#5759](https://github.com/rubygems/rubygems/pull/5759)
1223
- - Add `ignore_funding_requests` config flag [#5767](https://github.com/rubygems/rubygems/pull/5767)
1224
- - Prevent random crash when autoloading `Pathname` [#5769](https://github.com/rubygems/rubygems/pull/5769)
1225
- - Don't corrupt lockfile when user moves a gem that's already in the lockfile to an incorrect source by mistake [#5070](https://github.com/rubygems/rubygems/pull/5070)
1226
- - Reconcile error/warning message for multiple global sources with documentation [#5741](https://github.com/rubygems/rubygems/pull/5741)
1227
- - Improve error message when gems cannot be found to include the source for each gem [#5729](https://github.com/rubygems/rubygems/pull/5729)
1295
+ - Add `Bundler.settings[:only]` to install gems of the specified groups [#5759](https://github.com/ruby/rubygems/pull/5759)
1296
+ - Add `ignore_funding_requests` config flag [#5767](https://github.com/ruby/rubygems/pull/5767)
1297
+ - Prevent random crash when autoloading `Pathname` [#5769](https://github.com/ruby/rubygems/pull/5769)
1298
+ - Don't corrupt lockfile when user moves a gem that's already in the lockfile to an incorrect source by mistake [#5070](https://github.com/ruby/rubygems/pull/5070)
1299
+ - Reconcile error/warning message for multiple global sources with documentation [#5741](https://github.com/ruby/rubygems/pull/5741)
1300
+ - Improve error message when gems cannot be found to include the source for each gem [#5729](https://github.com/ruby/rubygems/pull/5729)
1228
1301
 
1229
1302
  ### Bug fixes:
1230
1303
 
1231
- - Fix yet another TruffleRuby platform selection regression [#5746](https://github.com/rubygems/rubygems/pull/5746)
1232
- - Show a proper error if extension dir is not writable [#5726](https://github.com/rubygems/rubygems/pull/5726)
1304
+ - Fix yet another TruffleRuby platform selection regression [#5746](https://github.com/ruby/rubygems/pull/5746)
1305
+ - Show a proper error if extension dir is not writable [#5726](https://github.com/ruby/rubygems/pull/5726)
1233
1306
 
1234
1307
  ### Performance:
1235
1308
 
1236
- - Lazily check incomplete lockfile to improve performance [#5546](https://github.com/rubygems/rubygems/pull/5546)
1309
+ - Lazily check incomplete lockfile to improve performance [#5546](https://github.com/ruby/rubygems/pull/5546)
1237
1310
 
1238
1311
  ### Documentation:
1239
1312
 
1240
- - Add deprecation notice of bundle inject [#5776](https://github.com/rubygems/rubygems/pull/5776)
1241
- - Add deprecation notice of `bundle viz` to man pages [#5765](https://github.com/rubygems/rubygems/pull/5765)
1242
- - Update command example in `bundle exec` man page [#5754](https://github.com/rubygems/rubygems/pull/5754)
1243
- - Remove bundle show from obsolete commands [#5753](https://github.com/rubygems/rubygems/pull/5753)
1244
- - Improve global source(s) documentation [#5732](https://github.com/rubygems/rubygems/pull/5732)
1245
- - Use https protocol for URLs for config mirror in bundler man [#5722](https://github.com/rubygems/rubygems/pull/5722)
1313
+ - Add deprecation notice of bundle inject [#5776](https://github.com/ruby/rubygems/pull/5776)
1314
+ - Add deprecation notice of `bundle viz` to man pages [#5765](https://github.com/ruby/rubygems/pull/5765)
1315
+ - Update command example in `bundle exec` man page [#5754](https://github.com/ruby/rubygems/pull/5754)
1316
+ - Remove bundle show from obsolete commands [#5753](https://github.com/ruby/rubygems/pull/5753)
1317
+ - Improve global source(s) documentation [#5732](https://github.com/ruby/rubygems/pull/5732)
1318
+ - Use https protocol for URLs for config mirror in bundler man [#5722](https://github.com/ruby/rubygems/pull/5722)
1246
1319
 
1247
1320
  ## 2.3.18 (2022-07-14)
1248
1321
 
1249
1322
  ### Enhancements:
1250
1323
 
1251
- - Extend `gem` DSL with a `force_ruby_platform` option [#4049](https://github.com/rubygems/rubygems/pull/4049)
1324
+ - Extend `gem` DSL with a `force_ruby_platform` option [#4049](https://github.com/ruby/rubygems/pull/4049)
1252
1325
 
1253
1326
  ### Bug fixes:
1254
1327
 
1255
- - Fix misleading error if compact index cannot be copied [#5709](https://github.com/rubygems/rubygems/pull/5709)
1256
- - Fix TruffleRuby no longer able to install lockfiles generated with other implementations [#5711](https://github.com/rubygems/rubygems/pull/5711)
1257
- - Fix TruffleRuby no longer installing lockfiles using "ruby" platform correctly [#5694](https://github.com/rubygems/rubygems/pull/5694)
1258
- - Fix crash when updating vendor cache of default gems [#5679](https://github.com/rubygems/rubygems/pull/5679)
1328
+ - Fix misleading error if compact index cannot be copied [#5709](https://github.com/ruby/rubygems/pull/5709)
1329
+ - Fix TruffleRuby no longer able to install lockfiles generated with other implementations [#5711](https://github.com/ruby/rubygems/pull/5711)
1330
+ - Fix TruffleRuby no longer installing lockfiles using "ruby" platform correctly [#5694](https://github.com/ruby/rubygems/pull/5694)
1331
+ - Fix crash when updating vendor cache of default gems [#5679](https://github.com/ruby/rubygems/pull/5679)
1259
1332
 
1260
1333
  ### Performance:
1261
1334
 
1262
- - Speed up `bundler/setup` by using the raw `Gemfile.lock` information without extra processing whenever possible [#5695](https://github.com/rubygems/rubygems/pull/5695)
1335
+ - Speed up `bundler/setup` by using the raw `Gemfile.lock` information without extra processing whenever possible [#5695](https://github.com/ruby/rubygems/pull/5695)
1263
1336
 
1264
1337
  ### Documentation:
1265
1338
 
1266
- - Use modern style hashes in Gemfile DSL docs [#5674](https://github.com/rubygems/rubygems/pull/5674)
1339
+ - Use modern style hashes in Gemfile DSL docs [#5674](https://github.com/ruby/rubygems/pull/5674)
1267
1340
 
1268
1341
  ## 2.3.17 (2022-06-29)
1269
1342
 
1270
1343
  ### Enhancements:
1271
1344
 
1272
- - Add support for platform `:x64_mingw` to correctly lookup "x64-mingw-ucrt" [#5649](https://github.com/rubygems/rubygems/pull/5649)
1273
- - Fix some errors being printed twice in `--verbose` mode [#5654](https://github.com/rubygems/rubygems/pull/5654)
1274
- - Fix extension paths in generated standalone script [#5632](https://github.com/rubygems/rubygems/pull/5632)
1345
+ - Add support for platform `:x64_mingw` to correctly lookup "x64-mingw-ucrt" [#5649](https://github.com/ruby/rubygems/pull/5649)
1346
+ - Fix some errors being printed twice in `--verbose` mode [#5654](https://github.com/ruby/rubygems/pull/5654)
1347
+ - Fix extension paths in generated standalone script [#5632](https://github.com/ruby/rubygems/pull/5632)
1275
1348
 
1276
1349
  ### Bug fixes:
1277
1350
 
1278
- - Raise if ruby platform is forced and there are no ruby variants [#5495](https://github.com/rubygems/rubygems/pull/5495)
1279
- - Fix `bundle package --no-install` no longer skipping install [#5639](https://github.com/rubygems/rubygems/pull/5639)
1351
+ - Raise if ruby platform is forced and there are no ruby variants [#5495](https://github.com/ruby/rubygems/pull/5495)
1352
+ - Fix `bundle package --no-install` no longer skipping install [#5639](https://github.com/ruby/rubygems/pull/5639)
1280
1353
 
1281
1354
  ### Performance:
1282
1355
 
1283
- - Improve performance of `Bundler::SpecSet#for` by using hash lookup of handled deps [#5537](https://github.com/rubygems/rubygems/pull/5537)
1356
+ - Improve performance of `Bundler::SpecSet#for` by using hash lookup of handled deps [#5537](https://github.com/ruby/rubygems/pull/5537)
1284
1357
 
1285
1358
  ### Documentation:
1286
1359
 
1287
- - Fix formatting issue in `bundle add` man page [#5642](https://github.com/rubygems/rubygems/pull/5642)
1360
+ - Fix formatting issue in `bundle add` man page [#5642](https://github.com/ruby/rubygems/pull/5642)
1288
1361
 
1289
1362
  ## 2.3.16 (2022-06-15)
1290
1363
 
1291
1364
  ### Performance:
1292
1365
 
1293
- - Improve performance of installing gems from gem server sources [#5614](https://github.com/rubygems/rubygems/pull/5614)
1366
+ - Improve performance of installing gems from gem server sources [#5614](https://github.com/ruby/rubygems/pull/5614)
1294
1367
 
1295
1368
  ## 2.3.15 (2022-06-01)
1296
1369
 
1297
1370
  ### Enhancements:
1298
1371
 
1299
- - Show better error when previous installation fails to be removed [#5564](https://github.com/rubygems/rubygems/pull/5564)
1300
- - Show exception cause in bug report template [#5563](https://github.com/rubygems/rubygems/pull/5563)
1372
+ - Show better error when previous installation fails to be removed [#5564](https://github.com/ruby/rubygems/pull/5564)
1373
+ - Show exception cause in bug report template [#5563](https://github.com/ruby/rubygems/pull/5563)
1301
1374
 
1302
1375
  ### Bug fixes:
1303
1376
 
1304
- - Fix `bundle remove` by invalidating cached `Bundle.definition` [#5443](https://github.com/rubygems/rubygems/pull/5443)
1305
- - Fix generated standalone script when it includes default gems [#5586](https://github.com/rubygems/rubygems/pull/5586)
1306
- - Skip duplicated dependency warning for gemspec dev deps [#5587](https://github.com/rubygems/rubygems/pull/5587)
1307
- - Give better conflict resolution advice [#5581](https://github.com/rubygems/rubygems/pull/5581)
1308
- - Fix crash when commenting out a mirror in configuration [#5576](https://github.com/rubygems/rubygems/pull/5576)
1309
- - Fix crash when installing gems with symlinks [#5570](https://github.com/rubygems/rubygems/pull/5570)
1310
- - Ignore `Errno::EROFS` errors when creating `bundler.lock` [#5580](https://github.com/rubygems/rubygems/pull/5580)
1311
- - Ignore `Errno::EPERM` errors when creating `bundler.lock` [#5579](https://github.com/rubygems/rubygems/pull/5579)
1312
- - Fix crash when printing resolution conflicts on metadata requirements [#5562](https://github.com/rubygems/rubygems/pull/5562)
1377
+ - Fix `bundle remove` by invalidating cached `Bundle.definition` [#5443](https://github.com/ruby/rubygems/pull/5443)
1378
+ - Fix generated standalone script when it includes default gems [#5586](https://github.com/ruby/rubygems/pull/5586)
1379
+ - Skip duplicated dependency warning for gemspec dev deps [#5587](https://github.com/ruby/rubygems/pull/5587)
1380
+ - Give better conflict resolution advice [#5581](https://github.com/ruby/rubygems/pull/5581)
1381
+ - Fix crash when commenting out a mirror in configuration [#5576](https://github.com/ruby/rubygems/pull/5576)
1382
+ - Fix crash when installing gems with symlinks [#5570](https://github.com/ruby/rubygems/pull/5570)
1383
+ - Ignore `Errno::EROFS` errors when creating `bundler.lock` [#5580](https://github.com/ruby/rubygems/pull/5580)
1384
+ - Ignore `Errno::EPERM` errors when creating `bundler.lock` [#5579](https://github.com/ruby/rubygems/pull/5579)
1385
+ - Fix crash when printing resolution conflicts on metadata requirements [#5562](https://github.com/ruby/rubygems/pull/5562)
1313
1386
 
1314
1387
  ## 2.3.14 (2022-05-18)
1315
1388
 
1316
1389
  ### Bug fixes:
1317
1390
 
1318
- - Fix confusing inline mode install output [#5530](https://github.com/rubygems/rubygems/pull/5530)
1319
- - Fix error message when locked version of a gem does not support running Ruby [#5525](https://github.com/rubygems/rubygems/pull/5525)
1391
+ - Fix confusing inline mode install output [#5530](https://github.com/ruby/rubygems/pull/5530)
1392
+ - Fix error message when locked version of a gem does not support running Ruby [#5525](https://github.com/ruby/rubygems/pull/5525)
1320
1393
 
1321
1394
  ### Performance:
1322
1395
 
1323
- - Improve `bundler/setup` performance again by not deduplicating intermediate results [#5533](https://github.com/rubygems/rubygems/pull/5533)
1396
+ - Improve `bundler/setup` performance again by not deduplicating intermediate results [#5533](https://github.com/ruby/rubygems/pull/5533)
1324
1397
 
1325
1398
  ### Documentation:
1326
1399
 
1327
- - Fix typo in documentation [#5514](https://github.com/rubygems/rubygems/pull/5514)
1328
- - Update man page for `require` option in `bundle add` command [#5513](https://github.com/rubygems/rubygems/pull/5513)
1400
+ - Fix typo in documentation [#5514](https://github.com/ruby/rubygems/pull/5514)
1401
+ - Update man page for `require` option in `bundle add` command [#5513](https://github.com/ruby/rubygems/pull/5513)
1329
1402
 
1330
1403
  ## 2.3.13 (2022-05-04)
1331
1404
 
1332
1405
  ### Bug fixes:
1333
1406
 
1334
- - Fix missing required rubygems version when using old APIs [#5496](https://github.com/rubygems/rubygems/pull/5496)
1335
- - Fix crash when gem used twice in Gemfile under different platforms [#5187](https://github.com/rubygems/rubygems/pull/5187)
1407
+ - Fix missing required rubygems version when using old APIs [#5496](https://github.com/ruby/rubygems/pull/5496)
1408
+ - Fix crash when gem used twice in Gemfile under different platforms [#5187](https://github.com/ruby/rubygems/pull/5187)
1336
1409
 
1337
1410
  ### Performance:
1338
1411
 
1339
- - Speed up `bundler/setup` time [#5503](https://github.com/rubygems/rubygems/pull/5503)
1412
+ - Speed up `bundler/setup` time [#5503](https://github.com/ruby/rubygems/pull/5503)
1340
1413
 
1341
1414
  ## 2.3.12 (2022-04-20)
1342
1415
 
1343
1416
  ### Enhancements:
1344
1417
 
1345
- - Improve Ruby version resolution conflicts [#5474](https://github.com/rubygems/rubygems/pull/5474)
1346
- - Stop considering `RUBY_PATCHLEVEL` for resolution [#5472](https://github.com/rubygems/rubygems/pull/5472)
1347
- - Add modern rubies as valid platform values in Gemfile DSL [#5469](https://github.com/rubygems/rubygems/pull/5469)
1418
+ - Improve Ruby version resolution conflicts [#5474](https://github.com/ruby/rubygems/pull/5474)
1419
+ - Stop considering `RUBY_PATCHLEVEL` for resolution [#5472](https://github.com/ruby/rubygems/pull/5472)
1420
+ - Add modern rubies as valid platform values in Gemfile DSL [#5469](https://github.com/ruby/rubygems/pull/5469)
1348
1421
 
1349
1422
  ## 2.3.11 (2022-04-07)
1350
1423
 
1351
1424
  ### Enhancements:
1352
1425
 
1353
- - Bump actions/checkout to 3 in bundler gem template [#5445](https://github.com/rubygems/rubygems/pull/5445)
1354
- - Prefer `__dir__` to `__FILE__` [#5444](https://github.com/rubygems/rubygems/pull/5444)
1426
+ - Bump actions/checkout to 3 in bundler gem template [#5445](https://github.com/ruby/rubygems/pull/5445)
1427
+ - Prefer `__dir__` to `__FILE__` [#5444](https://github.com/ruby/rubygems/pull/5444)
1355
1428
 
1356
1429
  ### Documentation:
1357
1430
 
1358
- - Update bundler documentation to reflect bundle config scope changes [#5441](https://github.com/rubygems/rubygems/pull/5441)
1431
+ - Update bundler documentation to reflect bundle config scope changes [#5441](https://github.com/ruby/rubygems/pull/5441)
1359
1432
 
1360
1433
  ## 2.3.10 (2022-03-23)
1361
1434
 
1362
1435
  ### Enhancements:
1363
1436
 
1364
- - More helpful reporting of marshal loading issues [#5416](https://github.com/rubygems/rubygems/pull/5416)
1365
- - Report Github Actions CI provider within user agent string [#5400](https://github.com/rubygems/rubygems/pull/5400)
1366
- - Remove extra closing bracket in version warning [#5397](https://github.com/rubygems/rubygems/pull/5397)
1437
+ - More helpful reporting of marshal loading issues [#5416](https://github.com/ruby/rubygems/pull/5416)
1438
+ - Report Github Actions CI provider within user agent string [#5400](https://github.com/ruby/rubygems/pull/5400)
1439
+ - Remove extra closing bracket in version warning [#5397](https://github.com/ruby/rubygems/pull/5397)
1367
1440
 
1368
1441
  ## 2.3.9 (2022-03-09)
1369
1442
 
1370
1443
  ### Enhancements:
1371
1444
 
1372
- - Add newline to validate_platforms! message when platform is missing [#5353](https://github.com/rubygems/rubygems/pull/5353)
1373
- - Suggest quicker `bundle add` for installation in `README.md` generated by `bundle gem` [#5337](https://github.com/rubygems/rubygems/pull/5337)
1374
- - Make `--strict` flag of `update` and `outdated` commands consistent [#5379](https://github.com/rubygems/rubygems/pull/5379)
1445
+ - Add newline to validate_platforms! message when platform is missing [#5353](https://github.com/ruby/rubygems/pull/5353)
1446
+ - Suggest quicker `bundle add` for installation in `README.md` generated by `bundle gem` [#5337](https://github.com/ruby/rubygems/pull/5337)
1447
+ - Make `--strict` flag of `update` and `outdated` commands consistent [#5379](https://github.com/ruby/rubygems/pull/5379)
1375
1448
 
1376
1449
  ### Bug fixes:
1377
1450
 
1378
- - Fix regression when activating gem executables caused by Bundler monkey patches to RubyGems [#5386](https://github.com/rubygems/rubygems/pull/5386)
1451
+ - Fix regression when activating gem executables caused by Bundler monkey patches to RubyGems [#5386](https://github.com/ruby/rubygems/pull/5386)
1379
1452
 
1380
1453
  ## 2.3.8 (2022-02-23)
1381
1454
 
1382
1455
  ### Bug fixes:
1383
1456
 
1384
- - Fix corrupted lockfile when running `bundle check` and having to re-resolve locally [#5344](https://github.com/rubygems/rubygems/pull/5344)
1385
- - Fix typo in multiple gemfiles warning [#5342](https://github.com/rubygems/rubygems/pull/5342)
1457
+ - Fix corrupted lockfile when running `bundle check` and having to re-resolve locally [#5344](https://github.com/ruby/rubygems/pull/5344)
1458
+ - Fix typo in multiple gemfiles warning [#5342](https://github.com/ruby/rubygems/pull/5342)
1386
1459
 
1387
1460
  ### Documentation:
1388
1461
 
1389
- - Add clarification for bundle-config "with" option [#5346](https://github.com/rubygems/rubygems/pull/5346)
1462
+ - Add clarification for bundle-config "with" option [#5346](https://github.com/ruby/rubygems/pull/5346)
1390
1463
 
1391
1464
  ## 2.3.7 (2022-02-09)
1392
1465
 
1393
1466
  ### Enhancements:
1394
1467
 
1395
- - Don't activate `yaml` gem from Bundler [#5277](https://github.com/rubygems/rubygems/pull/5277)
1396
- - Add Reverse Dependencies section to info command [#3966](https://github.com/rubygems/rubygems/pull/3966)
1468
+ - Don't activate `yaml` gem from Bundler [#5277](https://github.com/ruby/rubygems/pull/5277)
1469
+ - Add Reverse Dependencies section to info command [#3966](https://github.com/ruby/rubygems/pull/3966)
1397
1470
 
1398
1471
  ### Bug fixes:
1399
1472
 
1400
- - Don't silently persist `BUNDLE_WITH` and `BUNDLE_WITHOUT` envs locally [#5335](https://github.com/rubygems/rubygems/pull/5335)
1401
- - Fix `bundle config` inside an application saving configuration globally [#4152](https://github.com/rubygems/rubygems/pull/4152)
1473
+ - Don't silently persist `BUNDLE_WITH` and `BUNDLE_WITHOUT` envs locally [#5335](https://github.com/ruby/rubygems/pull/5335)
1474
+ - Fix `bundle config` inside an application saving configuration globally [#4152](https://github.com/ruby/rubygems/pull/4152)
1402
1475
 
1403
1476
  ## 2.3.6 (2022-01-26)
1404
1477
 
1405
1478
  ### Enhancements:
1406
1479
 
1407
- - Use `Gem::Platform.local` instead of `RUBY_PLATFORM` when displaying local platform [#5306](https://github.com/rubygems/rubygems/pull/5306)
1408
- - Lock standard.yml to the required ruby version [#5284](https://github.com/rubygems/rubygems/pull/5284)
1409
- - Use `Fiddle` in `bundle doctor` to check for dynamic library presence [#5173](https://github.com/rubygems/rubygems/pull/5173)
1480
+ - Use `Gem::Platform.local` instead of `RUBY_PLATFORM` when displaying local platform [#5306](https://github.com/ruby/rubygems/pull/5306)
1481
+ - Lock standard.yml to the required ruby version [#5284](https://github.com/ruby/rubygems/pull/5284)
1482
+ - Use `Fiddle` in `bundle doctor` to check for dynamic library presence [#5173](https://github.com/ruby/rubygems/pull/5173)
1410
1483
 
1411
1484
  ### Bug fixes:
1412
1485
 
1413
- - Fix edge case where gems were incorrectly removed from the lockfile [#5302](https://github.com/rubygems/rubygems/pull/5302)
1414
- - Fix `force_ruby_platform` ignored when lockfile includes current specific platform [#5304](https://github.com/rubygems/rubygems/pull/5304)
1415
- - Create minitest file to underscored path in "bundle gem" command with dashed gem name [#5273](https://github.com/rubygems/rubygems/pull/5273)
1416
- - Fix regression with old marshaled specs having null `required_rubygems_version` [#5291](https://github.com/rubygems/rubygems/pull/5291)
1486
+ - Fix edge case where gems were incorrectly removed from the lockfile [#5302](https://github.com/ruby/rubygems/pull/5302)
1487
+ - Fix `force_ruby_platform` ignored when lockfile includes current specific platform [#5304](https://github.com/ruby/rubygems/pull/5304)
1488
+ - Create minitest file to underscored path in "bundle gem" command with dashed gem name [#5273](https://github.com/ruby/rubygems/pull/5273)
1489
+ - Fix regression with old marshaled specs having null `required_rubygems_version` [#5291](https://github.com/ruby/rubygems/pull/5291)
1417
1490
 
1418
1491
  ## 2.3.5 (2022-01-12)
1419
1492
 
1420
1493
  ### Enhancements:
1421
1494
 
1422
- - Make `bundle update --bundler` actually lock to the latest bundler version (even if not yet installed) [#5182](https://github.com/rubygems/rubygems/pull/5182)
1423
- - Use thor-1.2.1 [#5260](https://github.com/rubygems/rubygems/pull/5260)
1424
- - Exclude bin directory for newgem template [#5259](https://github.com/rubygems/rubygems/pull/5259)
1495
+ - Make `bundle update --bundler` actually lock to the latest bundler version (even if not yet installed) [#5182](https://github.com/ruby/rubygems/pull/5182)
1496
+ - Use thor-1.2.1 [#5260](https://github.com/ruby/rubygems/pull/5260)
1497
+ - Exclude bin directory for newgem template [#5259](https://github.com/ruby/rubygems/pull/5259)
1425
1498
 
1426
1499
  ### Bug fixes:
1427
1500
 
1428
- - Fix metadata requirements being bypassed when custom gem servers are used [#5256](https://github.com/rubygems/rubygems/pull/5256)
1429
- - Fix `rake build:checksum` writing checksum of package path, not package contents [#5250](https://github.com/rubygems/rubygems/pull/5250)
1501
+ - Fix metadata requirements being bypassed when custom gem servers are used [#5256](https://github.com/ruby/rubygems/pull/5256)
1502
+ - Fix `rake build:checksum` writing checksum of package path, not package contents [#5250](https://github.com/ruby/rubygems/pull/5250)
1430
1503
 
1431
1504
  ## 2.3.4 (2021-12-29)
1432
1505
 
1433
1506
  ### Enhancements:
1434
1507
 
1435
- - Improve error message when `BUNDLED WITH` version does not exist [#5205](https://github.com/rubygems/rubygems/pull/5205)
1508
+ - Improve error message when `BUNDLED WITH` version does not exist [#5205](https://github.com/ruby/rubygems/pull/5205)
1436
1509
 
1437
1510
  ### Bug fixes:
1438
1511
 
1439
- - Fix `bundle update --bundler` no longer updating lockfile [#5224](https://github.com/rubygems/rubygems/pull/5224)
1512
+ - Fix `bundle update --bundler` no longer updating lockfile [#5224](https://github.com/ruby/rubygems/pull/5224)
1440
1513
 
1441
1514
  ## 2.3.3 (2021-12-24)
1442
1515
 
1443
1516
  ### Bug fixes:
1444
1517
 
1445
- - Fix locked bundler not installed to the right path when `deployment` is set [#5217](https://github.com/rubygems/rubygems/pull/5217)
1518
+ - Fix locked bundler not installed to the right path when `deployment` is set [#5217](https://github.com/ruby/rubygems/pull/5217)
1446
1519
 
1447
1520
  ## 2.3.2 (2021-12-23)
1448
1521
 
1449
1522
  ### Enhancements:
1450
1523
 
1451
- - Remove unnecessary lockfile upgrade warning [#5209](https://github.com/rubygems/rubygems/pull/5209)
1524
+ - Remove unnecessary lockfile upgrade warning [#5209](https://github.com/ruby/rubygems/pull/5209)
1452
1525
 
1453
1526
  ## 2.3.1 (2021-12-22)
1454
1527
 
1455
1528
  ### Enhancements:
1456
1529
 
1457
- - Vendor latest `thor` with fixes for latest `did_you_mean` deprecations [#5202](https://github.com/rubygems/rubygems/pull/5202)
1458
- - Avoid unnecessary `shellwords` require on newer rubygems [#5195](https://github.com/rubygems/rubygems/pull/5195)
1459
- - Re-exec prepending command with `Gem.ruby` if `$PROGRAM_NAME` is not executable [#5193](https://github.com/rubygems/rubygems/pull/5193)
1530
+ - Vendor latest `thor` with fixes for latest `did_you_mean` deprecations [#5202](https://github.com/ruby/rubygems/pull/5202)
1531
+ - Avoid unnecessary `shellwords` require on newer rubygems [#5195](https://github.com/ruby/rubygems/pull/5195)
1532
+ - Re-exec prepending command with `Gem.ruby` if `$PROGRAM_NAME` is not executable [#5193](https://github.com/ruby/rubygems/pull/5193)
1460
1533
 
1461
1534
  ## 2.3.0 (2021-12-21)
1462
1535
 
1463
1536
  ### Features:
1464
1537
 
1465
- - Change `bundle install` with a lockfile to respect the `BUNDLED WITH` bundler version [#4076](https://github.com/rubygems/rubygems/pull/4076)
1538
+ - Change `bundle install` with a lockfile to respect the `BUNDLED WITH` bundler version [#4076](https://github.com/ruby/rubygems/pull/4076)
1466
1539
 
1467
1540
  ### Enhancements:
1468
1541
 
1469
- - Cancel deprecation of custom git sources [#5147](https://github.com/rubygems/rubygems/pull/5147)
1470
- - Print warning when running Bundler on potentially problematic RubyGems & Ruby combinations [#5177](https://github.com/rubygems/rubygems/pull/5177)
1471
- - Error tracing should be printed to stderr [#5179](https://github.com/rubygems/rubygems/pull/5179)
1472
- - Add `github` and `ref` options to `bundle add` [#5159](https://github.com/rubygems/rubygems/pull/5159)
1473
- - Add require parameter to `bundle add` [#5021](https://github.com/rubygems/rubygems/pull/5021)
1474
- - Enable parallel installation on Windows by default [#4822](https://github.com/rubygems/rubygems/pull/4822)
1475
- - More logging when compact index is not used and we fallback to other APIs [#4546](https://github.com/rubygems/rubygems/pull/4546)
1476
- - `bundle gem` generated MiniTest file and class now start with 'test' [#3893](https://github.com/rubygems/rubygems/pull/3893)
1477
- - Add `Bundler::Definition.no_lock` accessor for skipping lockfile creation/update [#3401](https://github.com/rubygems/rubygems/pull/3401)
1542
+ - Cancel deprecation of custom git sources [#5147](https://github.com/ruby/rubygems/pull/5147)
1543
+ - Print warning when running Bundler on potentially problematic RubyGems & Ruby combinations [#5177](https://github.com/ruby/rubygems/pull/5177)
1544
+ - Error tracing should be printed to stderr [#5179](https://github.com/ruby/rubygems/pull/5179)
1545
+ - Add `github` and `ref` options to `bundle add` [#5159](https://github.com/ruby/rubygems/pull/5159)
1546
+ - Add require parameter to `bundle add` [#5021](https://github.com/ruby/rubygems/pull/5021)
1547
+ - Enable parallel installation on Windows by default [#4822](https://github.com/ruby/rubygems/pull/4822)
1548
+ - More logging when compact index is not used and we fallback to other APIs [#4546](https://github.com/ruby/rubygems/pull/4546)
1549
+ - `bundle gem` generated MiniTest file and class now start with 'test' [#3893](https://github.com/ruby/rubygems/pull/3893)
1550
+ - Add `Bundler::Definition.no_lock` accessor for skipping lockfile creation/update [#3401](https://github.com/ruby/rubygems/pull/3401)
1478
1551
 
1479
1552
  ### Bug fixes:
1480
1553
 
1481
- - Fix crash when when no platform specific matches exist and show a proper error [#5168](https://github.com/rubygems/rubygems/pull/5168)
1482
- - Ignore dependencies not actually locked from frozen check [#5152](https://github.com/rubygems/rubygems/pull/5152)
1483
- - Fix `bundle cache --all-platforms` on Windows [#4552](https://github.com/rubygems/rubygems/pull/4552)
1554
+ - Fix crash when when no platform specific matches exist and show a proper error [#5168](https://github.com/ruby/rubygems/pull/5168)
1555
+ - Ignore dependencies not actually locked from frozen check [#5152](https://github.com/ruby/rubygems/pull/5152)
1556
+ - Fix `bundle cache --all-platforms` on Windows [#4552](https://github.com/ruby/rubygems/pull/4552)
1484
1557
 
1485
1558
  ### Documentation:
1486
1559
 
1487
- - Fix gemspec template typo [#4545](https://github.com/rubygems/rubygems/pull/4545)
1560
+ - Fix gemspec template typo [#4545](https://github.com/ruby/rubygems/pull/4545)
1488
1561
 
1489
1562
  ## 2.2.33 (2021-12-07)
1490
1563
 
1491
1564
  ### Security fixes:
1492
1565
 
1493
- - Pass "--" to git commands to separate positional and optional args [#5142](https://github.com/rubygems/rubygems/pull/5142)
1566
+ - Pass "--" to git commands to separate positional and optional args [#5142](https://github.com/ruby/rubygems/pull/5142)
1494
1567
 
1495
1568
  ### Enhancements:
1496
1569
 
1497
- - Accept pull request URLs as github source [#5126](https://github.com/rubygems/rubygems/pull/5126)
1498
- - Add `--version` parameter to `bundle info` command [#5137](https://github.com/rubygems/rubygems/pull/5137)
1499
- - Let original `Errno::EACCES` error be raised in compact index updater [#5110](https://github.com/rubygems/rubygems/pull/5110)
1500
- - Improve gemfile-lockfile source equivalence errors [#5120](https://github.com/rubygems/rubygems/pull/5120)
1501
- - Avoid float-to-string loss of characters in GitHub Actions configuration labels in new gem template [#5089](https://github.com/rubygems/rubygems/pull/5089)
1502
- - Add an initial rbs template to `bundle gem` skeleton [#5041](https://github.com/rubygems/rubygems/pull/5041)
1503
- - Avoid shared libraries not getting environment passed right after argv in memory when `bundle exec` is used [#4815](https://github.com/rubygems/rubygems/pull/4815)
1570
+ - Accept pull request URLs as github source [#5126](https://github.com/ruby/rubygems/pull/5126)
1571
+ - Add `--version` parameter to `bundle info` command [#5137](https://github.com/ruby/rubygems/pull/5137)
1572
+ - Let original `Errno::EACCES` error be raised in compact index updater [#5110](https://github.com/ruby/rubygems/pull/5110)
1573
+ - Improve gemfile-lockfile source equivalence errors [#5120](https://github.com/ruby/rubygems/pull/5120)
1574
+ - Avoid float-to-string loss of characters in GitHub Actions configuration labels in new gem template [#5089](https://github.com/ruby/rubygems/pull/5089)
1575
+ - Add an initial rbs template to `bundle gem` skeleton [#5041](https://github.com/ruby/rubygems/pull/5041)
1576
+ - Avoid shared libraries not getting environment passed right after argv in memory when `bundle exec` is used [#4815](https://github.com/ruby/rubygems/pull/4815)
1504
1577
 
1505
1578
  ### Bug fixes:
1506
1579
 
1507
- - Don't cleanup paths from gems already activated from `$LOAD_PATH` [#5111](https://github.com/rubygems/rubygems/pull/5111)
1508
- - Fix handling prereleases of 0 versions, like 0.0.0.dev or 0.0.0.SNAPSHOT [#5116](https://github.com/rubygems/rubygems/pull/5116)
1509
- - Fix escape of filenames in `bundle doctor` [#5102](https://github.com/rubygems/rubygems/pull/5102)
1510
- - Don't unlock dependencies when running `bundle install` after changing global source [#5090](https://github.com/rubygems/rubygems/pull/5090)
1511
- - Fix missing locked specs when depended on another platform [#5092](https://github.com/rubygems/rubygems/pull/5092)
1512
- - Fix `bundle info` sometimes claiming that bundler has been deleted [#5097](https://github.com/rubygems/rubygems/pull/5097)
1580
+ - Don't cleanup paths from gems already activated from `$LOAD_PATH` [#5111](https://github.com/ruby/rubygems/pull/5111)
1581
+ - Fix handling prereleases of 0 versions, like 0.0.0.dev or 0.0.0.SNAPSHOT [#5116](https://github.com/ruby/rubygems/pull/5116)
1582
+ - Fix escape of filenames in `bundle doctor` [#5102](https://github.com/ruby/rubygems/pull/5102)
1583
+ - Don't unlock dependencies when running `bundle install` after changing global source [#5090](https://github.com/ruby/rubygems/pull/5090)
1584
+ - Fix missing locked specs when depended on another platform [#5092](https://github.com/ruby/rubygems/pull/5092)
1585
+ - Fix `bundle info` sometimes claiming that bundler has been deleted [#5097](https://github.com/ruby/rubygems/pull/5097)
1513
1586
 
1514
1587
  ### Documentation:
1515
1588
 
1516
- - Ignore to generate the documentation from vendored libraries [#5118](https://github.com/rubygems/rubygems/pull/5118)
1589
+ - Ignore to generate the documentation from vendored libraries [#5118](https://github.com/ruby/rubygems/pull/5118)
1517
1590
 
1518
1591
  ## 2.2.32 (2021-11-23)
1519
1592
 
1520
1593
  ### Enhancements:
1521
1594
 
1522
- - Clarify `bundle viz` deprecation [#5083](https://github.com/rubygems/rubygems/pull/5083)
1523
- - Unlock dependencies that no longer match lockfile [#5068](https://github.com/rubygems/rubygems/pull/5068)
1524
- - Use `shellsplit` instead of array of strings for git push [#5062](https://github.com/rubygems/rubygems/pull/5062)
1525
- - Re-enable `default_ignores` option for standard [#5003](https://github.com/rubygems/rubygems/pull/5003)
1595
+ - Clarify `bundle viz` deprecation [#5083](https://github.com/ruby/rubygems/pull/5083)
1596
+ - Unlock dependencies that no longer match lockfile [#5068](https://github.com/ruby/rubygems/pull/5068)
1597
+ - Use `shellsplit` instead of array of strings for git push [#5062](https://github.com/ruby/rubygems/pull/5062)
1598
+ - Re-enable `default_ignores` option for standard [#5003](https://github.com/ruby/rubygems/pull/5003)
1526
1599
 
1527
1600
  ### Bug fixes:
1528
1601
 
1529
- - Fix downgrading dependencies by changing the `Gemfile` and running `bundle update` [#5078](https://github.com/rubygems/rubygems/pull/5078)
1602
+ - Fix downgrading dependencies by changing the `Gemfile` and running `bundle update` [#5078](https://github.com/ruby/rubygems/pull/5078)
1530
1603
 
1531
1604
  ## 2.2.31 (2021-11-08)
1532
1605
 
1533
1606
  ### Enhancements:
1534
1607
 
1535
- - Link to working `bundler-graph` plugin in `bundle viz` deprecation message [#5061](https://github.com/rubygems/rubygems/pull/5061)
1536
- - Memoize materialized specs when requiring `bundler/setup` [#5033](https://github.com/rubygems/rubygems/pull/5033)
1537
- - Allow custom LicenseRef [#5013](https://github.com/rubygems/rubygems/pull/5013)
1538
- - Better error when installing a lockfile with git sources and git is not installed [#5036](https://github.com/rubygems/rubygems/pull/5036)
1539
- - Only delete cached gem when it's corrupted [#5031](https://github.com/rubygems/rubygems/pull/5031)
1540
- - Support gemified `tsort` [#5032](https://github.com/rubygems/rubygems/pull/5032)
1541
- - Add standard option alongside rubocop to `bundle gem` [#4411](https://github.com/rubygems/rubygems/pull/4411)
1608
+ - Link to working `bundler-graph` plugin in `bundle viz` deprecation message [#5061](https://github.com/ruby/rubygems/pull/5061)
1609
+ - Memoize materialized specs when requiring `bundler/setup` [#5033](https://github.com/ruby/rubygems/pull/5033)
1610
+ - Allow custom LicenseRef [#5013](https://github.com/ruby/rubygems/pull/5013)
1611
+ - Better error when installing a lockfile with git sources and git is not installed [#5036](https://github.com/ruby/rubygems/pull/5036)
1612
+ - Only delete cached gem when it's corrupted [#5031](https://github.com/ruby/rubygems/pull/5031)
1613
+ - Support gemified `tsort` [#5032](https://github.com/ruby/rubygems/pull/5032)
1614
+ - Add standard option alongside rubocop to `bundle gem` [#4411](https://github.com/ruby/rubygems/pull/4411)
1542
1615
 
1543
1616
  ### Bug fixes:
1544
1617
 
1545
- - Fix system man pages no longer working after bundler overrides `MANPATH` [#5039](https://github.com/rubygems/rubygems/pull/5039)
1546
- - Don't warn when a lockfile is locked to a dev version [#5018](https://github.com/rubygems/rubygems/pull/5018)
1618
+ - Fix system man pages no longer working after bundler overrides `MANPATH` [#5039](https://github.com/ruby/rubygems/pull/5039)
1619
+ - Don't warn when a lockfile is locked to a dev version [#5018](https://github.com/ruby/rubygems/pull/5018)
1547
1620
 
1548
1621
  ## 2.2.30 (2021-10-26)
1549
1622
 
1550
1623
  ### Enhancements:
1551
1624
 
1552
- - Add a custom SHA1 digest implementation to no longer depend on the digest gem before we know which version to activate [#4989](https://github.com/rubygems/rubygems/pull/4989)
1553
- - Ensure vendored gems have licenses [#4998](https://github.com/rubygems/rubygems/pull/4998)
1554
- - Update broken link in Bundler::Fetcher::CertificateFailureError [#4987](https://github.com/rubygems/rubygems/pull/4987)
1555
- - Give better errors for some permission issues [#4965](https://github.com/rubygems/rubygems/pull/4965)
1556
- - Print better errors when `bundler/gem_tasks` fail [#4872](https://github.com/rubygems/rubygems/pull/4872)
1557
- - Fix `bundle install` to reinstall deleted gems [#4974](https://github.com/rubygems/rubygems/pull/4974)
1558
- - Unify issue template and ISSUES.md document [#4980](https://github.com/rubygems/rubygems/pull/4980)
1559
- - Bump vendored connection_pool to 2.2.5 [#4738](https://github.com/rubygems/rubygems/pull/4738)
1625
+ - Add a custom SHA1 digest implementation to no longer depend on the digest gem before we know which version to activate [#4989](https://github.com/ruby/rubygems/pull/4989)
1626
+ - Ensure vendored gems have licenses [#4998](https://github.com/ruby/rubygems/pull/4998)
1627
+ - Update broken link in Bundler::Fetcher::CertificateFailureError [#4987](https://github.com/ruby/rubygems/pull/4987)
1628
+ - Give better errors for some permission issues [#4965](https://github.com/ruby/rubygems/pull/4965)
1629
+ - Print better errors when `bundler/gem_tasks` fail [#4872](https://github.com/ruby/rubygems/pull/4872)
1630
+ - Fix `bundle install` to reinstall deleted gems [#4974](https://github.com/ruby/rubygems/pull/4974)
1631
+ - Unify issue template and ISSUES.md document [#4980](https://github.com/ruby/rubygems/pull/4980)
1632
+ - Bump vendored connection_pool to 2.2.5 [#4738](https://github.com/ruby/rubygems/pull/4738)
1560
1633
 
1561
1634
  ### Bug fixes:
1562
1635
 
1563
- - Fix error message pointing to non existing file when using a global gem cache [#4999](https://github.com/rubygems/rubygems/pull/4999)
1564
- - Fix install crash when lockfile has missing dependencies for the current platform [#4941](https://github.com/rubygems/rubygems/pull/4941)
1565
- - Make `bundle info` show a proper warning every time it finds a deleted gem [#4971](https://github.com/rubygems/rubygems/pull/4971)
1636
+ - Fix error message pointing to non existing file when using a global gem cache [#4999](https://github.com/ruby/rubygems/pull/4999)
1637
+ - Fix install crash when lockfile has missing dependencies for the current platform [#4941](https://github.com/ruby/rubygems/pull/4941)
1638
+ - Make `bundle info` show a proper warning every time it finds a deleted gem [#4971](https://github.com/ruby/rubygems/pull/4971)
1566
1639
 
1567
1640
  ## 2.2.29 (2021-10-08)
1568
1641
 
1569
1642
  ### Enhancements:
1570
1643
 
1571
- - Require at least Ruby 2.6.0 for gems created with recent rubies [#4920](https://github.com/rubygems/rubygems/pull/4920)
1572
- - Include glob information in string representation of git sources to make generated lockfiles deterministic [#4947](https://github.com/rubygems/rubygems/pull/4947)
1573
- - Add missing `rubygem_push` prerequisite [#4930](https://github.com/rubygems/rubygems/pull/4930)
1644
+ - Require at least Ruby 2.6.0 for gems created with recent rubies [#4920](https://github.com/ruby/rubygems/pull/4920)
1645
+ - Include glob information in string representation of git sources to make generated lockfiles deterministic [#4947](https://github.com/ruby/rubygems/pull/4947)
1646
+ - Add missing `rubygem_push` prerequisite [#4930](https://github.com/ruby/rubygems/pull/4930)
1574
1647
 
1575
1648
  ## 2.2.28 (2021-09-23)
1576
1649
 
1577
1650
  ### Enhancements:
1578
1651
 
1579
- - Use example.com in new gem template, since it will never have a potentially dangerous backing website [#4918](https://github.com/rubygems/rubygems/pull/4918)
1580
- - Deprecate `--install` flag to `bundle remove` and trigger install by default [#4891](https://github.com/rubygems/rubygems/pull/4891)
1652
+ - Use example.com in new gem template, since it will never have a potentially dangerous backing website [#4918](https://github.com/ruby/rubygems/pull/4918)
1653
+ - Deprecate `--install` flag to `bundle remove` and trigger install by default [#4891](https://github.com/ruby/rubygems/pull/4891)
1581
1654
 
1582
1655
  ## 2.2.27 (2021-09-03)
1583
1656
 
1584
1657
  ### Enhancements:
1585
1658
 
1586
- - Optimize some requires [#4887](https://github.com/rubygems/rubygems/pull/4887)
1587
- - Correctly redact credentials when using x-oauth-basic [#4866](https://github.com/rubygems/rubygems/pull/4866)
1659
+ - Optimize some requires [#4887](https://github.com/ruby/rubygems/pull/4887)
1660
+ - Correctly redact credentials when using x-oauth-basic [#4866](https://github.com/ruby/rubygems/pull/4866)
1588
1661
 
1589
1662
  ### Bug fixes:
1590
1663
 
1591
- - Add missing key `branches:` to template for GitHub Actions [#4883](https://github.com/rubygems/rubygems/pull/4883)
1592
- - Fix `bundle plugin install` detection of already installed plugins [#4869](https://github.com/rubygems/rubygems/pull/4869)
1593
- - Make plugin installation idempotent [#4864](https://github.com/rubygems/rubygems/pull/4864)
1594
- - Fix `bundle check` showing duplicated gems when multiple platforms are locked [#4854](https://github.com/rubygems/rubygems/pull/4854)
1595
- - Fix `bundle check` incorrectly considering cached gems [#4853](https://github.com/rubygems/rubygems/pull/4853)
1664
+ - Add missing key `branches:` to template for GitHub Actions [#4883](https://github.com/ruby/rubygems/pull/4883)
1665
+ - Fix `bundle plugin install` detection of already installed plugins [#4869](https://github.com/ruby/rubygems/pull/4869)
1666
+ - Make plugin installation idempotent [#4864](https://github.com/ruby/rubygems/pull/4864)
1667
+ - Fix `bundle check` showing duplicated gems when multiple platforms are locked [#4854](https://github.com/ruby/rubygems/pull/4854)
1668
+ - Fix `bundle check` incorrectly considering cached gems [#4853](https://github.com/ruby/rubygems/pull/4853)
1596
1669
 
1597
1670
  ## 2.2.26 (2021-08-17)
1598
1671
 
1599
1672
  ### Enhancements:
1600
1673
 
1601
- - Remove `RUBYGEMS_GEMDEPS` warning [#4827](https://github.com/rubygems/rubygems/pull/4827)
1602
- - Better defaults for GitHub Actions template generated by `bundle gem` [#4619](https://github.com/rubygems/rubygems/pull/4619)
1603
- - Make `bundle exec` keep file descriptors by default [#4812](https://github.com/rubygems/rubygems/pull/4812)
1604
- - Exclude gemspec file itself from file list of gems generated by `bundle gem` [#4650](https://github.com/rubygems/rubygems/pull/4650)
1605
- - Fix a couple small typos in deprecation / error messages [#4806](https://github.com/rubygems/rubygems/pull/4806)
1606
- - Make script generated by `bundle install --standalone` resilient to moving the application to a differently nested folder when `path` sources are used [#4792](https://github.com/rubygems/rubygems/pull/4792)
1607
- - Exclude CI files and issue templates from file list of gems generated by `bundle gem` [#4033](https://github.com/rubygems/rubygems/pull/4033)
1674
+ - Remove `RUBYGEMS_GEMDEPS` warning [#4827](https://github.com/ruby/rubygems/pull/4827)
1675
+ - Better defaults for GitHub Actions template generated by `bundle gem` [#4619](https://github.com/ruby/rubygems/pull/4619)
1676
+ - Make `bundle exec` keep file descriptors by default [#4812](https://github.com/ruby/rubygems/pull/4812)
1677
+ - Exclude gemspec file itself from file list of gems generated by `bundle gem` [#4650](https://github.com/ruby/rubygems/pull/4650)
1678
+ - Fix a couple small typos in deprecation / error messages [#4806](https://github.com/ruby/rubygems/pull/4806)
1679
+ - Make script generated by `bundle install --standalone` resilient to moving the application to a differently nested folder when `path` sources are used [#4792](https://github.com/ruby/rubygems/pull/4792)
1680
+ - Exclude CI files and issue templates from file list of gems generated by `bundle gem` [#4033](https://github.com/ruby/rubygems/pull/4033)
1608
1681
 
1609
1682
  ### Bug fixes:
1610
1683
 
1611
- - Respect `BUNDLE_USER_HOME` env when choosing config location [#4828](https://github.com/rubygems/rubygems/pull/4828)
1612
- - Fix `bundle gem` on path with spaces [#4816](https://github.com/rubygems/rubygems/pull/4816)
1613
- - Fix bundler hitting the network in some cases where not allowed [#4805](https://github.com/rubygems/rubygems/pull/4805)
1684
+ - Respect `BUNDLE_USER_HOME` env when choosing config location [#4828](https://github.com/ruby/rubygems/pull/4828)
1685
+ - Fix `bundle gem` on path with spaces [#4816](https://github.com/ruby/rubygems/pull/4816)
1686
+ - Fix bundler hitting the network in some cases where not allowed [#4805](https://github.com/ruby/rubygems/pull/4805)
1614
1687
 
1615
1688
  ## 2.2.25 (2021-07-30)
1616
1689
 
1617
1690
  ### Deprecations:
1618
1691
 
1619
- - Deprecate Gemfile without an explicit global source [#4779](https://github.com/rubygems/rubygems/pull/4779)
1620
- - Deprecate `bundle cache --path` [#4496](https://github.com/rubygems/rubygems/pull/4496)
1692
+ - Deprecate Gemfile without an explicit global source [#4779](https://github.com/ruby/rubygems/pull/4779)
1693
+ - Deprecate `bundle cache --path` [#4496](https://github.com/ruby/rubygems/pull/4496)
1621
1694
 
1622
1695
  ### Enhancements:
1623
1696
 
1624
- - Give better errors when materialization fails [#4788](https://github.com/rubygems/rubygems/pull/4788)
1625
- - Lazily load `shellwords` library [#4786](https://github.com/rubygems/rubygems/pull/4786)
1626
- - Show original error and backtrace directly on `bundle install` errors instead of a more brittle `gem install` hint [#4778](https://github.com/rubygems/rubygems/pull/4778)
1627
- - Remove LoadError message in regards to requiring a relative file [#4772](https://github.com/rubygems/rubygems/pull/4772)
1697
+ - Give better errors when materialization fails [#4788](https://github.com/ruby/rubygems/pull/4788)
1698
+ - Lazily load `shellwords` library [#4786](https://github.com/ruby/rubygems/pull/4786)
1699
+ - Show original error and backtrace directly on `bundle install` errors instead of a more brittle `gem install` hint [#4778](https://github.com/ruby/rubygems/pull/4778)
1700
+ - Remove LoadError message in regards to requiring a relative file [#4772](https://github.com/ruby/rubygems/pull/4772)
1628
1701
 
1629
1702
  ### Bug fixes:
1630
1703
 
1631
- - Fix `BUNDLE_USER_CONFIG` no longer respected as config location [#4797](https://github.com/rubygems/rubygems/pull/4797)
1632
- - Fix `--standalone` installation of default gems [#4782](https://github.com/rubygems/rubygems/pull/4782)
1633
- - Fix `--quiet` flag not printing warnings [#4781](https://github.com/rubygems/rubygems/pull/4781)
1634
- - Fix bundler binstub version selection [#4775](https://github.com/rubygems/rubygems/pull/4775)
1635
- - Fix interrupt handling in Bundler workers [#4767](https://github.com/rubygems/rubygems/pull/4767)
1704
+ - Fix `BUNDLE_USER_CONFIG` no longer respected as config location [#4797](https://github.com/ruby/rubygems/pull/4797)
1705
+ - Fix `--standalone` installation of default gems [#4782](https://github.com/ruby/rubygems/pull/4782)
1706
+ - Fix `--quiet` flag not printing warnings [#4781](https://github.com/ruby/rubygems/pull/4781)
1707
+ - Fix bundler binstub version selection [#4775](https://github.com/ruby/rubygems/pull/4775)
1708
+ - Fix interrupt handling in Bundler workers [#4767](https://github.com/ruby/rubygems/pull/4767)
1636
1709
 
1637
1710
  ## 2.2.24 (2021-07-15)
1638
1711
 
1639
1712
  ### Bug fixes:
1640
1713
 
1641
- - Fix development gem unintentionally removed on an edge case [#4751](https://github.com/rubygems/rubygems/pull/4751)
1642
- - Fix dangling empty plugin hooks [#4755](https://github.com/rubygems/rubygems/pull/4755)
1643
- - Fix `bundle plugin install --help` showing `bundle install`'s help [#4756](https://github.com/rubygems/rubygems/pull/4756)
1644
- - Make sure `bundle check` shows uniq missing gems [#4749](https://github.com/rubygems/rubygems/pull/4749)
1714
+ - Fix development gem unintentionally removed on an edge case [#4751](https://github.com/ruby/rubygems/pull/4751)
1715
+ - Fix dangling empty plugin hooks [#4755](https://github.com/ruby/rubygems/pull/4755)
1716
+ - Fix `bundle plugin install --help` showing `bundle install`'s help [#4756](https://github.com/ruby/rubygems/pull/4756)
1717
+ - Make sure `bundle check` shows uniq missing gems [#4749](https://github.com/ruby/rubygems/pull/4749)
1645
1718
 
1646
1719
  ### Performance:
1647
1720
 
1648
- - Slightly speed up `bundler/setup` [#4750](https://github.com/rubygems/rubygems/pull/4750)
1721
+ - Slightly speed up `bundler/setup` [#4750](https://github.com/ruby/rubygems/pull/4750)
1649
1722
 
1650
1723
  ## 2.2.23 (2021-07-09)
1651
1724
 
1652
1725
  ### Enhancements:
1653
1726
 
1654
- - Fix `bundle install` on truffleruby selecting incorrect variant for `sorbet-static` gem [#4625](https://github.com/rubygems/rubygems/pull/4625)
1655
- - Spare meaningless warning on read-only bundle invocations [#4724](https://github.com/rubygems/rubygems/pull/4724)
1727
+ - Fix `bundle install` on truffleruby selecting incorrect variant for `sorbet-static` gem [#4625](https://github.com/ruby/rubygems/pull/4625)
1728
+ - Spare meaningless warning on read-only bundle invocations [#4724](https://github.com/ruby/rubygems/pull/4724)
1656
1729
 
1657
1730
  ### Bug fixes:
1658
1731
 
1659
- - Fix incorrect warning about duplicated gems in the Gemfile [#4732](https://github.com/rubygems/rubygems/pull/4732)
1660
- - Fix `bundle plugin install foo` crashing [#4734](https://github.com/rubygems/rubygems/pull/4734)
1732
+ - Fix incorrect warning about duplicated gems in the Gemfile [#4732](https://github.com/ruby/rubygems/pull/4732)
1733
+ - Fix `bundle plugin install foo` crashing [#4734](https://github.com/ruby/rubygems/pull/4734)
1661
1734
 
1662
1735
  ## 2.2.22 (2021-07-06)
1663
1736
 
1664
1737
  ### Enhancements:
1665
1738
 
1666
- - Never downgrade indirect dependencies when running `bundle update` [#4713](https://github.com/rubygems/rubygems/pull/4713)
1667
- - Fix `getaddrinfo` errors not treated as fatal on non darwin platforms [#4703](https://github.com/rubygems/rubygems/pull/4703)
1739
+ - Never downgrade indirect dependencies when running `bundle update` [#4713](https://github.com/ruby/rubygems/pull/4713)
1740
+ - Fix `getaddrinfo` errors not treated as fatal on non darwin platforms [#4703](https://github.com/ruby/rubygems/pull/4703)
1668
1741
 
1669
1742
  ### Bug fixes:
1670
1743
 
1671
- - Fix `bundle update <gem>` sometimes hanging and `bundle lock --update` not being able to update an insecure lockfile to the new format if it requires downgrades [#4652](https://github.com/rubygems/rubygems/pull/4652)
1672
- - Fix edge case combination of DSL methods and duplicated sources causing gems to not be found [#4711](https://github.com/rubygems/rubygems/pull/4711)
1673
- - Fix `bundle doctor` crashing when finding a broken symlink [#4707](https://github.com/rubygems/rubygems/pull/4707)
1674
- - Fix incorrect re-resolve edge case [#4700](https://github.com/rubygems/rubygems/pull/4700)
1675
- - Fix some gems being unintentionally locked under multiple lockfile sections [#4701](https://github.com/rubygems/rubygems/pull/4701)
1676
- - Fix `--conservative` flag unexpectedly updating indirect dependencies. NOTE: As part of this bug fix, some undocumented, unintentional code causing `bundle update --source <gem>` to update conservatively was fixed. Use the documented `bundle update --conservative <gem>` instead [#4692](https://github.com/rubygems/rubygems/pull/4692)
1744
+ - Fix `bundle update <gem>` sometimes hanging and `bundle lock --update` not being able to update an insecure lockfile to the new format if it requires downgrades [#4652](https://github.com/ruby/rubygems/pull/4652)
1745
+ - Fix edge case combination of DSL methods and duplicated sources causing gems to not be found [#4711](https://github.com/ruby/rubygems/pull/4711)
1746
+ - Fix `bundle doctor` crashing when finding a broken symlink [#4707](https://github.com/ruby/rubygems/pull/4707)
1747
+ - Fix incorrect re-resolve edge case [#4700](https://github.com/ruby/rubygems/pull/4700)
1748
+ - Fix some gems being unintentionally locked under multiple lockfile sections [#4701](https://github.com/ruby/rubygems/pull/4701)
1749
+ - Fix `--conservative` flag unexpectedly updating indirect dependencies. NOTE: As part of this bug fix, some undocumented, unintentional code causing `bundle update --source <gem>` to update conservatively was fixed. Use the documented `bundle update --conservative <gem>` instead [#4692](https://github.com/ruby/rubygems/pull/4692)
1677
1750
 
1678
1751
  ## 2.2.21 (2021-06-23)
1679
1752
 
1680
1753
  ### Security fixes:
1681
1754
 
1682
- - Auto-update insecure lockfile to split GEM source sections whenever possible [#4647](https://github.com/rubygems/rubygems/pull/4647)
1755
+ - Auto-update insecure lockfile to split GEM source sections whenever possible [#4647](https://github.com/ruby/rubygems/pull/4647)
1683
1756
 
1684
1757
  ### Enhancements:
1685
1758
 
1686
- - Use a more limited number of threads when fetching in parallel from the Compact Index API [#4670](https://github.com/rubygems/rubygems/pull/4670)
1687
- - Update TODO link in bundle gem template to https [#4671](https://github.com/rubygems/rubygems/pull/4671)
1759
+ - Use a more limited number of threads when fetching in parallel from the Compact Index API [#4670](https://github.com/ruby/rubygems/pull/4670)
1760
+ - Update TODO link in bundle gem template to https [#4671](https://github.com/ruby/rubygems/pull/4671)
1688
1761
 
1689
1762
  ### Bug fixes:
1690
1763
 
1691
- - Fix `bundle install --local` hitting the network when `cache_all_platforms` configured [#4677](https://github.com/rubygems/rubygems/pull/4677)
1764
+ - Fix `bundle install --local` hitting the network when `cache_all_platforms` configured [#4677](https://github.com/ruby/rubygems/pull/4677)
1692
1765
 
1693
1766
  ## 2.2.20 (2021-06-11)
1694
1767
 
1695
1768
  ### Enhancements:
1696
1769
 
1697
- - Don't print bug report template on server side errors [#4663](https://github.com/rubygems/rubygems/pull/4663)
1698
- - Don't load `resolv` unnecessarily [#4640](https://github.com/rubygems/rubygems/pull/4640)
1770
+ - Don't print bug report template on server side errors [#4663](https://github.com/ruby/rubygems/pull/4663)
1771
+ - Don't load `resolv` unnecessarily [#4640](https://github.com/ruby/rubygems/pull/4640)
1699
1772
 
1700
1773
  ### Bug fixes:
1701
1774
 
1702
- - Fix `bundle outdated` edge case [#4648](https://github.com/rubygems/rubygems/pull/4648)
1703
- - Fix `bundle check` with scoped rubygems sources [#4639](https://github.com/rubygems/rubygems/pull/4639)
1775
+ - Fix `bundle outdated` edge case [#4648](https://github.com/ruby/rubygems/pull/4648)
1776
+ - Fix `bundle check` with scoped rubygems sources [#4639](https://github.com/ruby/rubygems/pull/4639)
1704
1777
 
1705
1778
  ### Performance:
1706
1779
 
1707
- - Don't use `extra_rdoc_files` with md files in gemspec to make installing bundler with docs faster [#4628](https://github.com/rubygems/rubygems/pull/4628)
1780
+ - Don't use `extra_rdoc_files` with md files in gemspec to make installing bundler with docs faster [#4628](https://github.com/ruby/rubygems/pull/4628)
1708
1781
 
1709
1782
  ## 2.2.19 (2021-05-31)
1710
1783
 
1711
1784
  ### Bug fixes:
1712
1785
 
1713
- - Restore support for configuration keys with dashes [#4582](https://github.com/rubygems/rubygems/pull/4582)
1714
- - Fix some cached gems being unintentionally ignored when using rubygems 3.2.18 [#4623](https://github.com/rubygems/rubygems/pull/4623)
1786
+ - Restore support for configuration keys with dashes [#4582](https://github.com/ruby/rubygems/pull/4582)
1787
+ - Fix some cached gems being unintentionally ignored when using rubygems 3.2.18 [#4623](https://github.com/ruby/rubygems/pull/4623)
1715
1788
 
1716
1789
  ## 2.2.18 (2021-05-25)
1717
1790
 
1718
1791
  ### Security fixes:
1719
1792
 
1720
- - Fix dependency confusion issues with implicit dependencies [#4609](https://github.com/rubygems/rubygems/pull/4609)
1793
+ - Fix dependency confusion issues with implicit dependencies [#4609](https://github.com/ruby/rubygems/pull/4609)
1721
1794
 
1722
1795
  ### Enhancements:
1723
1796
 
1724
- - Use simpler notation for generated `required_ruby_version` [#4598](https://github.com/rubygems/rubygems/pull/4598)
1725
- - Undeprecate bundle show [#4586](https://github.com/rubygems/rubygems/pull/4586)
1726
- - Make sure link to new issue uses the proper template [#4592](https://github.com/rubygems/rubygems/pull/4592)
1797
+ - Use simpler notation for generated `required_ruby_version` [#4598](https://github.com/ruby/rubygems/pull/4598)
1798
+ - Undeprecate bundle show [#4586](https://github.com/ruby/rubygems/pull/4586)
1799
+ - Make sure link to new issue uses the proper template [#4592](https://github.com/ruby/rubygems/pull/4592)
1727
1800
 
1728
1801
  ### Bug fixes:
1729
1802
 
1730
- - Fix platform specific gems being removed from the lockfile [#4580](https://github.com/rubygems/rubygems/pull/4580)
1803
+ - Fix platform specific gems being removed from the lockfile [#4580](https://github.com/ruby/rubygems/pull/4580)
1731
1804
 
1732
1805
  ## 2.2.17 (2021-05-05)
1733
1806
 
1734
1807
  ### Enhancements:
1735
1808
 
1736
- - Improve authentication required error message to include an alternative using `ENV` [#4565](https://github.com/rubygems/rubygems/pull/4565)
1737
- - Discard partial range responses without etag [#4563](https://github.com/rubygems/rubygems/pull/4563)
1738
- - Fix configuring ENV for a gem server with a name including dashes [#4571](https://github.com/rubygems/rubygems/pull/4571)
1739
- - Redact credentials from `bundle env` and `bundle config` [#4566](https://github.com/rubygems/rubygems/pull/4566)
1740
- - Redact all sources in verbose mode [#4564](https://github.com/rubygems/rubygems/pull/4564)
1741
- - Improve `bundle pristine` error if `BUNDLE_GEMFILE` does not exist [#4536](https://github.com/rubygems/rubygems/pull/4536)
1742
- - [CurrentRuby] Add 3.0 as a known minor [#4535](https://github.com/rubygems/rubygems/pull/4535)
1743
- - Prefer File.read instead of IO.read [#4530](https://github.com/rubygems/rubygems/pull/4530)
1744
- - Add space after open curly bracket in Gemfile and gems.rb template [#4518](https://github.com/rubygems/rubygems/pull/4518)
1809
+ - Improve authentication required error message to include an alternative using `ENV` [#4565](https://github.com/ruby/rubygems/pull/4565)
1810
+ - Discard partial range responses without etag [#4563](https://github.com/ruby/rubygems/pull/4563)
1811
+ - Fix configuring ENV for a gem server with a name including dashes [#4571](https://github.com/ruby/rubygems/pull/4571)
1812
+ - Redact credentials from `bundle env` and `bundle config` [#4566](https://github.com/ruby/rubygems/pull/4566)
1813
+ - Redact all sources in verbose mode [#4564](https://github.com/ruby/rubygems/pull/4564)
1814
+ - Improve `bundle pristine` error if `BUNDLE_GEMFILE` does not exist [#4536](https://github.com/ruby/rubygems/pull/4536)
1815
+ - [CurrentRuby] Add 3.0 as a known minor [#4535](https://github.com/ruby/rubygems/pull/4535)
1816
+ - Prefer File.read instead of IO.read [#4530](https://github.com/ruby/rubygems/pull/4530)
1817
+ - Add space after open curly bracket in Gemfile and gems.rb template [#4518](https://github.com/ruby/rubygems/pull/4518)
1745
1818
 
1746
1819
  ### Bug fixes:
1747
1820
 
1748
- - Make sure specs are fetched from the right source when materializing [#4562](https://github.com/rubygems/rubygems/pull/4562)
1749
- - Fix `bundle cache` with an up-to-date lockfile and specs not already installed [#4554](https://github.com/rubygems/rubygems/pull/4554)
1750
- - Ignore `deployment` setting in inline mode [#4523](https://github.com/rubygems/rubygems/pull/4523)
1821
+ - Make sure specs are fetched from the right source when materializing [#4562](https://github.com/ruby/rubygems/pull/4562)
1822
+ - Fix `bundle cache` with an up-to-date lockfile and specs not already installed [#4554](https://github.com/ruby/rubygems/pull/4554)
1823
+ - Ignore `deployment` setting in inline mode [#4523](https://github.com/ruby/rubygems/pull/4523)
1751
1824
 
1752
1825
  ### Performance:
1753
1826
 
1754
- - Don't materialize resolutions when not necessary [#4556](https://github.com/rubygems/rubygems/pull/4556)
1827
+ - Don't materialize resolutions when not necessary [#4556](https://github.com/ruby/rubygems/pull/4556)
1755
1828
 
1756
1829
  ## 2.2.16 (2021-04-08)
1757
1830
 
1758
1831
  ### Enhancements:
1759
1832
 
1760
- - Add `--github-username` option and config to `bundle gem` [#3687](https://github.com/rubygems/rubygems/pull/3687)
1761
- - Bump vendored `tmpdir` library copy [#4506](https://github.com/rubygems/rubygems/pull/4506)
1762
- - Add `rake build:checksum` task to build checksums for a gem package [#4156](https://github.com/rubygems/rubygems/pull/4156)
1763
- - Enable bundler-cache for GitHub Actions template [#4498](https://github.com/rubygems/rubygems/pull/4498)
1764
- - Improve `bundle info` error when gem is on a "disabled" group [#4492](https://github.com/rubygems/rubygems/pull/4492)
1765
- - Small tweak to yank message [#4494](https://github.com/rubygems/rubygems/pull/4494)
1766
- - Don't show duplicate entries in `bundle outdated` output [#4474](https://github.com/rubygems/rubygems/pull/4474)
1767
- - Never downgrade top level gems when running `bundle update` [#4473](https://github.com/rubygems/rubygems/pull/4473)
1833
+ - Add `--github-username` option and config to `bundle gem` [#3687](https://github.com/ruby/rubygems/pull/3687)
1834
+ - Bump vendored `tmpdir` library copy [#4506](https://github.com/ruby/rubygems/pull/4506)
1835
+ - Add `rake build:checksum` task to build checksums for a gem package [#4156](https://github.com/ruby/rubygems/pull/4156)
1836
+ - Enable bundler-cache for GitHub Actions template [#4498](https://github.com/ruby/rubygems/pull/4498)
1837
+ - Improve `bundle info` error when gem is on a "disabled" group [#4492](https://github.com/ruby/rubygems/pull/4492)
1838
+ - Small tweak to yank message [#4494](https://github.com/ruby/rubygems/pull/4494)
1839
+ - Don't show duplicate entries in `bundle outdated` output [#4474](https://github.com/ruby/rubygems/pull/4474)
1840
+ - Never downgrade top level gems when running `bundle update` [#4473](https://github.com/ruby/rubygems/pull/4473)
1768
1841
 
1769
1842
  ### Bug fixes:
1770
1843
 
1771
- - Fix incorrect logic for filtering metadata matching candidates [#4497](https://github.com/rubygems/rubygems/pull/4497)
1844
+ - Fix incorrect logic for filtering metadata matching candidates [#4497](https://github.com/ruby/rubygems/pull/4497)
1772
1845
 
1773
1846
  ## 2.2.15 (2021-03-19)
1774
1847
 
1775
1848
  ### Enhancements:
1776
1849
 
1777
- - Add a hint about bundler installing executables for path gems [#4461](https://github.com/rubygems/rubygems/pull/4461)
1778
- - Warn lockfiles with incorrect resolutions [#4459](https://github.com/rubygems/rubygems/pull/4459)
1779
- - Don't generate duplicate redundant sources in the lockfile [#4456](https://github.com/rubygems/rubygems/pull/4456)
1850
+ - Add a hint about bundler installing executables for path gems [#4461](https://github.com/ruby/rubygems/pull/4461)
1851
+ - Warn lockfiles with incorrect resolutions [#4459](https://github.com/ruby/rubygems/pull/4459)
1852
+ - Don't generate duplicate redundant sources in the lockfile [#4456](https://github.com/ruby/rubygems/pull/4456)
1780
1853
 
1781
1854
  ### Bug fixes:
1782
1855
 
1783
- - Respect running ruby when resolving platforms [#4449](https://github.com/rubygems/rubygems/pull/4449)
1856
+ - Respect running ruby when resolving platforms [#4449](https://github.com/ruby/rubygems/pull/4449)
1784
1857
 
1785
1858
  ## 2.2.14 (2021-03-08)
1786
1859
 
1787
1860
  ### Security fixes:
1788
1861
 
1789
- - Lock GEM sources separately and fix locally installed specs confusing bundler [#4381](https://github.com/rubygems/rubygems/pull/4381)
1862
+ - Lock GEM sources separately and fix locally installed specs confusing bundler [#4381](https://github.com/ruby/rubygems/pull/4381)
1790
1863
 
1791
1864
  ### Bug fixes:
1792
1865
 
1793
- - Make `rake` available to other gems' installers right after it's installed [#4428](https://github.com/rubygems/rubygems/pull/4428)
1794
- - Fix encoding issue on compact index updater [#4362](https://github.com/rubygems/rubygems/pull/4362)
1866
+ - Make `rake` available to other gems' installers right after it's installed [#4428](https://github.com/ruby/rubygems/pull/4428)
1867
+ - Fix encoding issue on compact index updater [#4362](https://github.com/ruby/rubygems/pull/4362)
1795
1868
 
1796
1869
  ## 2.2.13 (2021-03-03)
1797
1870
 
1798
1871
  ### Enhancements:
1799
1872
 
1800
- - Respect user configured default branch in README links in new generated gems [#4303](https://github.com/rubygems/rubygems/pull/4303)
1873
+ - Respect user configured default branch in README links in new generated gems [#4303](https://github.com/ruby/rubygems/pull/4303)
1801
1874
 
1802
1875
  ### Bug fixes:
1803
1876
 
1804
- - Fix gems sometimes being pulled from irrelevant sources [#4418](https://github.com/rubygems/rubygems/pull/4418)
1877
+ - Fix gems sometimes being pulled from irrelevant sources [#4418](https://github.com/ruby/rubygems/pull/4418)
1805
1878
 
1806
1879
  ## 2.2.12 (2021-03-01)
1807
1880
 
1808
1881
  ### Bug fixes:
1809
1882
 
1810
- - Fix sporadic warnings about `nil` gemspec on install/update and make those faster [#4409](https://github.com/rubygems/rubygems/pull/4409)
1811
- - Fix deployment install with duplicate path gems added to Gemfile [#4410](https://github.com/rubygems/rubygems/pull/4410)
1883
+ - Fix sporadic warnings about `nil` gemspec on install/update and make those faster [#4409](https://github.com/ruby/rubygems/pull/4409)
1884
+ - Fix deployment install with duplicate path gems added to Gemfile [#4410](https://github.com/ruby/rubygems/pull/4410)
1812
1885
 
1813
1886
  ## 2.2.11 (2021-02-17)
1814
1887
 
1815
1888
  ### Bug fixes:
1816
1889
 
1817
- - Revert disable_multisource changes [#4385](https://github.com/rubygems/rubygems/pull/4385)
1890
+ - Revert disable_multisource changes [#4385](https://github.com/ruby/rubygems/pull/4385)
1818
1891
 
1819
1892
  ## 2.2.10 (2021-02-15)
1820
1893
 
1821
1894
  ### Security fixes:
1822
1895
 
1823
- - Fix source priority for transitive dependencies and split lockfile rubygems source sections [#3655](https://github.com/rubygems/rubygems/pull/3655)
1896
+ - Fix source priority for transitive dependencies and split lockfile rubygems source sections [#3655](https://github.com/ruby/rubygems/pull/3655)
1824
1897
 
1825
1898
  ### Bug fixes:
1826
1899
 
1827
- - Fix adding platforms to lockfile sometimes conflicting on ruby requirements [#4371](https://github.com/rubygems/rubygems/pull/4371)
1828
- - Fix bundler sometimes choosing ruby variants over java ones [#4367](https://github.com/rubygems/rubygems/pull/4367)
1900
+ - Fix adding platforms to lockfile sometimes conflicting on ruby requirements [#4371](https://github.com/ruby/rubygems/pull/4371)
1901
+ - Fix bundler sometimes choosing ruby variants over java ones [#4367](https://github.com/ruby/rubygems/pull/4367)
1829
1902
 
1830
1903
  ### Documentation:
1831
1904
 
1832
- - Update man pages to reflect to new default for bundle install jobs [#4188](https://github.com/rubygems/rubygems/pull/4188)
1905
+ - Update man pages to reflect to new default for bundle install jobs [#4188](https://github.com/ruby/rubygems/pull/4188)
1833
1906
 
1834
1907
  ## 2.2.9 (2021-02-08)
1835
1908
 
1836
1909
  ### Enhancements:
1837
1910
 
1838
- - Stop removing existing platforms when force_ruby_platform is true [#4336](https://github.com/rubygems/rubygems/pull/4336)
1911
+ - Stop removing existing platforms when force_ruby_platform is true [#4336](https://github.com/ruby/rubygems/pull/4336)
1839
1912
 
1840
1913
  ### Bug fixes:
1841
1914
 
1842
- - Don't install platform specific gems on truffleruby [#4333](https://github.com/rubygems/rubygems/pull/4333)
1915
+ - Don't install platform specific gems on truffleruby [#4333](https://github.com/ruby/rubygems/pull/4333)
1843
1916
 
1844
1917
  ## 2.2.8 (2021-02-02)
1845
1918
 
1846
1919
  ### Enhancements:
1847
1920
 
1848
- - Add a CHANGELOG.md file to gems generated by `bundle gem` [#4093](https://github.com/rubygems/rubygems/pull/4093)
1849
- - Support gemified `set` [#4297](https://github.com/rubygems/rubygems/pull/4297)
1921
+ - Add a CHANGELOG.md file to gems generated by `bundle gem` [#4093](https://github.com/ruby/rubygems/pull/4093)
1922
+ - Support gemified `set` [#4297](https://github.com/ruby/rubygems/pull/4297)
1850
1923
 
1851
1924
  ### Bug fixes:
1852
1925
 
1853
- - Fix standalone Kernel.require visibility [#4337](https://github.com/rubygems/rubygems/pull/4337)
1926
+ - Fix standalone Kernel.require visibility [#4337](https://github.com/ruby/rubygems/pull/4337)
1854
1927
 
1855
1928
  ### Performance:
1856
1929
 
1857
- - Fix resolver edge cases and speed up bundler [#4277](https://github.com/rubygems/rubygems/pull/4277)
1930
+ - Fix resolver edge cases and speed up bundler [#4277](https://github.com/ruby/rubygems/pull/4277)
1858
1931
 
1859
1932
  ## 2.2.7 (2021-01-26)
1860
1933
 
1861
1934
  ### Enhancements:
1862
1935
 
1863
- - Improve error messages when dependency on bundler conflicts with running version [#4308](https://github.com/rubygems/rubygems/pull/4308)
1864
- - Avoid showing platforms with requirements in error messages [#4310](https://github.com/rubygems/rubygems/pull/4310)
1865
- - Introduce disable_local_revision_check config [#4237](https://github.com/rubygems/rubygems/pull/4237)
1866
- - Reverse rubygems require mixin with bundler standalone [#4299](https://github.com/rubygems/rubygems/pull/4299)
1936
+ - Improve error messages when dependency on bundler conflicts with running version [#4308](https://github.com/ruby/rubygems/pull/4308)
1937
+ - Avoid showing platforms with requirements in error messages [#4310](https://github.com/ruby/rubygems/pull/4310)
1938
+ - Introduce disable_local_revision_check config [#4237](https://github.com/ruby/rubygems/pull/4237)
1939
+ - Reverse rubygems require mixin with bundler standalone [#4299](https://github.com/ruby/rubygems/pull/4299)
1867
1940
 
1868
1941
  ### Bug fixes:
1869
1942
 
1870
- - Fix releasing from a not yet pushed branch [#4309](https://github.com/rubygems/rubygems/pull/4309)
1871
- - Install cache only once if it already exists [#4304](https://github.com/rubygems/rubygems/pull/4304)
1872
- - Fix `force_ruby_platform` no longer being respected [#4302](https://github.com/rubygems/rubygems/pull/4302)
1943
+ - Fix releasing from a not yet pushed branch [#4309](https://github.com/ruby/rubygems/pull/4309)
1944
+ - Install cache only once if it already exists [#4304](https://github.com/ruby/rubygems/pull/4304)
1945
+ - Fix `force_ruby_platform` no longer being respected [#4302](https://github.com/ruby/rubygems/pull/4302)
1873
1946
 
1874
1947
  ### Performance:
1875
1948
 
1876
- - Fix resolver dependency comparison [#4289](https://github.com/rubygems/rubygems/pull/4289)
1949
+ - Fix resolver dependency comparison [#4289](https://github.com/ruby/rubygems/pull/4289)
1877
1950
 
1878
1951
  ## 2.2.6 (2021-01-18)
1879
1952
 
1880
1953
  ### Enhancements:
1881
1954
 
1882
- - Improve resolver debugging [#4288](https://github.com/rubygems/rubygems/pull/4288)
1955
+ - Improve resolver debugging [#4288](https://github.com/ruby/rubygems/pull/4288)
1883
1956
 
1884
1957
  ### Bug fixes:
1885
1958
 
1886
- - Fix dependency locking for path source [#4293](https://github.com/rubygems/rubygems/pull/4293)
1959
+ - Fix dependency locking for path source [#4293](https://github.com/ruby/rubygems/pull/4293)
1887
1960
 
1888
1961
  ### Performance:
1889
1962
 
1890
- - Speed up complex dependency resolves by creating DepProxy factory and cache [#4216](https://github.com/rubygems/rubygems/pull/4216)
1963
+ - Speed up complex dependency resolves by creating DepProxy factory and cache [#4216](https://github.com/ruby/rubygems/pull/4216)
1891
1964
 
1892
1965
  ## 2.2.5 (2021-01-11)
1893
1966
 
1894
1967
  ### Enhancements:
1895
1968
 
1896
- - Improve rubocop setup in the new gem template [#4220](https://github.com/rubygems/rubygems/pull/4220)
1897
- - Support repositories with default branch not named master [#4224](https://github.com/rubygems/rubygems/pull/4224)
1969
+ - Improve rubocop setup in the new gem template [#4220](https://github.com/ruby/rubygems/pull/4220)
1970
+ - Support repositories with default branch not named master [#4224](https://github.com/ruby/rubygems/pull/4224)
1898
1971
 
1899
1972
  ### Bug fixes:
1900
1973
 
1901
- - Let Net::HTTP decompress the index instead of doing it manually [#4081](https://github.com/rubygems/rubygems/pull/4081)
1902
- - Workaround for another jruby crash when autoloading a constant [#4252](https://github.com/rubygems/rubygems/pull/4252)
1903
- - Fix another performance regression in the resolver [#4243](https://github.com/rubygems/rubygems/pull/4243)
1904
- - Restore support for old git versions [#4233](https://github.com/rubygems/rubygems/pull/4233)
1905
- - Give a proper error if cache path does not have write access [#4215](https://github.com/rubygems/rubygems/pull/4215)
1906
- - Fix running `rake release` from an ambiguous ref [#4219](https://github.com/rubygems/rubygems/pull/4219)
1974
+ - Let Net::HTTP decompress the index instead of doing it manually [#4081](https://github.com/ruby/rubygems/pull/4081)
1975
+ - Workaround for another jruby crash when autoloading a constant [#4252](https://github.com/ruby/rubygems/pull/4252)
1976
+ - Fix another performance regression in the resolver [#4243](https://github.com/ruby/rubygems/pull/4243)
1977
+ - Restore support for old git versions [#4233](https://github.com/ruby/rubygems/pull/4233)
1978
+ - Give a proper error if cache path does not have write access [#4215](https://github.com/ruby/rubygems/pull/4215)
1979
+ - Fix running `rake release` from an ambiguous ref [#4219](https://github.com/ruby/rubygems/pull/4219)
1907
1980
 
1908
1981
  ## 2.2.4 (2020-12-31)
1909
1982
 
1910
1983
  ### Bug fixes:
1911
1984
 
1912
- - Fix bundle man pages display on truffleruby [#4209](https://github.com/rubygems/rubygems/pull/4209)
1913
- - Fix Windows + JRuby no longer being able to install git sources [#4196](https://github.com/rubygems/rubygems/pull/4196)
1985
+ - Fix bundle man pages display on truffleruby [#4209](https://github.com/ruby/rubygems/pull/4209)
1986
+ - Fix Windows + JRuby no longer being able to install git sources [#4196](https://github.com/ruby/rubygems/pull/4196)
1914
1987
 
1915
1988
  ## 2.2.3 (2020-12-22)
1916
1989
 
1917
1990
  ### Bug fixes:
1918
1991
 
1919
- - Restore full compatibility with previous lockfiles [#4179](https://github.com/rubygems/rubygems/pull/4179)
1920
- - Add all matching variants with the same platform specificity to the lockfile [#4180](https://github.com/rubygems/rubygems/pull/4180)
1921
- - Fix bundler installing gems for a different platform when running in frozen mode and current platform not in the lockfile [#4172](https://github.com/rubygems/rubygems/pull/4172)
1922
- - Fix crash when `bundle exec`'ing to bundler [#4175](https://github.com/rubygems/rubygems/pull/4175)
1992
+ - Restore full compatibility with previous lockfiles [#4179](https://github.com/ruby/rubygems/pull/4179)
1993
+ - Add all matching variants with the same platform specificity to the lockfile [#4180](https://github.com/ruby/rubygems/pull/4180)
1994
+ - Fix bundler installing gems for a different platform when running in frozen mode and current platform not in the lockfile [#4172](https://github.com/ruby/rubygems/pull/4172)
1995
+ - Fix crash when `bundle exec`'ing to bundler [#4175](https://github.com/ruby/rubygems/pull/4175)
1923
1996
 
1924
1997
  ## 2.2.2 (2020-12-17)
1925
1998
 
1926
1999
  ### Bug fixes:
1927
2000
 
1928
- - Fix resolver crash when a candidate has 0 matching platforms [#4163](https://github.com/rubygems/rubygems/pull/4163)
1929
- - Restore change to copy global with/without config locally upon `bundle install` [#4154](https://github.com/rubygems/rubygems/pull/4154)
2001
+ - Fix resolver crash when a candidate has 0 matching platforms [#4163](https://github.com/ruby/rubygems/pull/4163)
2002
+ - Restore change to copy global with/without config locally upon `bundle install` [#4154](https://github.com/ruby/rubygems/pull/4154)
1930
2003
 
1931
2004
  ## 2.2.1 (2020-12-14)
1932
2005
 
1933
2006
  ### Bug fixes:
1934
2007
 
1935
- - Ad-hoc fix for platform regression [#4127](https://github.com/rubygems/rubygems/pull/4127)
1936
- - Workaround JRuby + Windows issue with net-http-persistent vendored code [#4138](https://github.com/rubygems/rubygems/pull/4138)
1937
- - Reset also root when in a nested invocation [#4140](https://github.com/rubygems/rubygems/pull/4140)
1938
- - Restore 2.1.4 resolution times [#4134](https://github.com/rubygems/rubygems/pull/4134)
1939
- - Fix `bundle outdated --strict` crash [#4133](https://github.com/rubygems/rubygems/pull/4133)
1940
- - Autoload `Bundler::RemoteSpecification` to workaround crash on jruby [#4114](https://github.com/rubygems/rubygems/pull/4114)
2008
+ - Ad-hoc fix for platform regression [#4127](https://github.com/ruby/rubygems/pull/4127)
2009
+ - Workaround JRuby + Windows issue with net-http-persistent vendored code [#4138](https://github.com/ruby/rubygems/pull/4138)
2010
+ - Reset also root when in a nested invocation [#4140](https://github.com/ruby/rubygems/pull/4140)
2011
+ - Restore 2.1.4 resolution times [#4134](https://github.com/ruby/rubygems/pull/4134)
2012
+ - Fix `bundle outdated --strict` crash [#4133](https://github.com/ruby/rubygems/pull/4133)
2013
+ - Autoload `Bundler::RemoteSpecification` to workaround crash on jruby [#4114](https://github.com/ruby/rubygems/pull/4114)
1941
2014
 
1942
2015
  ## 2.2.0 (2020-12-07)
1943
2016
 
1944
2017
  ### Enhancements:
1945
2018
 
1946
- - New gem template: prefer `require_relative` to `require` [#4066](https://github.com/rubygems/rubygems/pull/4066)
1947
- - Always show underlying error when fetching specs fails [#4061](https://github.com/rubygems/rubygems/pull/4061)
1948
- - Add `--all-platforms` flag to `bundle binstubs` to generate binstubs for all platforms [#3886](https://github.com/rubygems/rubygems/pull/3886)
1949
- - Improve gem not found in source error messages [#4019](https://github.com/rubygems/rubygems/pull/4019)
1950
- - Revert resolving all Gemfile platforms automatically [#4052](https://github.com/rubygems/rubygems/pull/4052)
1951
- - Remove extra empty line from README template [#4041](https://github.com/rubygems/rubygems/pull/4041)
1952
- - Lazily load `erb` [#4011](https://github.com/rubygems/rubygems/pull/4011)
1953
-
1954
- ### Bug fixes:
1955
-
1956
- - Fix `Bundler::Plugin::API::Source#to_s` having empty source type [#4084](https://github.com/rubygems/rubygems/pull/4084)
1957
- - Raise consistent errors with or without `bundle exec` [#4063](https://github.com/rubygems/rubygems/pull/4063)
1958
- - Fix edge case resulting in a crash when using `zeitwerk` inside a nested `bundle exec` invocation [#4062](https://github.com/rubygems/rubygems/pull/4062)
1959
- - Enable `specific_platform` by default [#4015](https://github.com/rubygems/rubygems/pull/4015)
1960
- - Prevent remove command from deleting gemfile lines that are comments [#4045](https://github.com/rubygems/rubygems/pull/4045)
1961
- - Fix issue with `cache_all_platforms` and `specific_platform` configured [#4042](https://github.com/rubygems/rubygems/pull/4042)
1962
- - Fix incorrect error message on Windows [#4039](https://github.com/rubygems/rubygems/pull/4039)
1963
- - Make printed drive letters consistent on Windows [#4038](https://github.com/rubygems/rubygems/pull/4038)
1964
- - Load rubygems plugins from RUBYLIB during `bundle install` and `bundle update` [#3534](https://github.com/rubygems/rubygems/pull/3534)
1965
- - Fix `specific_platform` and `cache_all` with `bundle cache --all-platforms` [#4022](https://github.com/rubygems/rubygems/pull/4022)
1966
- - Bring back the possibility to install a plugin from path [#4020](https://github.com/rubygems/rubygems/pull/4020)
1967
- - Move ronn pages to lib [#3997](https://github.com/rubygems/rubygems/pull/3997)
1968
- - Fix fileutils double load when using `bundler/inline` [#3991](https://github.com/rubygems/rubygems/pull/3991)
1969
- - Accept responses with no etag header [#3865](https://github.com/rubygems/rubygems/pull/3865)
2019
+ - New gem template: prefer `require_relative` to `require` [#4066](https://github.com/ruby/rubygems/pull/4066)
2020
+ - Always show underlying error when fetching specs fails [#4061](https://github.com/ruby/rubygems/pull/4061)
2021
+ - Add `--all-platforms` flag to `bundle binstubs` to generate binstubs for all platforms [#3886](https://github.com/ruby/rubygems/pull/3886)
2022
+ - Improve gem not found in source error messages [#4019](https://github.com/ruby/rubygems/pull/4019)
2023
+ - Revert resolving all Gemfile platforms automatically [#4052](https://github.com/ruby/rubygems/pull/4052)
2024
+ - Remove extra empty line from README template [#4041](https://github.com/ruby/rubygems/pull/4041)
2025
+ - Lazily load `erb` [#4011](https://github.com/ruby/rubygems/pull/4011)
2026
+
2027
+ ### Bug fixes:
2028
+
2029
+ - Fix `Bundler::Plugin::API::Source#to_s` having empty source type [#4084](https://github.com/ruby/rubygems/pull/4084)
2030
+ - Raise consistent errors with or without `bundle exec` [#4063](https://github.com/ruby/rubygems/pull/4063)
2031
+ - Fix edge case resulting in a crash when using `zeitwerk` inside a nested `bundle exec` invocation [#4062](https://github.com/ruby/rubygems/pull/4062)
2032
+ - Enable `specific_platform` by default [#4015](https://github.com/ruby/rubygems/pull/4015)
2033
+ - Prevent remove command from deleting gemfile lines that are comments [#4045](https://github.com/ruby/rubygems/pull/4045)
2034
+ - Fix issue with `cache_all_platforms` and `specific_platform` configured [#4042](https://github.com/ruby/rubygems/pull/4042)
2035
+ - Fix incorrect error message on Windows [#4039](https://github.com/ruby/rubygems/pull/4039)
2036
+ - Make printed drive letters consistent on Windows [#4038](https://github.com/ruby/rubygems/pull/4038)
2037
+ - Load rubygems plugins from RUBYLIB during `bundle install` and `bundle update` [#3534](https://github.com/ruby/rubygems/pull/3534)
2038
+ - Fix `specific_platform` and `cache_all` with `bundle cache --all-platforms` [#4022](https://github.com/ruby/rubygems/pull/4022)
2039
+ - Bring back the possibility to install a plugin from path [#4020](https://github.com/ruby/rubygems/pull/4020)
2040
+ - Move ronn pages to lib [#3997](https://github.com/ruby/rubygems/pull/3997)
2041
+ - Fix fileutils double load when using `bundler/inline` [#3991](https://github.com/ruby/rubygems/pull/3991)
2042
+ - Accept responses with no etag header [#3865](https://github.com/ruby/rubygems/pull/3865)
1970
2043
 
1971
2044
  ### Documentation:
1972
2045
 
1973
- - Fix typo of `bundle-install.1` (v2.1) [#4079](https://github.com/rubygems/rubygems/pull/4079)
1974
- - Add commented out example and more information link to generated gemspec [#4034](https://github.com/rubygems/rubygems/pull/4034)
2046
+ - Fix typo of `bundle-install.1` (v2.1) [#4079](https://github.com/ruby/rubygems/pull/4079)
2047
+ - Add commented out example and more information link to generated gemspec [#4034](https://github.com/ruby/rubygems/pull/4034)
1975
2048
 
1976
2049
  ## 2.2.0.rc.2 (2020-10-06)
1977
2050
 
1978
2051
  ### Features:
1979
2052
 
1980
- - Add `bundle fund` command [#3390](https://github.com/rubygems/rubygems/pull/3390)
2053
+ - Add `bundle fund` command [#3390](https://github.com/ruby/rubygems/pull/3390)
1981
2054
 
1982
2055
  ### Enhancements:
1983
2056
 
1984
- - Fix ls-files matching regexp [#3845](https://github.com/rubygems/rubygems/pull/3845)
1985
- - Remove redundant `bundler/setup` require from `spec_helper.rb` generated by `bundle gem` [#3791](https://github.com/rubygems/rubygems/pull/3791)
1986
-
1987
- ### Bug fixes:
1988
-
1989
- - Deduplicate spec groups [#3965](https://github.com/rubygems/rubygems/pull/3965)
1990
- - Fix some cases of running `bundler` on a path including brackets [#3854](https://github.com/rubygems/rubygems/pull/3854)
1991
- - Don't warn when deinit'ing submodules [#3969](https://github.com/rubygems/rubygems/pull/3969)
1992
- - Make `bundle clean --force` leave default gem executables untouched [#3907](https://github.com/rubygems/rubygems/pull/3907)
1993
- - Prioritize `path.system` over `path` when it makes sense [#3933](https://github.com/rubygems/rubygems/pull/3933)
1994
- - Sort requirements in Gem::Requirement to succeed comparison with different order [#3889](https://github.com/rubygems/rubygems/pull/3889)
1995
- - Print bug report template to standard error [#3924](https://github.com/rubygems/rubygems/pull/3924)
1996
- - Restore `bundle cache --all` in all cases [#3914](https://github.com/rubygems/rubygems/pull/3914)
1997
- - Move shebang to the top of `bin/console` template [#3927](https://github.com/rubygems/rubygems/pull/3927)
1998
- - Fix platform issues when running under a frozen bundle [#3909](https://github.com/rubygems/rubygems/pull/3909)
1999
- - Fix deprecation messages for `bundle install` flags, the config should be --local as before [#3917](https://github.com/rubygems/rubygems/pull/3917)
2000
- - Look for absolute path when removing bundler/setup from RUBYOPT in Bundler.unbundled_env method [#3877](https://github.com/rubygems/rubygems/pull/3877)
2001
- - Fix incorrect re-resolution when path gem excluded and not available [#3902](https://github.com/rubygems/rubygems/pull/3902)
2002
- - Fix error when building error message in `bundler/inline` [#3901](https://github.com/rubygems/rubygems/pull/3901)
2003
- - Fix regression related to locked ruby [#3900](https://github.com/rubygems/rubygems/pull/3900)
2004
- - Expand load paths in standalone setup.rb file [#3522](https://github.com/rubygems/rubygems/pull/3522)
2005
- - Fix broken exception recovery code when installing plugins [#3487](https://github.com/rubygems/rubygems/pull/3487)
2006
- - Fix incorrect build info on development versions of bundler, and on bundler versions installed as a default gem [#3778](https://github.com/rubygems/rubygems/pull/3778)
2007
- - Avoid autoloading `openssl` to try help with jruby load service issues [#3809](https://github.com/rubygems/rubygems/pull/3809)
2008
- - Fix `rake release` pushing all local tags instead of only the release tag [#3785](https://github.com/rubygems/rubygems/pull/3785)
2009
- - Fix `rake release` aborting when credentials file is missing, even if properly configured through XDG [#3783](https://github.com/rubygems/rubygems/pull/3783)
2057
+ - Fix ls-files matching regexp [#3845](https://github.com/ruby/rubygems/pull/3845)
2058
+ - Remove redundant `bundler/setup` require from `spec_helper.rb` generated by `bundle gem` [#3791](https://github.com/ruby/rubygems/pull/3791)
2059
+
2060
+ ### Bug fixes:
2061
+
2062
+ - Deduplicate spec groups [#3965](https://github.com/ruby/rubygems/pull/3965)
2063
+ - Fix some cases of running `bundler` on a path including brackets [#3854](https://github.com/ruby/rubygems/pull/3854)
2064
+ - Don't warn when deinit'ing submodules [#3969](https://github.com/ruby/rubygems/pull/3969)
2065
+ - Make `bundle clean --force` leave default gem executables untouched [#3907](https://github.com/ruby/rubygems/pull/3907)
2066
+ - Prioritize `path.system` over `path` when it makes sense [#3933](https://github.com/ruby/rubygems/pull/3933)
2067
+ - Sort requirements in Gem::Requirement to succeed comparison with different order [#3889](https://github.com/ruby/rubygems/pull/3889)
2068
+ - Print bug report template to standard error [#3924](https://github.com/ruby/rubygems/pull/3924)
2069
+ - Restore `bundle cache --all` in all cases [#3914](https://github.com/ruby/rubygems/pull/3914)
2070
+ - Move shebang to the top of `bin/console` template [#3927](https://github.com/ruby/rubygems/pull/3927)
2071
+ - Fix platform issues when running under a frozen bundle [#3909](https://github.com/ruby/rubygems/pull/3909)
2072
+ - Fix deprecation messages for `bundle install` flags, the config should be --local as before [#3917](https://github.com/ruby/rubygems/pull/3917)
2073
+ - Look for absolute path when removing bundler/setup from RUBYOPT in Bundler.unbundled_env method [#3877](https://github.com/ruby/rubygems/pull/3877)
2074
+ - Fix incorrect re-resolution when path gem excluded and not available [#3902](https://github.com/ruby/rubygems/pull/3902)
2075
+ - Fix error when building error message in `bundler/inline` [#3901](https://github.com/ruby/rubygems/pull/3901)
2076
+ - Fix regression related to locked ruby [#3900](https://github.com/ruby/rubygems/pull/3900)
2077
+ - Expand load paths in standalone setup.rb file [#3522](https://github.com/ruby/rubygems/pull/3522)
2078
+ - Fix broken exception recovery code when installing plugins [#3487](https://github.com/ruby/rubygems/pull/3487)
2079
+ - Fix incorrect build info on development versions of bundler, and on bundler versions installed as a default gem [#3778](https://github.com/ruby/rubygems/pull/3778)
2080
+ - Avoid autoloading `openssl` to try help with jruby load service issues [#3809](https://github.com/ruby/rubygems/pull/3809)
2081
+ - Fix `rake release` pushing all local tags instead of only the release tag [#3785](https://github.com/ruby/rubygems/pull/3785)
2082
+ - Fix `rake release` aborting when credentials file is missing, even if properly configured through XDG [#3783](https://github.com/ruby/rubygems/pull/3783)
2010
2083
 
2011
2084
  ### Deprecations:
2012
2085
 
2013
- - Deprecate `bundle cache --all` flag [#3932](https://github.com/rubygems/rubygems/pull/3932)
2086
+ - Deprecate `bundle cache --all` flag [#3932](https://github.com/ruby/rubygems/pull/3932)
2014
2087
 
2015
2088
  ### Documentation:
2016
2089
 
2017
- - Correct grammar in Gemfile docs [#3990](https://github.com/rubygems/rubygems/pull/3990)
2018
- - Fix typo in `bundle pristine` warning message [#3959](https://github.com/rubygems/rubygems/pull/3959)
2019
- - Improve human readable fallback version of CLI help messages [#3921](https://github.com/rubygems/rubygems/pull/3921)
2020
- - Note CLI flag deprecations in documentation [#3915](https://github.com/rubygems/rubygems/pull/3915)
2021
- - Update man page and deprecation warning for binstubs --all [#3872](https://github.com/rubygems/rubygems/pull/3872)
2090
+ - Correct grammar in Gemfile docs [#3990](https://github.com/ruby/rubygems/pull/3990)
2091
+ - Fix typo in `bundle pristine` warning message [#3959](https://github.com/ruby/rubygems/pull/3959)
2092
+ - Improve human readable fallback version of CLI help messages [#3921](https://github.com/ruby/rubygems/pull/3921)
2093
+ - Note CLI flag deprecations in documentation [#3915](https://github.com/ruby/rubygems/pull/3915)
2094
+ - Update man page and deprecation warning for binstubs --all [#3872](https://github.com/ruby/rubygems/pull/3872)
2022
2095
 
2023
2096
  ## 2.2.0.rc.1 (2020-07-02)
2024
2097
 
@@ -2033,26 +2106,26 @@
2033
2106
  - `bundle list --without-group` and `bundle list --only-group` now support space separated list of groups in addition to single groups [#7404](https://github.com/rubygems/bundler/pull/7404)
2034
2107
  - `bundle gem` now supports a `--rubocop` flag that adds the `rubocop` gem to the new gem layout [#6455](https://github.com/rubygems/bundler/pull/6455)
2035
2108
  - `bundle gem` now supports `--test-unit` in addition to `rspec` and `minitest` as a value for its `--test` option [#5521](https://github.com/rubygems/bundler/pull/5521)
2036
- - `bundle install` now uses the available number of processors automatically for concurrent gem install, except for Windows where it still uses a single thread by default [#3393](https://github.com/rubygems/rubygems/pull/3393) and [#3718](https://github.com/rubygems/rubygems/pull/3718)
2037
- - Report Gitlab CI within bundler user-agent string [#3432](https://github.com/rubygems/rubygems/pull/3432)
2038
- - Add `bundle plugin uninstall` [#3482](https://github.com/rubygems/rubygems/pull/3482)
2039
- - `bundle gem` now supports a `--ci` flag and a `gem.ci` configuration that adds CI config files for the main CI providers to the generated gem skeleton [#3667](https://github.com/rubygems/rubygems/pull/3667)
2040
- - Allow setting a tag prefix to be used by release tasks [#3766](https://github.com/rubygems/rubygems/pull/3766)
2109
+ - `bundle install` now uses the available number of processors automatically for concurrent gem install, except for Windows where it still uses a single thread by default [#3393](https://github.com/ruby/rubygems/pull/3393) and [#3718](https://github.com/ruby/rubygems/pull/3718)
2110
+ - Report Gitlab CI within bundler user-agent string [#3432](https://github.com/ruby/rubygems/pull/3432)
2111
+ - Add `bundle plugin uninstall` [#3482](https://github.com/ruby/rubygems/pull/3482)
2112
+ - `bundle gem` now supports a `--ci` flag and a `gem.ci` configuration that adds CI config files for the main CI providers to the generated gem skeleton [#3667](https://github.com/ruby/rubygems/pull/3667)
2113
+ - Allow setting a tag prefix to be used by release tasks [#3766](https://github.com/ruby/rubygems/pull/3766)
2041
2114
  - `bundle outdated` now prints output in columns for better readability [#4474](https://github.com/rubygems/bundler/pull/4474)
2042
2115
  - bundler's `release` rake task now prints a better message when not being logged in and trying to push a gem [#7513](https://github.com/rubygems/bundler/pull/7513)
2043
2116
  - `BUNDLE_APP_CONFIG` environment variable is now documented [#7563](https://github.com/rubygems/bundler/pull/7563)
2044
2117
  - Original exception is now reported when bundler fails to load OpenSSL [#7527](https://github.com/rubygems/bundler/pull/7527)
2045
2118
  - RVM specific instructions for recompiling ruby is no longer recommended when bundler fails to load OpenSSL [#7597](https://github.com/rubygems/bundler/pull/7597)
2046
2119
  - Improve resolver debugging out from resolver [#7589](https://github.com/rubygems/bundler/pull/7589) and [#7590](https://github.com/rubygems/bundler/pull/7590)
2047
- - Clarify `bundle config --local` docs [#3408](https://github.com/rubygems/rubygems/pull/3408)
2048
- - Make sure to not "leak" to a different bundler install under any circumstances [#3595](https://github.com/rubygems/rubygems/pull/3595)
2049
- - Make sure users messing with `$;` doesn't affect us [#3602](https://github.com/rubygems/rubygems/pull/3602)
2050
- - Remove explicit psych activation which could potentially lead to packaging-specific issues [#3638](https://github.com/rubygems/rubygems/pull/3638)
2051
- - Deprecate `--no-deployment` flag and never recommend it [#3657](https://github.com/rubygems/rubygems/pull/3657)
2052
- - `bundle gem` test framework defaults to the `gem.test` setting and asks for a value without overwriting configuration if `-t` without a value is passed explicitly [#3544](https://github.com/rubygems/rubygems/pull/3544)
2053
- - `bundle gem` now ships with a default `.rubocop.yml` file and an offense free initial gem skeleton [#3731](https://github.com/rubygems/rubygems/pull/3731), [#3740](https://github.com/rubygems/rubygems/pull/3740), [#3765](https://github.com/rubygems/rubygems/pull/3765)
2054
- - Remove some requires that might workaround some autoloading issues on jruby [#3771](https://github.com/rubygems/rubygems/pull/3771)
2055
- - Unswallow an error that should make some random crashes on jruby easier to troubleshoot [#3774](https://github.com/rubygems/rubygems/pull/3774)
2120
+ - Clarify `bundle config --local` docs [#3408](https://github.com/ruby/rubygems/pull/3408)
2121
+ - Make sure to not "leak" to a different bundler install under any circumstances [#3595](https://github.com/ruby/rubygems/pull/3595)
2122
+ - Make sure users messing with `$;` doesn't affect us [#3602](https://github.com/ruby/rubygems/pull/3602)
2123
+ - Remove explicit psych activation which could potentially lead to packaging-specific issues [#3638](https://github.com/ruby/rubygems/pull/3638)
2124
+ - Deprecate `--no-deployment` flag and never recommend it [#3657](https://github.com/ruby/rubygems/pull/3657)
2125
+ - `bundle gem` test framework defaults to the `gem.test` setting and asks for a value without overwriting configuration if `-t` without a value is passed explicitly [#3544](https://github.com/ruby/rubygems/pull/3544)
2126
+ - `bundle gem` now ships with a default `.rubocop.yml` file and an offense free initial gem skeleton [#3731](https://github.com/ruby/rubygems/pull/3731), [#3740](https://github.com/ruby/rubygems/pull/3740), [#3765](https://github.com/ruby/rubygems/pull/3765)
2127
+ - Remove some requires that might workaround some autoloading issues on jruby [#3771](https://github.com/ruby/rubygems/pull/3771)
2128
+ - Unswallow an error that should make some random crashes on jruby easier to troubleshoot [#3774](https://github.com/ruby/rubygems/pull/3774)
2056
2129
 
2057
2130
  ### Bug fixes:
2058
2131
 
@@ -2064,23 +2137,23 @@
2064
2137
  - Fix error message about missing permissions recommending a deprecated command [#7633](https://github.com/rubygems/bundler/pull/7633)
2065
2138
  - Fix `init_gems_rb` setting being ignored by `bundle gem` [#7629](https://github.com/rubygems/bundler/pull/7629)
2066
2139
  - Fix "unresolvable warning" being printed on `bundle install` of multipliplatform `Gemfile` or `gems.rb` files without lockfiles, multiplatform is now managed automatically [#7580](https://github.com/rubygems/bundler/pull/7580)
2067
- - Fix setting the number of `--jobs` to be one unit less than specified to the CLI [#3393](https://github.com/rubygems/rubygems/pull/3393)
2068
- - Fix extension building when the same git source specifies several gems with extensions [#3475](https://github.com/rubygems/rubygems/pull/3475)
2069
- - Fix uninitialized instance variable warning under ruby-head (2.8-dev) [#3477](https://github.com/rubygems/rubygems/pull/3477)
2070
- - Fix double chdir warning while installing a git gem with extensions [#3479](https://github.com/rubygems/rubygems/pull/3479)
2071
- - Fix some deprecations not showing up when CLI flags passed as `--flag=value` [#3561](https://github.com/rubygems/rubygems/pull/3561)
2072
- - Fix man pages display when bundler installed as a default gem [#3562](https://github.com/rubygems/rubygems/pull/3562)
2073
- - Fix bundler gem tasks not handling relative paths [#3586](https://github.com/rubygems/rubygems/pull/3586)
2074
- - Fix deprecation warnings when options the dashed names are used, such as `--no-prune` [#3623](https://github.com/rubygems/rubygems/pull/3623)
2075
- - Fix crash related to bundler gem activation under old rubygems version (2.6.1 or older) [#3626](https://github.com/rubygems/rubygems/pull/3626)
2076
- - Avoid stack overflow inside `StubSpecification` on some edge cases [#3635](https://github.com/rubygems/rubygems/pull/3635)
2077
- - Fix `bundle remove` with multiline gem specifications [#3400](https://github.com/rubygems/rubygems/pull/3400)
2078
- - Fix `bundle info` not informing about deleted gems as opposed to old `bundle show` [#3509](https://github.com/rubygems/rubygems/pull/3509)
2079
- - The `--no-deployment` flag to `bundle install` was deprecated just like the other flags that rely on their value being remembered [#3657](https://github.com/rubygems/rubygems/pull/3657)
2080
- - Fix `bundle install` unintentionally copying `with` and `without` global config to local configuration [#3666](https://github.com/rubygems/rubygems/pull/3666). This PR also address the `BUNDLE_WITH` environment variable unintentionally being persisted to configuration in a similar way ([#3708](https://github.com/rubygems/rubygems/issues/3708))
2081
- - Fix race condition in `bundle install` that could "empty" exceptions to be raised [#3669](https://github.com/rubygems/rubygems/pull/3669)
2082
- - Fix `--no-cache` to `bundle install` being unintentionally deprecated [#3688](https://github.com/rubygems/rubygems/pull/3688)
2083
- - Avoid calling `LoadError#message` to fix performance regression in future ruby 3.0 [#3762](https://github.com/rubygems/rubygems/pull/3762)
2140
+ - Fix setting the number of `--jobs` to be one unit less than specified to the CLI [#3393](https://github.com/ruby/rubygems/pull/3393)
2141
+ - Fix extension building when the same git source specifies several gems with extensions [#3475](https://github.com/ruby/rubygems/pull/3475)
2142
+ - Fix uninitialized instance variable warning under ruby-head (2.8-dev) [#3477](https://github.com/ruby/rubygems/pull/3477)
2143
+ - Fix double chdir warning while installing a git gem with extensions [#3479](https://github.com/ruby/rubygems/pull/3479)
2144
+ - Fix some deprecations not showing up when CLI flags passed as `--flag=value` [#3561](https://github.com/ruby/rubygems/pull/3561)
2145
+ - Fix man pages display when bundler installed as a default gem [#3562](https://github.com/ruby/rubygems/pull/3562)
2146
+ - Fix bundler gem tasks not handling relative paths [#3586](https://github.com/ruby/rubygems/pull/3586)
2147
+ - Fix deprecation warnings when options the dashed names are used, such as `--no-prune` [#3623](https://github.com/ruby/rubygems/pull/3623)
2148
+ - Fix crash related to bundler gem activation under old rubygems version (2.6.1 or older) [#3626](https://github.com/ruby/rubygems/pull/3626)
2149
+ - Avoid stack overflow inside `StubSpecification` on some edge cases [#3635](https://github.com/ruby/rubygems/pull/3635)
2150
+ - Fix `bundle remove` with multiline gem specifications [#3400](https://github.com/ruby/rubygems/pull/3400)
2151
+ - Fix `bundle info` not informing about deleted gems as opposed to old `bundle show` [#3509](https://github.com/ruby/rubygems/pull/3509)
2152
+ - The `--no-deployment` flag to `bundle install` was deprecated just like the other flags that rely on their value being remembered [#3657](https://github.com/ruby/rubygems/pull/3657)
2153
+ - Fix `bundle install` unintentionally copying `with` and `without` global config to local configuration [#3666](https://github.com/ruby/rubygems/pull/3666). This PR also address the `BUNDLE_WITH` environment variable unintentionally being persisted to configuration in a similar way ([#3708](https://github.com/ruby/rubygems/issues/3708))
2154
+ - Fix race condition in `bundle install` that could "empty" exceptions to be raised [#3669](https://github.com/ruby/rubygems/pull/3669)
2155
+ - Fix `--no-cache` to `bundle install` being unintentionally deprecated [#3688](https://github.com/ruby/rubygems/pull/3688)
2156
+ - Avoid calling `LoadError#message` to fix performance regression in future ruby 3.0 [#3762](https://github.com/ruby/rubygems/pull/3762)
2084
2157
 
2085
2158
  ## 2.1.4 (2020-01-05)
2086
2159
 
@@ -3413,7 +3486,7 @@ Changes
3413
3486
 
3414
3487
  ### Bug fixes:
3415
3488
 
3416
- - handle removal of `specs` from rubygems/rubygems@620910 ([#3558](https://github.com/rubygems/bundler/issues/3558), @indirect)
3489
+ - handle removal of `specs` from ruby/rubygems@620910 ([#3558](https://github.com/rubygems/bundler/issues/3558), @indirect)
3417
3490
  - install 'universal' gems on Windows ([#3066](https://github.com/rubygems/bundler/issues/3066), @jdmundrawala)
3418
3491
  - stop passing --local during `rake install` task ([#3236](https://github.com/rubygems/bundler/issues/3236), @indirect)
3419
3492
  - guard against all possible accidental public gem pushes ([#3533](https://github.com/rubygems/bundler/issues/3533), @indirect)