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