rubygems-update 4.0.21 → 4.1.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 +590 -53
- data/CONTRIBUTING.md +66 -5
- data/MIT.txt +4 -3
- data/Manifest.txt +332 -375
- data/README.md +26 -6
- data/bundler.gemspec +63 -0
- data/doc/POLICIES.md +147 -0
- data/doc/UPGRADING.md +4 -4
- data/{bundler/lib → lib}/bundler/build_metadata.rb +2 -2
- data/{bundler/lib → lib}/bundler/checksum.rb +40 -25
- data/{bundler/lib → lib}/bundler/ci_detector.rb +1 -1
- data/{bundler/lib → lib}/bundler/cli/add.rb +3 -4
- data/{bundler/lib → lib}/bundler/cli/cache.rb +4 -0
- data/{bundler/lib → lib}/bundler/cli/clean.rb +5 -0
- data/{bundler/lib → lib}/bundler/cli/common.rb +37 -1
- data/{bundler/lib → lib}/bundler/cli/config.rb +4 -2
- data/{bundler/lib → lib}/bundler/cli/gem.rb +0 -17
- data/{bundler/lib → lib}/bundler/cli/install.rb +4 -5
- data/{bundler/lib → lib}/bundler/cli/lock.rb +1 -2
- data/{bundler/lib → lib}/bundler/cli/outdated.rb +8 -3
- data/{bundler/lib → lib}/bundler/cli/pristine.rb +2 -1
- data/{bundler/lib → lib}/bundler/cli/update.rb +21 -12
- data/{bundler/lib → lib}/bundler/cli.rb +14 -11
- data/{bundler/lib → lib}/bundler/definition.rb +61 -24
- data/{bundler/lib → lib}/bundler/dependency.rb +4 -0
- data/{bundler/lib → lib}/bundler/dsl.rb +77 -11
- data/{bundler/lib → lib}/bundler/endpoint_specification.rb +51 -14
- data/{bundler/lib → lib}/bundler/env.rb +7 -24
- data/{bundler/lib → lib}/bundler/errors.rb +34 -5
- data/{bundler/lib → lib}/bundler/fetcher/compact_index.rb +14 -5
- data/lib/bundler/fetcher/connection_pools.rb +150 -0
- data/{bundler/lib → lib}/bundler/fetcher/downloader.rb +31 -16
- data/{bundler/lib → lib}/bundler/fetcher.rb +8 -47
- data/{bundler/lib → lib}/bundler/injector.rb +3 -3
- data/{bundler/lib → lib}/bundler/inline.rb +44 -4
- data/{bundler/lib → lib}/bundler/installer/parallel_installer.rb +25 -30
- data/{bundler/lib → lib}/bundler/installer.rb +20 -6
- data/{bundler/lib → lib}/bundler/lazy_specification.rb +44 -17
- data/{bundler/lib → lib}/bundler/lockfile_generator.rb +24 -2
- data/{bundler/lib → lib}/bundler/lockfile_parser.rb +43 -5
- data/{bundler/lib → lib}/bundler/man/bundle-add.1 +7 -4
- data/{bundler/lib → lib}/bundler/man/bundle-add.1.ronn +8 -4
- data/{bundler/lib → lib}/bundler/man/bundle-binstubs.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-cache.1 +2 -2
- data/{bundler/lib → lib}/bundler/man/bundle-cache.1.ronn +2 -2
- data/{bundler/lib → lib}/bundler/man/bundle-check.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-clean.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-config.1 +38 -6
- data/{bundler/lib → lib}/bundler/man/bundle-config.1.ronn +143 -10
- data/{bundler/lib → lib}/bundler/man/bundle-console.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-doctor.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-env.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-exec.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-fund.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-gem.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-help.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-info.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-init.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-install.1 +2 -2
- data/{bundler/lib → lib}/bundler/man/bundle-install.1.ronn +4 -4
- data/{bundler/lib → lib}/bundler/man/bundle-issue.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-licenses.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-list.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-lock.1 +3 -3
- data/{bundler/lib → lib}/bundler/man/bundle-lock.1.ronn +5 -5
- data/{bundler/lib → lib}/bundler/man/bundle-open.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-outdated.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-platform.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-plugin.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-pristine.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-remove.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-show.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle-update.1 +3 -3
- data/{bundler/lib → lib}/bundler/man/bundle-update.1.ronn +3 -5
- data/{bundler/lib → lib}/bundler/man/bundle-version.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/bundle.1 +1 -1
- data/{bundler/lib → lib}/bundler/man/gemfile.5 +45 -1
- data/{bundler/lib → lib}/bundler/man/gemfile.5.ronn +53 -0
- data/lib/bundler/match_metadata.rb +50 -0
- data/{bundler/lib → lib}/bundler/match_platform.rb +25 -2
- data/lib/bundler/match_remote_metadata.rb +44 -0
- data/{bundler/lib → lib}/bundler/materialization.rb +2 -1
- data/lib/bundler/override.rb +69 -0
- data/{bundler/lib → lib}/bundler/plugin/dsl.rb +3 -5
- data/{bundler/lib → lib}/bundler/plugin/events.rb +55 -13
- data/{bundler/lib → lib}/bundler/plugin/index.rb +87 -11
- data/{bundler/lib → lib}/bundler/plugin/installer/path.rb +1 -1
- data/{bundler/lib → lib}/bundler/plugin/installer.rb +13 -5
- data/{bundler/lib → lib}/bundler/plugin.rb +58 -30
- data/{bundler/lib → lib}/bundler/remote_specification.rb +6 -3
- data/{bundler/lib → lib}/bundler/resolver/base.rb +2 -1
- data/{bundler/lib → lib}/bundler/resolver/incompatibility.rb +1 -1
- data/{bundler/lib → lib}/bundler/resolver.rb +73 -23
- data/{bundler/lib → lib}/bundler/ruby_version.rb +0 -2
- data/{bundler/lib → lib}/bundler/rubygems_ext.rb +71 -1
- data/{bundler/lib → lib}/bundler/rubygems_gem_installer.rb +41 -2
- data/{bundler/lib → lib}/bundler/rubygems_integration.rb +7 -2
- data/{bundler/lib → lib}/bundler/runtime.rb +69 -2
- data/{bundler/lib → lib}/bundler/self_manager.rb +9 -15
- data/{bundler/lib → lib}/bundler/settings.rb +373 -30
- data/{bundler/lib → lib}/bundler/shared_helpers.rb +2 -1
- data/{bundler/lib → lib}/bundler/source/git/git_proxy.rb +2 -10
- data/{bundler/lib → lib}/bundler/source/git.rb +15 -6
- data/{bundler/lib → lib}/bundler/source/path/installer.rb +1 -1
- data/{bundler/lib → lib}/bundler/source/rubygems/remote.rb +10 -5
- data/{bundler/lib → lib}/bundler/source/rubygems.rb +48 -12
- data/{bundler/lib → lib}/bundler/spec_set.rb +16 -4
- data/{bundler/lib → lib}/bundler/stub_specification.rb +2 -1
- data/{bundler/lib → lib}/bundler/templates/newgem/Gemfile.tt +4 -4
- data/{bundler/lib → lib}/bundler/templates/newgem/newgem.gemspec.tt +3 -3
- data/{bundler/lib → lib}/bundler/templates/newgem/spec/newgem_spec.rb.tt +1 -1
- data/{bundler/lib → lib}/bundler/templates/newgem/test/minitest/test_newgem.rb.tt +1 -1
- data/{bundler/lib → lib}/bundler/ui/shell.rb +0 -4
- data/{bundler/lib → lib}/bundler/ui/silent.rb +0 -4
- data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +35 -2
- data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/base.rb +2 -1
- data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell/basic.rb +14 -6
- data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell/color.rb +2 -0
- data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor.rb +34 -1
- data/lib/bundler/vendored_pub_grub.rb +7 -0
- data/lib/bundler/vendored_securerandom.rb +15 -0
- data/lib/bundler/vendored_uri.rb +21 -0
- data/{bundler/lib → lib}/bundler/version.rb +1 -1
- data/{bundler/lib → lib}/bundler/worker.rb +3 -2
- data/{bundler/lib → lib}/bundler.rb +1 -1
- data/lib/rubygems/basic_specification.rb +15 -14
- data/lib/rubygems/bundler_settings.rb +137 -0
- data/lib/rubygems/bundler_version_finder.rb +13 -55
- data/lib/rubygems/ci_detector.rb +1 -1
- data/lib/rubygems/commands/build_command.rb +8 -1
- data/lib/rubygems/commands/cert_command.rb +9 -7
- data/lib/rubygems/commands/contents_command.rb +1 -1
- data/lib/rubygems/commands/dependency_command.rb +15 -3
- data/lib/rubygems/commands/environment_command.rb +1 -0
- data/lib/rubygems/commands/exec_command.rb +3 -0
- data/lib/rubygems/commands/fetch_command.rb +1 -1
- data/lib/rubygems/commands/help_command.rb +3 -1
- data/lib/rubygems/commands/install_command.rb +13 -3
- data/lib/rubygems/commands/lock_command.rb +2 -2
- data/lib/rubygems/commands/outdated_command.rb +77 -2
- data/lib/rubygems/commands/owner_command.rb +1 -1
- data/lib/rubygems/commands/push_command.rb +159 -21
- data/lib/rubygems/commands/setup_command.rb +20 -23
- data/lib/rubygems/commands/signin_command.rb +3 -1
- data/lib/rubygems/commands/signout_command.rb +26 -6
- data/lib/rubygems/commands/specification_command.rb +1 -1
- data/lib/rubygems/commands/uninstall_command.rb +1 -1
- data/lib/rubygems/commands/update_command.rb +84 -2
- data/lib/rubygems/commands/yank_command.rb +10 -7
- data/lib/rubygems/compact_index_client/cache.rb +122 -0
- data/lib/rubygems/compact_index_client/cache_file.rb +147 -0
- data/lib/rubygems/compact_index_client/http_fetcher.rb +88 -0
- data/lib/rubygems/compact_index_client/parser.rb +90 -0
- data/lib/rubygems/compact_index_client/updater.rb +113 -0
- data/lib/rubygems/compact_index_client.rb +111 -0
- data/lib/rubygems/config_file.rb +304 -22
- data/lib/rubygems/content_address.rb +194 -0
- data/lib/rubygems/cooldown.rb +173 -0
- data/lib/rubygems/cooldown_option.rb +27 -0
- data/lib/rubygems/cooldown_settings.rb +57 -0
- data/lib/rubygems/credential_store/native/linux.rb +97 -0
- data/lib/rubygems/credential_store/native/macos.rb +88 -0
- data/lib/rubygems/credential_store/native/windows.rb +130 -0
- data/lib/rubygems/credential_store.rb +332 -0
- data/lib/rubygems/defaults.rb +9 -0
- data/lib/rubygems/dependency_installer.rb +15 -0
- data/lib/rubygems/doctor.rb +23 -6
- data/lib/rubygems/exceptions.rb +11 -43
- data/lib/rubygems/ext/builder.rb +70 -5
- data/lib/rubygems/ext/cargo_builder.rb +0 -9
- data/lib/rubygems/ext/ext_conf_builder.rb +8 -15
- data/lib/rubygems/gemcutter_utilities.rb +44 -2
- data/lib/rubygems/install_update_options.rb +16 -0
- data/lib/rubygems/installer.rb +90 -11
- data/lib/rubygems/installer_uninstaller_utils.rb +24 -3
- data/lib/rubygems/name_tuple.rb +55 -18
- data/lib/rubygems/package/old.rb +1 -1
- data/lib/rubygems/package.rb +200 -47
- data/lib/rubygems/package_task.rb +2 -2
- data/lib/rubygems/platform.rb +2 -2
- data/lib/rubygems/query_utils.rb +84 -24
- data/lib/rubygems/remote_fetcher.rb +65 -17
- data/lib/rubygems/request/connection_pools.rb +3 -0
- data/lib/rubygems/request_set/gem_dependency_api.rb +1 -1
- data/lib/rubygems/request_set/lockfile.rb +0 -2
- data/lib/rubygems/request_set.rb +105 -17
- data/lib/rubygems/resolver/api_set.rb +14 -26
- data/lib/rubygems/resolver/api_specification.rb +56 -15
- data/lib/rubygems/resolver/incompatibility.rb +10 -0
- data/lib/rubygems/resolver/index_specification.rb +6 -4
- data/lib/rubygems/resolver/installer_set.rb +2 -2
- data/lib/rubygems/resolver/lock_specification.rb +5 -1
- data/lib/rubygems/resolver/spec_specification.rb +4 -0
- data/lib/rubygems/resolver/specification.rb +16 -1
- data/lib/rubygems/resolver/strategy.rb +44 -0
- data/lib/rubygems/resolver.rb +471 -145
- data/lib/rubygems/safe_marshal.rb +2 -1
- data/lib/rubygems/safe_yaml.rb +20 -3
- data/lib/rubygems/security/policy.rb +11 -3
- data/lib/rubygems/security/signer.rb +15 -7
- data/lib/rubygems/security.rb +111 -17
- data/lib/rubygems/source/local.rb +7 -2
- data/lib/rubygems/source.rb +270 -23
- data/lib/rubygems/spec_fetcher.rb +47 -12
- data/lib/rubygems/specification.rb +76 -32
- data/lib/rubygems/specification_policy.rb +33 -6
- data/lib/rubygems/specification_record.rb +41 -2
- data/lib/rubygems/stub_specification.rb +39 -16
- data/lib/rubygems/uninstaller.rb +2 -0
- data/lib/rubygems/util/atomic_file_writer.rb +109 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/exceptions.rb +2 -1
- data/lib/rubygems/vendor/net-http/lib/net/http/generic_request.rb +5 -6
- data/lib/rubygems/vendor/net-http/lib/net/http/header.rb +8 -4
- data/lib/rubygems/vendor/net-http/lib/net/http/requests.rb +15 -1
- data/lib/rubygems/vendor/net-http/lib/net/http/response.rb +2 -1
- data/lib/rubygems/vendor/net-http/lib/net/http/responses.rb +68 -0
- data/lib/rubygems/vendor/net-http/lib/net/http.rb +60 -49
- data/lib/rubygems/vendor/optparse/lib/optparse.rb +23 -30
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/assignment.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +7 -7
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/failure_writer.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/incompatibility.rb +4 -4
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/package.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/partial_solution.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/rubygems.rb +3 -3
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/solve_failure.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/static_package_source.rb +3 -3
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/strategy.rb +2 -2
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/term.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/version.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/version_constraint.rb +3 -3
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/version_range.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/version_solver.rb +2 -2
- data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/lib/pub_grub/version_union.rb +1 -1
- data/lib/rubygems/vendor/pub_grub/lib/pub_grub.rb +57 -0
- data/lib/rubygems/vendor/resolv/lib/resolv.rb +3508 -0
- data/lib/rubygems/vendor/securerandom/lib/securerandom.rb +4 -0
- data/lib/rubygems/vendor/timeout/lib/timeout.rb +190 -77
- data/lib/rubygems/vendor/uri/lib/uri.rb +4 -0
- data/{bundler/lib/bundler → lib/rubygems}/vendored_pub_grub.rb +0 -1
- data/lib/rubygems/version.rb +129 -111
- data/lib/rubygems/version_option.rb +14 -0
- data/lib/rubygems/yaml_serializer.rb +853 -71
- data/lib/rubygems.rb +45 -11
- data/rubygems-update.gemspec +3 -4
- data/setup.rb +1 -0
- metadata +365 -410
- data/bundler/CHANGELOG.md +0 -5784
- data/bundler/LICENSE.md +0 -22
- data/bundler/README.md +0 -58
- data/bundler/bundler.gemspec +0 -46
- data/bundler/lib/bundler/compact_index_client/cache.rb +0 -107
- data/bundler/lib/bundler/compact_index_client/cache_file.rb +0 -148
- data/bundler/lib/bundler/compact_index_client/parser.rb +0 -87
- data/bundler/lib/bundler/compact_index_client/updater.rb +0 -105
- data/bundler/lib/bundler/compact_index_client.rb +0 -92
- data/bundler/lib/bundler/match_metadata.rb +0 -30
- data/bundler/lib/bundler/match_remote_metadata.rb +0 -29
- data/bundler/lib/bundler/vendor/connection_pool/LICENSE +0 -20
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +0 -227
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +0 -3
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +0 -56
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +0 -230
- data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +0 -82
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +0 -41
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +0 -65
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +0 -80
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +0 -1153
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +0 -31
- data/bundler/lib/bundler/vendor/securerandom/lib/securerandom.rb +0 -102
- data/bundler/lib/bundler/vendor/uri/COPYING +0 -56
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +0 -922
- data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +0 -100
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +0 -267
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +0 -1592
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +0 -137
- data/bundler/lib/bundler/vendor/uri/lib/uri/https.rb +0 -23
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb +0 -261
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb +0 -22
- data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +0 -293
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +0 -547
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +0 -206
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +0 -6
- data/bundler/lib/bundler/vendor/uri/lib/uri/ws.rb +0 -83
- data/bundler/lib/bundler/vendor/uri/lib/uri/wss.rb +0 -23
- data/bundler/lib/bundler/vendor/uri/lib/uri.rb +0 -104
- data/bundler/lib/bundler/vendored_persistent.rb +0 -11
- data/bundler/lib/bundler/vendored_securerandom.rb +0 -12
- data/bundler/lib/bundler/vendored_uri.rb +0 -21
- data/bundler/lib/bundler/yaml_serializer.rb +0 -98
- data/doc/rubygems/CONTRIBUTING.md +0 -231
- data/doc/rubygems/POLICIES.md +0 -60
- data/lib/rubygems/request_set/lockfile/parser.rb +0 -344
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +0 -122
- data/lib/rubygems/resolver/conflict.rb +0 -146
- data/lib/rubygems/resolver/stats.rb +0 -46
- data/lib/rubygems/util/list.rb +0 -40
- data/lib/rubygems/vendor/molinillo/LICENSE +0 -9
- data/lib/rubygems/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/lib/rubygems/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +0 -88
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +0 -36
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +0 -66
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +0 -62
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +0 -63
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +0 -61
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +0 -126
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +0 -46
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +0 -36
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +0 -164
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph.rb +0 -255
- data/lib/rubygems/vendor/molinillo/lib/molinillo/errors.rb +0 -149
- data/lib/rubygems/vendor/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/lib/rubygems/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +0 -112
- data/lib/rubygems/vendor/molinillo/lib/molinillo/modules/ui.rb +0 -67
- data/lib/rubygems/vendor/molinillo/lib/molinillo/resolution.rb +0 -839
- data/lib/rubygems/vendor/molinillo/lib/molinillo/resolver.rb +0 -46
- data/lib/rubygems/vendor/molinillo/lib/molinillo/state.rb +0 -58
- data/lib/rubygems/vendor/molinillo/lib/molinillo.rb +0 -11
- data/lib/rubygems/vendored_molinillo.rb +0 -3
- /data/{bundler/exe → exe}/bundle +0 -0
- /data/{bundler/exe → exe}/bundler +0 -0
- /data/{bundler/lib → lib}/bundler/.document +0 -0
- /data/{bundler/lib → lib}/bundler/capistrano.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/binstubs.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/check.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/console.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/doctor/diagnose.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/doctor/ssl.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/doctor.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/exec.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/fund.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/info.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/init.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/issue.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/list.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/open.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/platform.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/plugin.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/remove.rb +0 -0
- /data/{bundler/lib → lib}/bundler/cli/show.rb +0 -0
- /data/{bundler/lib → lib}/bundler/constants.rb +0 -0
- /data/{bundler/lib → lib}/bundler/current_ruby.rb +0 -0
- /data/{bundler/lib → lib}/bundler/deployment.rb +0 -0
- /data/{bundler/lib → lib}/bundler/deprecate.rb +0 -0
- /data/{bundler/lib → lib}/bundler/digest.rb +0 -0
- /data/{bundler/lib → lib}/bundler/environment_preserver.rb +0 -0
- /data/{bundler/lib → lib}/bundler/feature_flag.rb +0 -0
- /data/{bundler/lib → lib}/bundler/fetcher/base.rb +0 -0
- /data/{bundler/lib → lib}/bundler/fetcher/dependency.rb +0 -0
- /data/{bundler/lib → lib}/bundler/fetcher/gem_remote_fetcher.rb +0 -0
- /data/{bundler/lib → lib}/bundler/fetcher/index.rb +0 -0
- /data/{bundler/lib → lib}/bundler/force_platform.rb +0 -0
- /data/{bundler/lib → lib}/bundler/friendly_errors.rb +0 -0
- /data/{bundler/lib → lib}/bundler/gem_helper.rb +0 -0
- /data/{bundler/lib → lib}/bundler/gem_tasks.rb +0 -0
- /data/{bundler/lib → lib}/bundler/gem_version_promoter.rb +0 -0
- /data/{bundler/lib → lib}/bundler/index.rb +0 -0
- /data/{bundler/lib → lib}/bundler/installer/gem_installer.rb +0 -0
- /data/{bundler/lib → lib}/bundler/installer/standalone.rb +0 -0
- /data/{bundler/lib → lib}/bundler/man/.document +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-binstubs.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-check.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-clean.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-console.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-doctor.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-env.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-exec.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-fund.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-gem.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-help.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-info.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-init.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-issue.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-licenses.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-list.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-open.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-outdated.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-platform.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-plugin.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-pristine.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-remove.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-show.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle-version.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/bundle.1.ronn +0 -0
- /data/{bundler/lib → lib}/bundler/man/index.txt +0 -0
- /data/{bundler/lib → lib}/bundler/mirror.rb +0 -0
- /data/{bundler/lib → lib}/bundler/plugin/api/source.rb +0 -0
- /data/{bundler/lib → lib}/bundler/plugin/api.rb +0 -0
- /data/{bundler/lib → lib}/bundler/plugin/installer/git.rb +0 -0
- /data/{bundler/lib → lib}/bundler/plugin/installer/rubygems.rb +0 -0
- /data/{bundler/lib → lib}/bundler/plugin/source_list.rb +0 -0
- /data/{bundler/lib → lib}/bundler/plugin/unloaded_source.rb +0 -0
- /data/{bundler/lib → lib}/bundler/process_lock.rb +0 -0
- /data/{bundler/lib → lib}/bundler/resolver/candidate.rb +0 -0
- /data/{bundler/lib → lib}/bundler/resolver/package.rb +0 -0
- /data/{bundler/lib → lib}/bundler/resolver/root.rb +0 -0
- /data/{bundler/lib → lib}/bundler/resolver/spec_group.rb +0 -0
- /data/{bundler/lib → lib}/bundler/resolver/strategy.rb +0 -0
- /data/{bundler/lib → lib}/bundler/retry.rb +0 -0
- /data/{bundler/lib → lib}/bundler/ruby_dsl.rb +0 -0
- /data/{bundler/lib → lib}/bundler/safe_marshal.rb +0 -0
- /data/{bundler/lib → lib}/bundler/settings/validator.rb +0 -0
- /data/{bundler/lib → lib}/bundler/setup.rb +0 -0
- /data/{bundler/lib → lib}/bundler/source/gemspec.rb +0 -0
- /data/{bundler/lib → lib}/bundler/source/metadata.rb +0 -0
- /data/{bundler/lib → lib}/bundler/source/path.rb +0 -0
- /data/{bundler/lib → lib}/bundler/source/rubygems_aggregate.rb +0 -0
- /data/{bundler/lib → lib}/bundler/source.rb +0 -0
- /data/{bundler/lib → lib}/bundler/source_list.rb +0 -0
- /data/{bundler/lib → lib}/bundler/source_map.rb +0 -0
- /data/{bundler/lib → lib}/bundler/templates/.document +0 -0
- /data/{bundler/lib → lib}/bundler/templates/Executable +0 -0
- /data/{bundler/lib → lib}/bundler/templates/Executable.standalone +0 -0
- /data/{bundler/lib → lib}/bundler/templates/Gemfile +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/CHANGELOG.md.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/Cargo.toml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/LICENSE.txt.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/README.md.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/Rakefile.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/bin/console.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/bin/setup.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/circleci/config.yml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/exe/newgem.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/build.rs.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/extconf-go.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/go.mod.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/newgem-go.c.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/newgem.c.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/newgem.go.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/newgem.h.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/github/workflows/build-gems.yml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/github/workflows/main.yml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/gitignore.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/gitlab-ci.yml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/lib/newgem/version.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/lib/newgem.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/rspec.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/rubocop.yml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/sig/newgem.rbs.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/spec/spec_helper.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/standard.yml.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/test/minitest/test_helper.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +0 -0
- /data/{bundler/lib → lib}/bundler/ui/rg_proxy.rb +0 -0
- /data/{bundler/lib → lib}/bundler/ui.rb +0 -0
- /data/{bundler/lib → lib}/bundler/uri_credentials_filter.rb +0 -0
- /data/{bundler/lib → lib}/bundler/uri_normalizer.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/.document +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/fileutils/COPYING +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/fileutils/lib/fileutils.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/LICENSE.md +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/actions/create_file.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/actions/create_link.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/actions/directory.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/actions.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/command.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/error.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/group.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/invocation.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/line_editor/basic.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/line_editor/readline.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/line_editor.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/nested_context.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/parser/argument.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/parser/arguments.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/parser/option.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/parser/options.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/parser.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/rake_compat.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/runner.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell/column_printer.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell/html.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell/table_printer.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell/terminal.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell/wrapped_printer.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/shell.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendor/thor/lib/thor/util.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendored_fileutils.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendored_net_http.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendored_thor.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendored_timeout.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vendored_tsort.rb +0 -0
- /data/{bundler/lib → lib}/bundler/vlad.rb +0 -0
- /data/{bundler/lib/bundler → lib/rubygems}/vendor/pub_grub/LICENSE.txt +0 -0
- /data/{bundler/lib/bundler/vendor/securerandom → lib/rubygems/vendor/resolv}/COPYING +0 -0
data/CHANGELOG.md
CHANGED
|
@@ -1,67 +1,233 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Bundler's changelog before 4.0.0, when it was versioned separately from RubyGems, is in [doc/CHANGELOG-bundler-2.x.md](https://github.com/ruby/rubygems/blob/master/doc/CHANGELOG-bundler-2.x.md).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## 4.1.0.beta1 / 2026-09-09
|
|
6
|
+
|
|
7
|
+
### RubyGems
|
|
8
|
+
|
|
9
|
+
Changes already released in 4.0.x are not repeated here.
|
|
10
|
+
|
|
11
|
+
#### Features:
|
|
12
|
+
|
|
13
|
+
* Add content addressable gems support. Pull request [#9773](https://github.com/ruby/rubygems/pull/9773) by Jenny Shen
|
|
14
|
+
* Let the gem and bundle cooldown settings cover each other. Pull request [#9852](https://github.com/ruby/rubygems/pull/9852) by Hiroshi SHIBATA
|
|
15
|
+
* Rubygems: Add PQC ML-DSA support for cryptographically signed gems workflow. Pull request [#9697](https://github.com/ruby/rubygems/pull/9697) by Jun Aruga
|
|
16
|
+
* Preserve non-UTF-8 legacy gem metadata. Pull request [#9835](https://github.com/ruby/rubygems/pull/9835) by Stanislav (Stas) Katkov
|
|
17
|
+
* Add an opt-in OS credential store for gem and bundler credentials. Pull request [#9671](https://github.com/ruby/rubygems/pull/9671) by Hiroshi SHIBATA
|
|
18
|
+
* Add --cooldown to gem install, update and outdated. Pull request [#9734](https://github.com/ruby/rubygems/pull/9734) by Hiroshi SHIBATA
|
|
19
|
+
* Adopt the compact index for gem commands. Pull request [#9606](https://github.com/ruby/rubygems/pull/9606) by Hiroshi SHIBATA
|
|
20
|
+
* Replace Molinillo with PubGrub for dependency resolution. Pull request [#9402](https://github.com/ruby/rubygems/pull/9402) by Matt Larraz
|
|
21
|
+
* Replace the rubygems-specific lockfile parser with Bundler's parser. Pull request [#9564](https://github.com/ruby/rubygems/pull/9564) by Hiroshi SHIBATA
|
|
22
|
+
* Remove pessimistic versioning in gem command output. Pull request [#9550](https://github.com/ruby/rubygems/pull/9550) by Jeremy Evans
|
|
23
|
+
* Change Gem::Version#approximate_recommendation to be optimistic. Pull request [#9537](https://github.com/ruby/rubygems/pull/9537) by Jeremy Evans
|
|
24
|
+
* Add `--no-build-extension` and `--no-install-plugin` options to gem install. Pull request [#9473](https://github.com/ruby/rubygems/pull/9473) by Hiroshi SHIBATA
|
|
25
|
+
* Push with auto-attestation. Pull request [#9325](https://github.com/ruby/rubygems/pull/9325) by Hiroshi SHIBATA
|
|
26
|
+
* Implement yaml parser written by pure ruby instead of Psych. Pull request [#9352](https://github.com/ruby/rubygems/pull/9352) by Hiroshi SHIBATA
|
|
27
|
+
* Honor concurrent_downloads from .gemrc in Gem::ConfigFile. Pull request [#9339](https://github.com/ruby/rubygems/pull/9339) by Andrii Furmanets
|
|
28
|
+
* Add support for custom error response from external registries. Pull request [#9270](https://github.com/ruby/rubygems/pull/9270) by Luis J. Gonzalez
|
|
29
|
+
* Add global gem cache shared by RubyGems and Bundler. Pull request [#9230](https://github.com/ruby/rubygems/pull/9230) by Anthony Panozzo
|
|
30
|
+
* Write gem files atomically. Pull request [#9154](https://github.com/ruby/rubygems/pull/9154) by Eileen
|
|
31
|
+
|
|
32
|
+
#### Performance:
|
|
33
|
+
|
|
34
|
+
* Remove `verify_gz`. Pull request [#9093](https://github.com/ruby/rubygems/pull/9093) by Eileen
|
|
35
|
+
|
|
36
|
+
#### Enhancements:
|
|
6
37
|
|
|
7
|
-
* Stop vendoring resolv for two regexps. Pull request [#9877](https://github.com/ruby/rubygems/pull/9877) by Hiroshi SHIBATA
|
|
8
38
|
* Normalize absolute symlink targets during gem extraction. Pull request [#9860](https://github.com/ruby/rubygems/pull/9860) by Hiroshi SHIBATA
|
|
9
|
-
* Installs bundler 4.0.
|
|
39
|
+
* Installs bundler 4.1.0.beta1 as a default gem.
|
|
40
|
+
|
|
41
|
+
#### Breaking changes:
|
|
42
|
+
|
|
43
|
+
* Stop installing native extension build logs. Pull request [#9700](https://github.com/ruby/rubygems/pull/9700) by Hiroshi SHIBATA
|
|
44
|
+
* Remove Gem::BasicSpecification#datadir and check minor-release deprecation horizons. Pull request [#9842](https://github.com/ruby/rubygems/pull/9842) by Hiroshi SHIBATA
|
|
45
|
+
* Raise an error when building a gem that has a self reference. Pull request [#9392](https://github.com/ruby/rubygems/pull/9392) by Edouard CHIN
|
|
46
|
+
* Revert `DEFAULT_INSTALL_EXTENSION_IN_LIB` and warn `require_relative` with C ext. Pull request [#9390](https://github.com/ruby/rubygems/pull/9390) by Hiroshi SHIBATA
|
|
47
|
+
* Remove deprecated and unused `Gem::List`. Pull request [#9161](https://github.com/ruby/rubygems/pull/9161) by Hiroshi SHIBATA
|
|
48
|
+
|
|
49
|
+
### Bundler
|
|
50
|
+
|
|
51
|
+
Changes already released in 4.0.x are not repeated here.
|
|
52
|
+
|
|
53
|
+
#### Features:
|
|
54
|
+
|
|
55
|
+
* Add content addressable gems support. Pull request [#9773](https://github.com/ruby/rubygems/pull/9773) by Jenny Shen
|
|
56
|
+
* Let the gem and bundle cooldown settings cover each other. Pull request [#9852](https://github.com/ruby/rubygems/pull/9852) by Hiroshi SHIBATA
|
|
57
|
+
* Add a `prune` setting to drop rebuildable install artifacts. Pull request [#9815](https://github.com/ruby/rubygems/pull/9815) by Hiroshi SHIBATA
|
|
58
|
+
* Add an opt-in OS credential store for gem and bundler credentials. Pull request [#9671](https://github.com/ruby/rubygems/pull/9671) by Hiroshi SHIBATA
|
|
59
|
+
* Fetch Bundler metadata through Gem::Request instead of net-http-persistent. Pull request [#9786](https://github.com/ruby/rubygems/pull/9786) by Hiroshi SHIBATA
|
|
60
|
+
* Reuse RubyGems' compact index client in Bundler. Pull request [#9753](https://github.com/ruby/rubygems/pull/9753) by Hiroshi SHIBATA
|
|
61
|
+
* Reuse RubyGems' vendored PubGrub in Bundler. Pull request [#9752](https://github.com/ruby/rubygems/pull/9752) by Hiroshi SHIBATA
|
|
62
|
+
* Use RubyGems' YAML serializer in Bundler. Pull request [#9751](https://github.com/ruby/rubygems/pull/9751) by Hiroshi SHIBATA
|
|
63
|
+
* Reuse RubyGems' vendored SecureRandom in Bundler. Pull request [#9651](https://github.com/ruby/rubygems/pull/9651) by Hiroshi SHIBATA
|
|
64
|
+
* Reuse RubyGems' vendored URI in Bundler. Pull request [#9650](https://github.com/ruby/rubygems/pull/9650) by Hiroshi SHIBATA
|
|
65
|
+
* Fix two issues by including the ruby platform variants in the lock file. Pull request [#9556](https://github.com/ruby/rubygems/pull/9556) by Randy Stauner
|
|
66
|
+
* Fix plugin installation from gemfile. Pull request [#6957](https://github.com/ruby/rubygems/pull/6957) by Cody Cutrer
|
|
67
|
+
* Add plugin hooks for Gemfile evaluation and source fetching. Pull request [#9488](https://github.com/ruby/rubygems/pull/9488) by Hiroshi SHIBATA
|
|
68
|
+
* Use optimistic version constraints in bundle gem output. Pull request [#9533](https://github.com/ruby/rubygems/pull/9533) by Jeremy Evans
|
|
69
|
+
* Extend Gemfile `override` DSL with `:all` target and metadata fields (Phase 2). Pull request [#9530](https://github.com/ruby/rubygems/pull/9530) by Hiroshi SHIBATA
|
|
70
|
+
* Switch bundle add to use optimistic versioning by default. Pull request [#9526](https://github.com/ruby/rubygems/pull/9526) by Jeremy Evans
|
|
71
|
+
* Add Gemfile `override` DSL for version constraints (Phase 1). Pull request [#9517](https://github.com/ruby/rubygems/pull/9517) by Hiroshi SHIBATA
|
|
72
|
+
* Add `--no-build-extension` and `--no-install-plugin` options to gem install. Pull request [#9473](https://github.com/ruby/rubygems/pull/9473) by Hiroshi SHIBATA
|
|
73
|
+
* Include detailed dependencies when gemfile and lockfile are conflicts. Pull request [#9332](https://github.com/ruby/rubygems/pull/9332) by Hiroshi SHIBATA
|
|
74
|
+
* Implement relative path handling for plugin paths. Pull request [#9299](https://github.com/ruby/rubygems/pull/9299) by Hiroshi SHIBATA
|
|
75
|
+
* Bundler/inline: perform installation from a forked child. Pull request [#7941](https://github.com/ruby/rubygems/pull/7941) by Jean byroot Boussier
|
|
76
|
+
* Add global gem cache shared by RubyGems and Bundler. Pull request [#9230](https://github.com/ruby/rubygems/pull/9230) by Anthony Panozzo
|
|
77
|
+
* Update custom errors with Exception#full_message. Pull request [#8488](https://github.com/ruby/rubygems/pull/8488) by neimadTL
|
|
78
|
+
|
|
79
|
+
#### Performance:
|
|
80
|
+
|
|
81
|
+
* Use separate Bundler download and installation workers. Pull request [#9777](https://github.com/ruby/rubygems/pull/9777) by Joshua Young
|
|
82
|
+
* Cache a shared git source only once per command. Pull request [#9689](https://github.com/ruby/rubygems/pull/9689) by Hiroshi SHIBATA
|
|
83
|
+
|
|
84
|
+
#### Enhancements:
|
|
85
|
+
|
|
86
|
+
* Reject Bundler redirects that downgrade https to http. Pull request [#9859](https://github.com/ruby/rubygems/pull/9859) by Hiroshi SHIBATA
|
|
87
|
+
|
|
88
|
+
#### Bug fixes:
|
|
89
|
+
|
|
90
|
+
* Expand the git source gemspec path before the chdir. Pull request [#9845](https://github.com/ruby/rubygems/pull/9845) by Hiroshi SHIBATA
|
|
91
|
+
|
|
92
|
+
#### Breaking changes:
|
|
93
|
+
|
|
94
|
+
* Remove external tool version checks from `bundle env`. Pull request [#9593](https://github.com/ruby/rubygems/pull/9593) by Hiroshi SHIBATA
|
|
95
|
+
* Bundler: ignore patchlevel kwarg in ruby DSL. Pull request [#6023](https://github.com/ruby/rubygems/pull/6023) by Takuya N
|
|
96
|
+
* Unify RubyGems and Bundler documentation. Pull request [#9237](https://github.com/ruby/rubygems/pull/9237) by Hiroshi SHIBATA
|
|
97
|
+
|
|
98
|
+
#### Deprecations:
|
|
99
|
+
|
|
100
|
+
* Rename the no_prune setting to keep_outdated_cache. Pull request [#9816](https://github.com/ruby/rubygems/pull/9816) by Hiroshi SHIBATA
|
|
10
101
|
|
|
11
102
|
## 4.0.20 / 2026-09-02
|
|
12
103
|
|
|
13
|
-
###
|
|
104
|
+
### RubyGems
|
|
105
|
+
|
|
106
|
+
#### Enhancements:
|
|
14
107
|
|
|
15
108
|
* Print a release notes link instead of the whole changelog on `gem update --system`. Pull request [#9794](https://github.com/ruby/rubygems/pull/9794) by hsbt
|
|
16
109
|
* Installs bundler 4.0.20 as a default gem.
|
|
17
110
|
|
|
18
|
-
|
|
111
|
+
#### Bug fixes:
|
|
19
112
|
|
|
20
113
|
* Only coerce exact true and false gemrc values to booleans. Pull request [#9822](https://github.com/ruby/rubygems/pull/9822) by hsbt
|
|
21
114
|
* Make the gem CLI work under RUBY_BOX=1. Pull request [#9810](https://github.com/ruby/rubygems/pull/9810) by hsbt
|
|
22
115
|
|
|
23
|
-
|
|
116
|
+
#### Documentation:
|
|
24
117
|
|
|
25
118
|
* Document and test all available gemrc configuration keys. Pull request [#9568](https://github.com/ruby/rubygems/pull/9568) by junaruga
|
|
26
119
|
|
|
120
|
+
### Bundler
|
|
121
|
+
|
|
122
|
+
#### Enhancements:
|
|
123
|
+
|
|
124
|
+
* Avoid duplicate relative path prefix in bundle exec. Pull request [#9596](https://github.com/ruby/rubygems/pull/9596) by samuel-williams-shopify
|
|
125
|
+
* Follow renamed default branch in git sources. Pull request [#9813](https://github.com/ruby/rubygems/pull/9813) by hsbt
|
|
126
|
+
* Bundler::Source::Git: avoid re-fetching the repo. Pull request [#9806](https://github.com/ruby/rubygems/pull/9806) by byroot
|
|
127
|
+
* Show the newest out-of-cooldown version in bundle outdated. Pull request [#9803](https://github.com/ruby/rubygems/pull/9803) by hsbt
|
|
128
|
+
|
|
129
|
+
#### Bug fixes:
|
|
130
|
+
|
|
131
|
+
* Error out when `bundle init --gemspec` gets no specification. Pull request [#9818](https://github.com/ruby/rubygems/pull/9818) by hsbt
|
|
132
|
+
* Fix relative gemspec paths being expanded twice. Pull request [#9814](https://github.com/ruby/rubygems/pull/9814) by hsbt
|
|
133
|
+
* Fix gemspec evaluation under Ruby::Box. Pull request [#9809](https://github.com/ruby/rubygems/pull/9809) by hsbt
|
|
134
|
+
* Fix release date extraction for the current changelog header format. Pull request [#9767](https://github.com/ruby/rubygems/pull/9767) by meganemura
|
|
135
|
+
* Resolve globbed entries literally in Gem::Util.glob_files_in_dir. Pull request [#9802](https://github.com/ruby/rubygems/pull/9802) by hsbt
|
|
136
|
+
* Preserve native extensions during implicit clean. Pull request [#9800](https://github.com/ruby/rubygems/pull/9800) by sjh9714
|
|
137
|
+
|
|
138
|
+
#### Documentation:
|
|
139
|
+
|
|
140
|
+
* Clarify :path expectations and cross-link platform docs in man pages. Pull request [#9724](https://github.com/ruby/rubygems/pull/9724) by hsbt
|
|
141
|
+
|
|
27
142
|
## 4.0.19 / 2026-08-20
|
|
28
143
|
|
|
29
|
-
###
|
|
144
|
+
### RubyGems
|
|
145
|
+
|
|
146
|
+
#### Enhancements:
|
|
30
147
|
|
|
31
148
|
* Reject SafeMarshal collection lengths longer than the remaining input. Pull request [#9756](https://github.com/ruby/rubygems/pull/9756) by hsbt
|
|
32
149
|
* Installs bundler 4.0.19 as a default gem.
|
|
33
150
|
|
|
34
|
-
|
|
151
|
+
#### Bug fixes:
|
|
35
152
|
|
|
36
153
|
* Fix gem uninstall --user-install crash when GEM_HOME does not exist. Pull request [#9749](https://github.com/ruby/rubygems/pull/9749) by hsbt
|
|
37
154
|
|
|
38
|
-
|
|
155
|
+
#### Documentation:
|
|
39
156
|
|
|
40
157
|
* Document SPDX license handling for license= and licenses=. Pull request [#9766](https://github.com/ruby/rubygems/pull/9766) by hsbt
|
|
41
158
|
|
|
159
|
+
### Bundler
|
|
160
|
+
|
|
161
|
+
#### Enhancements:
|
|
162
|
+
|
|
163
|
+
* Validate the platform field in Gem::Installer#verify_spec. Pull request [#9780](https://github.com/ruby/rubygems/pull/9780) by hsbt
|
|
164
|
+
* Restrict UserDefined handling to explicit class set for Gem::SafeMashal. Pull request [#9770](https://github.com/ruby/rubygems/pull/9770) by jackorp
|
|
165
|
+
* Filter git command output against the configured URI. Pull request [#9778](https://github.com/ruby/rubygems/pull/9778) by hsbt
|
|
166
|
+
* Summarize cooldown-skipped versions at the end of install, update, and lock. Pull request [#9762](https://github.com/ruby/rubygems/pull/9762) by hsbt
|
|
167
|
+
|
|
168
|
+
#### Bug fixes:
|
|
169
|
+
|
|
170
|
+
* Make repeated bundle lock options accumulate. Pull request [#9748](https://github.com/ruby/rubygems/pull/9748) by hsbt
|
|
171
|
+
* Fail instead of warning when frozen mode can't update the lockfile. Pull request [#9750](https://github.com/ruby/rubygems/pull/9750) by hsbt
|
|
172
|
+
* Fix wrong $LOAD_PATH for gems installed in the same process. Pull request [#9784](https://github.com/ruby/rubygems/pull/9784) by hsbt
|
|
173
|
+
|
|
174
|
+
#### Documentation:
|
|
175
|
+
|
|
176
|
+
* Fix auto-clean default version in bundle config docs. Pull request [#9783](https://github.com/ruby/rubygems/pull/9783) by hsbt
|
|
177
|
+
* Correct Bundler 5 default path documentation. Pull request [#9771](https://github.com/ruby/rubygems/pull/9771) by alloutflo
|
|
178
|
+
|
|
42
179
|
## 4.0.18 / 2026-08-05
|
|
43
180
|
|
|
44
|
-
###
|
|
181
|
+
### RubyGems
|
|
182
|
+
|
|
183
|
+
#### Enhancements:
|
|
45
184
|
|
|
46
185
|
* Check the resolved parent directory before extracting old format gems. Pull request [#9755](https://github.com/ruby/rubygems/pull/9755) by hsbt
|
|
47
186
|
* Installs bundler 4.0.18 as a default gem.
|
|
48
187
|
|
|
49
|
-
|
|
188
|
+
#### Bug fixes:
|
|
50
189
|
|
|
51
190
|
* Call Kernel.format explicitly in Gem::Deprecate wrapper. Pull request [#9714](https://github.com/ruby/rubygems/pull/9714) by hsbt
|
|
52
191
|
|
|
53
|
-
|
|
192
|
+
#### Documentation:
|
|
193
|
+
|
|
194
|
+
* Point bundler.io URLs at guides.rubygems.org. Pull request [#9737](https://github.com/ruby/rubygems/pull/9737) by hsbt
|
|
195
|
+
|
|
196
|
+
### Bundler
|
|
197
|
+
|
|
198
|
+
#### Enhancements:
|
|
199
|
+
|
|
200
|
+
* Don't mask install errors when no Gemfile can be located. Pull request [#9757](https://github.com/ruby/rubygems/pull/9757) by hsbt
|
|
201
|
+
* Warn when duplicate source declarations conflict on cooldown. Pull request [#9736](https://github.com/ruby/rubygems/pull/9736) by hsbt
|
|
202
|
+
* Redact URI userinfo from settings names in Bundler User-Agent. Pull request [#9716](https://github.com/ruby/rubygems/pull/9716) by hsbt
|
|
203
|
+
* Validate gem name before building compact index cache paths. Pull request [#9717](https://github.com/ruby/rubygems/pull/9717) by hsbt
|
|
204
|
+
|
|
205
|
+
#### Bug fixes:
|
|
206
|
+
|
|
207
|
+
* Fail `bundle check` when frozen mode needs lockfile changes. Pull request [#9715](https://github.com/ruby/rubygems/pull/9715) by hsbt
|
|
208
|
+
* Skip empty checksum values in compact index metadata. Pull request [#9713](https://github.com/ruby/rubygems/pull/9713) by hsbt
|
|
209
|
+
|
|
210
|
+
#### Security:
|
|
211
|
+
|
|
212
|
+
* Add --cooldown flag to bundle lock and bundle cache. Pull request [#9725](https://github.com/ruby/rubygems/pull/9725) by hsbt
|
|
213
|
+
|
|
214
|
+
#### Documentation:
|
|
54
215
|
|
|
55
216
|
* Point bundler.io URLs at guides.rubygems.org. Pull request [#9737](https://github.com/ruby/rubygems/pull/9737) by hsbt
|
|
217
|
+
* Document Bundler checksum behavior for default gems. Pull request [#9735](https://github.com/ruby/rubygems/pull/9735) by p-linnane
|
|
218
|
+
* List missing subcommands in bundle(1) UTILITIES section. Pull request [#9721](https://github.com/ruby/rubygems/pull/9721) by hsbt
|
|
219
|
+
* Document pessimistic operator and eval_gemfile in gemfile(5). Pull request [#9719](https://github.com/ruby/rubygems/pull/9719) by hsbt
|
|
56
220
|
|
|
57
221
|
## 4.0.17 / 2026-07-22
|
|
58
222
|
|
|
59
|
-
###
|
|
223
|
+
### RubyGems
|
|
224
|
+
|
|
225
|
+
#### Enhancements:
|
|
60
226
|
|
|
61
227
|
* Validate spec name before writing to the spec cache. Pull request [#9690](https://github.com/ruby/rubygems/pull/9690) by hsbt
|
|
62
228
|
* Installs bundler 4.0.17 as a default gem.
|
|
63
229
|
|
|
64
|
-
|
|
230
|
+
#### Bug fixes:
|
|
65
231
|
|
|
66
232
|
* Unquote Gem.ruby when spawning it as a separate argv element. Pull request [#9695](https://github.com/ruby/rubygems/pull/9695) by hsbt
|
|
67
233
|
* Escape glob metacharacters in install paths when globbing. Pull request [#9687](https://github.com/ruby/rubygems/pull/9687) by hsbt
|
|
@@ -69,97 +235,251 @@
|
|
|
69
235
|
* Preserve Windows paths in MAKE and rake environment variables. Pull request [#9693](https://github.com/ruby/rubygems/pull/9693) by hsbt
|
|
70
236
|
* Fix `bundle` binstub broken by `gem update --system` on Homebrew ruby. Pull request [#9688](https://github.com/ruby/rubygems/pull/9688) by hsbt
|
|
71
237
|
|
|
238
|
+
### Bundler
|
|
239
|
+
|
|
240
|
+
#### Enhancements:
|
|
241
|
+
|
|
242
|
+
* Open compact index cache in binary mode when appending. Pull request [#9679](https://github.com/ruby/rubygems/pull/9679) by hsbt
|
|
243
|
+
|
|
244
|
+
#### Bug fixes:
|
|
245
|
+
|
|
246
|
+
* Unquote Gem.ruby when spawning it as a separate argv element. Pull request [#9695](https://github.com/ruby/rubygems/pull/9695) by hsbt
|
|
247
|
+
* Escape glob metacharacters in install paths when globbing. Pull request [#9687](https://github.com/ruby/rubygems/pull/9687) by hsbt
|
|
248
|
+
* Avoid space-containing absolute path in RUBYOPT. Pull request [#9696](https://github.com/ruby/rubygems/pull/9696) by hsbt
|
|
249
|
+
* Preserve the locked Bundler checksum when the gem isn't cached. Pull request [#9658](https://github.com/ruby/rubygems/pull/9658) by rwstauner
|
|
250
|
+
|
|
251
|
+
#### Documentation:
|
|
252
|
+
|
|
253
|
+
* Point Bundler gemspec metadata at the moved docs. Pull request [#9648](https://github.com/ruby/rubygems/pull/9648) by hsbt
|
|
254
|
+
|
|
72
255
|
## 4.0.16 / 2026-07-10
|
|
73
256
|
|
|
74
|
-
###
|
|
257
|
+
### RubyGems
|
|
258
|
+
|
|
259
|
+
#### Enhancements:
|
|
75
260
|
|
|
76
261
|
* Installs bundler 4.0.16 as a default gem.
|
|
77
262
|
|
|
78
|
-
|
|
263
|
+
#### Bug fixes:
|
|
79
264
|
|
|
80
265
|
* Skip the make job server when using BSD make. Pull request [#9676](https://github.com/ruby/rubygems/pull/9676) by flavorjones
|
|
81
266
|
|
|
267
|
+
### Bundler
|
|
268
|
+
|
|
269
|
+
#### Enhancements:
|
|
270
|
+
|
|
271
|
+
* Bundler: Fix Bundler::Fetcher for PQC support, adding integration connection tests. Pull request [#9637](https://github.com/ruby/rubygems/pull/9637) by junaruga
|
|
272
|
+
* Reuse RubyGems' vendored tsort in Bundler. Pull request [#9647](https://github.com/ruby/rubygems/pull/9647) by hsbt
|
|
273
|
+
|
|
274
|
+
#### Bug fixes:
|
|
275
|
+
|
|
276
|
+
* Initialize the new gem's git repo without a subshell. Pull request [#9670](https://github.com/ruby/rubygems/pull/9670) by hsbt
|
|
277
|
+
* Preserve CRLF lockfile line endings on Windows. Pull request [#9669](https://github.com/ruby/rubygems/pull/9669) by hsbt
|
|
278
|
+
* Fix the gemspec error snippet on Windows drive-letter paths. Pull request [#9668](https://github.com/ruby/rubygems/pull/9668) by hsbt
|
|
279
|
+
|
|
280
|
+
#### Documentation:
|
|
281
|
+
|
|
282
|
+
* Point Bundler gemspec metadata at the moved docs. Pull request [#9648](https://github.com/ruby/rubygems/pull/9648) by hsbt
|
|
283
|
+
|
|
82
284
|
## 4.0.15 / 2026-06-24
|
|
83
285
|
|
|
84
|
-
###
|
|
286
|
+
### RubyGems
|
|
287
|
+
|
|
288
|
+
#### Enhancements:
|
|
85
289
|
|
|
86
290
|
* Rubygems: Fix Gem::Request for PQC support, adding integration connection tests. Pull request [#9615](https://github.com/ruby/rubygems/pull/9615) by junaruga
|
|
87
291
|
* Reduce peak memory usage of full index loading and bundle install. Pull request [#9618](https://github.com/ruby/rubygems/pull/9618) by hsbt
|
|
88
292
|
* Installs bundler 4.0.15 as a default gem.
|
|
89
293
|
|
|
90
|
-
|
|
294
|
+
#### Bug fixes:
|
|
91
295
|
|
|
92
296
|
* Forward security policy to old-format gems. Pull request [#9611](https://github.com/ruby/rubygems/pull/9611) by hsbt
|
|
93
297
|
|
|
298
|
+
### Bundler
|
|
299
|
+
|
|
300
|
+
#### Enhancements:
|
|
301
|
+
|
|
302
|
+
* Resolve Git LFS files in git sources from the real remote. Pull request [#9632](https://github.com/ruby/rubygems/pull/9632) by hsbt
|
|
303
|
+
* Suggest access issues, not only yanking, for missing locked gems. Pull request [#9631](https://github.com/ruby/rubygems/pull/9631) by hsbt
|
|
304
|
+
* Implement a make jobserver (continuation of #9210). Pull request [#9625](https://github.com/ruby/rubygems/pull/9625) by hsbt
|
|
305
|
+
* Reduce peak memory usage of full index loading and bundle install. Pull request [#9618](https://github.com/ruby/rubygems/pull/9618) by hsbt
|
|
306
|
+
* Bump up to rb-sys 0.9.128. Pull request [#9569](https://github.com/ruby/rubygems/pull/9569) by hsbt
|
|
307
|
+
|
|
308
|
+
#### Bug fixes:
|
|
309
|
+
|
|
310
|
+
* Skip the make jobserver on Windows. Pull request [#9630](https://github.com/ruby/rubygems/pull/9630) by hsbt
|
|
311
|
+
* Don't require source plugins to be installed to parse a lockfile: 4.0.x. Pull request [#9621](https://github.com/ruby/rubygems/pull/9621) by hsbt
|
|
312
|
+
* Exempt lockfile versions from cooldown on every resolution path. Pull request [#9619](https://github.com/ruby/rubygems/pull/9619) by hsbt
|
|
313
|
+
* Set `Bundler.settings[:ssl_ca_cert]` to download gems. Pull request [#9610](https://github.com/ruby/rubygems/pull/9610) by junaruga
|
|
314
|
+
|
|
94
315
|
## 4.0.14 / 2026-06-10
|
|
95
316
|
|
|
96
|
-
###
|
|
317
|
+
### RubyGems
|
|
318
|
+
|
|
319
|
+
#### Enhancements:
|
|
97
320
|
|
|
98
321
|
* Add executables and bindir validation to the gem installer. Pull request [#9595](https://github.com/ruby/rubygems/pull/9595) by hsbt
|
|
99
322
|
* Strip C1 control characters from displayed gem text. Pull request [#9597](https://github.com/ruby/rubygems/pull/9597) by hsbt
|
|
100
323
|
* Installs bundler 4.0.14 as a default gem.
|
|
101
324
|
|
|
325
|
+
### Bundler
|
|
326
|
+
|
|
327
|
+
#### Bug fixes:
|
|
328
|
+
|
|
329
|
+
* Preserve per-source cooldown when converging sources from the lockfile. Pull request [#9601](https://github.com/ruby/rubygems/pull/9601) by bryanwoods
|
|
330
|
+
* Don't exclude the locked version from cooldown during bundle update. Pull request [#9599](https://github.com/ruby/rubygems/pull/9599) by hsbt
|
|
331
|
+
|
|
102
332
|
## 4.0.13 / 2026-06-03
|
|
103
333
|
|
|
104
|
-
###
|
|
334
|
+
### RubyGems
|
|
335
|
+
|
|
336
|
+
#### Enhancements:
|
|
105
337
|
|
|
106
338
|
* Prevent extraction from escaping destination_dir via pre-existing symlinks. Pull request [#9493](https://github.com/ruby/rubygems/pull/9493) by thesmartshadow
|
|
107
339
|
* Close stdin immediately when using popen2e. Pull request [#9540](https://github.com/ruby/rubygems/pull/9540) by rwstauner
|
|
108
340
|
* Fallback to copy symlinks on Windows. Pull request [#9296](https://github.com/ruby/rubygems/pull/9296) by larskanis
|
|
109
341
|
* Installs bundler 4.0.13 as a default gem.
|
|
110
342
|
|
|
343
|
+
### Bundler
|
|
344
|
+
|
|
345
|
+
#### Enhancements:
|
|
346
|
+
|
|
347
|
+
* Do not hard-code permissions for new gem directories during bundle install. Pull request [#9557](https://github.com/ruby/rubygems/pull/9557) by maxfelsher-cgi
|
|
348
|
+
* Clear gem specification cache after acquiring process lock. Pull request [#9310](https://github.com/ruby/rubygems/pull/9310) by ngan
|
|
349
|
+
* Show release date with bundle outdated. Pull request [#9337](https://github.com/ruby/rubygems/pull/9337) by hsbt
|
|
350
|
+
|
|
351
|
+
#### Bug fixes:
|
|
352
|
+
|
|
353
|
+
* Apply cooldown to locally installed gem versions. Pull request [#9582](https://github.com/ruby/rubygems/pull/9582) by hsbt
|
|
354
|
+
|
|
355
|
+
#### Security:
|
|
356
|
+
|
|
357
|
+
* Add `cooldown` to delay newly published gem. Pull request [#9576](https://github.com/ruby/rubygems/pull/9576) by hsbt
|
|
358
|
+
|
|
111
359
|
## 4.0.12 / 2026-05-20
|
|
112
360
|
|
|
113
|
-
###
|
|
361
|
+
### RubyGems
|
|
362
|
+
|
|
363
|
+
#### Enhancements:
|
|
114
364
|
|
|
115
365
|
* Remove cygwin from WIN_PATTERNS. Pull request [#9527](https://github.com/ruby/rubygems/pull/9527) by fd00
|
|
116
366
|
* Installs bundler 4.0.12 as a default gem.
|
|
117
367
|
|
|
118
|
-
|
|
368
|
+
#### Bug fixes:
|
|
119
369
|
|
|
120
370
|
* Fall back to lockfile version when `BUNDLE_VERSION` is "lockfile". Pull request [#9545](https://github.com/ruby/rubygems/pull/9545) by hsbt
|
|
121
371
|
* Read `BUNDLE_VERSION` env var in `BundlerVersionFinder`. Pull request [#9538](https://github.com/ruby/rubygems/pull/9538) by hsbt
|
|
122
372
|
|
|
373
|
+
### Bundler
|
|
374
|
+
|
|
375
|
+
#### Enhancements:
|
|
376
|
+
|
|
377
|
+
* Make `bundle config get` return status 1 when the value is not set. Pull request [#9505](https://github.com/ruby/rubygems/pull/9505) by willnet
|
|
378
|
+
* Use Pathname#absolute?. Pull request [#9529](https://github.com/ruby/rubygems/pull/9529) by nobu
|
|
379
|
+
* Deprecate parsing non-lockfile content in LockfileParser. Pull request [#9502](https://github.com/ruby/rubygems/pull/9502) by kurotaky
|
|
380
|
+
* Print a warning for a potential confusion from the indirect dependencies. Pull request [#5029](https://github.com/ruby/rubygems/pull/5029) by junaruga
|
|
381
|
+
* Respect Gemfile bundler setting in `Bundler.setup`. Pull request [#4892](https://github.com/ruby/rubygems/pull/4892) by godfat
|
|
382
|
+
|
|
383
|
+
#### Bug fixes:
|
|
384
|
+
|
|
385
|
+
* Gracefully handle missing checksums in Compact Index. Pull request [#9492](https://github.com/ruby/rubygems/pull/9492) by jneen
|
|
386
|
+
* Skip git source exclusion when lockfile cannot backfill. Pull request [#9544](https://github.com/ruby/rubygems/pull/9544) by yahonda
|
|
387
|
+
* Fix bundle config gemfile unset behavior. Pull request [#9514](https://github.com/ruby/rubygems/pull/9514) by afurm
|
|
388
|
+
|
|
123
389
|
## 4.0.11 / 2026-04-30
|
|
124
390
|
|
|
125
|
-
###
|
|
391
|
+
### RubyGems
|
|
392
|
+
|
|
393
|
+
#### Enhancements:
|
|
126
394
|
|
|
127
395
|
* Add commented-out rubygems_mfa_required to bundle gem template. Pull request [#9487](https://github.com/ruby/rubygems/pull/9487) by MatheusRich
|
|
128
396
|
* Clarify the name and meaning of the first argument to `gem spec`. Pull request [#9476](https://github.com/ruby/rubygems/pull/9476) by eregon
|
|
129
397
|
* Installs bundler 4.0.11 as a default gem.
|
|
130
398
|
|
|
399
|
+
### Bundler
|
|
400
|
+
|
|
401
|
+
#### Enhancements:
|
|
402
|
+
|
|
403
|
+
* Update gem creation guide URL to rubygems.org. Pull request [#9500](https://github.com/ruby/rubygems/pull/9500) by nissyi-gh
|
|
404
|
+
* Lock the checksum of Bundler itself in the lockfile. Pull request [#9366](https://github.com/ruby/rubygems/pull/9366) by Edouard-chin
|
|
405
|
+
|
|
406
|
+
#### Bug fixes:
|
|
407
|
+
|
|
408
|
+
* Fix installing gems with native extensions + transitive dependencies. Pull request [#9477](https://github.com/ruby/rubygems/pull/9477) by nicholasdower
|
|
409
|
+
* Fix the bundler version not being updated in dev/test lockfile. Pull request [#9463](https://github.com/ruby/rubygems/pull/9463) by Edouard-chin
|
|
410
|
+
* Ensure the release CI doesn't break due to the Bundler checksum feature. Pull request [#9436](https://github.com/ruby/rubygems/pull/9436) by Edouard-chin
|
|
411
|
+
|
|
412
|
+
#### Documentation:
|
|
413
|
+
|
|
414
|
+
* Fix formatting for BUNDLE_PREFER_PATCH variable in man page. Pull request [#9474](https://github.com/ruby/rubygems/pull/9474) by toy
|
|
415
|
+
|
|
131
416
|
## 4.0.10 / 2026-04-08
|
|
132
417
|
|
|
133
|
-
###
|
|
418
|
+
### RubyGems
|
|
419
|
+
|
|
420
|
+
#### Enhancements:
|
|
134
421
|
|
|
135
422
|
* Ignore warnings with spec different platforms. Pull request [#8508](https://github.com/ruby/rubygems/pull/8508) by hsbt
|
|
136
423
|
* Better algorithm for sorting gem version. Pull request [#9421](https://github.com/ruby/rubygems/pull/9421) by Edouard-chin
|
|
137
424
|
* Update SPDX license list as of 2026-02-20. Pull request [#9434](https://github.com/ruby/rubygems/pull/9434) by hsbt
|
|
138
425
|
* Installs bundler 4.0.10 as a default gem.
|
|
139
426
|
|
|
140
|
-
|
|
427
|
+
#### Bug fixes:
|
|
141
428
|
|
|
142
429
|
* Register native extension files in default spec map. Pull request [#9431](https://github.com/ruby/rubygems/pull/9431) by hsbt
|
|
143
430
|
* Fix NoMethodError in Gem.try_activate when activation conflicts occur. Pull request [#9404](https://github.com/ruby/rubygems/pull/9404) by hsbt
|
|
144
431
|
|
|
432
|
+
### Bundler
|
|
433
|
+
|
|
434
|
+
#### Enhancements:
|
|
435
|
+
|
|
436
|
+
* Ignore warnings with spec different platforms. Pull request [#8508](https://github.com/ruby/rubygems/pull/8508) by hsbt
|
|
437
|
+
* Improve error message when current platform is not in lockfile. Pull request [#9439](https://github.com/ruby/rubygems/pull/9439) by 55728
|
|
438
|
+
* Cache package version selection. Pull request [#9410](https://github.com/ruby/rubygems/pull/9410) by Edouard-chin
|
|
439
|
+
* Check happy path first when comparing gem version. Pull request [#9417](https://github.com/ruby/rubygems/pull/9417) by Edouard-chin
|
|
440
|
+
* [feature] default_cli_command for config what command bundler runs when no specific command is provided. Pull request [#8886](https://github.com/ruby/rubygems/pull/8886) by jonbarlo
|
|
441
|
+
* Introduce a fast path for comparing Gem::Version. Pull request [#9414](https://github.com/ruby/rubygems/pull/9414) by Edouard-chin
|
|
442
|
+
|
|
443
|
+
#### Bug fixes:
|
|
444
|
+
|
|
445
|
+
* Restore rb_sys dependency for Rust. Pull request [#9416](https://github.com/ruby/rubygems/pull/9416) by bangseongbeom
|
|
446
|
+
|
|
145
447
|
## 4.0.9 / 2026-03-25
|
|
146
448
|
|
|
147
|
-
###
|
|
449
|
+
### RubyGems
|
|
450
|
+
|
|
451
|
+
#### Enhancements:
|
|
148
452
|
|
|
149
453
|
* Fix: include owner role in `gem owner`. Pull request [#9403](https://github.com/ruby/rubygems/pull/9403) by gjtorikian
|
|
150
454
|
* Installs bundler 4.0.9 as a default gem.
|
|
151
455
|
|
|
152
|
-
|
|
456
|
+
#### Bug fixes:
|
|
153
457
|
|
|
154
458
|
* Fix: Ensure trailing slash is added to source URIs added via gem sources. Pull request [#9055](https://github.com/ruby/rubygems/pull/9055) by zirni
|
|
155
459
|
|
|
156
|
-
|
|
460
|
+
#### Documentation:
|
|
157
461
|
|
|
158
462
|
* [DOC] Fix link. Pull request [#9409](https://github.com/ruby/rubygems/pull/9409) by BurdetteLamar
|
|
159
463
|
|
|
464
|
+
### Bundler
|
|
465
|
+
|
|
466
|
+
#### Enhancements:
|
|
467
|
+
|
|
468
|
+
* Check the git version only **once** per `bundle install`. Pull request [#9406](https://github.com/ruby/rubygems/pull/9406) by Edouard-chin
|
|
469
|
+
* Normalize the number of workers when performing parallel operations. Pull request [#9400](https://github.com/ruby/rubygems/pull/9400) by Edouard-chin
|
|
470
|
+
* Add exponential backoff to bundler retries. Pull request [#9163](https://github.com/ruby/rubygems/pull/9163) by ChrisBr
|
|
471
|
+
* Introduce a priority queue. Pull request [#9389](https://github.com/ruby/rubygems/pull/9389) by Edouard-chin
|
|
472
|
+
* Split the download and install process of a gem. Pull request [#9381](https://github.com/ruby/rubygems/pull/9381) by Edouard-chin
|
|
473
|
+
|
|
474
|
+
#### Bug fixes:
|
|
475
|
+
|
|
476
|
+
* Retry git fetch without --depth for dumb HTTP transport. Pull request [#9405](https://github.com/ruby/rubygems/pull/9405) by hsbt
|
|
477
|
+
|
|
160
478
|
## 4.0.8 / 2026-03-11
|
|
161
479
|
|
|
162
|
-
###
|
|
480
|
+
### RubyGems
|
|
481
|
+
|
|
482
|
+
#### Enhancements:
|
|
163
483
|
|
|
164
484
|
* Use JSON for cargo metadata parsing. Pull request
|
|
165
485
|
[#9373](https://github.com/ruby/rubygems/pull/9373) by hsbt
|
|
@@ -168,14 +488,27 @@
|
|
|
168
488
|
[#9362](https://github.com/ruby/rubygems/pull/9362) by afurm
|
|
169
489
|
* Installs bundler 4.0.8 as a default gem.
|
|
170
490
|
|
|
171
|
-
|
|
491
|
+
#### Documentation:
|
|
172
492
|
|
|
173
493
|
* Unify Compact Index API naming. Pull request
|
|
174
494
|
[#9372](https://github.com/ruby/rubygems/pull/9372) by simi
|
|
175
495
|
|
|
496
|
+
### Bundler
|
|
497
|
+
|
|
498
|
+
#### Enhancements:
|
|
499
|
+
|
|
500
|
+
* Add a new Bundler config to control how many specs are fetched [#9363](https://github.com/ruby/rubygems/pull/9363)
|
|
501
|
+
* Restrict GitHub Actions workflow permissions for newgem [#9361](https://github.com/ruby/rubygems/pull/9361)
|
|
502
|
+
|
|
503
|
+
#### Bug fixes:
|
|
504
|
+
|
|
505
|
+
* Fix plugin new version not registering [#9355](https://github.com/ruby/rubygems/pull/9355)
|
|
506
|
+
|
|
176
507
|
## 4.0.7 / 2026-02-25
|
|
177
508
|
|
|
178
|
-
###
|
|
509
|
+
### RubyGems
|
|
510
|
+
|
|
511
|
+
#### Enhancements:
|
|
179
512
|
|
|
180
513
|
* Add Gem.disable_system_update_message in setup.rb. Pull request
|
|
181
514
|
[#9020](https://github.com/ruby/rubygems/pull/9020) by hyuraku
|
|
@@ -183,24 +516,59 @@
|
|
|
183
516
|
[#9312](https://github.com/ruby/rubygems/pull/9312) by hsbt
|
|
184
517
|
* Installs bundler 4.0.7 as a default gem.
|
|
185
518
|
|
|
186
|
-
|
|
519
|
+
#### Documentation:
|
|
187
520
|
|
|
188
521
|
* Document gemspecs must be deterministic. Pull request
|
|
189
522
|
[#9321](https://github.com/ruby/rubygems/pull/9321) by fxn
|
|
190
523
|
* Remove "##" from a comment to require. Pull request
|
|
191
524
|
[#9306](https://github.com/ruby/rubygems/pull/9306) by tompng
|
|
192
525
|
|
|
526
|
+
### Bundler
|
|
527
|
+
|
|
528
|
+
#### Enhancements:
|
|
529
|
+
|
|
530
|
+
* Don't check whether a plugin needs to be installed: [#9328](https://github.com/ruby/rubygems/pull/9328)
|
|
531
|
+
* [rust gem] Major improvements for gem scaffolding (rebased) [#8455](https://github.com/ruby/rubygems/pull/8455)
|
|
532
|
+
* Fix(bundler): only preload git sources for requested groups [#9234](https://github.com/ruby/rubygems/pull/9234)
|
|
533
|
+
* Raise error when gem contains capital letters [#5432](https://github.com/ruby/rubygems/pull/5432)
|
|
534
|
+
|
|
535
|
+
#### Bug fixes:
|
|
536
|
+
|
|
537
|
+
* Fix Bundler crashing when it tries to install plugin: [#9335](https://github.com/ruby/rubygems/pull/9335)
|
|
538
|
+
* Run git operations in parallel (take 2): [#9323](https://github.com/ruby/rubygems/pull/9323)
|
|
539
|
+
* Add support for help flag in plugin commands [#9263](https://github.com/ruby/rubygems/pull/9263)
|
|
540
|
+
|
|
541
|
+
#### Documentation:
|
|
542
|
+
|
|
543
|
+
* [DOC] Fix link in Bundler [#9315](https://github.com/ruby/rubygems/pull/9315)
|
|
544
|
+
|
|
193
545
|
## 4.0.6 / 2026-02-05
|
|
194
546
|
|
|
195
|
-
###
|
|
547
|
+
### RubyGems
|
|
548
|
+
|
|
549
|
+
#### Enhancements:
|
|
196
550
|
|
|
197
551
|
* Update vendored resolv to 0.7.0. Pull request
|
|
198
552
|
[#9298](https://github.com/ruby/rubygems/pull/9298) by hsbt
|
|
199
553
|
* Installs bundler 4.0.6 as a default gem.
|
|
200
554
|
|
|
555
|
+
### Bundler
|
|
556
|
+
|
|
557
|
+
#### Bug fixes:
|
|
558
|
+
|
|
559
|
+
* Fix gzip cache corruption when recovering from HTTP 416 responses [#9272](https://github.com/ruby/rubygems/pull/9272)
|
|
560
|
+
* Fallback git/path sources to default source [#9301](https://github.com/ruby/rubygems/pull/9301)
|
|
561
|
+
* Ensure revision is always re-resolved in `git_proxy.rb` [#9294](https://github.com/ruby/rubygems/pull/9294)
|
|
562
|
+
|
|
563
|
+
#### Documentation:
|
|
564
|
+
|
|
565
|
+
* Clarify local gem override docs to require git-sourced gems [#9305](https://github.com/ruby/rubygems/pull/9305)
|
|
566
|
+
|
|
201
567
|
## 4.0.5 / 2026-01-29
|
|
202
568
|
|
|
203
|
-
###
|
|
569
|
+
### RubyGems
|
|
570
|
+
|
|
571
|
+
#### Enhancements:
|
|
204
572
|
|
|
205
573
|
* Removed unused deprecate loading. Pull request
|
|
206
574
|
[#9266](https://github.com/ruby/rubygems/pull/9266) by hsbt
|
|
@@ -208,70 +576,135 @@
|
|
|
208
576
|
[#9257](https://github.com/ruby/rubygems/pull/9257) by hsbt
|
|
209
577
|
* Installs bundler 4.0.5 as a default gem.
|
|
210
578
|
|
|
211
|
-
|
|
579
|
+
#### Bug fixes:
|
|
212
580
|
|
|
213
581
|
* Fix RubyGems not able to require the right gem:. Pull request
|
|
214
582
|
[#9246](https://github.com/ruby/rubygems/pull/9246) by Edouard-chin
|
|
215
583
|
* Remove special behavior for rake. Pull request
|
|
216
584
|
[#9245](https://github.com/ruby/rubygems/pull/9245) by JasonLunn
|
|
217
585
|
|
|
218
|
-
|
|
586
|
+
#### Documentation:
|
|
219
587
|
|
|
220
588
|
* Added another usage of pristine command. Pull request
|
|
221
589
|
[#9255](https://github.com/ruby/rubygems/pull/9255) by hsbt
|
|
222
590
|
|
|
591
|
+
### Bundler
|
|
592
|
+
|
|
593
|
+
#### Enhancements:
|
|
594
|
+
|
|
595
|
+
* Fix Bundler that re-exec $0 when a `version` is present in the config: [#9249](https://github.com/ruby/rubygems/pull/9249)
|
|
596
|
+
|
|
597
|
+
#### Bug fixes:
|
|
598
|
+
|
|
599
|
+
* Only use parent source with Git and Path sources [#9269](https://github.com/ruby/rubygems/pull/9269)
|
|
600
|
+
|
|
223
601
|
## 4.0.4 / 2026-01-15
|
|
224
602
|
|
|
225
|
-
###
|
|
603
|
+
### RubyGems
|
|
604
|
+
|
|
605
|
+
#### Enhancements:
|
|
226
606
|
|
|
227
607
|
* Remove date require from rebuild command. Pull request
|
|
228
608
|
[#9232](https://github.com/ruby/rubygems/pull/9232) by jeremyevans
|
|
229
609
|
* Installs bundler 4.0.4 as a default gem.
|
|
230
610
|
|
|
231
|
-
|
|
611
|
+
#### Bug fixes:
|
|
232
612
|
|
|
233
613
|
* Add a missing "require 'etc'" statement:. Pull request
|
|
234
614
|
[#9242](https://github.com/ruby/rubygems/pull/9242) by Edouard-chin
|
|
235
615
|
|
|
616
|
+
### Bundler
|
|
617
|
+
|
|
618
|
+
#### Enhancements:
|
|
619
|
+
|
|
620
|
+
* Validate more options for add sub-command [#5905](https://github.com/ruby/rubygems/pull/5905)
|
|
621
|
+
* Support Ruby 4.1 [#9219](https://github.com/ruby/rubygems/pull/9219)
|
|
622
|
+
|
|
623
|
+
#### Bug fixes:
|
|
624
|
+
|
|
625
|
+
* Fix dependency source bug in bundler [#9213](https://github.com/ruby/rubygems/pull/9213)
|
|
626
|
+
* Retain current bundler version on `bundle clean` [#9221](https://github.com/ruby/rubygems/pull/9221)
|
|
627
|
+
|
|
236
628
|
## 4.0.3 / 2025-12-23
|
|
237
629
|
|
|
238
|
-
###
|
|
630
|
+
### RubyGems
|
|
631
|
+
|
|
632
|
+
#### Enhancements:
|
|
239
633
|
|
|
240
634
|
* Installs bundler 4.0.3 as a default gem.
|
|
241
635
|
|
|
242
|
-
|
|
636
|
+
#### Documentation:
|
|
243
637
|
|
|
244
638
|
* Fix broken documentation links. Pull request
|
|
245
639
|
[#9208](https://github.com/ruby/rubygems/pull/9208) by eileencodes
|
|
246
640
|
|
|
641
|
+
### Bundler
|
|
642
|
+
|
|
643
|
+
#### Enhancements:
|
|
644
|
+
|
|
645
|
+
* Fall back to ruby platform gem when precompiled variant is incompatible [#9211](https://github.com/ruby/rubygems/pull/9211)
|
|
646
|
+
|
|
247
647
|
## 4.0.2 / 2025-12-17
|
|
248
648
|
|
|
249
|
-
###
|
|
649
|
+
### RubyGems
|
|
650
|
+
|
|
651
|
+
#### Enhancements:
|
|
250
652
|
|
|
251
653
|
* Pass down value of `BUNDLE_JOBS` to RubyGems before compiling &
|
|
252
654
|
introduce a new `gem install -j` flag. Pull request
|
|
253
655
|
[#9171](https://github.com/ruby/rubygems/pull/9171) by Edouard-chin
|
|
254
656
|
* Installs bundler 4.0.2 as a default gem.
|
|
255
657
|
|
|
658
|
+
### Bundler
|
|
659
|
+
|
|
660
|
+
#### Enhancements:
|
|
661
|
+
|
|
662
|
+
* Support single quotes in mise format ruby version [#9183](https://github.com/ruby/rubygems/pull/9183)
|
|
663
|
+
* Tweak the Bundler's "X gems now installed message": [#9194](https://github.com/ruby/rubygems/pull/9194)
|
|
664
|
+
|
|
665
|
+
#### Bug fixes:
|
|
666
|
+
|
|
667
|
+
* Allow to show cli_help with `bundler` executable [#9198](https://github.com/ruby/rubygems/pull/9198)
|
|
668
|
+
* Allow bundle pristine to work for git gems in the same repo [#9196](https://github.com/ruby/rubygems/pull/9196)
|
|
669
|
+
|
|
256
670
|
## 4.0.1 / 2025-12-09
|
|
257
671
|
|
|
258
|
-
###
|
|
672
|
+
### RubyGems
|
|
673
|
+
|
|
674
|
+
#### Enhancements:
|
|
259
675
|
|
|
260
676
|
* Installs bundler 4.0.1 as a default gem.
|
|
261
677
|
|
|
262
|
-
|
|
678
|
+
#### Bug fixes:
|
|
263
679
|
|
|
264
680
|
* Fixed unexpected default bundler installation. Pull request
|
|
265
681
|
[#9167](https://github.com/ruby/rubygems/pull/9167) by hsbt
|
|
266
682
|
|
|
267
|
-
|
|
683
|
+
#### Documentation:
|
|
268
684
|
|
|
269
685
|
* Update contributing docs with `RGV`. Pull request
|
|
270
686
|
[#9155](https://github.com/ruby/rubygems/pull/9155) by eileencodes
|
|
271
687
|
|
|
688
|
+
### Bundler
|
|
689
|
+
|
|
690
|
+
#### Performance:
|
|
691
|
+
|
|
692
|
+
* Increase connection pool to allow for up to 70% speed increase on `bundle install` [#9087](https://github.com/ruby/rubygems/pull/9087)
|
|
693
|
+
|
|
694
|
+
#### Enhancements:
|
|
695
|
+
|
|
696
|
+
* Fix the config suggestion in the warning for `$ bundle` [#9164](https://github.com/ruby/rubygems/pull/9164)
|
|
697
|
+
* Fix native extension loading in newgem template for RHEL-based systems [#9156](https://github.com/ruby/rubygems/pull/9156)
|
|
698
|
+
|
|
699
|
+
#### Bug fixes:
|
|
700
|
+
|
|
701
|
+
* Fix Bundler removing executables after creating them [#9169](https://github.com/ruby/rubygems/pull/9169)
|
|
702
|
+
|
|
272
703
|
## 4.0.0 / 2025-12-03
|
|
273
704
|
|
|
274
|
-
###
|
|
705
|
+
### RubyGems
|
|
706
|
+
|
|
707
|
+
#### Features:
|
|
275
708
|
|
|
276
709
|
* Undeprecate `Gem::Version.new(nil)`. Pull request
|
|
277
710
|
[#9086](https://github.com/ruby/rubygems/pull/9086) by tenderlove
|
|
@@ -280,7 +713,7 @@
|
|
|
280
713
|
* Add pattern matching support to Gem::Platform. Pull request
|
|
281
714
|
[#9062](https://github.com/ruby/rubygems/pull/9062) by baweaver
|
|
282
715
|
|
|
283
|
-
|
|
716
|
+
#### Performance:
|
|
284
717
|
|
|
285
718
|
* Add `MAKEFLAGS=-j` by default before compiling. Pull request
|
|
286
719
|
[#9131](https://github.com/ruby/rubygems/pull/9131) by Edouard-chin
|
|
@@ -297,7 +730,7 @@
|
|
|
297
730
|
* Use File#chmod rather than FileUtils.chmod. Pull request
|
|
298
731
|
[#8965](https://github.com/ruby/rubygems/pull/8965) by tenderlove
|
|
299
732
|
|
|
300
|
-
|
|
733
|
+
#### Enhancements:
|
|
301
734
|
|
|
302
735
|
* Update all vendored libraries to latest version. Pull request
|
|
303
736
|
[#9089](https://github.com/ruby/rubygems/pull/9089) by hsbt
|
|
@@ -333,7 +766,7 @@
|
|
|
333
766
|
deivid-rodriguez
|
|
334
767
|
* Installs bundler 4.0.0 as a default gem.
|
|
335
768
|
|
|
336
|
-
|
|
769
|
+
#### Bug fixes:
|
|
337
770
|
|
|
338
771
|
* Fix test failure of mswin and nmake. Pull request
|
|
339
772
|
[#9135](https://github.com/ruby/rubygems/pull/9135) by hsbt
|
|
@@ -345,12 +778,12 @@
|
|
|
345
778
|
request [#8939](https://github.com/ruby/rubygems/pull/8939) by
|
|
346
779
|
deivid-rodriguez
|
|
347
780
|
|
|
348
|
-
|
|
781
|
+
#### Security:
|
|
349
782
|
|
|
350
783
|
* Bump up vendored URI to 1.0.4. Pull request
|
|
351
784
|
[#9031](https://github.com/ruby/rubygems/pull/9031) by hsbt
|
|
352
785
|
|
|
353
|
-
|
|
786
|
+
#### Breaking changes:
|
|
354
787
|
|
|
355
788
|
* Removed deprecated `-C` option from gem build. Pull request
|
|
356
789
|
[#9088](https://github.com/ruby/rubygems/pull/9088) by hsbt
|
|
@@ -369,12 +802,12 @@
|
|
|
369
802
|
* Removed `compatibility.rb` for RG 4.0. Pull request
|
|
370
803
|
[#8899](https://github.com/ruby/rubygems/pull/8899) by hsbt
|
|
371
804
|
|
|
372
|
-
|
|
805
|
+
#### Deprecations:
|
|
373
806
|
|
|
374
807
|
* Deprecate `Gem::Specification#datadir`. Pull request
|
|
375
808
|
[#8900](https://github.com/ruby/rubygems/pull/8900) by hsbt
|
|
376
809
|
|
|
377
|
-
|
|
810
|
+
#### Documentation:
|
|
378
811
|
|
|
379
812
|
* Unified UPGRADING.md and extract blog.rubygems.org. Pull request
|
|
380
813
|
[#9148](https://github.com/ruby/rubygems/pull/9148) by hsbt
|
|
@@ -391,6 +824,110 @@
|
|
|
391
824
|
* Update Code of Conduct email to conduct@rubygems.org. Pull request
|
|
392
825
|
[#8848](https://github.com/ruby/rubygems/pull/8848) by indirect
|
|
393
826
|
|
|
827
|
+
### Bundler
|
|
828
|
+
|
|
829
|
+
#### Features:
|
|
830
|
+
|
|
831
|
+
* Support bundle install --lockfile option [#9111](https://github.com/ruby/rubygems/pull/9111)
|
|
832
|
+
* Add support for lockfile in Gemfile and bundle install --no-lock [#9059](https://github.com/ruby/rubygems/pull/9059)
|
|
833
|
+
* Add `--ext=go` to `bundle gem` [#8183](https://github.com/ruby/rubygems/pull/8183)
|
|
834
|
+
* Update Bundler::CurrentRuby::ALL_RUBY_VERSIONS [#9058](https://github.com/ruby/rubygems/pull/9058)
|
|
835
|
+
* Introduce `bundle list --format=json` [#8728](https://github.com/ruby/rubygems/pull/8728)
|
|
836
|
+
|
|
837
|
+
#### Performance:
|
|
838
|
+
|
|
839
|
+
* Run git operations in parallel to speed things up: [#9100](https://github.com/ruby/rubygems/pull/9100)
|
|
840
|
+
* Replace instance method look up in plugin installer [#9094](https://github.com/ruby/rubygems/pull/9094)
|
|
841
|
+
* Adjust the API_REQUEST_LIMIT to make less network roundtrip [#9071](https://github.com/ruby/rubygems/pull/9071)
|
|
842
|
+
|
|
843
|
+
#### Enhancements:
|
|
844
|
+
|
|
845
|
+
* Make BUNDLE_LOCKFILE environment variable have precedence over lockfile method in Gemfile [#9146](https://github.com/ruby/rubygems/pull/9146)
|
|
846
|
+
* Improve banner message for the default command [#9145](https://github.com/ruby/rubygems/pull/9145)
|
|
847
|
+
* Introduce `install_or_cli_help` and use it default `bundle` command [#9136](https://github.com/ruby/rubygems/pull/9136)
|
|
848
|
+
* Add go_gem/rake_task for Go native extension gem skeleton [#9105](https://github.com/ruby/rubygems/pull/9105)
|
|
849
|
+
* Warn users that `bundle` now display the help: [#9092](https://github.com/ruby/rubygems/pull/9092)
|
|
850
|
+
* Use DidYouMean::SpellChecker for gem suggestions in Bundler [#3857](https://github.com/ruby/rubygems/pull/3857)
|
|
851
|
+
* Update all vendored libraries to latest version [#9089](https://github.com/ruby/rubygems/pull/9089)
|
|
852
|
+
* We don't need to allow some warning now [#9074](https://github.com/ruby/rubygems/pull/9074)
|
|
853
|
+
* Support to embedded Pathname [#9056](https://github.com/ruby/rubygems/pull/9056)
|
|
854
|
+
* Enforce activation of irb when running with bundle console [#9033](https://github.com/ruby/rubygems/pull/9033)
|
|
855
|
+
* Update Magnus version in Rust extension gem template [#9025](https://github.com/ruby/rubygems/pull/9025)
|
|
856
|
+
* Add checksum of gems hosted on private servers: [#9004](https://github.com/ruby/rubygems/pull/9004)
|
|
857
|
+
* Loading support on Windows [#8254](https://github.com/ruby/rubygems/pull/8254)
|
|
858
|
+
* Improve error message when the same source is specified through `gemspec` and `path` [#8460](https://github.com/ruby/rubygems/pull/8460)
|
|
859
|
+
* Raise an error in frozen mode if some registry gems have empty checksums [#8888](https://github.com/ruby/rubygems/pull/8888)
|
|
860
|
+
* Bump vendored thor to 1.4.0 [#8883](https://github.com/ruby/rubygems/pull/8883)
|
|
861
|
+
* Delay default path and global cache changes to Bundler 5 [#8867](https://github.com/ruby/rubygems/pull/8867)
|
|
862
|
+
* Fix spacing in bundle gem newgem.gemspec.tt [#8865](https://github.com/ruby/rubygems/pull/8865)
|
|
863
|
+
* Add some missing deprecation messages [#8844](https://github.com/ruby/rubygems/pull/8844)
|
|
864
|
+
|
|
865
|
+
#### Bug fixes:
|
|
866
|
+
|
|
867
|
+
* Fixed checksums generation issue when no source is specified [#9133](https://github.com/ruby/rubygems/pull/9133)
|
|
868
|
+
* Check for file existence before deletion from cache [#9095](https://github.com/ruby/rubygems/pull/9095)
|
|
869
|
+
* Use method_defined?(:method, false) [#9098](https://github.com/ruby/rubygems/pull/9098)
|
|
870
|
+
* Handle BUNDLER_VERSION being set to an empty string [#6928](https://github.com/ruby/rubygems/pull/6928)
|
|
871
|
+
* Fix `bundle install` when the Gemfile contains "install_if" git gems: [#8992](https://github.com/ruby/rubygems/pull/8992)
|
|
872
|
+
* Fix installation issue related to path sources and precompiled gems [#8973](https://github.com/ruby/rubygems/pull/8973)
|
|
873
|
+
* Fix outdated lockfile during `bundle lock` when source changes [#8962](https://github.com/ruby/rubygems/pull/8962)
|
|
874
|
+
* Raise error on missing version file [#8963](https://github.com/ruby/rubygems/pull/8963)
|
|
875
|
+
* Fix `bundle cache --frozen` and `bundle cache --no-prune` not printing a deprecation message [#8926](https://github.com/ruby/rubygems/pull/8926)
|
|
876
|
+
* 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)
|
|
877
|
+
* Fix `bundle lock --update <gem>` with `--lockfile` flag updating all gems [#8922](https://github.com/ruby/rubygems/pull/8922)
|
|
878
|
+
* Fix `bundle show --verbose` and recommend it as an alternative to `bundle show --outdated` [#8915](https://github.com/ruby/rubygems/pull/8915)
|
|
879
|
+
* Fix `bundle cache --no-all` not printing a deprecation warning [#8912](https://github.com/ruby/rubygems/pull/8912)
|
|
880
|
+
* Fix `bundle update foo` unable to update foo in an edge case [#8897](https://github.com/ruby/rubygems/pull/8897)
|
|
881
|
+
* Fix Bundler printing more flags than actually passed in verbose mode [#8914](https://github.com/ruby/rubygems/pull/8914)
|
|
882
|
+
* Fix bundler failing to install sorbet-static in truffleruby when there's no lockfile [#8872](https://github.com/ruby/rubygems/pull/8872)
|
|
883
|
+
* Cancel deprecation of `--force` flag to `bundle install` and `bundle update` [#8843](https://github.com/ruby/rubygems/pull/8843)
|
|
884
|
+
|
|
885
|
+
#### Security:
|
|
886
|
+
|
|
887
|
+
* Bump up vendored URI to 1.0.4 [#9031](https://github.com/ruby/rubygems/pull/9031)
|
|
888
|
+
|
|
889
|
+
#### Breaking changes:
|
|
890
|
+
|
|
891
|
+
* Fix triple spacing when generating lockfile [#9076](https://github.com/ruby/rubygems/pull/9076)
|
|
892
|
+
* Hide patchlevel from lockfile [#7772](https://github.com/ruby/rubygems/pull/7772)
|
|
893
|
+
* Remove `bundler_4_mode` [#9038](https://github.com/ruby/rubygems/pull/9038)
|
|
894
|
+
* Pick and add extra changes for 4.0.0 version [#9018](https://github.com/ruby/rubygems/pull/9018)
|
|
895
|
+
* Replaced Bundler::SharedHelpers.major_deprecation to feature_removed! or feature_deprecated! [#9016](https://github.com/ruby/rubygems/pull/9016)
|
|
896
|
+
* Removed legacy_check option from SpecSet#for [#9015](https://github.com/ruby/rubygems/pull/9015)
|
|
897
|
+
* Make update_requires_all_flag to settings [#9011](https://github.com/ruby/rubygems/pull/9011)
|
|
898
|
+
* Make default cli command settings [#9010](https://github.com/ruby/rubygems/pull/9010)
|
|
899
|
+
* Make global_gem_cache flag to settings [#9009](https://github.com/ruby/rubygems/pull/9009)
|
|
900
|
+
* Consolidate removal of `Bundler.rubygems.all_specs` [#9008](https://github.com/ruby/rubygems/pull/9008)
|
|
901
|
+
* Consolidate removal of `Bundler::SpecSet#-` and `Bundler::SpecSet#<<` [#9007](https://github.com/ruby/rubygems/pull/9007)
|
|
902
|
+
* Replaced Bundler.feature_flag.plugins? to Bundler.settings [#9006](https://github.com/ruby/rubygems/pull/9006)
|
|
903
|
+
* Make `bundle show --outdated` raise an error [#8980](https://github.com/ruby/rubygems/pull/8980)
|
|
904
|
+
* Make `--local-git` flag to `bundle plugin install` raise an error [#8979](https://github.com/ruby/rubygems/pull/8979)
|
|
905
|
+
* Switch `cache_all` to be `true` by default [#8975](https://github.com/ruby/rubygems/pull/8975)
|
|
906
|
+
* Completely forbid passing `--ext` to `bundle gem` without a value [#8976](https://github.com/ruby/rubygems/pull/8976)
|
|
907
|
+
* Switch `lockfile_checksums` to be `true` by default [#8981](https://github.com/ruby/rubygems/pull/8981)
|
|
908
|
+
* Make `bundle install --binstubs` raise an error [#8978](https://github.com/ruby/rubygems/pull/8978)
|
|
909
|
+
* Make `bundle remove --install` raise an error [#8977](https://github.com/ruby/rubygems/pull/8977)
|
|
910
|
+
* Remove support for multiple global sources in Gemfile & lockfile [#8968](https://github.com/ruby/rubygems/pull/8968)
|
|
911
|
+
* Remove `allow_offline_install` setting [#8969](https://github.com/ruby/rubygems/pull/8969)
|
|
912
|
+
* Completely remove `--rubocop` flag to `bundle gem`, and related configuration [#8967](https://github.com/ruby/rubygems/pull/8967)
|
|
913
|
+
* Completely remove all remembered CLI flags [#8958](https://github.com/ruby/rubygems/pull/8958)
|
|
914
|
+
* Remove implementation of `deployment`, `capistrano` and `vlad` entrypoints [#8957](https://github.com/ruby/rubygems/pull/8957)
|
|
915
|
+
* Remove deprecated `Bundler.*clean*`, and `Bundler.environment` helpers [#8924](https://github.com/ruby/rubygems/pull/8924)
|
|
916
|
+
* Remove deprecated `bundle viz` and `bundle inject` commands [#8923](https://github.com/ruby/rubygems/pull/8923)
|
|
917
|
+
* Removed to workaround for Bundler 2.2 [#8903](https://github.com/ruby/rubygems/pull/8903)
|
|
918
|
+
|
|
919
|
+
#### Documentation:
|
|
920
|
+
|
|
921
|
+
* Unified UPGRADING.md and extract blog.rubygems.org [#9148](https://github.com/ruby/rubygems/pull/9148)
|
|
922
|
+
* Remove italic formatting from changelog section headers [#9128](https://github.com/ruby/rubygems/pull/9128)
|
|
923
|
+
* Small clarifications to Bundler 4 upgrade docs [#8964](https://github.com/ruby/rubygems/pull/8964)
|
|
924
|
+
* Improve documentation of `bundle doctor`, `bundle plugin`, and `bundle config` [#8919](https://github.com/ruby/rubygems/pull/8919)
|
|
925
|
+
* Make sure all CLI flags and subcommands are documented [#8861](https://github.com/ruby/rubygems/pull/8861)
|
|
926
|
+
* Clarify documentation about new default gem installation directory in Bundler 4 [#8857](https://github.com/ruby/rubygems/pull/8857)
|
|
927
|
+
* Use mailto link in Code of Conduct [#8849](https://github.com/ruby/rubygems/pull/8849)
|
|
928
|
+
* Update Code of Conduct email to conduct@rubygems.org [#8848](https://github.com/ruby/rubygems/pull/8848)
|
|
929
|
+
* Add missing link to `irb` repo in DEBUGGING.md [#8842](https://github.com/ruby/rubygems/pull/8842)
|
|
930
|
+
|
|
394
931
|
## 3.7.2 / 2025-09-09
|
|
395
932
|
|
|
396
933
|
### Enhancements:
|