bundler 2.7.2 → 4.0.7

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