rubygems-update 3.2.30 → 3.4.10
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 +1666 -994
- data/CONTRIBUTING.md +71 -15
- data/Manifest.txt +93 -37
- data/POLICIES.md +65 -16
- data/README.md +28 -13
- data/UPGRADING.md +5 -81
- data/bin/gem +2 -10
- data/bin/update_rubygems +5 -5
- data/bundler/CHANGELOG.md +647 -1
- data/bundler/README.md +3 -6
- data/bundler/UPGRADING.md +11 -4
- data/bundler/bundler.gemspec +8 -10
- data/bundler/exe/bundle +7 -11
- data/bundler/exe/bundler +1 -1
- data/bundler/lib/bundler/.document +1 -0
- data/bundler/lib/bundler/build_metadata.rb +3 -3
- data/bundler/lib/bundler/cli/add.rb +1 -1
- data/bundler/lib/bundler/cli/binstubs.rb +5 -1
- data/bundler/lib/bundler/cli/check.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +4 -2
- data/bundler/lib/bundler/cli/config.rb +10 -1
- data/bundler/lib/bundler/cli/console.rb +2 -2
- data/bundler/lib/bundler/cli/doctor.rb +10 -3
- data/bundler/lib/bundler/cli/gem.rb +136 -42
- data/bundler/lib/bundler/cli/info.rb +17 -3
- data/bundler/lib/bundler/cli/init.rb +6 -2
- data/bundler/lib/bundler/cli/install.rb +15 -33
- data/bundler/lib/bundler/cli/lock.rb +8 -5
- data/bundler/lib/bundler/cli/open.rb +6 -4
- data/bundler/lib/bundler/cli/outdated.rb +13 -6
- data/bundler/lib/bundler/cli/platform.rb +2 -2
- data/bundler/lib/bundler/cli/show.rb +1 -1
- data/bundler/lib/bundler/cli/update.rb +8 -4
- data/bundler/lib/bundler/cli/viz.rb +1 -1
- data/bundler/lib/bundler/cli.rb +67 -21
- data/bundler/lib/bundler/compact_index_client/cache.rb +1 -10
- data/bundler/lib/bundler/compact_index_client/updater.rb +53 -44
- data/bundler/lib/bundler/compact_index_client.rb +0 -6
- data/bundler/lib/bundler/constants.rb +1 -1
- data/bundler/lib/bundler/current_ruby.rb +18 -6
- data/bundler/lib/bundler/definition.rb +259 -242
- data/bundler/lib/bundler/dependency.rb +24 -71
- data/bundler/lib/bundler/digest.rb +1 -1
- data/bundler/lib/bundler/dsl.rb +29 -46
- data/bundler/lib/bundler/endpoint_specification.rb +15 -13
- data/bundler/lib/bundler/env.rb +2 -2
- data/bundler/lib/bundler/environment_preserver.rb +7 -3
- data/bundler/lib/bundler/errors.rb +15 -15
- data/bundler/lib/bundler/feature_flag.rb +0 -1
- data/bundler/lib/bundler/fetcher/base.rb +6 -8
- data/bundler/lib/bundler/fetcher/compact_index.rb +18 -25
- data/bundler/lib/bundler/fetcher/dependency.rb +2 -6
- data/bundler/lib/bundler/fetcher/downloader.rb +2 -5
- data/bundler/lib/bundler/fetcher/index.rb +0 -26
- data/bundler/lib/bundler/fetcher.rb +22 -29
- data/bundler/lib/bundler/force_platform.rb +18 -0
- data/bundler/lib/bundler/friendly_errors.rb +21 -7
- data/bundler/lib/bundler/gem_helper.rb +4 -4
- data/bundler/lib/bundler/gem_helpers.rb +9 -2
- data/bundler/lib/bundler/gem_version_promoter.rb +53 -98
- data/bundler/lib/bundler/graph.rb +3 -3
- data/bundler/lib/bundler/index.rb +13 -51
- data/bundler/lib/bundler/injector.rb +18 -4
- data/bundler/lib/bundler/inline.rb +9 -21
- data/bundler/lib/bundler/installer/gem_installer.rb +13 -5
- data/bundler/lib/bundler/installer/parallel_installer.rb +3 -33
- data/bundler/lib/bundler/installer/standalone.rb +42 -11
- data/bundler/lib/bundler/installer.rb +20 -44
- data/bundler/lib/bundler/lazy_specification.rb +72 -55
- data/bundler/lib/bundler/lockfile_generator.rb +3 -3
- data/bundler/lib/bundler/lockfile_parser.rb +28 -26
- data/bundler/lib/bundler/man/bundle-add.1 +21 -5
- data/bundler/lib/bundler/man/bundle-add.1.ronn +16 -4
- data/bundler/lib/bundler/man/bundle-binstubs.1 +1 -1
- data/bundler/lib/bundler/man/bundle-cache.1 +7 -1
- data/bundler/lib/bundler/man/bundle-cache.1.ronn +7 -0
- data/bundler/lib/bundler/man/bundle-check.1 +1 -1
- data/bundler/lib/bundler/man/bundle-clean.1 +2 -2
- data/bundler/lib/bundler/man/bundle-clean.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-config.1 +34 -15
- data/bundler/lib/bundler/man/bundle-config.1.ronn +31 -19
- data/bundler/lib/bundler/man/bundle-console.1 +53 -0
- data/bundler/lib/bundler/man/bundle-console.1.ronn +44 -0
- data/bundler/lib/bundler/man/bundle-doctor.1 +1 -1
- data/bundler/lib/bundler/man/bundle-exec.1 +6 -6
- data/bundler/lib/bundler/man/bundle-exec.1.ronn +6 -6
- data/bundler/lib/bundler/man/bundle-gem.1 +37 -34
- data/bundler/lib/bundler/man/bundle-gem.1.ronn +21 -5
- data/bundler/lib/bundler/man/bundle-help.1 +13 -0
- data/bundler/lib/bundler/man/bundle-help.1.ronn +12 -0
- data/bundler/lib/bundler/man/bundle-info.1 +1 -1
- data/bundler/lib/bundler/man/bundle-init.1 +5 -1
- data/bundler/lib/bundler/man/bundle-init.1.ronn +2 -0
- data/bundler/lib/bundler/man/bundle-inject.1 +5 -2
- data/bundler/lib/bundler/man/bundle-inject.1.ronn +3 -1
- data/bundler/lib/bundler/man/bundle-install.1 +6 -31
- data/bundler/lib/bundler/man/bundle-install.1.ronn +8 -31
- data/bundler/lib/bundler/man/bundle-list.1 +1 -1
- data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
- data/bundler/lib/bundler/man/bundle-open.1 +22 -2
- data/bundler/lib/bundler/man/bundle-open.1.ronn +9 -1
- data/bundler/lib/bundler/man/bundle-outdated.1 +3 -10
- data/bundler/lib/bundler/man/bundle-outdated.1.ronn +1 -10
- data/bundler/lib/bundler/man/bundle-platform.1 +16 -6
- data/bundler/lib/bundler/man/bundle-platform.1.ronn +14 -7
- data/bundler/lib/bundler/man/bundle-plugin.1 +81 -0
- data/bundler/lib/bundler/man/bundle-plugin.1.ronn +59 -0
- data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
- data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
- data/bundler/lib/bundler/man/bundle-show.1 +1 -1
- data/bundler/lib/bundler/man/bundle-update.1 +2 -2
- data/bundler/lib/bundler/man/bundle-update.1.ronn +2 -1
- data/bundler/lib/bundler/man/bundle-version.1 +35 -0
- data/bundler/lib/bundler/man/bundle-version.1.ronn +24 -0
- data/bundler/lib/bundler/man/bundle-viz.1 +4 -1
- data/bundler/lib/bundler/man/bundle-viz.1.ronn +2 -0
- data/bundler/lib/bundler/man/bundle.1 +15 -10
- data/bundler/lib/bundler/man/bundle.1.ronn +12 -7
- data/bundler/lib/bundler/man/gemfile.5 +117 -80
- data/bundler/lib/bundler/man/gemfile.5.ronn +105 -84
- data/bundler/lib/bundler/man/index.txt +4 -0
- data/bundler/lib/bundler/match_metadata.rb +13 -0
- data/bundler/lib/bundler/match_platform.rb +0 -1
- data/bundler/lib/bundler/match_remote_metadata.rb +29 -0
- data/bundler/lib/bundler/mirror.rb +5 -7
- data/bundler/lib/bundler/plugin/api/source.rb +4 -9
- data/bundler/lib/bundler/plugin/index.rb +4 -4
- data/bundler/lib/bundler/plugin/installer/git.rb +0 -4
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +0 -8
- data/bundler/lib/bundler/plugin/installer.rb +6 -3
- data/bundler/lib/bundler/plugin.rb +3 -1
- data/bundler/lib/bundler/process_lock.rb +1 -1
- data/bundler/lib/bundler/remote_specification.rb +7 -5
- data/bundler/lib/bundler/resolver/base.rb +109 -0
- data/bundler/lib/bundler/resolver/candidate.rb +94 -0
- data/bundler/lib/bundler/resolver/incompatibility.rb +15 -0
- data/bundler/lib/bundler/resolver/package.rb +72 -0
- data/bundler/lib/bundler/resolver/root.rb +25 -0
- data/bundler/lib/bundler/resolver/spec_group.rb +43 -71
- data/bundler/lib/bundler/resolver.rb +332 -308
- data/bundler/lib/bundler/ruby_dsl.rb +1 -1
- data/bundler/lib/bundler/ruby_version.rb +5 -18
- data/bundler/lib/bundler/rubygems_ext.rb +144 -25
- data/bundler/lib/bundler/rubygems_gem_installer.rb +32 -20
- data/bundler/lib/bundler/rubygems_integration.rb +24 -95
- data/bundler/lib/bundler/runtime.rb +2 -7
- data/bundler/lib/bundler/self_manager.rb +168 -0
- data/bundler/lib/bundler/settings.rb +5 -10
- data/bundler/lib/bundler/setup.rb +4 -1
- data/bundler/lib/bundler/shared_helpers.rb +17 -25
- data/bundler/lib/bundler/source/git/git_proxy.rb +219 -71
- data/bundler/lib/bundler/source/git.rb +23 -26
- data/bundler/lib/bundler/source/metadata.rb +3 -4
- data/bundler/lib/bundler/source/path/installer.rb +1 -22
- data/bundler/lib/bundler/source/path.rb +7 -7
- data/bundler/lib/bundler/source/rubygems.rb +91 -130
- data/bundler/lib/bundler/source/rubygems_aggregate.rb +1 -1
- data/bundler/lib/bundler/source.rb +4 -5
- data/bundler/lib/bundler/source_list.rb +19 -31
- data/bundler/lib/bundler/source_map.rb +15 -2
- data/bundler/lib/bundler/spec_set.rb +63 -35
- data/bundler/lib/bundler/stub_specification.rb +5 -3
- data/bundler/lib/bundler/templates/Executable +3 -5
- data/bundler/lib/bundler/templates/Executable.bundler +6 -11
- data/bundler/lib/bundler/templates/Executable.standalone +4 -4
- data/bundler/lib/bundler/templates/Gemfile +0 -2
- data/bundler/lib/bundler/templates/newgem/Cargo.toml.tt +7 -0
- data/bundler/lib/bundler/templates/newgem/Gemfile.tt +8 -2
- data/bundler/lib/bundler/templates/newgem/README.md.tt +7 -11
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +27 -3
- data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +12 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +15 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +6 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +12 -0
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +13 -3
- data/bundler/lib/bundler/templates/newgem/gitignore.tt +3 -0
- data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +13 -4
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +22 -16
- data/bundler/lib/bundler/templates/newgem/sig/newgem.rbs.tt +8 -0
- data/bundler/lib/bundler/templates/newgem/standard.yml.tt +3 -0
- data/bundler/lib/bundler/templates/newgem/test/minitest/{newgem_test.rb.tt → test_newgem.rb.tt} +1 -1
- data/bundler/lib/bundler/ui/shell.rb +36 -13
- data/bundler/lib/bundler/ui/silent.rb +21 -5
- data/bundler/lib/bundler/uri_normalizer.rb +23 -0
- data/bundler/lib/bundler/vendor/.document +1 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +3 -3
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +0 -1
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +3 -1
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +1350 -408
- data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +1 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1 -1
- data/bundler/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +189 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +150 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +60 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb +105 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb +3 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb +129 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +411 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +243 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb +178 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +31 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +6 -6
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +1 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +6 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +6 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +9 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +19 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +23 -5
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/bundler/lib/bundler/vendor/tsort/LICENSE.txt +22 -0
- data/bundler/lib/bundler/vendor/tsort/lib/tsort.rb +452 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +76 -91
- data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +7 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +2 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +32 -13
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +40 -3
- data/bundler/lib/bundler/vendor/uri/lib/uri/https.rb +2 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb +2 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb +2 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +2 -3
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +14 -21
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +11 -17
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/ws.rb +83 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/wss.rb +23 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri.rb +3 -3
- data/bundler/lib/bundler/vendored_persistent.rb +1 -33
- data/bundler/lib/bundler/{vendored_molinillo.rb → vendored_pub_grub.rb} +1 -1
- data/bundler/lib/bundler/{vendored_tmpdir.rb → vendored_tsort.rb} +1 -1
- data/bundler/lib/bundler/version.rb +5 -1
- data/bundler/lib/bundler/worker.rb +5 -7
- data/bundler/lib/bundler.rb +50 -77
- data/hide_lib_for_update/note.txt +0 -4
- data/lib/rubygems/available_set.rb +3 -3
- data/lib/rubygems/basic_specification.rb +12 -12
- data/lib/rubygems/bundler_version_finder.rb +14 -46
- data/lib/rubygems/command.rb +47 -39
- data/lib/rubygems/command_manager.rb +34 -13
- data/lib/rubygems/commands/build_command.rb +11 -8
- data/lib/rubygems/commands/cert_command.rb +39 -39
- data/lib/rubygems/commands/check_command.rb +20 -20
- data/lib/rubygems/commands/cleanup_command.rb +23 -23
- data/lib/rubygems/commands/contents_command.rb +13 -13
- data/lib/rubygems/commands/dependency_command.rb +35 -45
- data/lib/rubygems/commands/environment_command.rb +10 -7
- data/lib/rubygems/commands/exec_command.rb +248 -0
- data/lib/rubygems/commands/fetch_command.rb +32 -13
- data/lib/rubygems/commands/generate_index_command.rb +17 -17
- data/lib/rubygems/commands/help_command.rb +6 -6
- data/lib/rubygems/commands/info_command.rb +3 -3
- data/lib/rubygems/commands/install_command.rb +31 -24
- data/lib/rubygems/commands/list_command.rb +4 -4
- data/lib/rubygems/commands/lock_command.rb +4 -4
- data/lib/rubygems/commands/mirror_command.rb +3 -3
- data/lib/rubygems/commands/open_command.rb +9 -9
- data/lib/rubygems/commands/outdated_command.rb +5 -5
- data/lib/rubygems/commands/owner_command.rb +17 -12
- data/lib/rubygems/commands/pristine_command.rb +64 -49
- data/lib/rubygems/commands/push_command.rb +16 -16
- data/lib/rubygems/commands/query_command.rb +9 -9
- data/lib/rubygems/commands/rdoc_command.rb +26 -25
- data/lib/rubygems/commands/search_command.rb +4 -4
- data/lib/rubygems/commands/server_command.rb +16 -79
- data/lib/rubygems/commands/setup_command.rb +172 -173
- data/lib/rubygems/commands/signin_command.rb +9 -9
- data/lib/rubygems/commands/signout_command.rb +7 -7
- data/lib/rubygems/commands/sources_command.rb +22 -22
- data/lib/rubygems/commands/specification_command.rb +18 -18
- data/lib/rubygems/commands/stale_command.rb +2 -2
- data/lib/rubygems/commands/uninstall_command.rb +43 -40
- data/lib/rubygems/commands/unpack_command.rb +13 -13
- data/lib/rubygems/commands/update_command.rb +61 -72
- data/lib/rubygems/commands/which_command.rb +7 -7
- data/lib/rubygems/commands/yank_command.rb +11 -11
- data/lib/rubygems/compatibility.rb +4 -2
- data/lib/rubygems/config_file.rb +58 -25
- data/lib/rubygems/core_ext/kernel_gem.rb +1 -6
- data/lib/rubygems/core_ext/kernel_require.rb +108 -115
- data/lib/rubygems/core_ext/kernel_warn.rb +33 -37
- data/lib/rubygems/core_ext/tcpsocket_init.rb +1 -1
- data/lib/rubygems/defaults.rb +32 -36
- data/lib/rubygems/dependency.rb +20 -17
- data/lib/rubygems/dependency_installer.rb +37 -37
- data/lib/rubygems/dependency_list.rb +7 -7
- data/lib/rubygems/deprecate.rb +55 -8
- data/lib/rubygems/doctor.rb +21 -21
- data/lib/rubygems/errors.rb +3 -6
- data/lib/rubygems/exceptions.rb +35 -7
- data/lib/rubygems/ext/build_error.rb +1 -1
- data/lib/rubygems/ext/builder.rb +51 -22
- data/lib/rubygems/ext/cargo_builder/link_flag_converter.rb +27 -0
- data/lib/rubygems/ext/cargo_builder.rb +360 -0
- data/lib/rubygems/ext/cmake_builder.rb +2 -2
- data/lib/rubygems/ext/configure_builder.rb +1 -1
- data/lib/rubygems/ext/ext_conf_builder.rb +35 -59
- data/lib/rubygems/ext/rake_builder.rb +3 -3
- data/lib/rubygems/ext.rb +7 -6
- data/lib/rubygems/gem_runner.rb +12 -16
- data/lib/rubygems/gemcutter_utilities.rb +60 -21
- data/lib/rubygems/indexer.rb +30 -28
- data/lib/rubygems/install_default_message.rb +2 -2
- data/lib/rubygems/install_message.rb +2 -2
- data/lib/rubygems/install_update_options.rb +70 -61
- data/lib/rubygems/installer.rb +135 -87
- data/lib/rubygems/installer_uninstaller_utils.rb +2 -2
- data/lib/rubygems/local_remote_options.rb +22 -24
- data/lib/rubygems/mock_gem_ui.rb +2 -2
- data/lib/rubygems/name_tuple.rb +6 -7
- data/lib/rubygems/optparse/.document +1 -0
- data/lib/rubygems/optparse/COPYING +56 -0
- data/lib/rubygems/optparse/lib/optionparser.rb +2 -0
- data/lib/rubygems/optparse/lib/optparse/ac.rb +54 -0
- data/lib/rubygems/optparse/lib/optparse/date.rb +18 -0
- data/lib/rubygems/optparse/lib/optparse/kwargs.rb +22 -0
- data/lib/rubygems/optparse/lib/optparse/shellwords.rb +7 -0
- data/lib/rubygems/optparse/lib/optparse/time.rb +11 -0
- data/lib/rubygems/optparse/lib/optparse/uri.rb +7 -0
- data/lib/rubygems/optparse/lib/optparse/version.rb +71 -0
- data/lib/rubygems/optparse/lib/optparse.rb +2308 -0
- data/lib/rubygems/optparse.rb +3 -0
- data/lib/rubygems/package/file_source.rb +2 -2
- data/lib/rubygems/package/old.rb +9 -9
- data/lib/rubygems/package/tar_header.rb +62 -62
- data/lib/rubygems/package/tar_reader/entry.rb +90 -9
- data/lib/rubygems/package/tar_reader.rb +1 -29
- data/lib/rubygems/package/tar_writer.rb +7 -7
- data/lib/rubygems/package.rb +77 -60
- data/lib/rubygems/package_task.rb +4 -4
- data/lib/rubygems/path_support.rb +1 -6
- data/lib/rubygems/platform.rb +94 -61
- data/lib/rubygems/psych_tree.rb +1 -1
- data/lib/rubygems/query_utils.rb +49 -51
- data/lib/rubygems/rdoc.rb +2 -2
- data/lib/rubygems/remote_fetcher.rb +27 -27
- data/lib/rubygems/request/connection_pools.rb +4 -4
- data/lib/rubygems/request/http_pool.rb +1 -1
- data/lib/rubygems/request.rb +24 -24
- data/lib/rubygems/request_set/gem_dependency_api.rb +122 -123
- data/lib/rubygems/request_set/lockfile/parser.rb +26 -26
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +4 -4
- data/lib/rubygems/request_set/lockfile.rb +9 -9
- data/lib/rubygems/request_set.rb +18 -18
- data/lib/rubygems/requirement.rb +15 -15
- data/lib/rubygems/resolver/activation_request.rb +3 -3
- data/lib/rubygems/resolver/api_set.rb +4 -4
- data/lib/rubygems/resolver/api_specification.rb +6 -6
- data/lib/rubygems/resolver/best_set.rb +5 -5
- data/lib/rubygems/resolver/conflict.rb +10 -10
- data/lib/rubygems/resolver/dependency_request.rb +2 -2
- data/lib/rubygems/resolver/git_set.rb +2 -2
- data/lib/rubygems/resolver/git_specification.rb +6 -6
- data/lib/rubygems/resolver/index_set.rb +3 -3
- data/lib/rubygems/resolver/index_specification.rb +6 -5
- data/lib/rubygems/resolver/installed_specification.rb +4 -4
- data/lib/rubygems/resolver/installer_set.rb +21 -26
- data/lib/rubygems/resolver/local_specification.rb +2 -2
- data/lib/rubygems/resolver/lock_set.rb +4 -4
- data/lib/rubygems/resolver/lock_specification.rb +4 -4
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +3 -3
- data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +32 -26
- data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +1 -1
- data/lib/rubygems/resolver/molinillo.rb +1 -1
- data/lib/rubygems/resolver/specification.rb +1 -1
- data/lib/rubygems/resolver/stats.rb +1 -1
- data/lib/rubygems/resolver/vendor_set.rb +1 -1
- data/lib/rubygems/resolver/vendor_specification.rb +3 -3
- data/lib/rubygems/resolver.rb +40 -40
- data/lib/rubygems/s3_uri_signer.rb +6 -6
- data/lib/rubygems/safe_yaml.rb +10 -10
- data/lib/rubygems/security/policies.rb +47 -47
- data/lib/rubygems/security/policy.rb +19 -21
- data/lib/rubygems/security/signer.rb +5 -5
- data/lib/rubygems/security/trust_dir.rb +4 -4
- data/lib/rubygems/security.rb +37 -43
- data/lib/rubygems/security_option.rb +7 -7
- data/lib/rubygems/source/git.rb +25 -24
- data/lib/rubygems/source/installed.rb +1 -1
- data/lib/rubygems/source/local.rb +2 -2
- data/lib/rubygems/source/specific_file.rb +1 -1
- data/lib/rubygems/source.rb +27 -32
- data/lib/rubygems/source_list.rb +5 -9
- data/lib/rubygems/spec_fetcher.rb +37 -37
- data/lib/rubygems/specification.rb +265 -211
- data/lib/rubygems/specification_policy.rb +49 -30
- data/lib/rubygems/stub_specification.rb +24 -27
- data/lib/rubygems/text.rb +22 -21
- data/lib/rubygems/tsort/.document +1 -0
- data/lib/rubygems/tsort/LICENSE.txt +22 -0
- data/lib/rubygems/tsort/lib/tsort.rb +452 -0
- data/lib/rubygems/tsort.rb +3 -0
- data/lib/rubygems/uninstaller.rb +29 -26
- data/lib/rubygems/unknown_command_spell_checker.rb +21 -0
- data/lib/rubygems/update_suggestion.rb +69 -0
- data/lib/rubygems/uri.rb +45 -30
- data/lib/rubygems/uri_formatter.rb +1 -1
- data/lib/rubygems/user_interaction.rb +42 -28
- data/lib/rubygems/util/licenses.rb +4 -2
- data/lib/rubygems/util.rb +12 -16
- data/lib/rubygems/validator.rb +6 -6
- data/lib/rubygems/version.rb +28 -17
- data/lib/rubygems/version_option.rb +5 -5
- data/lib/rubygems.rb +129 -117
- data/rubygems-update.gemspec +3 -3
- data/setup.rb +11 -16
- data/test/rubygems/alternate_cert.pem +14 -14
- data/test/rubygems/alternate_cert_32.pem +15 -15
- data/test/rubygems/alternate_key.pem +25 -25
- data/test/rubygems/bundler_test_gem.rb +419 -0
- data/test/rubygems/child_cert.pem +15 -16
- data/test/rubygems/child_cert_32.pem +15 -16
- data/test/rubygems/child_key.pem +25 -25
- data/test/rubygems/data/excon-0.7.7.gemspec.rz +0 -0
- data/test/rubygems/data/pry-0.4.7.gemspec.rz +0 -0
- data/test/rubygems/encrypted_private_key.pem +26 -26
- data/test/rubygems/expired_cert.pem +15 -15
- data/test/rubygems/future_cert.pem +15 -15
- data/test/rubygems/future_cert_32.pem +15 -15
- data/test/rubygems/grandchild_cert.pem +15 -16
- data/test/rubygems/grandchild_cert_32.pem +15 -16
- data/test/rubygems/grandchild_key.pem +25 -25
- data/test/rubygems/helper.rb +237 -207
- data/test/rubygems/installer_test_case.rb +13 -13
- data/test/rubygems/invalid_issuer_cert.pem +16 -16
- data/test/rubygems/invalid_issuer_cert_32.pem +16 -16
- data/test/rubygems/invalid_key.pem +25 -25
- data/test/rubygems/invalid_signer_cert.pem +15 -15
- data/test/rubygems/invalid_signer_cert_32.pem +15 -15
- data/test/rubygems/invalidchild_cert.pem +15 -16
- data/test/rubygems/invalidchild_cert_32.pem +15 -16
- data/test/rubygems/invalidchild_key.pem +25 -25
- data/test/rubygems/package/tar_test_case.rb +52 -17
- data/test/rubygems/packages/Bluebie-legs-0.6.2.gem +0 -0
- data/test/rubygems/plugin/exception/rubygems_plugin.rb +1 -1
- data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +1 -1
- data/test/rubygems/private_key.pem +25 -25
- data/test/rubygems/public_cert.pem +16 -16
- data/test/rubygems/public_cert_32.pem +15 -15
- data/test/rubygems/public_key.pem +7 -7
- data/test/rubygems/rubygems_plugin.rb +2 -2
- data/test/rubygems/simple_gem.rb +1 -1
- data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +4 -4
- data/test/rubygems/test_bundled_ca.rb +11 -11
- data/test/rubygems/test_config.rb +5 -5
- data/test/rubygems/test_deprecate.rb +3 -3
- data/test/rubygems/test_exit.rb +17 -0
- data/test/rubygems/test_gem.rb +367 -757
- data/test/rubygems/test_gem_available_set.rb +21 -21
- data/test/rubygems/test_gem_bundler_version_finder.rb +27 -47
- data/test/rubygems/test_gem_command.rb +45 -45
- data/test/rubygems/test_gem_command_manager.rb +124 -27
- data/test/rubygems/test_gem_commands_build_command.rb +73 -63
- data/test/rubygems/test_gem_commands_cert_command.rb +105 -107
- data/test/rubygems/test_gem_commands_check_command.rb +4 -4
- data/test/rubygems/test_gem_commands_cleanup_command.rb +40 -40
- data/test/rubygems/test_gem_commands_contents_command.rb +28 -28
- data/test/rubygems/test_gem_commands_dependency_command.rb +36 -36
- data/test/rubygems/test_gem_commands_environment_command.rb +38 -14
- data/test/rubygems/test_gem_commands_exec_command.rb +851 -0
- data/test/rubygems/test_gem_commands_fetch_command.rb +159 -26
- data/test/rubygems/test_gem_commands_generate_index_command.rb +7 -7
- data/test/rubygems/test_gem_commands_help_command.rb +13 -13
- data/test/rubygems/test_gem_commands_info_command.rb +28 -2
- data/test/rubygems/test_gem_commands_install_command.rb +200 -132
- data/test/rubygems/test_gem_commands_list_command.rb +4 -4
- data/test/rubygems/test_gem_commands_lock_command.rb +10 -10
- data/test/rubygems/test_gem_commands_mirror.rb +2 -2
- data/test/rubygems/test_gem_commands_open_command.rb +5 -5
- data/test/rubygems/test_gem_commands_outdated_command.rb +9 -9
- data/test/rubygems/test_gem_commands_owner_command.rb +126 -45
- data/test/rubygems/test_gem_commands_pristine_command.rb +141 -92
- data/test/rubygems/test_gem_commands_push_command.rb +85 -59
- data/test/rubygems/test_gem_commands_query_command.rb +73 -73
- data/test/rubygems/test_gem_commands_search_command.rb +2 -2
- data/test/rubygems/test_gem_commands_server_command.rb +6 -48
- data/test/rubygems/test_gem_commands_setup_command.rb +169 -92
- data/test/rubygems/test_gem_commands_signin_command.rb +154 -26
- data/test/rubygems/test_gem_commands_signout_command.rb +3 -3
- data/test/rubygems/test_gem_commands_sources_command.rb +74 -25
- data/test/rubygems/test_gem_commands_specification_command.rb +32 -32
- data/test/rubygems/test_gem_commands_stale_command.rb +4 -4
- data/test/rubygems/test_gem_commands_uninstall_command.rb +99 -82
- data/test/rubygems/test_gem_commands_unpack_command.rb +31 -31
- data/test/rubygems/test_gem_commands_update_command.rb +202 -91
- data/test/rubygems/test_gem_commands_which_command.rb +6 -6
- data/test/rubygems/test_gem_commands_yank_command.rb +43 -43
- data/test/rubygems/test_gem_config_file.rb +93 -81
- data/test/rubygems/test_gem_dependency.rb +78 -80
- data/test/rubygems/test_gem_dependency_installer.rb +165 -165
- data/test/rubygems/test_gem_dependency_list.rb +47 -47
- data/test/rubygems/test_gem_dependency_resolution_error.rb +4 -4
- data/test/rubygems/test_gem_doctor.rb +26 -26
- data/test/rubygems/test_gem_ext_builder.rb +60 -62
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +8 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.lock +233 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.toml +10 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/src/lib.rs +27 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/lib/custom_name.rb +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/.gitignore +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +247 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +10 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/rust_ruby_example.gemspec +8 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/src/lib.rs +51 -0
- data/test/rubygems/test_gem_ext_cargo_builder.rb +166 -0
- data/test/rubygems/test_gem_ext_cargo_builder_link_flag_converter.rb +33 -0
- data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +60 -0
- data/test/rubygems/test_gem_ext_cmake_builder.rb +17 -15
- data/test/rubygems/test_gem_ext_configure_builder.rb +13 -13
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +53 -50
- data/test/rubygems/test_gem_ext_rake_builder.rb +15 -15
- data/test/rubygems/test_gem_gem_runner.rb +13 -8
- data/test/rubygems/test_gem_gemcutter_utilities.rb +71 -65
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +4 -4
- data/test/rubygems/test_gem_indexer.rb +90 -67
- data/test/rubygems/test_gem_install_update_options.rb +18 -18
- data/test/rubygems/test_gem_installer.rb +511 -327
- data/test/rubygems/test_gem_local_remote_options.rb +10 -10
- data/test/rubygems/test_gem_name_tuple.rb +4 -4
- data/test/rubygems/test_gem_package.rb +246 -236
- data/test/rubygems/test_gem_package_old.rb +13 -13
- data/test/rubygems/test_gem_package_tar_header.rb +47 -47
- data/test/rubygems/test_gem_package_tar_reader.rb +55 -8
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +161 -16
- data/test/rubygems/test_gem_package_tar_writer.rb +76 -76
- data/test/rubygems/test_gem_package_task.rb +18 -18
- data/test/rubygems/test_gem_path_support.rb +15 -19
- data/test/rubygems/test_gem_platform.rb +335 -214
- data/test/rubygems/test_gem_rdoc.rb +14 -14
- data/test/rubygems/test_gem_remote_fetcher.rb +169 -154
- data/test/rubygems/test_gem_request.rb +65 -59
- data/test/rubygems/test_gem_request_connection_pools.rb +29 -29
- data/test/rubygems/test_gem_request_set.rb +100 -100
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +209 -211
- data/test/rubygems/test_gem_request_set_lockfile.rb +86 -86
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +58 -58
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +62 -62
- data/test/rubygems/test_gem_requirement.rb +47 -42
- data/test/rubygems/test_gem_resolver.rb +173 -106
- data/test/rubygems/test_gem_resolver_activation_request.rb +6 -6
- data/test/rubygems/test_gem_resolver_api_set.rb +33 -33
- data/test/rubygems/test_gem_resolver_api_specification.rb +47 -47
- data/test/rubygems/test_gem_resolver_best_set.rb +22 -22
- data/test/rubygems/test_gem_resolver_composed_set.rb +1 -1
- data/test/rubygems/test_gem_resolver_conflict.rb +12 -12
- data/test/rubygems/test_gem_resolver_dependency_request.rb +15 -15
- data/test/rubygems/test_gem_resolver_git_set.rb +21 -21
- data/test/rubygems/test_gem_resolver_git_specification.rb +21 -21
- data/test/rubygems/test_gem_resolver_index_set.rb +12 -12
- data/test/rubygems/test_gem_resolver_index_specification.rb +16 -16
- data/test/rubygems/test_gem_resolver_installed_specification.rb +5 -5
- data/test/rubygems/test_gem_resolver_installer_set.rb +79 -35
- data/test/rubygems/test_gem_resolver_local_specification.rb +7 -7
- data/test/rubygems/test_gem_resolver_lock_set.rb +12 -12
- data/test/rubygems/test_gem_resolver_lock_specification.rb +17 -17
- data/test/rubygems/test_gem_resolver_requirement_list.rb +1 -1
- data/test/rubygems/test_gem_resolver_specification.rb +8 -8
- data/test/rubygems/test_gem_resolver_vendor_set.rb +6 -6
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +10 -10
- data/test/rubygems/test_gem_security.rb +69 -69
- data/test/rubygems/test_gem_security_policy.rb +72 -72
- data/test/rubygems/test_gem_security_signer.rb +34 -34
- data/test/rubygems/test_gem_security_trust_dir.rb +6 -6
- data/test/rubygems/test_gem_silent_ui.rb +38 -32
- data/test/rubygems/test_gem_source.rb +44 -44
- data/test/rubygems/test_gem_source_fetch_problem.rb +9 -9
- data/test/rubygems/test_gem_source_git.rb +69 -62
- data/test/rubygems/test_gem_source_installed.rb +16 -16
- data/test/rubygems/test_gem_source_list.rb +5 -5
- data/test/rubygems/test_gem_source_local.rb +14 -14
- data/test/rubygems/test_gem_source_lock.rb +31 -31
- data/test/rubygems/test_gem_source_specific_file.rb +17 -17
- data/test/rubygems/test_gem_source_subpath_problem.rb +7 -7
- data/test/rubygems/test_gem_source_vendor.rb +13 -13
- data/test/rubygems/test_gem_spec_fetcher.rb +72 -72
- data/test/rubygems/test_gem_specification.rb +560 -493
- data/test/rubygems/test_gem_stream_ui.rb +20 -20
- data/test/rubygems/test_gem_stub_specification.rb +32 -48
- data/test/rubygems/test_gem_text.rb +7 -1
- data/test/rubygems/test_gem_uninstaller.rb +113 -113
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +3 -3
- data/test/rubygems/test_gem_update_suggestion.rb +208 -0
- data/test/rubygems/test_gem_uri.rb +4 -4
- data/test/rubygems/test_gem_uri_formatter.rb +14 -14
- data/test/rubygems/test_gem_util.rb +23 -23
- data/test/rubygems/test_gem_validator.rb +8 -8
- data/test/rubygems/test_gem_version.rb +27 -16
- data/test/rubygems/test_gem_version_option.rb +15 -15
- data/test/rubygems/test_kernel.rb +42 -60
- data/test/rubygems/test_project_sanity.rb +2 -2
- data/test/rubygems/test_remote_fetch_error.rb +6 -6
- data/test/rubygems/test_require.rb +132 -174
- data/test/rubygems/test_rubygems.rb +42 -12
- data/test/rubygems/utilities.rb +59 -37
- data/test/rubygems/wrong_key_cert.pem +15 -15
- data/test/rubygems/wrong_key_cert_32.pem +15 -15
- data/test/test_changelog_generator.rb +1 -0
- metadata +97 -41
- data/bundler/lib/bundler/dep_proxy.rb +0 -55
- data/bundler/lib/bundler/gemdeps.rb +0 -29
- data/bundler/lib/bundler/psyched_yaml.rb +0 -22
- data/bundler/lib/bundler/templates/gems.rb +0 -8
- data/bundler/lib/bundler/templates/newgem/travis.yml.tt +0 -6
- data/bundler/lib/bundler/vendor/molinillo/LICENSE +0 -9
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +0 -88
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +0 -36
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +0 -66
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +0 -62
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +0 -63
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +0 -61
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +0 -126
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +0 -46
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +0 -36
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +0 -164
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +0 -255
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +0 -143
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +0 -112
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +0 -67
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +0 -839
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +0 -46
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +0 -58
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -11
- data/bundler/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +0 -154
- data/bundler/lib/bundler/version_ranges.rb +0 -122
- data/lib/rubygems/psych_additions.rb +0 -10
- data/lib/rubygems/server.rb +0 -882
- data/test/rubygems/bogussources.rb +0 -9
- data/test/rubygems/data/null-type.gemspec.rz +0 -0
- data/test/rubygems/test_gem_server.rb +0 -608
- /data/bundler/lib/bundler/templates/newgem/ext/newgem/{extconf.rb.tt → extconf-c.rb.tt} +0 -0
data/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,631 @@
|
|
|
1
|
+
# 3.4.10 / 2023-03-27
|
|
2
|
+
|
|
3
|
+
## Enhancements:
|
|
4
|
+
|
|
5
|
+
* Installs bundler 2.4.10 as a default gem.
|
|
6
|
+
|
|
7
|
+
# 3.4.9 / 2023-03-20
|
|
8
|
+
|
|
9
|
+
## Enhancements:
|
|
10
|
+
|
|
11
|
+
* Improve `TarHeader#calculate_checksum` speed and readability. Pull
|
|
12
|
+
request [#6476](https://github.com/rubygems/rubygems/pull/6476) by
|
|
13
|
+
Maumagnaguagno
|
|
14
|
+
* Added only missing extensions option into pristine command. Pull request
|
|
15
|
+
[#6446](https://github.com/rubygems/rubygems/pull/6446) by hsbt
|
|
16
|
+
* Installs bundler 2.4.9 as a default gem.
|
|
17
|
+
|
|
18
|
+
## Bug fixes:
|
|
19
|
+
|
|
20
|
+
* Fix `$LOAD_PATH` in rake and ext_conf builder. Pull request
|
|
21
|
+
[#6490](https://github.com/rubygems/rubygems/pull/6490) by ntkme
|
|
22
|
+
* Fix `gem uninstall` with `--install-dir`. Pull request
|
|
23
|
+
[#6481](https://github.com/rubygems/rubygems/pull/6481) by
|
|
24
|
+
deivid-rodriguez
|
|
25
|
+
|
|
26
|
+
## Documentation:
|
|
27
|
+
|
|
28
|
+
* Document our current release policy. Pull request
|
|
29
|
+
[#6450](https://github.com/rubygems/rubygems/pull/6450) by
|
|
30
|
+
deivid-rodriguez
|
|
31
|
+
|
|
32
|
+
# 3.4.8 / 2023-03-08
|
|
33
|
+
|
|
34
|
+
## Enhancements:
|
|
35
|
+
|
|
36
|
+
* Add TarReader::Entry#seek to seek within the tar file entry. Pull
|
|
37
|
+
request [#6390](https://github.com/rubygems/rubygems/pull/6390) by
|
|
38
|
+
martinemde
|
|
39
|
+
* Avoid calling String#dup in Gem::Version#marshal_dump. Pull request
|
|
40
|
+
[#6438](https://github.com/rubygems/rubygems/pull/6438) by segiddins
|
|
41
|
+
* Remove hardcoded "master" branch references. Pull request
|
|
42
|
+
[#6425](https://github.com/rubygems/rubygems/pull/6425) by
|
|
43
|
+
deivid-rodriguez
|
|
44
|
+
* [Experimental] Add `gem exec` command to run executables from gems that
|
|
45
|
+
may or may not be installed. Pull request
|
|
46
|
+
[#6309](https://github.com/rubygems/rubygems/pull/6309) by segiddins
|
|
47
|
+
* Installs bundler 2.4.8 as a default gem.
|
|
48
|
+
|
|
49
|
+
## Bug fixes:
|
|
50
|
+
|
|
51
|
+
* Fix installation error of same version of default gems with local
|
|
52
|
+
installation. Pull request
|
|
53
|
+
[#6430](https://github.com/rubygems/rubygems/pull/6430) by hsbt
|
|
54
|
+
* Use proper memoized var name for Gem.state_home. Pull request
|
|
55
|
+
[#6420](https://github.com/rubygems/rubygems/pull/6420) by simi
|
|
56
|
+
|
|
57
|
+
## Documentation:
|
|
58
|
+
|
|
59
|
+
* Switch supporting explanations to all Ruby Central. Pull request
|
|
60
|
+
[#6419](https://github.com/rubygems/rubygems/pull/6419) by indirect
|
|
61
|
+
* Update the link to OpenSource.org. Pull request
|
|
62
|
+
[#6392](https://github.com/rubygems/rubygems/pull/6392) by nobu
|
|
63
|
+
|
|
64
|
+
# 3.4.7 / 2023-02-15
|
|
65
|
+
|
|
66
|
+
## Enhancements:
|
|
67
|
+
|
|
68
|
+
* Warn on self referencing gemspec dependency. Pull request
|
|
69
|
+
[#6335](https://github.com/rubygems/rubygems/pull/6335) by simi
|
|
70
|
+
* Installs bundler 2.4.7 as a default gem.
|
|
71
|
+
|
|
72
|
+
## Bug fixes:
|
|
73
|
+
|
|
74
|
+
* Fix inconsistent behavior of zero byte files in archive. Pull request
|
|
75
|
+
[#6329](https://github.com/rubygems/rubygems/pull/6329) by martinemde
|
|
76
|
+
|
|
77
|
+
# 3.4.6 / 2023-01-31
|
|
78
|
+
|
|
79
|
+
## Enhancements:
|
|
80
|
+
|
|
81
|
+
* Allow `require` decorations be disabled. Pull request
|
|
82
|
+
[#6319](https://github.com/rubygems/rubygems/pull/6319) by
|
|
83
|
+
deivid-rodriguez
|
|
84
|
+
* Installs bundler 2.4.6 as a default gem.
|
|
85
|
+
|
|
86
|
+
## Bug fixes:
|
|
87
|
+
|
|
88
|
+
* Include directory in CargoBuilder install path. Pull request
|
|
89
|
+
[#6298](https://github.com/rubygems/rubygems/pull/6298) by matsadler
|
|
90
|
+
|
|
91
|
+
## Documentation:
|
|
92
|
+
|
|
93
|
+
* Include links to pull requests in changelog. Pull request
|
|
94
|
+
[#6316](https://github.com/rubygems/rubygems/pull/6316) by
|
|
95
|
+
deivid-rodriguez
|
|
96
|
+
|
|
97
|
+
# 3.4.5 / 2023-01-21
|
|
98
|
+
|
|
99
|
+
## Enhancements:
|
|
100
|
+
|
|
101
|
+
* Installs bundler 2.4.5 as a default gem.
|
|
102
|
+
|
|
103
|
+
# 3.4.4 / 2023-01-16
|
|
104
|
+
|
|
105
|
+
## Enhancements:
|
|
106
|
+
|
|
107
|
+
* Installs bundler 2.4.4 as a default gem.
|
|
108
|
+
|
|
109
|
+
## Documentation:
|
|
110
|
+
|
|
111
|
+
* Improve documentation about `Kernel` monkeypatches. Pull request [#6217](https://github.com/rubygems/rubygems/pull/6217)
|
|
112
|
+
by nobu
|
|
113
|
+
|
|
114
|
+
# 3.4.3 / 2023-01-06
|
|
115
|
+
|
|
116
|
+
## Enhancements:
|
|
117
|
+
|
|
118
|
+
* Installs bundler 2.4.3 as a default gem.
|
|
119
|
+
|
|
120
|
+
## Documentation:
|
|
121
|
+
|
|
122
|
+
* Fix several typos. Pull request [#6224](https://github.com/rubygems/rubygems/pull/6224) by jdufresne
|
|
123
|
+
|
|
124
|
+
# 3.4.2 / 2023-01-01
|
|
125
|
+
|
|
126
|
+
## Enhancements:
|
|
127
|
+
|
|
128
|
+
* Add global flag (`-C`) to change execution directory. Pull request [#6180](https://github.com/rubygems/rubygems/pull/6180)
|
|
129
|
+
by gustavothecoder
|
|
130
|
+
* Installs bundler 2.4.2 as a default gem.
|
|
131
|
+
|
|
132
|
+
# 3.4.1 / 2022-12-24
|
|
133
|
+
|
|
134
|
+
## Enhancements:
|
|
135
|
+
|
|
136
|
+
* Installs bundler 2.4.1 as a default gem.
|
|
137
|
+
|
|
138
|
+
# 3.4.0 / 2022-12-24
|
|
139
|
+
|
|
140
|
+
## Breaking changes:
|
|
141
|
+
|
|
142
|
+
* Drop support for Ruby 2.3, 2.4, 2.5 and RubyGems 2.5, 2.6, 2.7. Pull
|
|
143
|
+
request [#6107](https://github.com/rubygems/rubygems/pull/6107) by deivid-rodriguez
|
|
144
|
+
* Remove support for deprecated OS. Pull request [#6041](https://github.com/rubygems/rubygems/pull/6041) by peterzhu2118
|
|
145
|
+
|
|
146
|
+
## Features:
|
|
147
|
+
|
|
148
|
+
* Add 'call for update' to RubyGems install command. Pull request [#5922](https://github.com/rubygems/rubygems/pull/5922) by
|
|
149
|
+
simi
|
|
150
|
+
|
|
151
|
+
## Enhancements:
|
|
152
|
+
|
|
153
|
+
* Add `mswin` support for cargo builder. Pull request [#6167](https://github.com/rubygems/rubygems/pull/6167) by ianks
|
|
154
|
+
* Validate Cargo.lock is present for Rust based extensions. Pull request
|
|
155
|
+
[#6151](https://github.com/rubygems/rubygems/pull/6151) by simi
|
|
156
|
+
* Clean built artifacts after building extensions. Pull request [#6133](https://github.com/rubygems/rubygems/pull/6133) by
|
|
157
|
+
deivid-rodriguez
|
|
158
|
+
* Installs bundler 2.4.0 as a default gem.
|
|
159
|
+
|
|
160
|
+
## Bug fixes:
|
|
161
|
+
|
|
162
|
+
* Fix crash due to `BundlerVersionFinder` not defined. Pull request [#6152](https://github.com/rubygems/rubygems/pull/6152)
|
|
163
|
+
by deivid-rodriguez
|
|
164
|
+
* Don't leave corrupted partial package download around when running out
|
|
165
|
+
of disk space. Pull request [#5681](https://github.com/rubygems/rubygems/pull/5681) by duckinator
|
|
166
|
+
|
|
167
|
+
# 3.3.26 / 2022-11-16
|
|
168
|
+
|
|
169
|
+
## Enhancements:
|
|
170
|
+
|
|
171
|
+
* Upgrade rb-sys to 0.9.37. Pull request [#6047](https://github.com/rubygems/rubygems/pull/6047) by ianks
|
|
172
|
+
* Installs bundler 2.3.26 as a default gem.
|
|
173
|
+
|
|
174
|
+
# 3.3.25 / 2022-11-02
|
|
175
|
+
|
|
176
|
+
## Enhancements:
|
|
177
|
+
|
|
178
|
+
* Github source should default to secure protocol. Pull request [#6026](https://github.com/rubygems/rubygems/pull/6026) by
|
|
179
|
+
jasonkarns
|
|
180
|
+
* Allow upcoming JRuby to pass keywords to Kernel#warn. Pull request [#6002](https://github.com/rubygems/rubygems/pull/6002)
|
|
181
|
+
by enebo
|
|
182
|
+
* Installs bundler 2.3.25 as a default gem.
|
|
183
|
+
|
|
184
|
+
# 3.3.24 / 2022-10-17
|
|
185
|
+
|
|
186
|
+
## Enhancements:
|
|
187
|
+
|
|
188
|
+
* Installs bundler 2.3.24 as a default gem.
|
|
189
|
+
|
|
190
|
+
# 3.3.23 / 2022-10-05
|
|
191
|
+
|
|
192
|
+
## Enhancements:
|
|
193
|
+
|
|
194
|
+
* Add better error handling for permanent redirect responses. Pull request
|
|
195
|
+
[#5931](https://github.com/rubygems/rubygems/pull/5931) by jenshenny
|
|
196
|
+
* Installs bundler 2.3.23 as a default gem.
|
|
197
|
+
|
|
198
|
+
## Bug fixes:
|
|
199
|
+
|
|
200
|
+
* Fix generic arm platform matching against runtime arm platforms with
|
|
201
|
+
eabi modifiers. Pull request [#5957](https://github.com/rubygems/rubygems/pull/5957) by deivid-rodriguez
|
|
202
|
+
* Fix `Gem::Platform.match` not handling String argument properly. Pull
|
|
203
|
+
request [#5939](https://github.com/rubygems/rubygems/pull/5939) by flavorjones
|
|
204
|
+
* Fix resolution on non-musl platforms. Pull request [#5915](https://github.com/rubygems/rubygems/pull/5915) by
|
|
205
|
+
deivid-rodriguez
|
|
206
|
+
* Mask the file mode when extracting files. Pull request [#5906](https://github.com/rubygems/rubygems/pull/5906) by
|
|
207
|
+
kddnewton
|
|
208
|
+
|
|
209
|
+
# 3.3.22 / 2022-09-07
|
|
210
|
+
|
|
211
|
+
## Enhancements:
|
|
212
|
+
|
|
213
|
+
* Support non gnu libc arm-linux-eabi platforms. Pull request [#5889](https://github.com/rubygems/rubygems/pull/5889) by
|
|
214
|
+
ntkme
|
|
215
|
+
* Installs bundler 2.3.22 as a default gem.
|
|
216
|
+
|
|
217
|
+
## Bug fixes:
|
|
218
|
+
|
|
219
|
+
* Fix `gem info` with explicit `--version`. Pull request [#5884](https://github.com/rubygems/rubygems/pull/5884) by
|
|
220
|
+
tonyaraujop
|
|
221
|
+
|
|
222
|
+
# 3.3.21 / 2022-08-24
|
|
223
|
+
|
|
224
|
+
## Enhancements:
|
|
225
|
+
|
|
226
|
+
* Support non gnu libc linux platforms. Pull request [#5852](https://github.com/rubygems/rubygems/pull/5852) by
|
|
227
|
+
deivid-rodriguez
|
|
228
|
+
* Installs bundler 2.3.21 as a default gem.
|
|
229
|
+
|
|
230
|
+
# 3.3.20 / 2022-08-10
|
|
231
|
+
|
|
232
|
+
## Enhancements:
|
|
233
|
+
|
|
234
|
+
* Include backtrace with crashes by default. Pull request [#5811](https://github.com/rubygems/rubygems/pull/5811) by
|
|
235
|
+
deivid-rodriguez
|
|
236
|
+
* Don't create broken symlinks when a gem includes them, but print a
|
|
237
|
+
warning instead. Pull request [#5801](https://github.com/rubygems/rubygems/pull/5801) by deivid-rodriguez
|
|
238
|
+
* Warn (rather than crash) when setting `nil` specification versions. Pull
|
|
239
|
+
request [#5794](https://github.com/rubygems/rubygems/pull/5794) by deivid-rodriguez
|
|
240
|
+
* Installs bundler 2.3.20 as a default gem.
|
|
241
|
+
|
|
242
|
+
## Bug fixes:
|
|
243
|
+
|
|
244
|
+
* Always consider installed specs for resolution, even if prereleases.
|
|
245
|
+
Pull request [#5821](https://github.com/rubygems/rubygems/pull/5821) by deivid-rodriguez
|
|
246
|
+
* Fix `gem install` with `--platform` flag not matching simulated platform
|
|
247
|
+
correctly. Pull request [#5820](https://github.com/rubygems/rubygems/pull/5820) by deivid-rodriguez
|
|
248
|
+
* Fix platform matching for index specs. Pull request [#5795](https://github.com/rubygems/rubygems/pull/5795) by Ilushkanama
|
|
249
|
+
|
|
250
|
+
# 3.3.19 / 2022-07-27
|
|
251
|
+
|
|
252
|
+
## Enhancements:
|
|
253
|
+
|
|
254
|
+
* Display mfa warnings on `gem signin`. Pull request [#5590](https://github.com/rubygems/rubygems/pull/5590) by aellispierce
|
|
255
|
+
* Require fileutils more lazily when installing gems. Pull request [#5738](https://github.com/rubygems/rubygems/pull/5738)
|
|
256
|
+
by deivid-rodriguez
|
|
257
|
+
* Fix upgrading RubyGems with a customized `Gem.default_dir`. Pull request
|
|
258
|
+
[#5728](https://github.com/rubygems/rubygems/pull/5728) by deivid-rodriguez
|
|
259
|
+
* Stop using `/dev/null` for silent ui for WASI platform. Pull request
|
|
260
|
+
[#5703](https://github.com/rubygems/rubygems/pull/5703) by kateinoigakukun
|
|
261
|
+
* Unify loading `Gem::Requirement`. Pull request [#5596](https://github.com/rubygems/rubygems/pull/5596) by deivid-rodriguez
|
|
262
|
+
* Installs bundler 2.3.19 as a default gem.
|
|
263
|
+
|
|
264
|
+
## Bug fixes:
|
|
265
|
+
|
|
266
|
+
* Fix `ruby setup.rb` with `--destdir` writing outside of `--destdir`.
|
|
267
|
+
Pull request [#5737](https://github.com/rubygems/rubygems/pull/5737) by deivid-rodriguez
|
|
268
|
+
|
|
269
|
+
## Documentation:
|
|
270
|
+
|
|
271
|
+
* Fix wrong information about default RubyGems source. Pull request [#5723](https://github.com/rubygems/rubygems/pull/5723)
|
|
272
|
+
by tnir
|
|
273
|
+
|
|
274
|
+
# 3.3.18 / 2022-07-14
|
|
275
|
+
|
|
276
|
+
## Enhancements:
|
|
277
|
+
|
|
278
|
+
* Make platform `universal-mingw32` match "x64-mingw-ucrt". Pull request
|
|
279
|
+
[#5655](https://github.com/rubygems/rubygems/pull/5655) by johnnyshields
|
|
280
|
+
* Add more descriptive messages when `gem update` fails to update some
|
|
281
|
+
gems. Pull request [#5676](https://github.com/rubygems/rubygems/pull/5676) by brianleshopify
|
|
282
|
+
* Installs bundler 2.3.18 as a default gem.
|
|
283
|
+
|
|
284
|
+
## Bug fixes:
|
|
285
|
+
|
|
286
|
+
* Make sure RubyGems prints no warnings when loading plugins. Pull request
|
|
287
|
+
[#5607](https://github.com/rubygems/rubygems/pull/5607) by deivid-rodriguez
|
|
288
|
+
|
|
289
|
+
# 3.3.17 / 2022-06-29
|
|
290
|
+
|
|
291
|
+
## Enhancements:
|
|
292
|
+
|
|
293
|
+
* Document `gem env` argument aliases and add `gem env user_gemhome` and
|
|
294
|
+
`gem env user_gemdir`. Pull request [#5644](https://github.com/rubygems/rubygems/pull/5644) by deivid-rodriguez
|
|
295
|
+
* Improve error message when `operating_system.rb` fails to load. Pull
|
|
296
|
+
request [#5658](https://github.com/rubygems/rubygems/pull/5658) by deivid-rodriguez
|
|
297
|
+
* Clean up temporary directory after `generate_index --update`. Pull
|
|
298
|
+
request [#5653](https://github.com/rubygems/rubygems/pull/5653) by graywolf-at-work
|
|
299
|
+
* Simplify extension builder. Pull request [#5626](https://github.com/rubygems/rubygems/pull/5626) by deivid-rodriguez
|
|
300
|
+
* Installs bundler 2.3.17 as a default gem.
|
|
301
|
+
|
|
302
|
+
## Documentation:
|
|
303
|
+
|
|
304
|
+
* Modify RubyGems issue template to be like the one for Bundler. Pull
|
|
305
|
+
request [#5643](https://github.com/rubygems/rubygems/pull/5643) by deivid-rodriguez
|
|
306
|
+
|
|
307
|
+
# 3.3.16 / 2022-06-15
|
|
308
|
+
|
|
309
|
+
## Enhancements:
|
|
310
|
+
|
|
311
|
+
* Auto-fix and warn gem packages including a gemspec with `require_paths`
|
|
312
|
+
as an array of arrays. Pull request [#5615](https://github.com/rubygems/rubygems/pull/5615) by deivid-rodriguez
|
|
313
|
+
* Misc cargo builder improvements. Pull request [#5459](https://github.com/rubygems/rubygems/pull/5459) by ianks
|
|
314
|
+
* Installs bundler 2.3.16 as a default gem.
|
|
315
|
+
|
|
316
|
+
## Bug fixes:
|
|
317
|
+
|
|
318
|
+
* Fix incorrect password redaction when there's an error in `gem source
|
|
319
|
+
-a`. Pull request [#5623](https://github.com/rubygems/rubygems/pull/5623) by deivid-rodriguez
|
|
320
|
+
* Fix another regression when loading old marshaled specs. Pull request
|
|
321
|
+
[#5610](https://github.com/rubygems/rubygems/pull/5610) by deivid-rodriguez
|
|
322
|
+
|
|
323
|
+
# 3.3.15 / 2022-06-01
|
|
324
|
+
|
|
325
|
+
## Enhancements:
|
|
326
|
+
|
|
327
|
+
* Support the change of did_you_mean about `Exception#detailed_message`.
|
|
328
|
+
Pull request [#5560](https://github.com/rubygems/rubygems/pull/5560) by mame
|
|
329
|
+
* Installs bundler 2.3.15 as a default gem.
|
|
330
|
+
|
|
331
|
+
## Bug fixes:
|
|
332
|
+
|
|
333
|
+
* Fix loading old marshaled specs including `YAML::PrivateType` constant.
|
|
334
|
+
Pull request [#5415](https://github.com/rubygems/rubygems/pull/5415) by deivid-rodriguez
|
|
335
|
+
* Fix rubygems update when non default `--install-dir` is configured. Pull
|
|
336
|
+
request [#5566](https://github.com/rubygems/rubygems/pull/5566) by deivid-rodriguez
|
|
337
|
+
|
|
338
|
+
# 3.3.14 / 2022-05-18
|
|
339
|
+
|
|
340
|
+
## Enhancements:
|
|
341
|
+
|
|
342
|
+
* Installs bundler 2.3.14 as a default gem.
|
|
343
|
+
|
|
344
|
+
# 3.3.13 / 2022-05-04
|
|
345
|
+
|
|
346
|
+
## Enhancements:
|
|
347
|
+
|
|
348
|
+
* Installs bundler 2.3.13 as a default gem.
|
|
349
|
+
|
|
350
|
+
## Bug fixes:
|
|
351
|
+
|
|
352
|
+
* Fix regression when resolving ruby constraints. Pull request [#5486](https://github.com/rubygems/rubygems/pull/5486) by
|
|
353
|
+
deivid-rodriguez
|
|
354
|
+
|
|
355
|
+
## Documentation:
|
|
356
|
+
|
|
357
|
+
* Clarify description of owner-flags. Pull request [#5497](https://github.com/rubygems/rubygems/pull/5497) by kronn
|
|
358
|
+
|
|
359
|
+
# 3.3.12 / 2022-04-20
|
|
360
|
+
|
|
361
|
+
## Enhancements:
|
|
362
|
+
|
|
363
|
+
* Less error swallowing when installing gems. Pull request [#5475](https://github.com/rubygems/rubygems/pull/5475) by
|
|
364
|
+
deivid-rodriguez
|
|
365
|
+
* Stop considering `RUBY_PATCHLEVEL` for resolution. Pull request [#5472](https://github.com/rubygems/rubygems/pull/5472) by
|
|
366
|
+
deivid-rodriguez
|
|
367
|
+
* Bump vendored optparse to latest master. Pull request [#5466](https://github.com/rubygems/rubygems/pull/5466) by
|
|
368
|
+
deivid-rodriguez
|
|
369
|
+
* Installs bundler 2.3.12 as a default gem.
|
|
370
|
+
|
|
371
|
+
## Documentation:
|
|
372
|
+
|
|
373
|
+
* Fix formatting in docs. Pull request [#5470](https://github.com/rubygems/rubygems/pull/5470) by peterzhu2118
|
|
374
|
+
* Fix a typo. Pull request [#5401](https://github.com/rubygems/rubygems/pull/5401) by znz
|
|
375
|
+
|
|
376
|
+
# 3.3.11 / 2022-04-07
|
|
377
|
+
|
|
378
|
+
## Enhancements:
|
|
379
|
+
|
|
380
|
+
* Enable mfa on specific keys during gem signin. Pull request [#5305](https://github.com/rubygems/rubygems/pull/5305) by
|
|
381
|
+
aellispierce
|
|
382
|
+
* Prefer `__dir__` to `__FILE__`. Pull request [#5444](https://github.com/rubygems/rubygems/pull/5444) by deivid-rodriguez
|
|
383
|
+
* Add cargo builder for rust extensions. Pull request [#5175](https://github.com/rubygems/rubygems/pull/5175) by ianks
|
|
384
|
+
* Installs bundler 2.3.11 as a default gem.
|
|
385
|
+
|
|
386
|
+
## Documentation:
|
|
387
|
+
|
|
388
|
+
* Improve RDoc setup. Pull request [#5398](https://github.com/rubygems/rubygems/pull/5398) by deivid-rodriguez
|
|
389
|
+
|
|
390
|
+
# 3.3.10 / 2022-03-23
|
|
391
|
+
|
|
392
|
+
## Enhancements:
|
|
393
|
+
|
|
394
|
+
* Installs bundler 2.3.10 as a default gem.
|
|
395
|
+
|
|
396
|
+
## Documentation:
|
|
397
|
+
|
|
398
|
+
* Enable `Gem::Package` example in RDoc documentation. Pull request [#5399](https://github.com/rubygems/rubygems/pull/5399)
|
|
399
|
+
by nobu
|
|
400
|
+
* Unhide RDoc documentation from top level `Gem` module. Pull request
|
|
401
|
+
[#5396](https://github.com/rubygems/rubygems/pull/5396) by nobu
|
|
402
|
+
|
|
403
|
+
# 3.3.9 / 2022-03-09
|
|
404
|
+
|
|
405
|
+
## Enhancements:
|
|
406
|
+
|
|
407
|
+
* Installs bundler 2.3.9 as a default gem.
|
|
408
|
+
|
|
409
|
+
# 3.3.8 / 2022-02-23
|
|
410
|
+
|
|
411
|
+
## Enhancements:
|
|
412
|
+
|
|
413
|
+
* Installs bundler 2.3.8 as a default gem.
|
|
414
|
+
|
|
415
|
+
# 3.3.7 / 2022-02-09
|
|
416
|
+
|
|
417
|
+
## Enhancements:
|
|
418
|
+
|
|
419
|
+
* Installs bundler 2.3.7 as a default gem.
|
|
420
|
+
|
|
421
|
+
## Documentation:
|
|
422
|
+
|
|
423
|
+
* Fix missing rdoc for `Gem::Version`. Pull request [#5299](https://github.com/rubygems/rubygems/pull/5299) by nevans
|
|
424
|
+
|
|
425
|
+
# 3.3.6 / 2022-01-26
|
|
426
|
+
|
|
427
|
+
## Enhancements:
|
|
428
|
+
|
|
429
|
+
* Forbid downgrading past the originally shipped version on Ruby 3.1. Pull
|
|
430
|
+
request [#5301](https://github.com/rubygems/rubygems/pull/5301) by deivid-rodriguez
|
|
431
|
+
* Support `--enable-load-relative` inside binstubs. Pull request [#2929](https://github.com/rubygems/rubygems/pull/2929) by
|
|
432
|
+
deivid-rodriguez
|
|
433
|
+
* Let `Version#<=>` accept a String. Pull request [#5275](https://github.com/rubygems/rubygems/pull/5275) by amatsuda
|
|
434
|
+
* Installs bundler 2.3.6 as a default gem.
|
|
435
|
+
|
|
436
|
+
## Bug fixes:
|
|
437
|
+
|
|
438
|
+
* Avoid `flock` on non Windows systems, since it causing issues on NFS
|
|
439
|
+
file systems. Pull request [#5278](https://github.com/rubygems/rubygems/pull/5278) by deivid-rodriguez
|
|
440
|
+
* Fix `gem update --system` for already installed version of
|
|
441
|
+
`rubygems-update`. Pull request [#5285](https://github.com/rubygems/rubygems/pull/5285) by loadkpi
|
|
442
|
+
|
|
443
|
+
# 3.3.5 / 2022-01-12
|
|
444
|
+
|
|
445
|
+
## Enhancements:
|
|
446
|
+
|
|
447
|
+
* Don't activate `yaml` gem from RubyGems. Pull request [#5266](https://github.com/rubygems/rubygems/pull/5266) by
|
|
448
|
+
deivid-rodriguez
|
|
449
|
+
* Let `gem fetch` understand `<gem>:<version>` syntax and
|
|
450
|
+
`--[no-]suggestions` flag. Pull request [#5242](https://github.com/rubygems/rubygems/pull/5242) by ximenasandoval
|
|
451
|
+
* Installs bundler 2.3.5 as a default gem.
|
|
452
|
+
|
|
453
|
+
## Bug fixes:
|
|
454
|
+
|
|
455
|
+
* Fix `gem install <non-existent-gem> --force` crash. Pull request [#5262](https://github.com/rubygems/rubygems/pull/5262)
|
|
456
|
+
by deivid-rodriguez
|
|
457
|
+
* Fix longstanding `gem install` failure on JRuby. Pull request [#5228](https://github.com/rubygems/rubygems/pull/5228) by
|
|
458
|
+
deivid-rodriguez
|
|
459
|
+
|
|
460
|
+
## Documentation:
|
|
461
|
+
|
|
462
|
+
* Markup `Gem::Specification` documentation with RDoc notations. Pull
|
|
463
|
+
request [#5268](https://github.com/rubygems/rubygems/pull/5268) by nobu
|
|
464
|
+
|
|
465
|
+
# 3.3.4 / 2021-12-29
|
|
466
|
+
|
|
467
|
+
## Enhancements:
|
|
468
|
+
|
|
469
|
+
* Don't redownload `rubygems-update` package if already there. Pull
|
|
470
|
+
request [#5230](https://github.com/rubygems/rubygems/pull/5230) by deivid-rodriguez
|
|
471
|
+
* Installs bundler 2.3.4 as a default gem.
|
|
472
|
+
|
|
473
|
+
## Bug fixes:
|
|
474
|
+
|
|
475
|
+
* Fix `gem update --system` crashing when latest version not supported.
|
|
476
|
+
Pull request [#5191](https://github.com/rubygems/rubygems/pull/5191) by deivid-rodriguez
|
|
477
|
+
|
|
478
|
+
## Performance:
|
|
479
|
+
|
|
480
|
+
* Make SpecificationPolicy autoload constant. Pull request [#5222](https://github.com/rubygems/rubygems/pull/5222) by pocke
|
|
481
|
+
|
|
482
|
+
# 3.3.3 / 2021-12-24
|
|
483
|
+
|
|
484
|
+
## Enhancements:
|
|
485
|
+
|
|
486
|
+
* Installs bundler 2.3.3 as a default gem.
|
|
487
|
+
|
|
488
|
+
## Bug fixes:
|
|
489
|
+
|
|
490
|
+
* Fix gem installation failing in Solaris due to bad `IO#flock` usage.
|
|
491
|
+
Pull request [#5216](https://github.com/rubygems/rubygems/pull/5216) by mame
|
|
492
|
+
|
|
493
|
+
# 3.3.2 / 2021-12-23
|
|
494
|
+
|
|
495
|
+
## Enhancements:
|
|
496
|
+
|
|
497
|
+
* Fix deprecations when activating DidYouMean for misspelled command
|
|
498
|
+
suggestions. Pull request [#5211](https://github.com/rubygems/rubygems/pull/5211) by yuki24
|
|
499
|
+
* Installs bundler 2.3.2 as a default gem.
|
|
500
|
+
|
|
501
|
+
## Bug fixes:
|
|
502
|
+
|
|
503
|
+
* Fix gemspec truncation. Pull request [#5208](https://github.com/rubygems/rubygems/pull/5208) by deivid-rodriguez
|
|
504
|
+
|
|
505
|
+
# 3.3.1 / 2021-12-22
|
|
506
|
+
|
|
507
|
+
## Enhancements:
|
|
508
|
+
|
|
509
|
+
* Fix compatibility with OpenSSL 3.0. Pull request [#5196](https://github.com/rubygems/rubygems/pull/5196) by rhenium
|
|
510
|
+
* Remove hard errors when matching major bundler not found. Pull request
|
|
511
|
+
[#5181](https://github.com/rubygems/rubygems/pull/5181) by deivid-rodriguez
|
|
512
|
+
* Installs bundler 2.3.1 as a default gem.
|
|
513
|
+
|
|
514
|
+
# 3.3.0 / 2021-12-21
|
|
515
|
+
|
|
516
|
+
## Breaking changes:
|
|
517
|
+
|
|
518
|
+
* Removed deprecated `gem server` command. Pull request [#5034](https://github.com/rubygems/rubygems/pull/5034) by hsbt
|
|
519
|
+
* Remove macOS specific gem layout. Pull request [#4833](https://github.com/rubygems/rubygems/pull/4833) by deivid-rodriguez
|
|
520
|
+
* Default `gem update` documentation format is now only `ri`. Pull request
|
|
521
|
+
[#3888](https://github.com/rubygems/rubygems/pull/3888) by hsbt
|
|
522
|
+
|
|
523
|
+
## Features:
|
|
524
|
+
|
|
525
|
+
* Give command misspelled suggestions via `did_you_mean` gem. Pull request
|
|
526
|
+
[#3904](https://github.com/rubygems/rubygems/pull/3904) by hsbt
|
|
527
|
+
|
|
528
|
+
## Performance:
|
|
529
|
+
|
|
530
|
+
* Avoid some unnecessary stat calls. Pull request [#3887](https://github.com/rubygems/rubygems/pull/3887) by kares
|
|
531
|
+
* Improve spell checking suggestion performance by
|
|
532
|
+
vendoring`DidYouMean::Levenshtein.distance` from `did_you_mean-1.4.0`.
|
|
533
|
+
Pull request [#3856](https://github.com/rubygems/rubygems/pull/3856) by austinpray
|
|
534
|
+
|
|
535
|
+
## Enhancements:
|
|
536
|
+
|
|
537
|
+
* Set `BUNDLER_VERSION` when `bundle _<version>_` is passed. Pull request
|
|
538
|
+
[#5180](https://github.com/rubygems/rubygems/pull/5180) by deivid-rodriguez
|
|
539
|
+
* Don't require `rdoc` for `gem uninstall`. Pull request [#4691](https://github.com/rubygems/rubygems/pull/4691) by ndren
|
|
540
|
+
* More focused rescue on extension builder exception to get more
|
|
541
|
+
information on errors. Pull request [#4189](https://github.com/rubygems/rubygems/pull/4189) by deivid-rodriguez
|
|
542
|
+
* Installs bundler 2.3.0 as a default gem.
|
|
543
|
+
|
|
544
|
+
## Bug fixes:
|
|
545
|
+
|
|
546
|
+
* Fix encoding mismatch issues when writing gem packages. Pull request
|
|
547
|
+
[#5162](https://github.com/rubygems/rubygems/pull/5162) by deivid-rodriguez
|
|
548
|
+
* Fix broken brew formula due to loading `operating_system.rb`
|
|
549
|
+
customizations too late. Pull request [#5154](https://github.com/rubygems/rubygems/pull/5154) by deivid-rodriguez
|
|
550
|
+
* Properly fetch `Gem#latest_spec_for` with multiple sources. Pull request
|
|
551
|
+
[#2764](https://github.com/rubygems/rubygems/pull/2764) by kevlogan90
|
|
552
|
+
* Fix upgrade crashing when multiple versions of `fileutils` installed.
|
|
553
|
+
Pull request [#5140](https://github.com/rubygems/rubygems/pull/5140) by deivid-rodriguez
|
|
554
|
+
|
|
555
|
+
# 3.2.33 / 2021-12-07
|
|
556
|
+
|
|
557
|
+
## Deprecations:
|
|
558
|
+
|
|
559
|
+
* Deprecate typo name. Pull request [#5109](https://github.com/rubygems/rubygems/pull/5109) by nobu
|
|
560
|
+
|
|
561
|
+
## Enhancements:
|
|
562
|
+
|
|
563
|
+
* Add login & logout alias for the signin & signout commands. Pull request
|
|
564
|
+
[#5133](https://github.com/rubygems/rubygems/pull/5133) by colby-swandale
|
|
565
|
+
* Fix race conditions when reading & writing gemspecs concurrently. Pull
|
|
566
|
+
request [#4408](https://github.com/rubygems/rubygems/pull/4408) by deivid-rodriguez
|
|
567
|
+
* Installs bundler 2.2.33 as a default gem.
|
|
568
|
+
|
|
569
|
+
## Bug fixes:
|
|
570
|
+
|
|
571
|
+
* Fix `ruby setup.rb` trying to write outside of `--destdir`. Pull request
|
|
572
|
+
[#5053](https://github.com/rubygems/rubygems/pull/5053) by deivid-rodriguez
|
|
573
|
+
|
|
574
|
+
## Documentation:
|
|
575
|
+
|
|
576
|
+
* Move required_ruby_version gemspec attribute to recommended section.
|
|
577
|
+
Pull request [#5130](https://github.com/rubygems/rubygems/pull/5130) by simi
|
|
578
|
+
* Ignore to generate the documentation from vendored libraries. Pull
|
|
579
|
+
request [#5118](https://github.com/rubygems/rubygems/pull/5118) by hsbt
|
|
580
|
+
|
|
581
|
+
# 3.2.32 / 2021-11-23
|
|
582
|
+
|
|
583
|
+
## Enhancements:
|
|
584
|
+
|
|
585
|
+
* Refactor installer thread safety protections. Pull request [#5050](https://github.com/rubygems/rubygems/pull/5050) by
|
|
586
|
+
deivid-rodriguez
|
|
587
|
+
* Allow gem activation from `operating_system.rb`. Pull request [#5044](https://github.com/rubygems/rubygems/pull/5044) by
|
|
588
|
+
deivid-rodriguez
|
|
589
|
+
* Installs bundler 2.2.32 as a default gem.
|
|
590
|
+
|
|
591
|
+
# 3.2.31 / 2021-11-08
|
|
592
|
+
|
|
593
|
+
## Enhancements:
|
|
594
|
+
|
|
595
|
+
* Don't pass empty `DESTDIR` to `nmake` since it works differently from
|
|
596
|
+
standard `make`. Pull request [#5057](https://github.com/rubygems/rubygems/pull/5057) by hsbt
|
|
597
|
+
* Fix `gem install` vs `gem fetch` inconsistency. Pull request [#5037](https://github.com/rubygems/rubygems/pull/5037) by
|
|
598
|
+
deivid-rodriguez
|
|
599
|
+
* Lazily load and vendor `optparse`. Pull request [#4881](https://github.com/rubygems/rubygems/pull/4881) by
|
|
600
|
+
deivid-rodriguez
|
|
601
|
+
* Use a vendored copy of `tsort` internally. Pull request [#5027](https://github.com/rubygems/rubygems/pull/5027) by
|
|
602
|
+
deivid-rodriguez
|
|
603
|
+
* Install bundler 2.2.31 as a default gem.
|
|
604
|
+
|
|
605
|
+
## Bug fixes:
|
|
606
|
+
|
|
607
|
+
* Fix `ruby setup.rb` when `--prefix` is passed. Pull request [#5051](https://github.com/rubygems/rubygems/pull/5051) by
|
|
608
|
+
deivid-rodriguez
|
|
609
|
+
* Don't apply `--destdir` twice when running `setup.rb`. Pull request
|
|
610
|
+
[#2768](https://github.com/rubygems/rubygems/pull/2768) by alyssais
|
|
611
|
+
|
|
1
612
|
# 3.2.30 / 2021-10-26
|
|
2
613
|
|
|
3
614
|
## Enhancements:
|
|
4
615
|
|
|
5
616
|
* Add support to build and sign certificates with multiple key algorithms.
|
|
6
|
-
Pull request #4991 by doodzik
|
|
7
|
-
* Avoid loading the `digest` gem unnecessarily. Pull request #4979 by
|
|
617
|
+
Pull request [#4991](https://github.com/rubygems/rubygems/pull/4991) by doodzik
|
|
618
|
+
* Avoid loading the `digest` gem unnecessarily. Pull request [#4979](https://github.com/rubygems/rubygems/pull/4979) by
|
|
8
619
|
deivid-rodriguez
|
|
9
|
-
* Prefer `require_relative` for all internal requires. Pull request #4978
|
|
620
|
+
* Prefer `require_relative` for all internal requires. Pull request [#4978](https://github.com/rubygems/rubygems/pull/4978)
|
|
10
621
|
by deivid-rodriguez
|
|
11
622
|
* Add missing `require` of `time` within
|
|
12
|
-
`Gem::Request.verify_certificate_message`. Pull request #4975 by nobu
|
|
623
|
+
`Gem::Request.verify_certificate_message`. Pull request [#4975](https://github.com/rubygems/rubygems/pull/4975) by nobu
|
|
624
|
+
* Install bundler 2.2.30 as a default gem.
|
|
13
625
|
|
|
14
626
|
## Performance:
|
|
15
627
|
|
|
16
|
-
* Speed up `gem install`, specially under Windows. Pull request #4960 by
|
|
628
|
+
* Speed up `gem install`, specially under Windows. Pull request [#4960](https://github.com/rubygems/rubygems/pull/4960) by
|
|
17
629
|
deivid-rodriguez
|
|
18
630
|
|
|
19
631
|
# 3.2.29 / 2021-10-08
|
|
@@ -21,240 +633,287 @@
|
|
|
21
633
|
## Enhancements:
|
|
22
634
|
|
|
23
635
|
* Only disallow FIXME/TODO for first word of gemspec description. Pull
|
|
24
|
-
request #4937 by duckinator
|
|
636
|
+
request [#4937](https://github.com/rubygems/rubygems/pull/4937) by duckinator
|
|
637
|
+
* Install bundler 2.2.29 as a default gem.
|
|
25
638
|
|
|
26
639
|
## Bug fixes:
|
|
27
640
|
|
|
28
641
|
* Fix `wordy` method in `SourceFetchProblem` changing the password of
|
|
29
|
-
source. Pull request #4910 by Huangxiaodui
|
|
642
|
+
source. Pull request [#4910](https://github.com/rubygems/rubygems/pull/4910) by Huangxiaodui
|
|
30
643
|
|
|
31
644
|
## Performance:
|
|
32
645
|
|
|
33
646
|
* Improve `require` performance, particularly on systems with a lot of
|
|
34
|
-
gems installed. Pull request #4951 by pocke
|
|
647
|
+
gems installed. Pull request [#4951](https://github.com/rubygems/rubygems/pull/4951) by pocke
|
|
35
648
|
|
|
36
649
|
# 3.2.28 / 2021-09-23
|
|
37
650
|
|
|
38
651
|
## Enhancements:
|
|
39
652
|
|
|
40
|
-
* Support MINGW-UCRT. Pull request #4925 by hsbt
|
|
41
|
-
* Only check if descriptions *start with* FIXME/TODO. Pull request #4841
|
|
653
|
+
* Support MINGW-UCRT. Pull request [#4925](https://github.com/rubygems/rubygems/pull/4925) by hsbt
|
|
654
|
+
* Only check if descriptions *start with* FIXME/TODO. Pull request [#4841](https://github.com/rubygems/rubygems/pull/4841)
|
|
42
655
|
by duckinator
|
|
43
656
|
* Avoid loading `uri` unnecessarily when activating gems. Pull request
|
|
44
|
-
#4897 by deivid-rodriguez
|
|
657
|
+
[#4897](https://github.com/rubygems/rubygems/pull/4897) by deivid-rodriguez
|
|
658
|
+
* Install bundler 2.2.28 as a default gem.
|
|
45
659
|
|
|
46
660
|
## Bug fixes:
|
|
47
661
|
|
|
48
|
-
* Fix redacted credentials being sent to gemserver. Pull request #4919 by
|
|
662
|
+
* Fix redacted credentials being sent to gemserver. Pull request [#4919](https://github.com/rubygems/rubygems/pull/4919) by
|
|
49
663
|
jdliss
|
|
50
664
|
|
|
51
665
|
# 3.2.27 / 2021-09-03
|
|
52
666
|
|
|
53
667
|
## Enhancements:
|
|
54
668
|
|
|
55
|
-
* Redact credentails when printing URI. Pull request #4868 by intuxicated
|
|
669
|
+
* Redact credentails when printing URI. Pull request [#4868](https://github.com/rubygems/rubygems/pull/4868) by intuxicated
|
|
56
670
|
* Prefer `require_relative` to `require` for internal requires. Pull
|
|
57
|
-
request #4858 by deivid-rodriguez
|
|
671
|
+
request [#4858](https://github.com/rubygems/rubygems/pull/4858) by deivid-rodriguez
|
|
58
672
|
* Prioritise gems with higher version for fetching metadata, and stop
|
|
59
|
-
fetching once we find a valid candidate. Pull request #4843 by intuxicated
|
|
673
|
+
fetching once we find a valid candidate. Pull request [#4843](https://github.com/rubygems/rubygems/pull/4843) by intuxicated
|
|
674
|
+
* Install bundler 2.2.27 as a default gem.
|
|
60
675
|
|
|
61
676
|
# 3.2.26 / 2021-08-17
|
|
62
677
|
|
|
63
678
|
## Enhancements:
|
|
64
679
|
|
|
65
680
|
* Enhance the error handling for loading the
|
|
66
|
-
`rubygems/defaults/operating_system` file. Pull request #4824 by
|
|
681
|
+
`rubygems/defaults/operating_system` file. Pull request [#4824](https://github.com/rubygems/rubygems/pull/4824) by
|
|
67
682
|
intuxicated
|
|
68
|
-
* Ignore `RUBYGEMS_GEMDEPS` for the bundler gem. Pull request #4532 by
|
|
683
|
+
* Ignore `RUBYGEMS_GEMDEPS` for the bundler gem. Pull request [#4532](https://github.com/rubygems/rubygems/pull/4532) by
|
|
69
684
|
deivid-rodriguez
|
|
685
|
+
* Install bundler 2.2.26 as a default gem.
|
|
70
686
|
|
|
71
687
|
## Bug fixes:
|
|
72
688
|
|
|
73
|
-
* Also load user installed rubygems plugins. Pull request #4829 by
|
|
689
|
+
* Also load user installed rubygems plugins. Pull request [#4829](https://github.com/rubygems/rubygems/pull/4829) by
|
|
74
690
|
deivid-rodriguez
|
|
75
691
|
|
|
76
692
|
# 3.2.25 / 2021-07-30
|
|
77
693
|
|
|
78
694
|
## Enhancements:
|
|
79
695
|
|
|
80
|
-
* Don't load the `base64` library since it's not used. Pull request #4785
|
|
696
|
+
* Don't load the `base64` library since it's not used. Pull request [#4785](https://github.com/rubygems/rubygems/pull/4785)
|
|
81
697
|
by deivid-rodriguez
|
|
82
|
-
* Don't load the `resolv` library since it's not used. Pull request #4784
|
|
698
|
+
* Don't load the `resolv` library since it's not used. Pull request [#4784](https://github.com/rubygems/rubygems/pull/4784)
|
|
83
699
|
by deivid-rodriguez
|
|
84
|
-
* Lazily load `shellwords` library. Pull request #4783 by deivid-rodriguez
|
|
700
|
+
* Lazily load `shellwords` library. Pull request [#4783](https://github.com/rubygems/rubygems/pull/4783) by deivid-rodriguez
|
|
85
701
|
* Check requirements class before loading marshalled requirements. Pull
|
|
86
|
-
request #4651 by nobu
|
|
702
|
+
request [#4651](https://github.com/rubygems/rubygems/pull/4651) by nobu
|
|
703
|
+
* Install bundler 2.2.25 as a default gem.
|
|
87
704
|
|
|
88
705
|
## Bug fixes:
|
|
89
706
|
|
|
90
707
|
* Add missing `require 'fileutils'` in `Gem::ConfigFile`. Pull request
|
|
91
|
-
#4768 by ybiquitous
|
|
708
|
+
[#4768](https://github.com/rubygems/rubygems/pull/4768) by ybiquitous
|
|
92
709
|
|
|
93
710
|
# 3.2.24 / 2021-07-15
|
|
94
711
|
|
|
712
|
+
## Enhancements:
|
|
713
|
+
|
|
714
|
+
* Install bundler 2.2.24 as a default gem.
|
|
715
|
+
|
|
95
716
|
## Bug fixes:
|
|
96
717
|
|
|
97
718
|
* Fix contradictory message about deletion of default gem. Pull request
|
|
98
|
-
#4739 by jaredbeck
|
|
719
|
+
[#4739](https://github.com/rubygems/rubygems/pull/4739) by jaredbeck
|
|
99
720
|
|
|
100
721
|
## Documentation:
|
|
101
722
|
|
|
102
723
|
* Add a description about `GEM_HOST_OTP_CODE` to help text. Pull request
|
|
103
|
-
#4742 by ybiquitous
|
|
724
|
+
[#4742](https://github.com/rubygems/rubygems/pull/4742) by ybiquitous
|
|
104
725
|
|
|
105
726
|
# 3.2.23 / 2021-07-09
|
|
106
727
|
|
|
107
728
|
## Enhancements:
|
|
108
729
|
|
|
109
730
|
* Rewind IO source to allow working with contents in memory. Pull request
|
|
110
|
-
#4729 by drcapulet
|
|
731
|
+
[#4729](https://github.com/rubygems/rubygems/pull/4729) by drcapulet
|
|
732
|
+
* Install bundler 2.2.23 as a default gem.
|
|
111
733
|
|
|
112
734
|
# 3.2.22 / 2021-07-06
|
|
113
735
|
|
|
114
736
|
## Enhancements:
|
|
115
737
|
|
|
116
|
-
* Allow setting `--otp` via `GEM_HOST_OTP_CODE`. Pull request #4697 by
|
|
738
|
+
* Allow setting `--otp` via `GEM_HOST_OTP_CODE`. Pull request [#4697](https://github.com/rubygems/rubygems/pull/4697) by
|
|
117
739
|
CGA1123
|
|
118
740
|
* Fixes for the edge case when openssl library is missing. Pull request
|
|
119
|
-
#4695 by rhenium
|
|
741
|
+
[#4695](https://github.com/rubygems/rubygems/pull/4695) by rhenium
|
|
742
|
+
* Install bundler 2.2.22 as a default gem.
|
|
120
743
|
|
|
121
744
|
# 3.2.21 / 2021-06-23
|
|
122
745
|
|
|
123
746
|
## Enhancements:
|
|
124
747
|
|
|
125
|
-
* Fix typo in OpenSSL detection. Pull request #4679 by osyoyu
|
|
126
|
-
* Add the most recent licenses from spdx.org. Pull request #4662 by nobu
|
|
748
|
+
* Fix typo in OpenSSL detection. Pull request [#4679](https://github.com/rubygems/rubygems/pull/4679) by osyoyu
|
|
749
|
+
* Add the most recent licenses from spdx.org. Pull request [#4662](https://github.com/rubygems/rubygems/pull/4662) by nobu
|
|
127
750
|
* Simplify setup.rb code to allow installing rubygems from source on
|
|
128
|
-
truffleruby 21.0 and 21.1. Pull request #4624 by deivid-rodriguez
|
|
751
|
+
truffleruby 21.0 and 21.1. Pull request [#4624](https://github.com/rubygems/rubygems/pull/4624) by deivid-rodriguez
|
|
752
|
+
* Install bundler 2.2.21 as a default gem.
|
|
129
753
|
|
|
130
754
|
## Bug fixes:
|
|
131
755
|
|
|
132
756
|
* Create credentials folder when setting API keys if not there yet. Pull
|
|
133
|
-
request #4665 by deivid-rodriguez
|
|
757
|
+
request [#4665](https://github.com/rubygems/rubygems/pull/4665) by deivid-rodriguez
|
|
134
758
|
|
|
135
759
|
# 3.2.20 / 2021-06-11
|
|
136
760
|
|
|
137
761
|
## Security fixes:
|
|
138
762
|
|
|
139
|
-
* Verify
|
|
140
|
-
execution. Pull request #4667 by sonalkr132
|
|
763
|
+
* Verify platform before installing to avoid potential remote code
|
|
764
|
+
execution. Pull request [#4667](https://github.com/rubygems/rubygems/pull/4667) by sonalkr132
|
|
141
765
|
|
|
142
766
|
## Enhancements:
|
|
143
767
|
|
|
144
|
-
* Add better specification policy error description. Pull request #4658 by
|
|
768
|
+
* Add better specification policy error description. Pull request [#4658](https://github.com/rubygems/rubygems/pull/4658) by
|
|
145
769
|
ceritium
|
|
770
|
+
* Install bundler 2.2.20 as a default gem.
|
|
146
771
|
|
|
147
772
|
# 3.2.19 / 2021-05-31
|
|
148
773
|
|
|
149
774
|
## Enhancements:
|
|
150
775
|
|
|
151
|
-
* Fix `gem help build` output format. Pull request #4613 by tnir
|
|
776
|
+
* Fix `gem help build` output format. Pull request [#4613](https://github.com/rubygems/rubygems/pull/4613) by tnir
|
|
777
|
+
* Install bundler 2.2.19 as a default gem.
|
|
152
778
|
|
|
153
779
|
# 3.2.18 / 2021-05-25
|
|
154
780
|
|
|
155
781
|
## Enhancements:
|
|
156
782
|
|
|
157
783
|
* Don't leave temporary directory around when building extensions to
|
|
158
|
-
improve build reproducibility. Pull request #4610 by baloo
|
|
784
|
+
improve build reproducibility. Pull request [#4610](https://github.com/rubygems/rubygems/pull/4610) by baloo
|
|
785
|
+
* Install bundler 2.2.18 as a default gem.
|
|
159
786
|
|
|
160
787
|
# 3.2.17 / 2021-05-05
|
|
161
788
|
|
|
162
789
|
## Enhancements:
|
|
163
790
|
|
|
164
|
-
* Only print month & year in deprecation messages. Pull request #3085 by
|
|
791
|
+
* Only print month & year in deprecation messages. Pull request [#3085](https://github.com/rubygems/rubygems/pull/3085) by
|
|
165
792
|
Schwad
|
|
166
793
|
* Make deprecate method support ruby3's keyword arguments. Pull request
|
|
167
|
-
#4558 by mame
|
|
168
|
-
* Update the default bindir on macOS. Pull request #4524 by nobu
|
|
169
|
-
* Prefer File.open instead of Kernel#open. Pull request #4529 by mame
|
|
794
|
+
[#4558](https://github.com/rubygems/rubygems/pull/4558) by mame
|
|
795
|
+
* Update the default bindir on macOS. Pull request [#4524](https://github.com/rubygems/rubygems/pull/4524) by nobu
|
|
796
|
+
* Prefer File.open instead of Kernel#open. Pull request [#4529](https://github.com/rubygems/rubygems/pull/4529) by mame
|
|
797
|
+
* Install bundler 2.2.17 as a default gem.
|
|
170
798
|
|
|
171
799
|
## Documentation:
|
|
172
800
|
|
|
173
801
|
* Fix usage messages to reflect the current POSIX-compatible behaviour.
|
|
174
|
-
Pull request #4551 by graywolf-at-work
|
|
802
|
+
Pull request [#4551](https://github.com/rubygems/rubygems/pull/4551) by graywolf-at-work
|
|
175
803
|
|
|
176
804
|
# 3.2.16 / 2021-04-08
|
|
177
805
|
|
|
806
|
+
## Enhancements:
|
|
807
|
+
|
|
808
|
+
* Install bundler 2.2.16 as a default gem.
|
|
809
|
+
|
|
178
810
|
## Bug fixes:
|
|
179
811
|
|
|
180
|
-
* Correctly handle symlinks. Pull request #2836 by voxik
|
|
812
|
+
* Correctly handle symlinks. Pull request [#2836](https://github.com/rubygems/rubygems/pull/2836) by voxik
|
|
181
813
|
|
|
182
814
|
# 3.2.15 / 2021-03-19
|
|
183
815
|
|
|
184
816
|
## Enhancements:
|
|
185
817
|
|
|
186
|
-
* Prevent downgrades to untested rubygems versions. Pull request #4460 by
|
|
818
|
+
* Prevent downgrades to untested rubygems versions. Pull request [#4460](https://github.com/rubygems/rubygems/pull/4460) by
|
|
187
819
|
deivid-rodriguez
|
|
820
|
+
* Install bundler 2.2.15 as a default gem.
|
|
188
821
|
|
|
189
822
|
## Bug fixes:
|
|
190
823
|
|
|
191
|
-
* Fix missing require breaking `gem cert`. Pull request #4464 by lukehinds
|
|
824
|
+
* Fix missing require breaking `gem cert`. Pull request [#4464](https://github.com/rubygems/rubygems/pull/4464) by lukehinds
|
|
192
825
|
|
|
193
826
|
# 3.2.14 / 2021-03-08
|
|
194
827
|
|
|
195
828
|
## Enhancements:
|
|
196
829
|
|
|
197
|
-
* Less wrapping of network errors. Pull request #4064 by deivid-rodriguez
|
|
830
|
+
* Less wrapping of network errors. Pull request [#4064](https://github.com/rubygems/rubygems/pull/4064) by deivid-rodriguez
|
|
831
|
+
* Install bundler 2.2.14 as a default gem.
|
|
198
832
|
|
|
199
833
|
## Bug fixes:
|
|
200
834
|
|
|
201
835
|
* Revert addition of support for `musl` variants to restore graceful
|
|
202
|
-
fallback on Alpine. Pull request #4434 by deivid-rodriguez
|
|
836
|
+
fallback on Alpine. Pull request [#4434](https://github.com/rubygems/rubygems/pull/4434) by deivid-rodriguez
|
|
203
837
|
|
|
204
838
|
# 3.2.13 / 2021-03-03
|
|
205
839
|
|
|
840
|
+
## Enhancements:
|
|
841
|
+
|
|
842
|
+
* Install bundler 2.2.13 as a default gem.
|
|
843
|
+
|
|
206
844
|
## Bug fixes:
|
|
207
845
|
|
|
208
|
-
* Support non-gnu libc linux platforms. Pull request #4082 by lloeki
|
|
846
|
+
* Support non-gnu libc linux platforms. Pull request [#4082](https://github.com/rubygems/rubygems/pull/4082) by lloeki
|
|
209
847
|
|
|
210
848
|
# 3.2.12 / 2021-03-01
|
|
211
849
|
|
|
850
|
+
## Enhancements:
|
|
851
|
+
|
|
852
|
+
* Install bundler 2.2.12 as a default gem.
|
|
853
|
+
|
|
212
854
|
## Bug fixes:
|
|
213
855
|
|
|
214
856
|
* Restore the ability to manually install extension gems. Pull request
|
|
215
|
-
#4384 by cfis
|
|
857
|
+
[#4384](https://github.com/rubygems/rubygems/pull/4384) by cfis
|
|
216
858
|
|
|
217
859
|
# 3.2.11 / 2021-02-17
|
|
218
860
|
|
|
219
861
|
## Enhancements:
|
|
220
862
|
|
|
221
|
-
* Optionally fallback to IPv4 when IPv6 is unreachable. Pull request #2662
|
|
863
|
+
* Optionally fallback to IPv4 when IPv6 is unreachable. Pull request [#2662](https://github.com/rubygems/rubygems/pull/2662)
|
|
222
864
|
by sonalkr132
|
|
865
|
+
* Install bundler 2.2.11 as a default gem.
|
|
223
866
|
|
|
224
867
|
# 3.2.10 / 2021-02-15
|
|
225
868
|
|
|
869
|
+
## Enhancements:
|
|
870
|
+
|
|
871
|
+
* Install bundler 2.2.10 as a default gem.
|
|
872
|
+
|
|
226
873
|
## Documentation:
|
|
227
874
|
|
|
228
|
-
* Add a `gem push` example to `gem help`. Pull request #4373 by
|
|
875
|
+
* Add a `gem push` example to `gem help`. Pull request [#4373](https://github.com/rubygems/rubygems/pull/4373) by
|
|
229
876
|
deivid-rodriguez
|
|
230
|
-
* Improve documentation for `required_ruby_version`. Pull request #4343 by
|
|
877
|
+
* Improve documentation for `required_ruby_version`. Pull request [#4343](https://github.com/rubygems/rubygems/pull/4343) by
|
|
231
878
|
AlexWayfer
|
|
232
879
|
|
|
233
880
|
# 3.2.9 / 2021-02-08
|
|
234
881
|
|
|
882
|
+
## Enhancements:
|
|
883
|
+
|
|
884
|
+
* Install bundler 2.2.9 as a default gem.
|
|
885
|
+
|
|
235
886
|
## Bug fixes:
|
|
236
887
|
|
|
237
888
|
* Fix error message when underscore selection can't find bundler. Pull
|
|
238
|
-
request #4363 by deivid-rodriguez
|
|
889
|
+
request [#4363](https://github.com/rubygems/rubygems/pull/4363) by deivid-rodriguez
|
|
239
890
|
* Fix `Gem::Specification.stubs_for` returning wrong named specs. Pull
|
|
240
|
-
request #4356 by tompng
|
|
891
|
+
request [#4356](https://github.com/rubygems/rubygems/pull/4356) by tompng
|
|
241
892
|
* Don't error out when activating a binstub unless necessary. Pull request
|
|
242
|
-
#4351 by deivid-rodriguez
|
|
893
|
+
[#4351](https://github.com/rubygems/rubygems/pull/4351) by deivid-rodriguez
|
|
243
894
|
* Fix `gem outdated` incorrectly handling platform specific gems. Pull
|
|
244
|
-
request #4248 by deivid-rodriguez
|
|
895
|
+
request [#4248](https://github.com/rubygems/rubygems/pull/4248) by deivid-rodriguez
|
|
245
896
|
|
|
246
897
|
# 3.2.8 / 2021-02-02
|
|
247
898
|
|
|
899
|
+
## Enhancements:
|
|
900
|
+
|
|
901
|
+
* Install bundler 2.2.8 as a default gem.
|
|
902
|
+
|
|
248
903
|
## Bug fixes:
|
|
249
904
|
|
|
250
905
|
* Fix `gem install` crashing on gemspec with nil required_ruby_version.
|
|
251
|
-
Pull request #4334 by pbernays
|
|
906
|
+
Pull request [#4334](https://github.com/rubygems/rubygems/pull/4334) by pbernays
|
|
252
907
|
|
|
253
908
|
# 3.2.7 / 2021-01-26
|
|
254
909
|
|
|
910
|
+
## Enhancements:
|
|
911
|
+
|
|
912
|
+
* Install bundler 2.2.7 as a default gem.
|
|
913
|
+
|
|
255
914
|
## Bug fixes:
|
|
256
915
|
|
|
257
|
-
* Generate plugin wrappers with relative requires. Pull request #4317 by
|
|
916
|
+
* Generate plugin wrappers with relative requires. Pull request [#4317](https://github.com/rubygems/rubygems/pull/4317) by
|
|
258
917
|
deivid-rodriguez
|
|
259
918
|
|
|
260
919
|
# 3.2.6 / 2021-01-18
|
|
@@ -262,610 +921,623 @@
|
|
|
262
921
|
## Enhancements:
|
|
263
922
|
|
|
264
923
|
* Fix `Gem::Platform#inspect` showing duplicate information. Pull request
|
|
265
|
-
#4276 by deivid-rodriguez
|
|
924
|
+
[#4276](https://github.com/rubygems/rubygems/pull/4276) by deivid-rodriguez
|
|
925
|
+
* Install bundler 2.2.6 as a default gem.
|
|
266
926
|
|
|
267
927
|
## Bug fixes:
|
|
268
928
|
|
|
269
929
|
* Swallow any system call error in `ensure_gem_subdirs` to support jruby
|
|
270
|
-
embedded paths. Pull request #4291 by kares
|
|
930
|
+
embedded paths. Pull request [#4291](https://github.com/rubygems/rubygems/pull/4291) by kares
|
|
271
931
|
* Restore accepting custom make command with extra options as the `make`
|
|
272
|
-
env variable. Pull request #4271 by terceiro
|
|
932
|
+
env variable. Pull request [#4271](https://github.com/rubygems/rubygems/pull/4271) by terceiro
|
|
273
933
|
|
|
274
934
|
# 3.2.5 / 2021-01-11
|
|
275
935
|
|
|
936
|
+
## Enhancements:
|
|
937
|
+
|
|
938
|
+
* Install bundler 2.2.5 as a default gem.
|
|
939
|
+
|
|
276
940
|
## Bug fixes:
|
|
277
941
|
|
|
278
942
|
* Don't load more specs after the whole set of specs has been setup. Pull
|
|
279
|
-
request #4262 by deivid-rodriguez
|
|
943
|
+
request [#4262](https://github.com/rubygems/rubygems/pull/4262) by deivid-rodriguez
|
|
280
944
|
* Fix broken `bundler` executable after `gem update --system`. Pull
|
|
281
|
-
request #4221 by deivid-rodriguez
|
|
945
|
+
request [#4221](https://github.com/rubygems/rubygems/pull/4221) by deivid-rodriguez
|
|
282
946
|
|
|
283
947
|
# 3.2.4 / 2020-12-31
|
|
284
948
|
|
|
285
949
|
## Enhancements:
|
|
286
950
|
|
|
287
|
-
* Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
|
|
951
|
+
* Use a CHANGELOG in markdown for rubygems. Pull request [#4168](https://github.com/rubygems/rubygems/pull/4168) by
|
|
288
952
|
deivid-rodriguez
|
|
289
|
-
* Never spawn subshells when building extensions. Pull request #4190 by
|
|
953
|
+
* Never spawn subshells when building extensions. Pull request [#4190](https://github.com/rubygems/rubygems/pull/4190) by
|
|
290
954
|
deivid-rodriguez
|
|
955
|
+
* Install bundler 2.2.4 as a default gem.
|
|
291
956
|
|
|
292
957
|
## Bug fixes:
|
|
293
958
|
|
|
294
959
|
* Fix fallback to the old index and installation from it not working. Pull
|
|
295
|
-
request #4213 by deivid-rodriguez
|
|
296
|
-
* Fix installing from source on truffleruby. Pull request #4201 by
|
|
960
|
+
request [#4213](https://github.com/rubygems/rubygems/pull/4213) by deivid-rodriguez
|
|
961
|
+
* Fix installing from source on truffleruby. Pull request [#4201](https://github.com/rubygems/rubygems/pull/4201) by
|
|
297
962
|
deivid-rodriguez
|
|
298
963
|
|
|
299
964
|
# 3.2.3 / 2020-12-22
|
|
300
965
|
|
|
301
966
|
## Enhancements:
|
|
302
967
|
|
|
303
|
-
* Fix misspellings in default API key name. Pull request #4177 by hsbt
|
|
968
|
+
* Fix misspellings in default API key name. Pull request [#4177](https://github.com/rubygems/rubygems/pull/4177) by hsbt
|
|
969
|
+
* Install bundler 2.2.3 as a default gem.
|
|
304
970
|
|
|
305
971
|
## Bug fixes:
|
|
306
972
|
|
|
307
973
|
* Respect `required_ruby_version` and `required_rubygems_version`
|
|
308
|
-
constraints when looking for `gem install` candidates. Pull request #4110
|
|
974
|
+
constraints when looking for `gem install` candidates. Pull request [#4110](https://github.com/rubygems/rubygems/pull/4110)
|
|
309
975
|
by deivid-rodriguez
|
|
310
976
|
|
|
311
977
|
# 3.2.2 / 2020-12-17
|
|
312
978
|
|
|
979
|
+
## Enhancements:
|
|
980
|
+
|
|
981
|
+
* Install bundler 2.2.2 as a default gem.
|
|
982
|
+
|
|
313
983
|
## Bug fixes:
|
|
314
984
|
|
|
315
985
|
* Fix issue where CLI commands making more than one request to
|
|
316
986
|
rubygems.org needing an OTP code would crash or ask for the code twice.
|
|
317
|
-
Pull request #4162 by sonalkr132
|
|
318
|
-
* Fix building rake extensions that require openssl. Pull request #4165 by
|
|
987
|
+
Pull request [#4162](https://github.com/rubygems/rubygems/pull/4162) by sonalkr132
|
|
988
|
+
* Fix building rake extensions that require openssl. Pull request [#4165](https://github.com/rubygems/rubygems/pull/4165) by
|
|
319
989
|
deivid-rodriguez
|
|
320
990
|
* Fix `gem update --system` displaying too many changelog entries. Pull
|
|
321
|
-
request #4145 by deivid-rodriguez
|
|
991
|
+
request [#4145](https://github.com/rubygems/rubygems/pull/4145) by deivid-rodriguez
|
|
322
992
|
|
|
323
993
|
# 3.2.1 / 2020-12-14
|
|
324
994
|
|
|
325
995
|
## Enhancements:
|
|
326
996
|
|
|
327
997
|
* Added help message for gem i webrick in gem server command. Pull request
|
|
328
|
-
#4117 by hsbt
|
|
998
|
+
[#4117](https://github.com/rubygems/rubygems/pull/4117) by hsbt
|
|
999
|
+
* Install bundler 2.2.1 as a default gem.
|
|
329
1000
|
|
|
330
1001
|
## Bug fixes:
|
|
331
1002
|
|
|
332
1003
|
* Added the missing loading of fileutils same as load_specs. Pull request
|
|
333
|
-
#4124 by hsbt
|
|
1004
|
+
[#4124](https://github.com/rubygems/rubygems/pull/4124) by hsbt
|
|
334
1005
|
* Fix Resolver::APISet to always include prereleases when necessary. Pull
|
|
335
|
-
request #4113 by deivid-rodriguez
|
|
1006
|
+
request [#4113](https://github.com/rubygems/rubygems/pull/4113) by deivid-rodriguez
|
|
336
1007
|
|
|
337
1008
|
# 3.2.0 / 2020-12-07
|
|
338
1009
|
|
|
339
1010
|
## Enhancements:
|
|
340
1011
|
|
|
341
|
-
* Do not override Kernel#warn when there is no need. Pull request #4075 by
|
|
1012
|
+
* Do not override Kernel#warn when there is no need. Pull request [#4075](https://github.com/rubygems/rubygems/pull/4075) by
|
|
342
1013
|
eregon
|
|
343
|
-
* Update endpoint of gem signin command. Pull request #3840 by sonalkr132
|
|
344
|
-
* Omit deprecated commands from command help output. Pull request #4023 by
|
|
1014
|
+
* Update endpoint of gem signin command. Pull request [#3840](https://github.com/rubygems/rubygems/pull/3840) by sonalkr132
|
|
1015
|
+
* Omit deprecated commands from command help output. Pull request [#4023](https://github.com/rubygems/rubygems/pull/4023) by
|
|
345
1016
|
landongrindheim
|
|
346
|
-
* Suggest alternatives in `gem query` deprecation. Pull request #4021 by
|
|
1017
|
+
* Suggest alternatives in `gem query` deprecation. Pull request [#4021](https://github.com/rubygems/rubygems/pull/4021) by
|
|
347
1018
|
landongrindheim
|
|
348
|
-
* Lazily load `time`, `cgi`, and `zlib`. Pull request #4010 by
|
|
1019
|
+
* Lazily load `time`, `cgi`, and `zlib`. Pull request [#4010](https://github.com/rubygems/rubygems/pull/4010) by
|
|
349
1020
|
deivid-rodriguez
|
|
350
1021
|
* Don't hit the network when installing dependencyless local gemspec. Pull
|
|
351
|
-
request #3968 by deivid-rodriguez
|
|
352
|
-
* Add `--force` option to `gem sources` command. Pull request #3956 by
|
|
1022
|
+
request [#3968](https://github.com/rubygems/rubygems/pull/3968) by deivid-rodriguez
|
|
1023
|
+
* Add `--force` option to `gem sources` command. Pull request [#3956](https://github.com/rubygems/rubygems/pull/3956) by
|
|
353
1024
|
andy-smith-msm
|
|
354
|
-
* Lazily load `openssl`. Pull request #3850 by deivid-rodriguez
|
|
355
|
-
* Pass more information when comparing platforms. Pull request #3817 by
|
|
1025
|
+
* Lazily load `openssl`. Pull request [#3850](https://github.com/rubygems/rubygems/pull/3850) by deivid-rodriguez
|
|
1026
|
+
* Pass more information when comparing platforms. Pull request [#3817](https://github.com/rubygems/rubygems/pull/3817) by
|
|
356
1027
|
eregon
|
|
1028
|
+
* Install bundler 2.2.0 as a default gem.
|
|
357
1029
|
|
|
358
1030
|
## Bug fixes:
|
|
359
1031
|
|
|
360
1032
|
* Use better owner & group for files in rubygems package. Pull request
|
|
361
|
-
#4065 by deivid-rodriguez
|
|
362
|
-
* Improve gem build -C flag. Pull request #3983 by bronzdoc
|
|
1033
|
+
[#4065](https://github.com/rubygems/rubygems/pull/4065) by deivid-rodriguez
|
|
1034
|
+
* Improve gem build -C flag. Pull request [#3983](https://github.com/rubygems/rubygems/pull/3983) by bronzdoc
|
|
363
1035
|
* Handle unexpected behavior with URI#merge and subpaths missing trailing
|
|
364
|
-
slashes. Pull request #3123 by drcapulet
|
|
1036
|
+
slashes. Pull request [#3123](https://github.com/rubygems/rubygems/pull/3123) by drcapulet
|
|
365
1037
|
* Add missing `fileutils` require in rubygems installer. Pull request
|
|
366
|
-
#4036 by deivid-rodriguez
|
|
1038
|
+
[#4036](https://github.com/rubygems/rubygems/pull/4036) by deivid-rodriguez
|
|
367
1039
|
* Fix `--platform` option to `gem specification` being ignored. Pull
|
|
368
|
-
request #4043 by deivid-rodriguez
|
|
1040
|
+
request [#4043](https://github.com/rubygems/rubygems/pull/4043) by deivid-rodriguez
|
|
369
1041
|
* Expose `--no-minimal-deps` flag to install the latest version of
|
|
370
|
-
dependencies. Pull request #4030 by deivid-rodriguez
|
|
1042
|
+
dependencies. Pull request [#4030](https://github.com/rubygems/rubygems/pull/4030) by deivid-rodriguez
|
|
371
1043
|
* Fix "stack level too deep" error when overriding `Warning.warn`. Pull
|
|
372
|
-
request #3987 by eregon
|
|
1044
|
+
request [#3987](https://github.com/rubygems/rubygems/pull/3987) by eregon
|
|
373
1045
|
* Append '.gemspec' extension only when it is not present. Pull request
|
|
374
|
-
#3988 by voxik
|
|
1046
|
+
[#3988](https://github.com/rubygems/rubygems/pull/3988) by voxik
|
|
375
1047
|
* Install to correct plugins dir when using `--build-root`. Pull request
|
|
376
|
-
#3972 by deivid-rodriguez
|
|
377
|
-
* Fix `--build-root` flag under Windows. Pull request #3975 by
|
|
1048
|
+
[#3972](https://github.com/rubygems/rubygems/pull/3972) by deivid-rodriguez
|
|
1049
|
+
* Fix `--build-root` flag under Windows. Pull request [#3975](https://github.com/rubygems/rubygems/pull/3975) by
|
|
378
1050
|
deivid-rodriguez
|
|
379
1051
|
* Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
|
|
380
|
-
request #3951 by andy-smith-msm
|
|
1052
|
+
request [#3951](https://github.com/rubygems/rubygems/pull/3951) by andy-smith-msm
|
|
381
1053
|
* Make `--default` and `--install-dir` options to `gem install` play nice
|
|
382
|
-
together. Pull request #3906 by deivid-rodriguez
|
|
1054
|
+
together. Pull request [#3906](https://github.com/rubygems/rubygems/pull/3906) by deivid-rodriguez
|
|
383
1055
|
|
|
384
1056
|
## Deprecations:
|
|
385
1057
|
|
|
386
|
-
* Deprecate server command. Pull request #3868 by bronzdoc
|
|
1058
|
+
* Deprecate server command. Pull request [#3868](https://github.com/rubygems/rubygems/pull/3868) by bronzdoc
|
|
387
1059
|
|
|
388
1060
|
## Performance:
|
|
389
1061
|
|
|
390
1062
|
* Don't change ruby process CWD when building extensions. Pull request
|
|
391
|
-
#3498 by deivid-rodriguez
|
|
1063
|
+
[#3498](https://github.com/rubygems/rubygems/pull/3498) by deivid-rodriguez
|
|
392
1064
|
|
|
393
1065
|
# 3.2.0.rc.2 / 2020-10-08
|
|
394
1066
|
|
|
395
1067
|
## Enhancements:
|
|
396
1068
|
|
|
397
1069
|
* Make --dry-run flag consistent across rubygems commands. Pull request
|
|
398
|
-
#3867 by bronzdoc
|
|
399
|
-
* Disallow downgrades to too old versions. Pull request #3566 by
|
|
1070
|
+
[#3867](https://github.com/rubygems/rubygems/pull/3867) by bronzdoc
|
|
1071
|
+
* Disallow downgrades to too old versions. Pull request [#3566](https://github.com/rubygems/rubygems/pull/3566) by
|
|
400
1072
|
deivid-rodriguez
|
|
401
|
-
* Added `--platform` option to `build` command. Pull request #3079 by nobu
|
|
1073
|
+
* Added `--platform` option to `build` command. Pull request [#3079](https://github.com/rubygems/rubygems/pull/3079) by nobu
|
|
402
1074
|
* Have "gem update --system" pass through the `--silent` flag. Pull
|
|
403
|
-
request #3789 by duckinator
|
|
404
|
-
* Add writable check for cache dir. Pull request #3876 by xndcn
|
|
405
|
-
* Warn on duplicate dependency in a specification. Pull request #3864 by
|
|
1075
|
+
request [#3789](https://github.com/rubygems/rubygems/pull/3789) by duckinator
|
|
1076
|
+
* Add writable check for cache dir. Pull request [#3876](https://github.com/rubygems/rubygems/pull/3876) by xndcn
|
|
1077
|
+
* Warn on duplicate dependency in a specification. Pull request [#3864](https://github.com/rubygems/rubygems/pull/3864) by
|
|
406
1078
|
bronzdoc
|
|
407
|
-
* Fix indentation in `gem env`. Pull request #3861 by colby-swandale
|
|
408
|
-
* Let more exceptions flow. Pull request #3819 by deivid-rodriguez
|
|
409
|
-
* Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
|
|
1079
|
+
* Fix indentation in `gem env`. Pull request [#3861](https://github.com/rubygems/rubygems/pull/3861) by colby-swandale
|
|
1080
|
+
* Let more exceptions flow. Pull request [#3819](https://github.com/rubygems/rubygems/pull/3819) by deivid-rodriguez
|
|
1081
|
+
* Ignore internal frames in RubyGems' Kernel#warn. Pull request [#3810](https://github.com/rubygems/rubygems/pull/3810) by
|
|
410
1082
|
eregon
|
|
411
1083
|
|
|
412
1084
|
## Bug fixes:
|
|
413
1085
|
|
|
414
|
-
* Add missing fileutils require. Pull request #3911 by deivid-rodriguez
|
|
1086
|
+
* Add missing fileutils require. Pull request [#3911](https://github.com/rubygems/rubygems/pull/3911) by deivid-rodriguez
|
|
415
1087
|
* Fix false positive warning on Windows when PATH has
|
|
416
|
-
`File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
|
|
1088
|
+
`File::ALT_SEPARATOR`. Pull request [#3829](https://github.com/rubygems/rubygems/pull/3829) by deivid-rodriguez
|
|
417
1089
|
* Fix Kernel#warn override to handle backtrace location with nil path.
|
|
418
|
-
Pull request #3852 by jeremyevans
|
|
419
|
-
* Don't format executables on `gem update --system`. Pull request #3811 by
|
|
1090
|
+
Pull request [#3852](https://github.com/rubygems/rubygems/pull/3852) by jeremyevans
|
|
1091
|
+
* Don't format executables on `gem update --system`. Pull request [#3811](https://github.com/rubygems/rubygems/pull/3811) by
|
|
420
1092
|
deivid-rodriguez
|
|
421
1093
|
* `gem install --user` fails with `Gem::FilePermissionError` on the system
|
|
422
|
-
plugins directory. Pull request #3804 by nobu
|
|
1094
|
+
plugins directory. Pull request [#3804](https://github.com/rubygems/rubygems/pull/3804) by nobu
|
|
423
1095
|
|
|
424
1096
|
## Performance:
|
|
425
1097
|
|
|
426
1098
|
* Avoid duplicated generation of APISpecification objects. Pull request
|
|
427
|
-
#3940 by mame
|
|
428
|
-
* Eval defaults with frozen_string_literal: true. Pull request #3847 by
|
|
1099
|
+
[#3940](https://github.com/rubygems/rubygems/pull/3940) by mame
|
|
1100
|
+
* Eval defaults with frozen_string_literal: true. Pull request [#3847](https://github.com/rubygems/rubygems/pull/3847) by
|
|
429
1101
|
casperisfine
|
|
430
|
-
* Deduplicate the requirement operators in memory. Pull request #3846 by
|
|
1102
|
+
* Deduplicate the requirement operators in memory. Pull request [#3846](https://github.com/rubygems/rubygems/pull/3846) by
|
|
431
1103
|
casperisfine
|
|
432
|
-
* Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
|
|
1104
|
+
* Optimize Gem.already_loaded?. Pull request [#3793](https://github.com/rubygems/rubygems/pull/3793) by casperisfine
|
|
433
1105
|
|
|
434
1106
|
# 3.2.0.rc.1 / 2020-07-04
|
|
435
1107
|
|
|
436
1108
|
## Enhancements:
|
|
437
1109
|
|
|
438
|
-
* Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
|
|
439
|
-
* Rework plugins system and speed up rubygems. Pull request #3108 by David
|
|
1110
|
+
* Test TruffleRuby in CI. Pull request [#2797](https://github.com/rubygems/rubygems/pull/2797) by Benoit Daloze.
|
|
1111
|
+
* Rework plugins system and speed up rubygems. Pull request [#3108](https://github.com/rubygems/rubygems/pull/3108) by David
|
|
440
1112
|
Rodríguez.
|
|
441
|
-
* Specify explicit separator not to be affected by $;. Pull request #3424
|
|
1113
|
+
* Specify explicit separator not to be affected by $;. Pull request [#3424](https://github.com/rubygems/rubygems/pull/3424)
|
|
442
1114
|
by Nobuyoshi Nakada.
|
|
443
|
-
* Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
|
|
444
|
-
* Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
|
|
445
|
-
* Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
|
|
446
|
-
* Log messages to stdout in `rake package`. Pull request #3632 by David
|
|
1115
|
+
* Enable `Layout/ExtraSpacing` cop. Pull request [#3449](https://github.com/rubygems/rubygems/pull/3449) by David Rodríguez.
|
|
1116
|
+
* Rollback gem deprecate. Pull request [#3530](https://github.com/rubygems/rubygems/pull/3530) by Luis Sagastume.
|
|
1117
|
+
* Normalize heredoc delimiters. Pull request [#3533](https://github.com/rubygems/rubygems/pull/3533) by David Rodríguez.
|
|
1118
|
+
* Log messages to stdout in `rake package`. Pull request [#3632](https://github.com/rubygems/rubygems/pull/3632) by David
|
|
447
1119
|
Rodríguez.
|
|
448
|
-
* Remove explicit `psych` activation. Pull request #3636 by David
|
|
1120
|
+
* Remove explicit `psych` activation. Pull request [#3636](https://github.com/rubygems/rubygems/pull/3636) by David
|
|
449
1121
|
Rodríguez.
|
|
450
|
-
* Delay `fileutils` loading to fix some warnings. Pull request #3637 by
|
|
1122
|
+
* Delay `fileutils` loading to fix some warnings. Pull request [#3637](https://github.com/rubygems/rubygems/pull/3637) by
|
|
451
1123
|
David Rodríguez.
|
|
452
1124
|
* Make sure rubygems/package can be directly required reliably. Pull
|
|
453
|
-
request #3670 by Luis Sagastume.
|
|
1125
|
+
request [#3670](https://github.com/rubygems/rubygems/pull/3670) by Luis Sagastume.
|
|
454
1126
|
* Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
|
|
455
|
-
#3711 by David Rodríguez.
|
|
1127
|
+
[#3711](https://github.com/rubygems/rubygems/pull/3711) by David Rodríguez.
|
|
456
1128
|
* Add Gem.disable_system_update_message to disable gem update --system if
|
|
457
|
-
needed. Pull request #3720 by Josef Šimánek.
|
|
458
|
-
* Tweaks to play nice with ruby-core setup. Pull request #3733 by David
|
|
1129
|
+
needed. Pull request [#3720](https://github.com/rubygems/rubygems/pull/3720) by Josef Šimánek.
|
|
1130
|
+
* Tweaks to play nice with ruby-core setup. Pull request [#3733](https://github.com/rubygems/rubygems/pull/3733) by David
|
|
459
1131
|
Rodríguez.
|
|
460
|
-
* Remove explicit require for auto-loaded constant. Pull request #3751 by
|
|
1132
|
+
* Remove explicit require for auto-loaded constant. Pull request [#3751](https://github.com/rubygems/rubygems/pull/3751) by
|
|
461
1133
|
Karol Bucek.
|
|
462
|
-
* Test files should not be included in spec.files. Pull request #3758 by
|
|
1134
|
+
* Test files should not be included in spec.files. Pull request [#3758](https://github.com/rubygems/rubygems/pull/3758) by
|
|
463
1135
|
Marc-André Lafortune.
|
|
464
1136
|
* Remove TODO comment about warning on setting instead of pushing. Pull
|
|
465
|
-
request #2823 by Luis Sagastume.
|
|
466
|
-
* Add deprecate command method. Pull request #2935 by Luis Sagastume.
|
|
467
|
-
* Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
|
|
1137
|
+
request [#2823](https://github.com/rubygems/rubygems/pull/2823) by Luis Sagastume.
|
|
1138
|
+
* Add deprecate command method. Pull request [#2935](https://github.com/rubygems/rubygems/pull/2935) by Luis Sagastume.
|
|
1139
|
+
* Simplify deprecate command method. Pull request [#2974](https://github.com/rubygems/rubygems/pull/2974) by Luis Sagastume.
|
|
468
1140
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
|
469
|
-
#2985 by MSP-Greg.
|
|
470
|
-
* Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
|
|
1141
|
+
[#2985](https://github.com/rubygems/rubygems/pull/2985) by MSP-Greg.
|
|
1142
|
+
* Add `funding_uri ` metadata field to gemspec. Pull request [#3060](https://github.com/rubygems/rubygems/pull/3060) by
|
|
471
1143
|
Colby Swandale.
|
|
472
|
-
* Updates to some old gem-signing docs. Pull request #3063 by Tieg
|
|
1144
|
+
* Updates to some old gem-signing docs. Pull request [#3063](https://github.com/rubygems/rubygems/pull/3063) by Tieg
|
|
473
1145
|
Zaharia.
|
|
474
|
-
* Update the gem method for Gem::Installer. Pull request #3137 by Daniel
|
|
1146
|
+
* Update the gem method for Gem::Installer. Pull request [#3137](https://github.com/rubygems/rubygems/pull/3137) by Daniel
|
|
475
1147
|
Berger.
|
|
476
|
-
* Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
|
|
477
|
-
* Resolve latest version via `gem contents`. Pull request #3149 by Dan
|
|
1148
|
+
* Simplify initial gem help output. Pull request [#3148](https://github.com/rubygems/rubygems/pull/3148) by Olivier Lacan.
|
|
1149
|
+
* Resolve latest version via `gem contents`. Pull request [#3149](https://github.com/rubygems/rubygems/pull/3149) by Dan
|
|
478
1150
|
Rice.
|
|
479
|
-
* Install suggestions. Pull request #3151 by Sophia Castellarin.
|
|
480
|
-
* Only rescue the errors we actually want to rescue. Pull request #3156 by
|
|
1151
|
+
* Install suggestions. Pull request [#3151](https://github.com/rubygems/rubygems/pull/3151) by Sophia Castellarin.
|
|
1152
|
+
* Only rescue the errors we actually want to rescue. Pull request [#3156](https://github.com/rubygems/rubygems/pull/3156) by
|
|
481
1153
|
David Rodríguez.
|
|
482
1154
|
|
|
483
1155
|
## Bug fixes:
|
|
484
1156
|
|
|
485
1157
|
* Accept not only /usr/bin/env but also /bin/env in some tests. Pull
|
|
486
|
-
request #3422 by Yusuke Endoh.
|
|
1158
|
+
request [#3422](https://github.com/rubygems/rubygems/pull/3422) by Yusuke Endoh.
|
|
487
1159
|
* Skip a test that attempts to remove the current directory on Solaris.
|
|
488
|
-
Pull request #3423 by Yusuke Endoh.
|
|
489
|
-
* Fix race condition on bundler's parallel installer. Pull request #3440
|
|
1160
|
+
Pull request [#3423](https://github.com/rubygems/rubygems/pull/3423) by Yusuke Endoh.
|
|
1161
|
+
* Fix race condition on bundler's parallel installer. Pull request [#3440](https://github.com/rubygems/rubygems/pull/3440)
|
|
490
1162
|
by David Rodríguez.
|
|
491
1163
|
* Fix platform comparison check in #contains_requirable_file?. Pull
|
|
492
|
-
request #3495 by Benoit Daloze.
|
|
493
|
-
* Improve missing spec error. Pull request #3559 by Luis Sagastume.
|
|
1164
|
+
request [#3495](https://github.com/rubygems/rubygems/pull/3495) by Benoit Daloze.
|
|
1165
|
+
* Improve missing spec error. Pull request [#3559](https://github.com/rubygems/rubygems/pull/3559) by Luis Sagastume.
|
|
494
1166
|
* Fix hidden bundler template installation from rubygems updater. Pull
|
|
495
|
-
request #3674 by David Rodríguez.
|
|
496
|
-
* Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
|
|
1167
|
+
request [#3674](https://github.com/rubygems/rubygems/pull/3674) by David Rodríguez.
|
|
1168
|
+
* Fix gem update --user-install. Pull request [#2901](https://github.com/rubygems/rubygems/pull/2901) by Luis Sagastume.
|
|
497
1169
|
* Correct conflict list when uninstallation is prevented. Pull request
|
|
498
|
-
#2973 by David Rodríguez.
|
|
1170
|
+
[#2973](https://github.com/rubygems/rubygems/pull/2973) by David Rodríguez.
|
|
499
1171
|
* Fix error when trying to find bundler with a deleted "working directo….
|
|
500
|
-
Pull request #3090 by Luis Sagastume.
|
|
501
|
-
* Fix -I require priority. Pull request #3124 by David Rodríguez.
|
|
502
|
-
* Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
|
|
1172
|
+
Pull request [#3090](https://github.com/rubygems/rubygems/pull/3090) by Luis Sagastume.
|
|
1173
|
+
* Fix -I require priority. Pull request [#3124](https://github.com/rubygems/rubygems/pull/3124) by David Rodríguez.
|
|
1174
|
+
* Fix `ruby setup.rb` for new plugins layout. Pull request [#3144](https://github.com/rubygems/rubygems/pull/3144) by David
|
|
503
1175
|
Rodríguez.
|
|
504
1176
|
|
|
505
1177
|
## Deprecations:
|
|
506
1178
|
|
|
507
|
-
* Set deprecation warning on query command. Pull request #2967 by Luis
|
|
1179
|
+
* Set deprecation warning on query command. Pull request [#2967](https://github.com/rubygems/rubygems/pull/2967) by Luis
|
|
508
1180
|
Sagastume.
|
|
509
1181
|
|
|
510
1182
|
## Breaking changes:
|
|
511
1183
|
|
|
512
|
-
* Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
|
|
513
|
-
* Minitest cleanup. Pull request #3445 by David Rodríguez.
|
|
1184
|
+
* Remove ruby 1.8 leftovers. Pull request [#3442](https://github.com/rubygems/rubygems/pull/3442) by David Rodríguez.
|
|
1185
|
+
* Minitest cleanup. Pull request [#3445](https://github.com/rubygems/rubygems/pull/3445) by David Rodríguez.
|
|
514
1186
|
* Remove `builder` gem requirement for `gem regenerate_index`. Pull
|
|
515
|
-
request #3552 by David Rodríguez.
|
|
516
|
-
* Remove modelines for consistency. Pull request #3714 by David Rodríguez.
|
|
517
|
-
* Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
|
|
1187
|
+
request [#3552](https://github.com/rubygems/rubygems/pull/3552) by David Rodríguez.
|
|
1188
|
+
* Remove modelines for consistency. Pull request [#3714](https://github.com/rubygems/rubygems/pull/3714) by David Rodríguez.
|
|
1189
|
+
* Stop using deprecated OpenSSL::Digest constants. Pull request [#3763](https://github.com/rubygems/rubygems/pull/3763) by
|
|
518
1190
|
Bart de Water.
|
|
519
|
-
* Remove Gem module deprecated methods. Pull request #3101 by Luis
|
|
1191
|
+
* Remove Gem module deprecated methods. Pull request [#3101](https://github.com/rubygems/rubygems/pull/3101) by Luis
|
|
520
1192
|
Sagastume.
|
|
521
|
-
* Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
|
|
522
|
-
* Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
|
|
1193
|
+
* Remove ubygems.rb. Pull request [#3102](https://github.com/rubygems/rubygems/pull/3102) by Luis Sagastume.
|
|
1194
|
+
* Remove Gem::Commands::QueryCommand. Pull request [#3104](https://github.com/rubygems/rubygems/pull/3104) by Luis
|
|
523
1195
|
Sagastume.
|
|
524
|
-
* Remove dependency installer deprecated methods. Pull request #3106 by
|
|
1196
|
+
* Remove dependency installer deprecated methods. Pull request [#3106](https://github.com/rubygems/rubygems/pull/3106) by
|
|
525
1197
|
Luis Sagastume.
|
|
526
|
-
* Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
|
|
1198
|
+
* Remove Gem::UserInteraction#debug method. Pull request [#3107](https://github.com/rubygems/rubygems/pull/3107) by Luis
|
|
527
1199
|
Sagastume.
|
|
528
|
-
* Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
|
|
1200
|
+
* Remove options from Gem::GemRunner.new. Pull request [#3110](https://github.com/rubygems/rubygems/pull/3110) by Luis
|
|
529
1201
|
Sagastume.
|
|
530
|
-
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
|
|
1202
|
+
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request [#3111](https://github.com/rubygems/rubygems/pull/3111) by
|
|
531
1203
|
Luis Sagastume.
|
|
532
|
-
* Remove source_exception from Gem::Exception. Pull request #3112 by Luis
|
|
1204
|
+
* Remove source_exception from Gem::Exception. Pull request [#3112](https://github.com/rubygems/rubygems/pull/3112) by Luis
|
|
533
1205
|
Sagastume.
|
|
534
1206
|
* Requiring rubygems/source_specific_file is deprecated, remove it. Pull
|
|
535
|
-
request #3114 by Luis Sagastume.
|
|
1207
|
+
request [#3114](https://github.com/rubygems/rubygems/pull/3114) by Luis Sagastume.
|
|
536
1208
|
|
|
537
1209
|
# 3.1.4 / 2020-06-03
|
|
538
1210
|
|
|
539
1211
|
## Enhancements:
|
|
540
1212
|
|
|
541
1213
|
* Deprecate rubyforge_project attribute only during build
|
|
542
|
-
time. Pull request #3609 by Josef Šimánek.
|
|
543
|
-
* Update links. Pull request #3610 by Josef Šimánek.
|
|
544
|
-
* Run CI at 3.1 branch head as well. Pull request #3677 by Josef Šimánek.
|
|
545
|
-
* Remove failing ubuntu-rvm CI flow. Pull request #3611 by
|
|
1214
|
+
time. Pull request [#3609](https://github.com/rubygems/rubygems/pull/3609) by Josef Šimánek.
|
|
1215
|
+
* Update links. Pull request [#3610](https://github.com/rubygems/rubygems/pull/3610) by Josef Šimánek.
|
|
1216
|
+
* Run CI at 3.1 branch head as well. Pull request [#3677](https://github.com/rubygems/rubygems/pull/3677) by Josef Šimánek.
|
|
1217
|
+
* Remove failing ubuntu-rvm CI flow. Pull request [#3611](https://github.com/rubygems/rubygems/pull/3611) by
|
|
546
1218
|
Josef Šimánek.
|
|
547
1219
|
|
|
548
1220
|
# 3.1.3 / 2020-05-05
|
|
549
1221
|
|
|
550
1222
|
## Enhancements:
|
|
551
1223
|
|
|
552
|
-
* Resolver: require NameTuple before use. Pull request #3171 by Olle
|
|
1224
|
+
* Resolver: require NameTuple before use. Pull request [#3171](https://github.com/rubygems/rubygems/pull/3171) by Olle
|
|
553
1225
|
Jonsson.
|
|
554
|
-
* Use absolute paths with autoload. Pull request #3100 by David Rodríguez.
|
|
555
|
-
* Avoid changing $SOURCE_DATE_EPOCH. Pull request #3088 by Ellen Marie
|
|
1226
|
+
* Use absolute paths with autoload. Pull request [#3100](https://github.com/rubygems/rubygems/pull/3100) by David Rodríguez.
|
|
1227
|
+
* Avoid changing $SOURCE_DATE_EPOCH. Pull request [#3088](https://github.com/rubygems/rubygems/pull/3088) by Ellen Marie
|
|
556
1228
|
Dash.
|
|
557
|
-
* Use Bundler 2.1.4. Pull request #3072 by Hiroshi SHIBATA.
|
|
1229
|
+
* Use Bundler 2.1.4. Pull request [#3072](https://github.com/rubygems/rubygems/pull/3072) by Hiroshi SHIBATA.
|
|
558
1230
|
* Add tests to check if Gem.ruby_version works with ruby git master.
|
|
559
|
-
Pull request #3049 by Yusuke Endoh.
|
|
1231
|
+
Pull request [#3049](https://github.com/rubygems/rubygems/pull/3049) by Yusuke Endoh.
|
|
560
1232
|
|
|
561
1233
|
## Bug fixes:
|
|
562
1234
|
|
|
563
1235
|
* Fix platform comparison check in #contains_requirable_file?. Pull
|
|
564
|
-
request #3495 by Benoit Daloze.
|
|
565
|
-
* Improve gzip errors logging. Pull request #3485 by David Rodríguez.
|
|
566
|
-
* Fix incorrect `gem uninstall --all` message. Pull request #3483 by David
|
|
1236
|
+
request [#3495](https://github.com/rubygems/rubygems/pull/3495) by Benoit Daloze.
|
|
1237
|
+
* Improve gzip errors logging. Pull request [#3485](https://github.com/rubygems/rubygems/pull/3485) by David Rodríguez.
|
|
1238
|
+
* Fix incorrect `gem uninstall --all` message. Pull request [#3483](https://github.com/rubygems/rubygems/pull/3483) by David
|
|
567
1239
|
Rodríguez.
|
|
568
|
-
* Fix incorrect bundler version being required. Pull request #3458 by
|
|
1240
|
+
* Fix incorrect bundler version being required. Pull request [#3458](https://github.com/rubygems/rubygems/pull/3458) by
|
|
569
1241
|
David Rodríguez.
|
|
570
1242
|
* Fix gem install from a gemdeps file with complex dependencies.
|
|
571
|
-
Pull request #3054 by Luis Sagastume.
|
|
1243
|
+
Pull request [#3054](https://github.com/rubygems/rubygems/pull/3054) by Luis Sagastume.
|
|
572
1244
|
|
|
573
1245
|
# 3.1.2 / 2019-12-20
|
|
574
1246
|
|
|
575
1247
|
## Enhancements:
|
|
576
1248
|
|
|
577
|
-
* Restore non prompting `gem update --system` behavior. Pull request #3040
|
|
1249
|
+
* Restore non prompting `gem update --system` behavior. Pull request [#3040](https://github.com/rubygems/rubygems/pull/3040)
|
|
578
1250
|
by David Rodríguez.
|
|
579
|
-
* Show only release notes for new code installed. Pull request #3041 by
|
|
1251
|
+
* Show only release notes for new code installed. Pull request [#3041](https://github.com/rubygems/rubygems/pull/3041) by
|
|
580
1252
|
David Rodríguez.
|
|
581
1253
|
* Inform about installed `bundle` executable after `gem update --system`.
|
|
582
|
-
Pull request #3042 by David Rodríguez.
|
|
583
|
-
* Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
|
|
1254
|
+
Pull request [#3042](https://github.com/rubygems/rubygems/pull/3042) by David Rodríguez.
|
|
1255
|
+
* Use Bundler 2.1.2. Pull request [#3043](https://github.com/rubygems/rubygems/pull/3043) by SHIBATA Hiroshi.
|
|
584
1256
|
|
|
585
1257
|
## Bug fixes:
|
|
586
1258
|
|
|
587
|
-
* Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
|
|
588
|
-
* Fix `gem update --system --force`. Pull request #3035 by David
|
|
1259
|
+
* Require `uri` in source.rb. Pull request [#3034](https://github.com/rubygems/rubygems/pull/3034) by mihaibuzgau.
|
|
1260
|
+
* Fix `gem update --system --force`. Pull request [#3035](https://github.com/rubygems/rubygems/pull/3035) by David
|
|
589
1261
|
Rodríguez.
|
|
590
|
-
* Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
|
|
1262
|
+
* Move `require uri` to source_list. Pull request [#3038](https://github.com/rubygems/rubygems/pull/3038) by mihaibuzgau.
|
|
591
1263
|
|
|
592
1264
|
# 3.1.1 / 2019-12-16
|
|
593
1265
|
|
|
594
1266
|
## Bug fixes:
|
|
595
1267
|
|
|
596
1268
|
* Vendor Bundler 2.1.0 again. The version of Bundler with
|
|
597
|
-
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
|
|
1269
|
+
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request [#3029](https://github.com/rubygems/rubygems/pull/3029) by
|
|
598
1270
|
SHIBATA Hiroshi.
|
|
599
1271
|
|
|
600
1272
|
# 3.1.0 / 2019-12-16
|
|
601
1273
|
|
|
602
1274
|
## Enhancements:
|
|
603
1275
|
|
|
604
|
-
* Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
|
|
605
|
-
* Check for rubygems.org typo squatting sources. Pull request #2999 by
|
|
1276
|
+
* Vendor bundler 2.1. Pull request [#3028](https://github.com/rubygems/rubygems/pull/3028) by David Rodríguez.
|
|
1277
|
+
* Check for rubygems.org typo squatting sources. Pull request [#2999](https://github.com/rubygems/rubygems/pull/2999) by
|
|
606
1278
|
Luis Sagastume.
|
|
607
|
-
* Refactor remote fetcher. Pull request #3017 by David Rodríguez.
|
|
608
|
-
* Lazily load `open3`. Pull request #3001 by David Rodríguez.
|
|
609
|
-
* Remove `delegate` dependency. Pull request #3002 by David Rodríguez.
|
|
610
|
-
* Lazily load `uri`. Pull request #3005 by David Rodríguez.
|
|
611
|
-
* Lazily load `rubygems/gem_runner` during tests. Pull request #3009 by
|
|
1279
|
+
* Refactor remote fetcher. Pull request [#3017](https://github.com/rubygems/rubygems/pull/3017) by David Rodríguez.
|
|
1280
|
+
* Lazily load `open3`. Pull request [#3001](https://github.com/rubygems/rubygems/pull/3001) by David Rodríguez.
|
|
1281
|
+
* Remove `delegate` dependency. Pull request [#3002](https://github.com/rubygems/rubygems/pull/3002) by David Rodríguez.
|
|
1282
|
+
* Lazily load `uri`. Pull request [#3005](https://github.com/rubygems/rubygems/pull/3005) by David Rodríguez.
|
|
1283
|
+
* Lazily load `rubygems/gem_runner` during tests. Pull request [#3009](https://github.com/rubygems/rubygems/pull/3009) by
|
|
612
1284
|
David Rodríguez.
|
|
613
|
-
* Use bundler to manage development dependencies. Pull request #3012 by
|
|
1285
|
+
* Use bundler to manage development dependencies. Pull request [#3012](https://github.com/rubygems/rubygems/pull/3012) by
|
|
614
1286
|
David Rodríguez.
|
|
615
1287
|
|
|
616
1288
|
## Bug fixes:
|
|
617
1289
|
|
|
618
|
-
* Remove unnecessary executable flags. Pull request #2982 by David
|
|
1290
|
+
* Remove unnecessary executable flags. Pull request [#2982](https://github.com/rubygems/rubygems/pull/2982) by David
|
|
619
1291
|
Rodríguez.
|
|
620
|
-
* Remove configuration that contained a typo. Pull request #2989 by David
|
|
1292
|
+
* Remove configuration that contained a typo. Pull request [#2989](https://github.com/rubygems/rubygems/pull/2989) by David
|
|
621
1293
|
Rodríguez.
|
|
622
1294
|
|
|
623
1295
|
## Deprecations:
|
|
624
1296
|
|
|
625
1297
|
* Deprecate `gem generate_index --modern` and `gem generate_index
|
|
626
|
-
--no-modern`. Pull request #2992 by David Rodríguez.
|
|
1298
|
+
--no-modern`. Pull request [#2992](https://github.com/rubygems/rubygems/pull/2992) by David Rodríguez.
|
|
627
1299
|
|
|
628
1300
|
## Breaking changes:
|
|
629
1301
|
|
|
630
|
-
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
|
1302
|
+
* Remove 1.8.7 leftovers. Pull request [#2972](https://github.com/rubygems/rubygems/pull/2972) by David Rodríguez.
|
|
631
1303
|
|
|
632
1304
|
# 3.1.0.pre3 / 2019-11-11
|
|
633
1305
|
|
|
634
1306
|
## Enhancements:
|
|
635
1307
|
|
|
636
1308
|
* Fix gem pristine not accounting for user installed gems. Pull request
|
|
637
|
-
#2914 by Luis Sagastume.
|
|
638
|
-
* Refactor keyword argument test for Ruby 2.7. Pull request #2947 by
|
|
1309
|
+
[#2914](https://github.com/rubygems/rubygems/pull/2914) by Luis Sagastume.
|
|
1310
|
+
* Refactor keyword argument test for Ruby 2.7. Pull request [#2947](https://github.com/rubygems/rubygems/pull/2947) by
|
|
639
1311
|
SHIBATA Hiroshi.
|
|
640
|
-
* Fix errors at frozen Gem::Version. Pull request #2949 by Nobuyoshi
|
|
1312
|
+
* Fix errors at frozen Gem::Version. Pull request [#2949](https://github.com/rubygems/rubygems/pull/2949) by Nobuyoshi
|
|
641
1313
|
Nakada.
|
|
642
|
-
* Remove taint usage on Ruby 2.7+. Pull request #2951 by Jeremy Evans.
|
|
643
|
-
* Check Manifest.txt is up to date. Pull request #2953 by David Rodríguez.
|
|
644
|
-
* Clarify symlink conditionals in tests. Pull request #2962 by David
|
|
1314
|
+
* Remove taint usage on Ruby 2.7+. Pull request [#2951](https://github.com/rubygems/rubygems/pull/2951) by Jeremy Evans.
|
|
1315
|
+
* Check Manifest.txt is up to date. Pull request [#2953](https://github.com/rubygems/rubygems/pull/2953) by David Rodríguez.
|
|
1316
|
+
* Clarify symlink conditionals in tests. Pull request [#2962](https://github.com/rubygems/rubygems/pull/2962) by David
|
|
645
1317
|
Rodríguez.
|
|
646
|
-
* Update command line parsing to work under ps. Pull request #2966 by
|
|
1318
|
+
* Update command line parsing to work under ps. Pull request [#2966](https://github.com/rubygems/rubygems/pull/2966) by
|
|
647
1319
|
David Rodríguez.
|
|
648
|
-
* Properly test `Gem::Specifications.stub_for`. Pull request #2970 by
|
|
1320
|
+
* Properly test `Gem::Specifications.stub_for`. Pull request [#2970](https://github.com/rubygems/rubygems/pull/2970) by
|
|
649
1321
|
David Rodríguez.
|
|
650
1322
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
|
651
|
-
#2985 by MSP-Greg.
|
|
1323
|
+
[#2985](https://github.com/rubygems/rubygems/pull/2985) by MSP-Greg.
|
|
652
1324
|
|
|
653
1325
|
# 3.1.0.pre2 / 2019-10-15
|
|
654
1326
|
|
|
655
1327
|
## Enhancements:
|
|
656
1328
|
|
|
657
|
-
* Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
|
|
1329
|
+
* Optimize Gem::Package::TarReader#each. Pull request [#2941](https://github.com/rubygems/rubygems/pull/2941) by Jean byroot
|
|
658
1330
|
Boussier.
|
|
659
|
-
* Time comparison around date boundary. Pull request #2944 by Nobuyoshi
|
|
1331
|
+
* Time comparison around date boundary. Pull request [#2944](https://github.com/rubygems/rubygems/pull/2944) by Nobuyoshi
|
|
660
1332
|
Nakada.
|
|
661
1333
|
|
|
662
1334
|
# 3.1.0.pre1 / 2019-10-08
|
|
663
1335
|
|
|
664
1336
|
## Enhancements:
|
|
665
1337
|
|
|
666
|
-
* Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
|
|
667
|
-
* [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
|
|
1338
|
+
* Try to use bundler-2.1.0.pre.2. Pull request [#2923](https://github.com/rubygems/rubygems/pull/2923) by SHIBATA Hiroshi.
|
|
1339
|
+
* [Require] Ensure -I beats a default gem. Pull request [#1868](https://github.com/rubygems/rubygems/pull/1868) by Samuel
|
|
668
1340
|
Giddins.
|
|
669
1341
|
* [Specification] Prefer user-installed gems to default gems. Pull request
|
|
670
|
-
#2112 by Samuel Giddins.
|
|
671
|
-
* Multifactor authentication for yank command. Pull request #2514 by Qiu
|
|
1342
|
+
[#2112](https://github.com/rubygems/rubygems/pull/2112) by Samuel Giddins.
|
|
1343
|
+
* Multifactor authentication for yank command. Pull request [#2514](https://github.com/rubygems/rubygems/pull/2514) by Qiu
|
|
672
1344
|
Chaofan.
|
|
673
|
-
* Autoswitch to exact bundler version if present. Pull request #2583 by
|
|
1345
|
+
* Autoswitch to exact bundler version if present. Pull request [#2583](https://github.com/rubygems/rubygems/pull/2583) by
|
|
674
1346
|
David Rodríguez.
|
|
675
1347
|
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
|
676
|
-
request #2554 by Grey Baker.
|
|
677
|
-
* Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
|
|
1348
|
+
request [#2554](https://github.com/rubygems/rubygems/pull/2554) by Grey Baker.
|
|
1349
|
+
* Don't use a proxy if https_proxy env var is empty. Pull request [#2567](https://github.com/rubygems/rubygems/pull/2567) by
|
|
678
1350
|
Luis Sagastume.
|
|
679
|
-
* Fix typo in specs warning. Pull request #2585 by Rui.
|
|
680
|
-
* Bin/gem: remove initial empty line. Pull request #2602 by Kenyon Ralph.
|
|
1351
|
+
* Fix typo in specs warning. Pull request [#2585](https://github.com/rubygems/rubygems/pull/2585) by Rui.
|
|
1352
|
+
* Bin/gem: remove initial empty line. Pull request [#2602](https://github.com/rubygems/rubygems/pull/2602) by Kenyon Ralph.
|
|
681
1353
|
* Avoid rdoc hook when it's failed to load rdoc library. Pull request
|
|
682
|
-
#2604 by SHIBATA Hiroshi.
|
|
683
|
-
* Refactor get_proxy_from_env logic. Pull request #2611 by Luis Sagastume.
|
|
684
|
-
* Allow to easily bisect flaky failures. Pull request #2626 by David
|
|
1354
|
+
[#2604](https://github.com/rubygems/rubygems/pull/2604) by SHIBATA Hiroshi.
|
|
1355
|
+
* Refactor get_proxy_from_env logic. Pull request [#2611](https://github.com/rubygems/rubygems/pull/2611) by Luis Sagastume.
|
|
1356
|
+
* Allow to easily bisect flaky failures. Pull request [#2626](https://github.com/rubygems/rubygems/pull/2626) by David
|
|
685
1357
|
Rodríguez.
|
|
686
1358
|
* Fix `--ignore-dependencies` flag not installing platform specific gems.
|
|
687
|
-
Pull request #2631 by David Rodríguez.
|
|
688
|
-
* Make `gem install --explain` list platforms. Pull request #2634 by David
|
|
1359
|
+
Pull request [#2631](https://github.com/rubygems/rubygems/pull/2631) by David Rodríguez.
|
|
1360
|
+
* Make `gem install --explain` list platforms. Pull request [#2634](https://github.com/rubygems/rubygems/pull/2634) by David
|
|
689
1361
|
Rodríguez.
|
|
690
|
-
* Make `gem update --explain` list platforms. Pull request #2635 by David
|
|
1362
|
+
* Make `gem update --explain` list platforms. Pull request [#2635](https://github.com/rubygems/rubygems/pull/2635) by David
|
|
691
1363
|
Rodríguez.
|
|
692
|
-
* Refactoring install and update explanations. Pull request #2643 by David
|
|
1364
|
+
* Refactoring install and update explanations. Pull request [#2643](https://github.com/rubygems/rubygems/pull/2643) by David
|
|
693
1365
|
Rodríguez.
|
|
694
|
-
* Restore transitiveness of version comparison. Pull request #2651 by
|
|
1366
|
+
* Restore transitiveness of version comparison. Pull request [#2651](https://github.com/rubygems/rubygems/pull/2651) by
|
|
695
1367
|
David Rodríguez.
|
|
696
|
-
* Undo requirement sorting. Pull request #2652 by David Rodríguez.
|
|
697
|
-
* Update dummy version of Bundler for #2581. Pull request #2584 by SHIBATA
|
|
1368
|
+
* Undo requirement sorting. Pull request [#2652](https://github.com/rubygems/rubygems/pull/2652) by David Rodríguez.
|
|
1369
|
+
* Update dummy version of Bundler for #2581. Pull request [#2584](https://github.com/rubygems/rubygems/pull/2584) by SHIBATA
|
|
698
1370
|
Hiroshi.
|
|
699
|
-
* Ignore to handle the different platform. Pull request #2672 by SHIBATA
|
|
1371
|
+
* Ignore to handle the different platform. Pull request [#2672](https://github.com/rubygems/rubygems/pull/2672) by SHIBATA
|
|
700
1372
|
Hiroshi.
|
|
701
1373
|
* Make Gem::Specification.default_stubs to public methods. Pull request
|
|
702
|
-
#2675 by SHIBATA Hiroshi.
|
|
703
|
-
* Sort files and test_files in specifications. Pull request #2524 by
|
|
1374
|
+
[#2675](https://github.com/rubygems/rubygems/pull/2675) by SHIBATA Hiroshi.
|
|
1375
|
+
* Sort files and test_files in specifications. Pull request [#2524](https://github.com/rubygems/rubygems/pull/2524) by
|
|
704
1376
|
Christopher Baines.
|
|
705
1377
|
* Fix comment of Gem::Specification#required_ruby_version=. Pull request
|
|
706
|
-
#2732 by Alex Junger.
|
|
1378
|
+
[#2732](https://github.com/rubygems/rubygems/pull/2732) by Alex Junger.
|
|
707
1379
|
* Config_file.rb - update path separator in ENV['GEMRC'] logic. Pull
|
|
708
|
-
request #2735 by MSP-Greg.
|
|
709
|
-
* Fix `ruby setup.rb` warnings. Pull request #2737 by David Rodríguez.
|
|
1380
|
+
request [#2735](https://github.com/rubygems/rubygems/pull/2735) by MSP-Greg.
|
|
1381
|
+
* Fix `ruby setup.rb` warnings. Pull request [#2737](https://github.com/rubygems/rubygems/pull/2737) by David Rodríguez.
|
|
710
1382
|
* Don't use regex delimiters when searching for a dependency. Pull request
|
|
711
|
-
#2738 by Luis Sagastume.
|
|
712
|
-
* Refactor query command. Pull request #2739 by Luis Sagastume.
|
|
1383
|
+
[#2738](https://github.com/rubygems/rubygems/pull/2738) by Luis Sagastume.
|
|
1384
|
+
* Refactor query command. Pull request [#2739](https://github.com/rubygems/rubygems/pull/2739) by Luis Sagastume.
|
|
713
1385
|
* Don't remove default spec files from mapping after require. Pull request
|
|
714
|
-
#2741 by David Rodríguez.
|
|
715
|
-
* Cleanup base test case. Pull request #2742 by David Rodríguez.
|
|
716
|
-
* Simplify Specification#gems_dir. Pull request #2745 by David Rodríguez.
|
|
717
|
-
* Fix test warning. Pull request #2746 by David Rodríguez.
|
|
718
|
-
* Extract an `add_to_load_path` method. Pull request #2749 by David
|
|
1386
|
+
[#2741](https://github.com/rubygems/rubygems/pull/2741) by David Rodríguez.
|
|
1387
|
+
* Cleanup base test case. Pull request [#2742](https://github.com/rubygems/rubygems/pull/2742) by David Rodríguez.
|
|
1388
|
+
* Simplify Specification#gems_dir. Pull request [#2745](https://github.com/rubygems/rubygems/pull/2745) by David Rodríguez.
|
|
1389
|
+
* Fix test warning. Pull request [#2746](https://github.com/rubygems/rubygems/pull/2746) by David Rodríguez.
|
|
1390
|
+
* Extract an `add_to_load_path` method. Pull request [#2749](https://github.com/rubygems/rubygems/pull/2749) by David
|
|
719
1391
|
Rodríguez.
|
|
720
1392
|
* Fix setup command if format_executable is true by default. Pull request
|
|
721
|
-
#2766 by Jeremy Evans.
|
|
1393
|
+
[#2766](https://github.com/rubygems/rubygems/pull/2766) by Jeremy Evans.
|
|
722
1394
|
* Update the certificate files to make the test pass on Debian 10. Pull
|
|
723
|
-
request #2777 by Yusuke Endoh.
|
|
724
|
-
* Write to the correct config file(.gemrc). Pull request #2779 by Luis
|
|
1395
|
+
request [#2777](https://github.com/rubygems/rubygems/pull/2777) by Yusuke Endoh.
|
|
1396
|
+
* Write to the correct config file(.gemrc). Pull request [#2779](https://github.com/rubygems/rubygems/pull/2779) by Luis
|
|
725
1397
|
Sagastume.
|
|
726
1398
|
* Fix for large values in UID/GID fields in tar archives. Pull request
|
|
727
|
-
#2780 by Alexey Shein.
|
|
728
|
-
* Lazy require stringio. Pull request #2781 by Luis Sagastume.
|
|
1399
|
+
[#2780](https://github.com/rubygems/rubygems/pull/2780) by Alexey Shein.
|
|
1400
|
+
* Lazy require stringio. Pull request [#2781](https://github.com/rubygems/rubygems/pull/2781) by Luis Sagastume.
|
|
729
1401
|
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
|
730
|
-
Pull request #2782 by Luis Sagastume.
|
|
1402
|
+
Pull request [#2782](https://github.com/rubygems/rubygems/pull/2782) by Luis Sagastume.
|
|
731
1403
|
* Fix setup command test for bundler with program_suffix. Pull request
|
|
732
|
-
#2783 by Sorah Fukumori.
|
|
733
|
-
* Make sure `rake package` works. Pull request #2787 by David Rodríguez.
|
|
1404
|
+
[#2783](https://github.com/rubygems/rubygems/pull/2783) by Sorah Fukumori.
|
|
1405
|
+
* Make sure `rake package` works. Pull request [#2787](https://github.com/rubygems/rubygems/pull/2787) by David Rodríguez.
|
|
734
1406
|
* Synchronize access to the Gem::Specification::LOAD_CACHE Hash. Pull
|
|
735
|
-
request #2789 by Benoit Daloze.
|
|
736
|
-
* Task to install rubygems to local system. Pull request #2795 by David
|
|
1407
|
+
request [#2789](https://github.com/rubygems/rubygems/pull/2789) by Benoit Daloze.
|
|
1408
|
+
* Task to install rubygems to local system. Pull request [#2795](https://github.com/rubygems/rubygems/pull/2795) by David
|
|
737
1409
|
Rodríguez.
|
|
738
1410
|
* Add an attr_reader to Gem::Installer for the package instance variable.
|
|
739
|
-
Pull request #2796 by Daniel Berger.
|
|
740
|
-
* Switch CI script to bash. Pull request #2799 by David Rodríguez.
|
|
741
|
-
* Move gemcutter utilities code to Gem::Command. Pull request #2803 by
|
|
1411
|
+
Pull request [#2796](https://github.com/rubygems/rubygems/pull/2796) by Daniel Berger.
|
|
1412
|
+
* Switch CI script to bash. Pull request [#2799](https://github.com/rubygems/rubygems/pull/2799) by David Rodríguez.
|
|
1413
|
+
* Move gemcutter utilities code to Gem::Command. Pull request [#2803](https://github.com/rubygems/rubygems/pull/2803) by
|
|
742
1414
|
Luis Sagastume.
|
|
743
|
-
* Add raw spec method to gem package. Pull request #2806 by Luis
|
|
1415
|
+
* Add raw spec method to gem package. Pull request [#2806](https://github.com/rubygems/rubygems/pull/2806) by Luis
|
|
744
1416
|
Sagastume.
|
|
745
|
-
* Improve `rake package` test error message. Pull request #2815 by David
|
|
1417
|
+
* Improve `rake package` test error message. Pull request [#2815](https://github.com/rubygems/rubygems/pull/2815) by David
|
|
746
1418
|
Rodríguez.
|
|
747
|
-
* Resolve `@@project_dir` from test file paths. Pull request #2843 by
|
|
1419
|
+
* Resolve `@@project_dir` from test file paths. Pull request [#2843](https://github.com/rubygems/rubygems/pull/2843) by
|
|
748
1420
|
Nobuyoshi Nakada.
|
|
749
|
-
* Remove dead code in Gem::Validator. Pull request #2537 by Ellen Marie
|
|
1421
|
+
* Remove dead code in Gem::Validator. Pull request [#2537](https://github.com/rubygems/rubygems/pull/2537) by Ellen Marie
|
|
750
1422
|
Dash.
|
|
751
1423
|
* The date might have advanced since TODAY has been set. Pull request
|
|
752
|
-
#2938 by Nobuyoshi Nakada.
|
|
753
|
-
* Remove old ci configurations. Pull request #2917 by SHIBATA Hiroshi.
|
|
754
|
-
* Add Gem::Dependency identity. Pull request #2936 by Luis Sagastume.
|
|
755
|
-
* Filter dependency type and name strictly. Pull request #2930 by SHIBATA
|
|
1424
|
+
[#2938](https://github.com/rubygems/rubygems/pull/2938) by Nobuyoshi Nakada.
|
|
1425
|
+
* Remove old ci configurations. Pull request [#2917](https://github.com/rubygems/rubygems/pull/2917) by SHIBATA Hiroshi.
|
|
1426
|
+
* Add Gem::Dependency identity. Pull request [#2936](https://github.com/rubygems/rubygems/pull/2936) by Luis Sagastume.
|
|
1427
|
+
* Filter dependency type and name strictly. Pull request [#2930](https://github.com/rubygems/rubygems/pull/2930) by SHIBATA
|
|
756
1428
|
Hiroshi.
|
|
757
1429
|
* Always pass an encoding option to Zlib::GzipReader.wrap. Pull request
|
|
758
|
-
#2933 by Nobuyoshi Nakada.
|
|
759
|
-
* Introduce default prerelease requirement. Pull request #2925 by David
|
|
1430
|
+
[#2933](https://github.com/rubygems/rubygems/pull/2933) by Nobuyoshi Nakada.
|
|
1431
|
+
* Introduce default prerelease requirement. Pull request [#2925](https://github.com/rubygems/rubygems/pull/2925) by David
|
|
760
1432
|
Rodríguez.
|
|
761
|
-
* Detect libc version, closes #2918. Pull request #2922 by fauno.
|
|
1433
|
+
* Detect libc version, closes #2918. Pull request [#2922](https://github.com/rubygems/rubygems/pull/2922) by fauno.
|
|
762
1434
|
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
|
763
|
-
request #2894 by Alexander Pakulov.
|
|
764
|
-
* Improve `gem uninstall --all`. Pull request #2893 by David Rodríguez.
|
|
765
|
-
* Use `RbConfig::CONFIG['rubylibprefix']`. Pull request #2889 by Nobuyoshi
|
|
1435
|
+
request [#2894](https://github.com/rubygems/rubygems/pull/2894) by Alexander Pakulov.
|
|
1436
|
+
* Improve `gem uninstall --all`. Pull request [#2893](https://github.com/rubygems/rubygems/pull/2893) by David Rodríguez.
|
|
1437
|
+
* Use `RbConfig::CONFIG['rubylibprefix']`. Pull request [#2889](https://github.com/rubygems/rubygems/pull/2889) by Nobuyoshi
|
|
766
1438
|
Nakada.
|
|
767
1439
|
* Build the first gemspec we found if no arguments are passed to gem
|
|
768
|
-
build. Pull request #2887 by Luis Sagastume.
|
|
769
|
-
* $LOAD_PATH elements should be real paths. Pull request #2885 by
|
|
1440
|
+
build. Pull request [#2887](https://github.com/rubygems/rubygems/pull/2887) by Luis Sagastume.
|
|
1441
|
+
* $LOAD_PATH elements should be real paths. Pull request [#2885](https://github.com/rubygems/rubygems/pull/2885) by
|
|
770
1442
|
Nobuyoshi Nakada.
|
|
771
1443
|
* Use the standard RUBY_ENGINE_VERSION instead of JRUBY_VERSION. Pull
|
|
772
|
-
request #2864 by Benoit Daloze.
|
|
773
|
-
* Cleanup after testing `rake package`. Pull request #2862 by David
|
|
1444
|
+
request [#2864](https://github.com/rubygems/rubygems/pull/2864) by Benoit Daloze.
|
|
1445
|
+
* Cleanup after testing `rake package`. Pull request [#2862](https://github.com/rubygems/rubygems/pull/2862) by David
|
|
774
1446
|
Rodríguez.
|
|
775
1447
|
* Cherry-pick shushing deprecation warnings from ruby-core. Pull request
|
|
776
|
-
#2861 by David Rodríguez.
|
|
777
|
-
* Ext/builder.rb cleanup. Pull request #2849 by Luis Sagastume.
|
|
778
|
-
* Fix @ran_rake assignment in builder.rb. Pull request #2850 by Luis
|
|
1448
|
+
[#2861](https://github.com/rubygems/rubygems/pull/2861) by David Rodríguez.
|
|
1449
|
+
* Ext/builder.rb cleanup. Pull request [#2849](https://github.com/rubygems/rubygems/pull/2849) by Luis Sagastume.
|
|
1450
|
+
* Fix @ran_rake assignment in builder.rb. Pull request [#2850](https://github.com/rubygems/rubygems/pull/2850) by Luis
|
|
779
1451
|
Sagastume.
|
|
780
|
-
* Remove test suite warnings. Pull request #2845 by Luis Sagastume.
|
|
1452
|
+
* Remove test suite warnings. Pull request [#2845](https://github.com/rubygems/rubygems/pull/2845) by Luis Sagastume.
|
|
781
1453
|
* Replace domain parameter with a parameter to suppress suggestions. Pull
|
|
782
|
-
request #2846 by Luis Sagastume.
|
|
1454
|
+
request [#2846](https://github.com/rubygems/rubygems/pull/2846) by Luis Sagastume.
|
|
783
1455
|
* Move default specifications dir definition out of BasicSpecification.
|
|
784
|
-
Pull request #2841 by Vít Ondruch.
|
|
1456
|
+
Pull request [#2841](https://github.com/rubygems/rubygems/pull/2841) by Vít Ondruch.
|
|
785
1457
|
* There is no usage of @orig_env_* variables in test suite. Pull request
|
|
786
|
-
#2838 by SHIBATA Hiroshi.
|
|
1458
|
+
[#2838](https://github.com/rubygems/rubygems/pull/2838) by SHIBATA Hiroshi.
|
|
787
1459
|
* Use File#open instead of Kernel#open in stub_specification.rb. Pull
|
|
788
|
-
request #2834 by Luis Sagastume.
|
|
789
|
-
* Simplify #to_ruby code. Pull request #2825 by Nobuyoshi Nakada.
|
|
790
|
-
* Add a gem attr to the Gem::Package class. Pull request #2828 by Daniel
|
|
1460
|
+
request [#2834](https://github.com/rubygems/rubygems/pull/2834) by Luis Sagastume.
|
|
1461
|
+
* Simplify #to_ruby code. Pull request [#2825](https://github.com/rubygems/rubygems/pull/2825) by Nobuyoshi Nakada.
|
|
1462
|
+
* Add a gem attr to the Gem::Package class. Pull request [#2828](https://github.com/rubygems/rubygems/pull/2828) by Daniel
|
|
791
1463
|
Berger.
|
|
792
|
-
* Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
|
|
1464
|
+
* Remove useless TODO comment. Pull request [#2818](https://github.com/rubygems/rubygems/pull/2818) by Luis Sagastume.
|
|
793
1465
|
|
|
794
1466
|
## Bug fixes:
|
|
795
1467
|
|
|
796
|
-
* Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
|
|
797
|
-
* Remove unused empty sources array. Pull request #2598 by Aaron
|
|
1468
|
+
* Fix typos in History.txt. Pull request [#2565](https://github.com/rubygems/rubygems/pull/2565) by Igor Zubkov.
|
|
1469
|
+
* Remove unused empty sources array. Pull request [#2598](https://github.com/rubygems/rubygems/pull/2598) by Aaron
|
|
798
1470
|
Patterson.
|
|
799
1471
|
* Fix windows specific executables generated by `gem install`. Pull
|
|
800
|
-
request #2628 by David Rodríguez.
|
|
801
|
-
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
|
1472
|
+
request [#2628](https://github.com/rubygems/rubygems/pull/2628) by David Rodríguez.
|
|
1473
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request [#2937](https://github.com/rubygems/rubygems/pull/2937) by
|
|
802
1474
|
Nobuyoshi Nakada.
|
|
803
|
-
* Set SOURCE_DATE_EPOCH env var if not provided. Pull request #2882 by
|
|
1475
|
+
* Set SOURCE_DATE_EPOCH env var if not provided. Pull request [#2882](https://github.com/rubygems/rubygems/pull/2882) by
|
|
804
1476
|
Ellen Marie Dash.
|
|
805
|
-
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
|
806
|
-
* Fixed deprecation message. Pull request #2867 by Nobuyoshi Nakada.
|
|
807
|
-
* Fix requiring default gems to consider prereleases. Pull request #2728
|
|
1477
|
+
* Installer.rb - fix #windows_stub_script. Pull request [#2876](https://github.com/rubygems/rubygems/pull/2876) by MSP-Greg.
|
|
1478
|
+
* Fixed deprecation message. Pull request [#2867](https://github.com/rubygems/rubygems/pull/2867) by Nobuyoshi Nakada.
|
|
1479
|
+
* Fix requiring default gems to consider prereleases. Pull request [#2728](https://github.com/rubygems/rubygems/pull/2728)
|
|
808
1480
|
by David Rodríguez.
|
|
809
|
-
* Forbid `find_spec_for_exe` without an `exec_name`. Pull request #2706 by
|
|
1481
|
+
* Forbid `find_spec_for_exe` without an `exec_name`. Pull request [#2706](https://github.com/rubygems/rubygems/pull/2706) by
|
|
810
1482
|
David Rodríguez.
|
|
811
1483
|
* Do not prompt for passphrase when key can be loaded without it. Pull
|
|
812
|
-
request #2710 by Luis Sagastume.
|
|
813
|
-
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
|
814
|
-
* Remove long ago deprecated methods. Pull request #2704 by David
|
|
1484
|
+
request [#2710](https://github.com/rubygems/rubygems/pull/2710) by Luis Sagastume.
|
|
1485
|
+
* Add missing wrapper. Pull request [#2690](https://github.com/rubygems/rubygems/pull/2690) by David Rodríguez.
|
|
1486
|
+
* Remove long ago deprecated methods. Pull request [#2704](https://github.com/rubygems/rubygems/pull/2704) by David
|
|
815
1487
|
Rodríguez.
|
|
816
|
-
* Renamed duplicate test. Pull request #2678 by Nobuyoshi Nakada.
|
|
817
|
-
* File.exists? is deprecated. Pull request #2855 by SHIBATA Hiroshi.
|
|
818
|
-
* Fixed to warn with shadowing outer local variable. Pull request #2856 by
|
|
1488
|
+
* Renamed duplicate test. Pull request [#2678](https://github.com/rubygems/rubygems/pull/2678) by Nobuyoshi Nakada.
|
|
1489
|
+
* File.exists? is deprecated. Pull request [#2855](https://github.com/rubygems/rubygems/pull/2855) by SHIBATA Hiroshi.
|
|
1490
|
+
* Fixed to warn with shadowing outer local variable. Pull request [#2856](https://github.com/rubygems/rubygems/pull/2856) by
|
|
819
1491
|
SHIBATA Hiroshi.
|
|
820
|
-
* Fix explain with ignore-dependencies. Pull request #2647 by David
|
|
1492
|
+
* Fix explain with ignore-dependencies. Pull request [#2647](https://github.com/rubygems/rubygems/pull/2647) by David
|
|
821
1493
|
Rodríguez.
|
|
822
1494
|
* Fix default gem executable installation when folder is not `bin/`. Pull
|
|
823
|
-
request #2649 by David Rodríguez.
|
|
1495
|
+
request [#2649](https://github.com/rubygems/rubygems/pull/2649) by David Rodríguez.
|
|
824
1496
|
* Fix cryptic error on local and ignore-dependencies combination. Pull
|
|
825
|
-
request #2650 by David Rodríguez.
|
|
1497
|
+
request [#2650](https://github.com/rubygems/rubygems/pull/2650) by David Rodríguez.
|
|
826
1498
|
|
|
827
1499
|
## Deprecations:
|
|
828
1500
|
|
|
829
1501
|
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
|
830
|
-
#2857 by SHIBATA Hiroshi.
|
|
831
|
-
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
|
1502
|
+
[#2857](https://github.com/rubygems/rubygems/pull/2857) by SHIBATA Hiroshi.
|
|
1503
|
+
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request [#2833](https://github.com/rubygems/rubygems/pull/2833) by Luis
|
|
832
1504
|
Sagastume.
|
|
833
|
-
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
|
1505
|
+
* Explicitly deprecate `rubyforge_project`. Pull request [#2798](https://github.com/rubygems/rubygems/pull/2798) by David
|
|
834
1506
|
Rodríguez.
|
|
835
|
-
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
|
1507
|
+
* Deprecate unused Gem::Installer#unpack method. Pull request [#2715](https://github.com/rubygems/rubygems/pull/2715) by Vít
|
|
836
1508
|
Ondruch.
|
|
837
|
-
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
|
838
|
-
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
|
1509
|
+
* Deprecate a few unused methods. Pull request [#2674](https://github.com/rubygems/rubygems/pull/2674) by David Rodríguez.
|
|
1510
|
+
* Add deprecation warnings for cli options. Pull request [#2607](https://github.com/rubygems/rubygems/pull/2607) by Luis
|
|
839
1511
|
Sagastume.
|
|
840
1512
|
|
|
841
1513
|
## Breaking changes:
|
|
842
1514
|
|
|
843
|
-
* Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
|
|
844
|
-
* Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
|
|
1515
|
+
* Suppress keywords warning. Pull request [#2934](https://github.com/rubygems/rubygems/pull/2934) by Nobuyoshi Nakada.
|
|
1516
|
+
* Suppress Ruby 2.7's real kwargs warning. Pull request [#2912](https://github.com/rubygems/rubygems/pull/2912) by Koichi
|
|
845
1517
|
ITO.
|
|
846
|
-
* Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
|
|
1518
|
+
* Fix Kernel#warn override. Pull request [#2911](https://github.com/rubygems/rubygems/pull/2911) by Jeremy Evans.
|
|
847
1519
|
* Remove conflict.rb code that was supposed to be removed in Rubygems 3.
|
|
848
|
-
Pull request #2802 by Luis Sagastume.
|
|
849
|
-
* Compatibility cleanups. Pull request #2754 by David Rodríguez.
|
|
850
|
-
* Remove `others_possible` activation request param. Pull request #2747 by
|
|
1520
|
+
Pull request [#2802](https://github.com/rubygems/rubygems/pull/2802) by Luis Sagastume.
|
|
1521
|
+
* Compatibility cleanups. Pull request [#2754](https://github.com/rubygems/rubygems/pull/2754) by David Rodríguez.
|
|
1522
|
+
* Remove `others_possible` activation request param. Pull request [#2747](https://github.com/rubygems/rubygems/pull/2747) by
|
|
851
1523
|
David Rodríguez.
|
|
852
|
-
* Remove dependency installer deprecated code. Pull request #2740 by Luis
|
|
1524
|
+
* Remove dependency installer deprecated code. Pull request [#2740](https://github.com/rubygems/rubygems/pull/2740) by Luis
|
|
853
1525
|
Sagastume.
|
|
854
|
-
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
|
|
1526
|
+
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request [#2716](https://github.com/rubygems/rubygems/pull/2716)
|
|
855
1527
|
by SHIBATA Hiroshi.
|
|
856
|
-
* Skip deprecation warning during specs. Pull request #2718 by David
|
|
1528
|
+
* Skip deprecation warning during specs. Pull request [#2718](https://github.com/rubygems/rubygems/pull/2718) by David
|
|
857
1529
|
Rodríguez.
|
|
858
|
-
* Remove QuickLoader reference. Pull request #2719 by David Rodríguez.
|
|
859
|
-
* Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
|
|
1530
|
+
* Remove QuickLoader reference. Pull request [#2719](https://github.com/rubygems/rubygems/pull/2719) by David Rodríguez.
|
|
1531
|
+
* Removed circular require. Pull request [#2679](https://github.com/rubygems/rubygems/pull/2679) by Nobuyoshi Nakada.
|
|
860
1532
|
* Removed needless environmental variable for Travis CI. Pull request
|
|
861
|
-
#2685 by SHIBATA Hiroshi.
|
|
862
|
-
* Removing yaml require. Pull request #2538 by Luciano Sousa.
|
|
1533
|
+
[#2685](https://github.com/rubygems/rubygems/pull/2685) by SHIBATA Hiroshi.
|
|
1534
|
+
* Removing yaml require. Pull request [#2538](https://github.com/rubygems/rubygems/pull/2538) by Luciano Sousa.
|
|
863
1535
|
|
|
864
1536
|
# 3.0.8 / 2020-02-19
|
|
865
1537
|
|
|
866
1538
|
## Bug fixes:
|
|
867
1539
|
|
|
868
|
-
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
|
1540
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request [#2937](https://github.com/rubygems/rubygems/pull/2937) by
|
|
869
1541
|
Nobuyoshi Nakada.
|
|
870
1542
|
|
|
871
1543
|
# 3.0.7 / 2020-02-18
|
|
@@ -873,12 +1545,12 @@
|
|
|
873
1545
|
## Bug fixes:
|
|
874
1546
|
|
|
875
1547
|
* Fix underscore version selection for bundler #2908 by David Rodríguez.
|
|
876
|
-
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
|
1548
|
+
* Add missing wrapper. Pull request [#2690](https://github.com/rubygems/rubygems/pull/2690) by David Rodríguez.
|
|
877
1549
|
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
|
878
|
-
Pull request #2782 by Luis Sagastume.
|
|
879
|
-
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
|
1550
|
+
Pull request [#2782](https://github.com/rubygems/rubygems/pull/2782) by Luis Sagastume.
|
|
1551
|
+
* Installer.rb - fix #windows_stub_script. Pull request [#2876](https://github.com/rubygems/rubygems/pull/2876) by MSP-Greg.
|
|
880
1552
|
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
|
881
|
-
request #2894 by Alexander Pakulov.
|
|
1553
|
+
request [#2894](https://github.com/rubygems/rubygems/pull/2894) by Alexander Pakulov.
|
|
882
1554
|
|
|
883
1555
|
# 3.0.6 / 2019-08-17
|
|
884
1556
|
|
|
@@ -890,53 +1562,53 @@
|
|
|
890
1562
|
|
|
891
1563
|
## Enhancements:
|
|
892
1564
|
|
|
893
|
-
* Use env var to configure api key on push. Pull request #2559 by Luis
|
|
1565
|
+
* Use env var to configure api key on push. Pull request [#2559](https://github.com/rubygems/rubygems/pull/2559) by Luis
|
|
894
1566
|
Sagastume.
|
|
895
|
-
* Unswallow uninstall error. Pull request #2707 by David Rodríguez.
|
|
896
|
-
* Expose windows path normalization utility. Pull request #2767 by David
|
|
1567
|
+
* Unswallow uninstall error. Pull request [#2707](https://github.com/rubygems/rubygems/pull/2707) by David Rodríguez.
|
|
1568
|
+
* Expose windows path normalization utility. Pull request [#2767](https://github.com/rubygems/rubygems/pull/2767) by David
|
|
897
1569
|
Rodríguez.
|
|
898
|
-
* Clean which command. Pull request #2801 by Luis Sagastume.
|
|
899
|
-
* Upgrading S3 source signature to AWS SigV4. Pull request #2807 by
|
|
1570
|
+
* Clean which command. Pull request [#2801](https://github.com/rubygems/rubygems/pull/2801) by Luis Sagastume.
|
|
1571
|
+
* Upgrading S3 source signature to AWS SigV4. Pull request [#2807](https://github.com/rubygems/rubygems/pull/2807) by
|
|
900
1572
|
Alexander Pakulov.
|
|
901
1573
|
* Remove misleading comment, no reason to move Gem.host to Gem::Util.
|
|
902
|
-
Pull request #2811 by Luis Sagastume.
|
|
903
|
-
* Drop support for 'gem env packageversion'. Pull request #2813 by Luis
|
|
1574
|
+
Pull request [#2811](https://github.com/rubygems/rubygems/pull/2811) by Luis Sagastume.
|
|
1575
|
+
* Drop support for 'gem env packageversion'. Pull request [#2813](https://github.com/rubygems/rubygems/pull/2813) by Luis
|
|
904
1576
|
Sagastume.
|
|
905
1577
|
* Take into account just git tracked files in update_manifest rake task.
|
|
906
|
-
Pull request #2816 by Luis Sagastume.
|
|
907
|
-
* Remove TODO comment, there's no Gem::Dirs constant. Pull request #2819
|
|
1578
|
+
Pull request [#2816](https://github.com/rubygems/rubygems/pull/2816) by Luis Sagastume.
|
|
1579
|
+
* Remove TODO comment, there's no Gem::Dirs constant. Pull request [#2819](https://github.com/rubygems/rubygems/pull/2819)
|
|
908
1580
|
by Luis Sagastume.
|
|
909
|
-
* Remove unused 'raise' from test_case. Pull request #2820 by Luis
|
|
1581
|
+
* Remove unused 'raise' from test_case. Pull request [#2820](https://github.com/rubygems/rubygems/pull/2820) by Luis
|
|
910
1582
|
Sagastume.
|
|
911
|
-
* Move TODO comment to an information comment. Pull request #2821 by Luis
|
|
1583
|
+
* Move TODO comment to an information comment. Pull request [#2821](https://github.com/rubygems/rubygems/pull/2821) by Luis
|
|
912
1584
|
Sagastume.
|
|
913
1585
|
* Use File#open instead of Kernel#open in stub_specification.rb. Pull
|
|
914
|
-
request #2834 by Luis Sagastume.
|
|
915
|
-
* Make error code a gemcutter_utilities a constant. Pull request #2844 by
|
|
1586
|
+
request [#2834](https://github.com/rubygems/rubygems/pull/2834) by Luis Sagastume.
|
|
1587
|
+
* Make error code a gemcutter_utilities a constant. Pull request [#2844](https://github.com/rubygems/rubygems/pull/2844) by
|
|
916
1588
|
Luis Sagastume.
|
|
917
|
-
* Remove FIXME comment related to PathSupport. Pull request #2854 by Luis
|
|
1589
|
+
* Remove FIXME comment related to PathSupport. Pull request [#2854](https://github.com/rubygems/rubygems/pull/2854) by Luis
|
|
918
1590
|
Sagastume.
|
|
919
|
-
* Use gsub with Hash. Pull request #2860 by Kazuhiro NISHIYAMA.
|
|
1591
|
+
* Use gsub with Hash. Pull request [#2860](https://github.com/rubygems/rubygems/pull/2860) by Kazuhiro NISHIYAMA.
|
|
920
1592
|
* Use the standard RUBY_ENGINE_VERSION instead of JRUBY_VERSION. Pull
|
|
921
|
-
request #2864 by Benoit Daloze.
|
|
922
|
-
* Do not mutate uri.query during s3 signature creation. Pull request #2874
|
|
1593
|
+
request [#2864](https://github.com/rubygems/rubygems/pull/2864) by Benoit Daloze.
|
|
1594
|
+
* Do not mutate uri.query during s3 signature creation. Pull request [#2874](https://github.com/rubygems/rubygems/pull/2874)
|
|
923
1595
|
by Alexander Pakulov.
|
|
924
|
-
* Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
|
|
1596
|
+
* Fixup #2844. Pull request [#2878](https://github.com/rubygems/rubygems/pull/2878) by SHIBATA Hiroshi.
|
|
925
1597
|
|
|
926
1598
|
## Bug fixes:
|
|
927
1599
|
|
|
928
|
-
* Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
|
|
1600
|
+
* Fix intermittent test error on Appveyor & Travis. Pull request [#2568](https://github.com/rubygems/rubygems/pull/2568) by
|
|
929
1601
|
MSP-Greg.
|
|
930
|
-
* Extend timeout on assert_self_install_permissions. Pull request #2605 by
|
|
1602
|
+
* Extend timeout on assert_self_install_permissions. Pull request [#2605](https://github.com/rubygems/rubygems/pull/2605) by
|
|
931
1603
|
SHIBATA Hiroshi.
|
|
932
|
-
* Better folder assertions. Pull request #2644 by David Rodríguez.
|
|
1604
|
+
* Better folder assertions. Pull request [#2644](https://github.com/rubygems/rubygems/pull/2644) by David Rodríguez.
|
|
933
1605
|
* Fix default gem executable installation when folder is not `bin/`. Pull
|
|
934
|
-
request #2649 by David Rodríguez.
|
|
935
|
-
* Fix gem uninstall behavior. Pull request #2663 by Luis Sagastume.
|
|
1606
|
+
request [#2649](https://github.com/rubygems/rubygems/pull/2649) by David Rodríguez.
|
|
1607
|
+
* Fix gem uninstall behavior. Pull request [#2663](https://github.com/rubygems/rubygems/pull/2663) by Luis Sagastume.
|
|
936
1608
|
* Fix for large values in UID/GID fields in tar archives. Pull request
|
|
937
|
-
#2780 by Alexey Shein.
|
|
938
|
-
* Fixed task order for release. Pull request #2792 by SHIBATA Hiroshi.
|
|
939
|
-
* Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
|
|
1609
|
+
[#2780](https://github.com/rubygems/rubygems/pull/2780) by Alexey Shein.
|
|
1610
|
+
* Fixed task order for release. Pull request [#2792](https://github.com/rubygems/rubygems/pull/2792) by SHIBATA Hiroshi.
|
|
1611
|
+
* Ignore GEMRC variable for test suite. Pull request [#2837](https://github.com/rubygems/rubygems/pull/2837) by SHIBATA
|
|
940
1612
|
Hiroshi.
|
|
941
1613
|
|
|
942
1614
|
# 3.0.4 / 2019-06-14
|
|
@@ -946,53 +1618,53 @@
|
|
|
946
1618
|
* Add support for TruffleRuby #2612 by Benoit Daloze
|
|
947
1619
|
* Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
|
|
948
1620
|
by Grey Baker
|
|
949
|
-
* Improve test compatibility with CMake 2.8. Pull request #2590 by Vít
|
|
1621
|
+
* Improve test compatibility with CMake 2.8. Pull request [#2590](https://github.com/rubygems/rubygems/pull/2590) by Vít
|
|
950
1622
|
Ondruch.
|
|
951
1623
|
* Restore gem build behavior and introduce the "-C" flag to gem build.
|
|
952
|
-
Pull request #2596 by Luis Sagastume.
|
|
953
|
-
* Enabled block call with util_set_arch. Pull request #2603 by SHIBATA
|
|
1624
|
+
Pull request [#2596](https://github.com/rubygems/rubygems/pull/2596) by Luis Sagastume.
|
|
1625
|
+
* Enabled block call with util_set_arch. Pull request [#2603](https://github.com/rubygems/rubygems/pull/2603) by SHIBATA
|
|
954
1626
|
Hiroshi.
|
|
955
1627
|
* Avoid rdoc hook when it's failed to load rdoc library. Pull request
|
|
956
|
-
#2604 by SHIBATA Hiroshi.
|
|
957
|
-
* Drop tests for legacy RDoc. Pull request #2608 by Nobuyoshi Nakada.
|
|
958
|
-
* Update TODO comment. Pull request #2658 by Luis Sagastume.
|
|
959
|
-
* Skip malicious extension test with mswin platform. Pull request #2670 by
|
|
1628
|
+
[#2604](https://github.com/rubygems/rubygems/pull/2604) by SHIBATA Hiroshi.
|
|
1629
|
+
* Drop tests for legacy RDoc. Pull request [#2608](https://github.com/rubygems/rubygems/pull/2608) by Nobuyoshi Nakada.
|
|
1630
|
+
* Update TODO comment. Pull request [#2658](https://github.com/rubygems/rubygems/pull/2658) by Luis Sagastume.
|
|
1631
|
+
* Skip malicious extension test with mswin platform. Pull request [#2670](https://github.com/rubygems/rubygems/pull/2670) by
|
|
960
1632
|
SHIBATA Hiroshi.
|
|
961
|
-
* Check deprecated methods on release. Pull request #2673 by David
|
|
1633
|
+
* Check deprecated methods on release. Pull request [#2673](https://github.com/rubygems/rubygems/pull/2673) by David
|
|
962
1634
|
Rodríguez.
|
|
963
|
-
* Add steps to run bundler tests. Pull request #2680 by Aditya Prakash.
|
|
964
|
-
* Skip temporary "No such host is known" error. Pull request #2684 by
|
|
1635
|
+
* Add steps to run bundler tests. Pull request [#2680](https://github.com/rubygems/rubygems/pull/2680) by Aditya Prakash.
|
|
1636
|
+
* Skip temporary "No such host is known" error. Pull request [#2684](https://github.com/rubygems/rubygems/pull/2684) by
|
|
965
1637
|
Takashi Kokubun.
|
|
966
|
-
* Replaced aws-sdk-s3 instead of s3cmd. Pull request #2688 by SHIBATA
|
|
1638
|
+
* Replaced aws-sdk-s3 instead of s3cmd. Pull request [#2688](https://github.com/rubygems/rubygems/pull/2688) by SHIBATA
|
|
967
1639
|
Hiroshi.
|
|
968
|
-
* Allow uninstall from symlinked GEM_HOME. Pull request #2720 by David
|
|
1640
|
+
* Allow uninstall from symlinked GEM_HOME. Pull request [#2720](https://github.com/rubygems/rubygems/pull/2720) by David
|
|
969
1641
|
Rodríguez.
|
|
970
1642
|
* Use current checkout in CI to uninstall RVM related gems. Pull request
|
|
971
|
-
#2729 by David Rodríguez.
|
|
972
|
-
* Update Contributor Covenant v1.4.1. Pull request #2751 by SHIBATA
|
|
1643
|
+
[#2729](https://github.com/rubygems/rubygems/pull/2729) by David Rodríguez.
|
|
1644
|
+
* Update Contributor Covenant v1.4.1. Pull request [#2751](https://github.com/rubygems/rubygems/pull/2751) by SHIBATA
|
|
973
1645
|
Hiroshi.
|
|
974
|
-
* Added supported versions of Ruby. Pull request #2756 by SHIBATA Hiroshi.
|
|
975
|
-
* Fix shadowing outer local variable warning. Pull request #2763 by Luis
|
|
1646
|
+
* Added supported versions of Ruby. Pull request [#2756](https://github.com/rubygems/rubygems/pull/2756) by SHIBATA Hiroshi.
|
|
1647
|
+
* Fix shadowing outer local variable warning. Pull request [#2763](https://github.com/rubygems/rubygems/pull/2763) by Luis
|
|
976
1648
|
Sagastume.
|
|
977
1649
|
* Update the certificate files to make the test pass on Debian 10. Pull
|
|
978
|
-
request #2777 by Yusuke Endoh.
|
|
979
|
-
* Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
|
|
1650
|
+
request [#2777](https://github.com/rubygems/rubygems/pull/2777) by Yusuke Endoh.
|
|
1651
|
+
* Backport ruby core changes. Pull request [#2778](https://github.com/rubygems/rubygems/pull/2778) by SHIBATA Hiroshi.
|
|
980
1652
|
|
|
981
1653
|
## Bug fixes:
|
|
982
1654
|
|
|
983
|
-
* Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
|
|
984
|
-
* Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
|
|
985
|
-
* Fix flaky bundler version finder tests. Pull request #2624 by David
|
|
1655
|
+
* Test_gem.rb - intermittent failure fix. Pull request [#2613](https://github.com/rubygems/rubygems/pull/2613) by MSP-Greg.
|
|
1656
|
+
* Fix sporadic CI failures. Pull request [#2617](https://github.com/rubygems/rubygems/pull/2617) by David Rodríguez.
|
|
1657
|
+
* Fix flaky bundler version finder tests. Pull request [#2624](https://github.com/rubygems/rubygems/pull/2624) by David
|
|
986
1658
|
Rodríguez.
|
|
987
|
-
* Fix gem indexer tests leaking utility gems. Pull request #2625 by David
|
|
1659
|
+
* Fix gem indexer tests leaking utility gems. Pull request [#2625](https://github.com/rubygems/rubygems/pull/2625) by David
|
|
988
1660
|
Rodríguez.
|
|
989
|
-
* Clean up default spec dir too. Pull request #2639 by David Rodríguez.
|
|
990
|
-
* Fix 2.6.1 build against vendored bundler. Pull request #2645 by David
|
|
1661
|
+
* Clean up default spec dir too. Pull request [#2639](https://github.com/rubygems/rubygems/pull/2639) by David Rodríguez.
|
|
1662
|
+
* Fix 2.6.1 build against vendored bundler. Pull request [#2645](https://github.com/rubygems/rubygems/pull/2645) by David
|
|
991
1663
|
Rodríguez.
|
|
992
|
-
* Fix comment typo. Pull request #2664 by Luis Sagastume.
|
|
1664
|
+
* Fix comment typo. Pull request [#2664](https://github.com/rubygems/rubygems/pull/2664) by Luis Sagastume.
|
|
993
1665
|
* Fix comment of Gem::Specification#required_ruby_version=. Pull request
|
|
994
|
-
#2732 by Alex Junger.
|
|
995
|
-
* Fix TODOs. Pull request #2748 by David Rodríguez.
|
|
1666
|
+
[#2732](https://github.com/rubygems/rubygems/pull/2732) by Alex Junger.
|
|
1667
|
+
* Fix TODOs. Pull request [#2748](https://github.com/rubygems/rubygems/pull/2748) by David Rodríguez.
|
|
996
1668
|
|
|
997
1669
|
# 3.0.3 / 2019-03-05
|
|
998
1670
|
|
|
@@ -1009,312 +1681,312 @@ Security fixes:
|
|
|
1009
1681
|
|
|
1010
1682
|
## Enhancements:
|
|
1011
1683
|
|
|
1012
|
-
* Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
|
|
1013
|
-
* Fix document flag description. Pull request #2555 by Luis Sagastume.
|
|
1684
|
+
* Use Bundler-1.17.3. Pull request [#2556](https://github.com/rubygems/rubygems/pull/2556) by SHIBATA Hiroshi.
|
|
1685
|
+
* Fix document flag description. Pull request [#2555](https://github.com/rubygems/rubygems/pull/2555) by Luis Sagastume.
|
|
1014
1686
|
|
|
1015
1687
|
## Bug fixes:
|
|
1016
1688
|
|
|
1017
1689
|
* Fix tests when ruby --program-suffix is used without rubygems
|
|
1018
|
-
--format-executable. Pull request #2549 by Jeremy Evans.
|
|
1690
|
+
--format-executable. Pull request [#2549](https://github.com/rubygems/rubygems/pull/2549) by Jeremy Evans.
|
|
1019
1691
|
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
|
1020
|
-
request #2554 by Grey Baker.
|
|
1021
|
-
* Unset SOURCE_DATE_EPOCH in the test cases. Pull request #2558 by Sorah
|
|
1692
|
+
request [#2554](https://github.com/rubygems/rubygems/pull/2554) by Grey Baker.
|
|
1693
|
+
* Unset SOURCE_DATE_EPOCH in the test cases. Pull request [#2558](https://github.com/rubygems/rubygems/pull/2558) by Sorah
|
|
1022
1694
|
Fukumori.
|
|
1023
|
-
* Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
|
|
1695
|
+
* Restore SOURCE_DATE_EPOCH. Pull request [#2560](https://github.com/rubygems/rubygems/pull/2560) by SHIBATA Hiroshi.
|
|
1024
1696
|
|
|
1025
1697
|
# 3.0.1 / 2018-12-23
|
|
1026
1698
|
|
|
1027
1699
|
## Bug fixes:
|
|
1028
1700
|
|
|
1029
|
-
* Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
|
|
1030
|
-
* Dup the Dir.home string before passing it on. Pull request #2545 by
|
|
1701
|
+
* Ensure globbed files paths are expanded. Pull request [#2536](https://github.com/rubygems/rubygems/pull/2536) by Tony Ta.
|
|
1702
|
+
* Dup the Dir.home string before passing it on. Pull request [#2545](https://github.com/rubygems/rubygems/pull/2545) by
|
|
1031
1703
|
Charles Oliver Nutter.
|
|
1032
|
-
* Added permissions to installed files for non-owners. Pull request #2546
|
|
1704
|
+
* Added permissions to installed files for non-owners. Pull request [#2546](https://github.com/rubygems/rubygems/pull/2546)
|
|
1033
1705
|
by SHIBATA Hiroshi.
|
|
1034
|
-
* Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
|
|
1706
|
+
* Restore release task without hoe. Pull request [#2547](https://github.com/rubygems/rubygems/pull/2547) by SHIBATA Hiroshi.
|
|
1035
1707
|
|
|
1036
1708
|
# 3.0.0 / 2018-12-19
|
|
1037
1709
|
|
|
1038
1710
|
## Enhancements:
|
|
1039
1711
|
|
|
1040
|
-
* S3 source. Pull request #1690 by Aditya Prakash.
|
|
1041
|
-
* Download gems with threads. Pull request #1898 by André Arko.
|
|
1042
|
-
* Update to SPDX license list 3.0. Pull request #2152 by Mike Linksvayer.
|
|
1043
|
-
* [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
|
|
1712
|
+
* S3 source. Pull request [#1690](https://github.com/rubygems/rubygems/pull/1690) by Aditya Prakash.
|
|
1713
|
+
* Download gems with threads. Pull request [#1898](https://github.com/rubygems/rubygems/pull/1898) by André Arko.
|
|
1714
|
+
* Update to SPDX license list 3.0. Pull request [#2152](https://github.com/rubygems/rubygems/pull/2152) by Mike Linksvayer.
|
|
1715
|
+
* [GSoC] Multi-factor feature for RubyGems. Pull request [#2369](https://github.com/rubygems/rubygems/pull/2369) by Qiu
|
|
1044
1716
|
Chaofan.
|
|
1045
|
-
* Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
|
|
1717
|
+
* Use bundler 1.17.2. Pull request [#2521](https://github.com/rubygems/rubygems/pull/2521) by SHIBATA Hiroshi.
|
|
1046
1718
|
* Don't treat inaccessible working directories as build failures. Pull
|
|
1047
|
-
request #1135 by Pete.
|
|
1719
|
+
request [#1135](https://github.com/rubygems/rubygems/pull/1135) by Pete.
|
|
1048
1720
|
* Remove useless directory parameter from builders .build methods.
|
|
1049
|
-
[rebased]. Pull request #1433 by Kurtis Rainbolt-Greene.
|
|
1050
|
-
* Skipping more than one gem in pristine. Pull request #1592 by Henne
|
|
1721
|
+
[rebased]. Pull request [#1433](https://github.com/rubygems/rubygems/pull/1433) by Kurtis Rainbolt-Greene.
|
|
1722
|
+
* Skipping more than one gem in pristine. Pull request [#1592](https://github.com/rubygems/rubygems/pull/1592) by Henne
|
|
1051
1723
|
Vogelsang.
|
|
1052
1724
|
* Add info command to print information about an installed gem. Pull
|
|
1053
|
-
request #2023 by Colby Swandale.
|
|
1725
|
+
request [#2023](https://github.com/rubygems/rubygems/pull/2023) by Colby Swandale.
|
|
1054
1726
|
* Add --[no-]check-development option to cleanup command. Pull request
|
|
1055
|
-
#2061 by Lin Jen-Shin (godfat).
|
|
1056
|
-
* Show which gem referenced a missing gem. Pull request #2067 by Artem
|
|
1727
|
+
[#2061](https://github.com/rubygems/rubygems/pull/2061) by Lin Jen-Shin (godfat).
|
|
1728
|
+
* Show which gem referenced a missing gem. Pull request [#2067](https://github.com/rubygems/rubygems/pull/2067) by Artem
|
|
1057
1729
|
Khramov.
|
|
1058
1730
|
* Prevent to delete to "bundler-" prefix gem like bundler-audit. Pull
|
|
1059
|
-
request #2086 by SHIBATA Hiroshi.
|
|
1731
|
+
request [#2086](https://github.com/rubygems/rubygems/pull/2086) by SHIBATA Hiroshi.
|
|
1060
1732
|
* Fix rake install_test_deps once the rake clean_env does not exist. Pull
|
|
1061
|
-
request #2090 by Lucas Arantes.
|
|
1733
|
+
request [#2090](https://github.com/rubygems/rubygems/pull/2090) by Lucas Arantes.
|
|
1062
1734
|
* Workaround common options mutation in Gem::Command test. Pull request
|
|
1063
|
-
#2098 by Thibault Jouan.
|
|
1064
|
-
* Extract a SpecificationPolicy validation class. Pull request #2101 by
|
|
1735
|
+
[#2098](https://github.com/rubygems/rubygems/pull/2098) by Thibault Jouan.
|
|
1736
|
+
* Extract a SpecificationPolicy validation class. Pull request [#2101](https://github.com/rubygems/rubygems/pull/2101) by
|
|
1065
1737
|
Olle Jonsson.
|
|
1066
1738
|
* Handle environment that does not have `flock` system call. Pull request
|
|
1067
|
-
#2107 by SHIBATA Hiroshi.
|
|
1068
|
-
* Handle the explain option in gem update. Pull request #2110 by Colby
|
|
1739
|
+
[#2107](https://github.com/rubygems/rubygems/pull/2107) by SHIBATA Hiroshi.
|
|
1740
|
+
* Handle the explain option in gem update. Pull request [#2110](https://github.com/rubygems/rubygems/pull/2110) by Colby
|
|
1069
1741
|
Swandale.
|
|
1070
1742
|
* Add Gem.operating_system_defaults to allow packagers to override
|
|
1071
|
-
defaults. Pull request #2116 by Vít Ondruch.
|
|
1072
|
-
* Update for compatibility with new minitest. Pull request #2118 by
|
|
1743
|
+
defaults. Pull request [#2116](https://github.com/rubygems/rubygems/pull/2116) by Vít Ondruch.
|
|
1744
|
+
* Update for compatibility with new minitest. Pull request [#2118](https://github.com/rubygems/rubygems/pull/2118) by
|
|
1073
1745
|
MSP-Greg.
|
|
1074
|
-
* Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
|
|
1746
|
+
* Make Windows bin stubs portable. Pull request [#2119](https://github.com/rubygems/rubygems/pull/2119) by MSP-Greg.
|
|
1075
1747
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
|
1076
|
-
#2125 by SHIBATA Hiroshi.
|
|
1748
|
+
[#2125](https://github.com/rubygems/rubygems/pull/2125) by SHIBATA Hiroshi.
|
|
1077
1749
|
* Set whether bundler is used for gemdeps with an environmental variable.
|
|
1078
|
-
Pull request #2126 by SHIBATA Hiroshi.
|
|
1079
|
-
* Titleize "GETTING HELP" in readme. Pull request #2136 by Colby Swandale.
|
|
1750
|
+
Pull request [#2126](https://github.com/rubygems/rubygems/pull/2126) by SHIBATA Hiroshi.
|
|
1751
|
+
* Titleize "GETTING HELP" in readme. Pull request [#2136](https://github.com/rubygems/rubygems/pull/2136) by Colby Swandale.
|
|
1080
1752
|
* Improve the error message given when using --version with multiple gems
|
|
1081
|
-
in the install command. Pull request #2137 by Colby Swandale.
|
|
1082
|
-
* Use `File.open` instead of `open`. Pull request #2142 by SHIBATA
|
|
1753
|
+
in the install command. Pull request [#2137](https://github.com/rubygems/rubygems/pull/2137) by Colby Swandale.
|
|
1754
|
+
* Use `File.open` instead of `open`. Pull request [#2142](https://github.com/rubygems/rubygems/pull/2142) by SHIBATA
|
|
1083
1755
|
Hiroshi.
|
|
1084
1756
|
* Gem::Util.traverse_parents should not crash on permissions error. Pull
|
|
1085
|
-
request #2147 by Robert Ulejczyk.
|
|
1086
|
-
* [Installer] Avoid a #mkdir race condition. Pull request #2148 by Samuel
|
|
1757
|
+
request [#2147](https://github.com/rubygems/rubygems/pull/2147) by Robert Ulejczyk.
|
|
1758
|
+
* [Installer] Avoid a #mkdir race condition. Pull request [#2148](https://github.com/rubygems/rubygems/pull/2148) by Samuel
|
|
1087
1759
|
Giddins.
|
|
1088
1760
|
* Allow writing gemspecs from gem unpack to location specified by target
|
|
1089
|
-
option. Pull request #2150 by Colby Swandale.
|
|
1761
|
+
option. Pull request [#2150](https://github.com/rubygems/rubygems/pull/2150) by Colby Swandale.
|
|
1090
1762
|
* Raise errors in `gem uninstall` when a file in a gem could not be
|
|
1091
|
-
removed . Pull request #2154 by Colby Swandale.
|
|
1092
|
-
* Remove PID from gem index directory. Pull request #2155 by SHIBATA
|
|
1763
|
+
removed . Pull request [#2154](https://github.com/rubygems/rubygems/pull/2154) by Colby Swandale.
|
|
1764
|
+
* Remove PID from gem index directory. Pull request [#2155](https://github.com/rubygems/rubygems/pull/2155) by SHIBATA
|
|
1093
1765
|
Hiroshi.
|
|
1094
|
-
* Nil guard on `Gem::Specification`. Pull request #2164 by SHIBATA
|
|
1766
|
+
* Nil guard on `Gem::Specification`. Pull request [#2164](https://github.com/rubygems/rubygems/pull/2164) by SHIBATA
|
|
1095
1767
|
Hiroshi.
|
|
1096
|
-
* Skip broken test with macOS platform. Pull request #2167 by SHIBATA
|
|
1768
|
+
* Skip broken test with macOS platform. Pull request [#2167](https://github.com/rubygems/rubygems/pull/2167) by SHIBATA
|
|
1097
1769
|
Hiroshi.
|
|
1098
1770
|
* Support option for `--destdir` with upgrade installer. Pull request
|
|
1099
|
-
#2169 by SHIBATA Hiroshi.
|
|
1100
|
-
* To use constant instead of hard-coded version. Pull request #2171 by
|
|
1771
|
+
[#2169](https://github.com/rubygems/rubygems/pull/2169) by SHIBATA Hiroshi.
|
|
1772
|
+
* To use constant instead of hard-coded version. Pull request [#2171](https://github.com/rubygems/rubygems/pull/2171) by
|
|
1101
1773
|
SHIBATA Hiroshi.
|
|
1102
|
-
* Add Rake task to install dev dependencies. Pull request #2173 by Ellen
|
|
1774
|
+
* Add Rake task to install dev dependencies. Pull request [#2173](https://github.com/rubygems/rubygems/pull/2173) by Ellen
|
|
1103
1775
|
Marie Dash.
|
|
1104
1776
|
* Add new sections to the README and explanation of what RubyGems is.
|
|
1105
|
-
Pull request #2174 by Colby Swandale.
|
|
1106
|
-
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
|
|
1777
|
+
Pull request [#2174](https://github.com/rubygems/rubygems/pull/2174) by Colby Swandale.
|
|
1778
|
+
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request [#2176](https://github.com/rubygems/rubygems/pull/2176) by
|
|
1107
1779
|
SHIBATA Hiroshi.
|
|
1108
|
-
* Ignore performance test of version regexp pattern. Pull request #2179 by
|
|
1780
|
+
* Ignore performance test of version regexp pattern. Pull request [#2179](https://github.com/rubygems/rubygems/pull/2179) by
|
|
1109
1781
|
SHIBATA Hiroshi.
|
|
1110
|
-
* Ignore .DS_Store files in the update_manifest task. Pull request #2199
|
|
1782
|
+
* Ignore .DS_Store files in the update_manifest task. Pull request [#2199](https://github.com/rubygems/rubygems/pull/2199)
|
|
1111
1783
|
by Colby Swandale.
|
|
1112
1784
|
* Allow building gems without having to be in the gem folder . Pull
|
|
1113
|
-
request #2204 by Colby Swandale.
|
|
1114
|
-
* Added coverage ability used by simplecov. Pull request #2207 by SHIBATA
|
|
1785
|
+
request [#2204](https://github.com/rubygems/rubygems/pull/2204) by Colby Swandale.
|
|
1786
|
+
* Added coverage ability used by simplecov. Pull request [#2207](https://github.com/rubygems/rubygems/pull/2207) by SHIBATA
|
|
1115
1787
|
Hiroshi.
|
|
1116
|
-
* Improve invalid proxy error message. Pull request #2217 by Luis
|
|
1788
|
+
* Improve invalid proxy error message. Pull request [#2217](https://github.com/rubygems/rubygems/pull/2217) by Luis
|
|
1117
1789
|
Sagastume.
|
|
1118
1790
|
* Simplify home directory detection and platform condition. Pull request
|
|
1119
|
-
#2218 by SHIBATA Hiroshi.
|
|
1120
|
-
* Permission options. Pull request #2219 by Nobuyoshi Nakada.
|
|
1121
|
-
* Improve gemspec and package task. Pull request #2220 by SHIBATA Hiroshi.
|
|
1122
|
-
* Prefer to use util_spec in `Gem::TestCase`. Pull request #2227 by
|
|
1791
|
+
[#2218](https://github.com/rubygems/rubygems/pull/2218) by SHIBATA Hiroshi.
|
|
1792
|
+
* Permission options. Pull request [#2219](https://github.com/rubygems/rubygems/pull/2219) by Nobuyoshi Nakada.
|
|
1793
|
+
* Improve gemspec and package task. Pull request [#2220](https://github.com/rubygems/rubygems/pull/2220) by SHIBATA Hiroshi.
|
|
1794
|
+
* Prefer to use util_spec in `Gem::TestCase`. Pull request [#2227](https://github.com/rubygems/rubygems/pull/2227) by
|
|
1123
1795
|
SHIBATA Hiroshi.
|
|
1124
1796
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
|
1125
|
-
request #2230 by Samuel Giddins.
|
|
1126
|
-
* Add a note for the non-semantically versioned case. Pull request #2242
|
|
1797
|
+
request [#2230](https://github.com/rubygems/rubygems/pull/2230) by Samuel Giddins.
|
|
1798
|
+
* Add a note for the non-semantically versioned case. Pull request [#2242](https://github.com/rubygems/rubygems/pull/2242)
|
|
1127
1799
|
by David Rodríguez.
|
|
1128
|
-
* Keep feature names loaded in the block. Pull request #2261 by Nobuyoshi
|
|
1800
|
+
* Keep feature names loaded in the block. Pull request [#2261](https://github.com/rubygems/rubygems/pull/2261) by Nobuyoshi
|
|
1129
1801
|
Nakada.
|
|
1130
|
-
* Tweak warning recommendation. Pull request #2266 by David Rodríguez.
|
|
1131
|
-
* Show git path in gem env. Pull request #2268 by Luis Sagastume.
|
|
1132
|
-
* Add `--env-shebang` flag to setup command. Pull request #2271 by James
|
|
1802
|
+
* Tweak warning recommendation. Pull request [#2266](https://github.com/rubygems/rubygems/pull/2266) by David Rodríguez.
|
|
1803
|
+
* Show git path in gem env. Pull request [#2268](https://github.com/rubygems/rubygems/pull/2268) by Luis Sagastume.
|
|
1804
|
+
* Add `--env-shebang` flag to setup command. Pull request [#2271](https://github.com/rubygems/rubygems/pull/2271) by James
|
|
1133
1805
|
Myers.
|
|
1134
1806
|
* Support SOURCE_DATE_EPOCH to make gem spec reproducible. Pull request
|
|
1135
|
-
#2278 by Levente Polyak.
|
|
1807
|
+
[#2278](https://github.com/rubygems/rubygems/pull/2278) by Levente Polyak.
|
|
1136
1808
|
* Chdir back to original directory when building an extension fails. Pull
|
|
1137
|
-
request #2282 by Samuel Giddins.
|
|
1138
|
-
* [Rakefile] Add a default task that runs the tests. Pull request #2283 by
|
|
1809
|
+
request [#2282](https://github.com/rubygems/rubygems/pull/2282) by Samuel Giddins.
|
|
1810
|
+
* [Rakefile] Add a default task that runs the tests. Pull request [#2283](https://github.com/rubygems/rubygems/pull/2283) by
|
|
1139
1811
|
Samuel Giddins.
|
|
1140
1812
|
* Support SOURCE_DATE_EPOCH to make gem tar reproducible. Pull request
|
|
1141
|
-
#2289 by Levente Polyak.
|
|
1142
|
-
* Reset hooks in test cases. Pull request #2297 by Samuel Giddins.
|
|
1143
|
-
* Minor typo: nokogiri. Pull request #2298 by Darshan Baid.
|
|
1144
|
-
* Ignore vendored molinillo from code coverage. Pull request #2302 by
|
|
1813
|
+
[#2289](https://github.com/rubygems/rubygems/pull/2289) by Levente Polyak.
|
|
1814
|
+
* Reset hooks in test cases. Pull request [#2297](https://github.com/rubygems/rubygems/pull/2297) by Samuel Giddins.
|
|
1815
|
+
* Minor typo: nokogiri. Pull request [#2298](https://github.com/rubygems/rubygems/pull/2298) by Darshan Baid.
|
|
1816
|
+
* Ignore vendored molinillo from code coverage. Pull request [#2302](https://github.com/rubygems/rubygems/pull/2302) by
|
|
1145
1817
|
SHIBATA Hiroshi.
|
|
1146
|
-
* Support IO.copy_stream. Pull request #2303 by okkez.
|
|
1147
|
-
* Prepare beta release. Pull request #2304 by SHIBATA Hiroshi.
|
|
1148
|
-
* Add error message when trying to open a default gem. Pull request #2307
|
|
1818
|
+
* Support IO.copy_stream. Pull request [#2303](https://github.com/rubygems/rubygems/pull/2303) by okkez.
|
|
1819
|
+
* Prepare beta release. Pull request [#2304](https://github.com/rubygems/rubygems/pull/2304) by SHIBATA Hiroshi.
|
|
1820
|
+
* Add error message when trying to open a default gem. Pull request [#2307](https://github.com/rubygems/rubygems/pull/2307)
|
|
1149
1821
|
by Luis Sagastume.
|
|
1150
|
-
* Add alias command 'i' for 'install' command. Pull request #2308 by
|
|
1822
|
+
* Add alias command 'i' for 'install' command. Pull request [#2308](https://github.com/rubygems/rubygems/pull/2308) by
|
|
1151
1823
|
ota42y.
|
|
1152
|
-
* Cleanup rdoc task in Rakefile. Pull request #2318 by SHIBATA Hiroshi.
|
|
1153
|
-
* Add testcase to test_gem_text.rb. Pull request #2329 by Oliver.
|
|
1154
|
-
* Gem build strict option. Pull request #2332 by David Rodríguez.
|
|
1155
|
-
* Make spec reset more informative. Pull request #2333 by Luis Sagastume.
|
|
1824
|
+
* Cleanup rdoc task in Rakefile. Pull request [#2318](https://github.com/rubygems/rubygems/pull/2318) by SHIBATA Hiroshi.
|
|
1825
|
+
* Add testcase to test_gem_text.rb. Pull request [#2329](https://github.com/rubygems/rubygems/pull/2329) by Oliver.
|
|
1826
|
+
* Gem build strict option. Pull request [#2332](https://github.com/rubygems/rubygems/pull/2332) by David Rodríguez.
|
|
1827
|
+
* Make spec reset more informative. Pull request [#2333](https://github.com/rubygems/rubygems/pull/2333) by Luis Sagastume.
|
|
1156
1828
|
* [Rakefile] Set bundler build metadata when doing a release. Pull request
|
|
1157
|
-
#2335 by Samuel Giddins.
|
|
1158
|
-
* Speed up globbing relative to given directories. Pull request #2336 by
|
|
1829
|
+
[#2335](https://github.com/rubygems/rubygems/pull/2335) by Samuel Giddins.
|
|
1830
|
+
* Speed up globbing relative to given directories. Pull request [#2336](https://github.com/rubygems/rubygems/pull/2336) by
|
|
1159
1831
|
Samuel Giddins.
|
|
1160
|
-
* Remove semver gem build warning. Pull request #2351 by David Rodríguez.
|
|
1161
|
-
* Expand symlinks in gem path. Pull request #2352 by Benoit Daloze.
|
|
1162
|
-
* Normalize comment indentations. Pull request #2353 by David Rodríguez.
|
|
1163
|
-
* Add bindir flag to pristine. Pull request #2361 by Luis Sagastume.
|
|
1164
|
-
* Add --user-install behaviour to cleanup command. Pull request #2362 by
|
|
1832
|
+
* Remove semver gem build warning. Pull request [#2351](https://github.com/rubygems/rubygems/pull/2351) by David Rodríguez.
|
|
1833
|
+
* Expand symlinks in gem path. Pull request [#2352](https://github.com/rubygems/rubygems/pull/2352) by Benoit Daloze.
|
|
1834
|
+
* Normalize comment indentations. Pull request [#2353](https://github.com/rubygems/rubygems/pull/2353) by David Rodríguez.
|
|
1835
|
+
* Add bindir flag to pristine. Pull request [#2361](https://github.com/rubygems/rubygems/pull/2361) by Luis Sagastume.
|
|
1836
|
+
* Add --user-install behaviour to cleanup command. Pull request [#2362](https://github.com/rubygems/rubygems/pull/2362) by
|
|
1165
1837
|
Luis Sagastume.
|
|
1166
|
-
* Allow build options to be passed to Rake. Pull request #2382 by Alyssa
|
|
1838
|
+
* Allow build options to be passed to Rake. Pull request [#2382](https://github.com/rubygems/rubygems/pull/2382) by Alyssa
|
|
1167
1839
|
Ross.
|
|
1168
|
-
* Add --re-sign flag to cert command. Pull request #2391 by Luis
|
|
1840
|
+
* Add --re-sign flag to cert command. Pull request [#2391](https://github.com/rubygems/rubygems/pull/2391) by Luis
|
|
1169
1841
|
Sagastume.
|
|
1170
|
-
* Fix "interpreted as grouped expression" warning. Pull request #2399 by
|
|
1842
|
+
* Fix "interpreted as grouped expression" warning. Pull request [#2399](https://github.com/rubygems/rubygems/pull/2399) by
|
|
1171
1843
|
Colby Swandale.
|
|
1172
1844
|
* [Gem::Ext::Builder] Comments to aid future refactoring. Pull request
|
|
1173
|
-
#2405 by Ellen Marie Dash.
|
|
1845
|
+
[#2405](https://github.com/rubygems/rubygems/pull/2405) by Ellen Marie Dash.
|
|
1174
1846
|
* Move CONTRIBUTING.rdoc and POLICIES.rdoc documents to markdown. Pull
|
|
1175
|
-
request #2412 by Colby Swandale.
|
|
1176
|
-
* Improve certificate expiration defaults. Pull request #2420 by Luis
|
|
1847
|
+
request [#2412](https://github.com/rubygems/rubygems/pull/2412) by Colby Swandale.
|
|
1848
|
+
* Improve certificate expiration defaults. Pull request [#2420](https://github.com/rubygems/rubygems/pull/2420) by Luis
|
|
1177
1849
|
Sagastume.
|
|
1178
|
-
* Freeze all possible constants. Pull request #2422 by Colby Swandale.
|
|
1850
|
+
* Freeze all possible constants. Pull request [#2422](https://github.com/rubygems/rubygems/pull/2422) by Colby Swandale.
|
|
1179
1851
|
* Fix bundler rubygems binstub not properly looking for bundler. Pull
|
|
1180
|
-
request #2426 by David Rodríguez.
|
|
1852
|
+
request [#2426](https://github.com/rubygems/rubygems/pull/2426) by David Rodríguez.
|
|
1181
1853
|
* Make sure rubygems never leaks to another installation. Pull request
|
|
1182
|
-
#2427 by David Rodríguez.
|
|
1183
|
-
* Update README.md. Pull request #2428 by Marc-André Lafortune.
|
|
1184
|
-
* Restrict special chars from prefixing new gem names. Pull request #2432
|
|
1854
|
+
[#2427](https://github.com/rubygems/rubygems/pull/2427) by David Rodríguez.
|
|
1855
|
+
* Update README.md. Pull request [#2428](https://github.com/rubygems/rubygems/pull/2428) by Marc-André Lafortune.
|
|
1856
|
+
* Restrict special chars from prefixing new gem names. Pull request [#2432](https://github.com/rubygems/rubygems/pull/2432)
|
|
1185
1857
|
by Luis Sagastume.
|
|
1186
1858
|
* This removes support for dynamic API backend lookup via DNS SRV records.
|
|
1187
|
-
Pull request #2433 by Arlandis Word.
|
|
1188
|
-
* Fix link to CONTRIBUTING.md doc. Pull request #2434 by Arlandis Word.
|
|
1189
|
-
* Support Keyword args with Psych. Pull request #2439 by SHIBATA Hiroshi.
|
|
1190
|
-
* Bug/kernel#warn uplevel. Pull request #2442 by Nobuyoshi Nakada.
|
|
1191
|
-
* Improve certificate error message. Pull request #2454 by Luis Sagastume.
|
|
1192
|
-
* Update gem open command help text. Pull request #2458 by Aditya Prakash.
|
|
1193
|
-
* Uninstall with versions. Pull request #2466 by David Rodríguez.
|
|
1194
|
-
* Add output option to build command. Pull request #2501 by Colby
|
|
1859
|
+
Pull request [#2433](https://github.com/rubygems/rubygems/pull/2433) by Arlandis Word.
|
|
1860
|
+
* Fix link to CONTRIBUTING.md doc. Pull request [#2434](https://github.com/rubygems/rubygems/pull/2434) by Arlandis Word.
|
|
1861
|
+
* Support Keyword args with Psych. Pull request [#2439](https://github.com/rubygems/rubygems/pull/2439) by SHIBATA Hiroshi.
|
|
1862
|
+
* Bug/kernel#warn uplevel. Pull request [#2442](https://github.com/rubygems/rubygems/pull/2442) by Nobuyoshi Nakada.
|
|
1863
|
+
* Improve certificate error message. Pull request [#2454](https://github.com/rubygems/rubygems/pull/2454) by Luis Sagastume.
|
|
1864
|
+
* Update gem open command help text. Pull request [#2458](https://github.com/rubygems/rubygems/pull/2458) by Aditya Prakash.
|
|
1865
|
+
* Uninstall with versions. Pull request [#2466](https://github.com/rubygems/rubygems/pull/2466) by David Rodríguez.
|
|
1866
|
+
* Add output option to build command. Pull request [#2501](https://github.com/rubygems/rubygems/pull/2501) by Colby
|
|
1195
1867
|
Swandale.
|
|
1196
|
-
* Move rubocop into a separate stage in travis ci. Pull request #2510 by
|
|
1868
|
+
* Move rubocop into a separate stage in travis ci. Pull request [#2510](https://github.com/rubygems/rubygems/pull/2510) by
|
|
1197
1869
|
Colby Swandale.
|
|
1198
|
-
* Ignore warnings with test_gem_specification.rb. Pull request #2523 by
|
|
1870
|
+
* Ignore warnings with test_gem_specification.rb. Pull request [#2523](https://github.com/rubygems/rubygems/pull/2523) by
|
|
1199
1871
|
SHIBATA Hiroshi.
|
|
1200
|
-
* Support the environment without OpenSSL. Pull request #2528 by SHIBATA
|
|
1872
|
+
* Support the environment without OpenSSL. Pull request [#2528](https://github.com/rubygems/rubygems/pull/2528) by SHIBATA
|
|
1201
1873
|
Hiroshi.
|
|
1202
1874
|
|
|
1203
1875
|
## Bug fixes:
|
|
1204
1876
|
|
|
1205
|
-
* Fix undefined method error when printing alert. Pull request #1884 by
|
|
1877
|
+
* Fix undefined method error when printing alert. Pull request [#1884](https://github.com/rubygems/rubygems/pull/1884) by
|
|
1206
1878
|
Robert Ross.
|
|
1207
1879
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
|
1208
|
-
#2115 by MSP-Greg.
|
|
1209
|
-
* Fixed typos. Pull request #2143 by SHIBATA Hiroshi.
|
|
1210
|
-
* Fix regression of destdir on Windows platform. Pull request #2178 by
|
|
1880
|
+
[#2115](https://github.com/rubygems/rubygems/pull/2115) by MSP-Greg.
|
|
1881
|
+
* Fixed typos. Pull request [#2143](https://github.com/rubygems/rubygems/pull/2143) by SHIBATA Hiroshi.
|
|
1882
|
+
* Fix regression of destdir on Windows platform. Pull request [#2178](https://github.com/rubygems/rubygems/pull/2178) by
|
|
1211
1883
|
SHIBATA Hiroshi.
|
|
1212
1884
|
* Fixed no assignment variables about default gems installation. Pull
|
|
1213
|
-
request #2181 by SHIBATA Hiroshi.
|
|
1214
|
-
* Fix spelling errors in the README. Pull request #2187 by Colby Swandale.
|
|
1215
|
-
* Missing comma creates ambiguous meaning. Pull request #2190 by Clifford
|
|
1885
|
+
request [#2181](https://github.com/rubygems/rubygems/pull/2181) by SHIBATA Hiroshi.
|
|
1886
|
+
* Fix spelling errors in the README. Pull request [#2187](https://github.com/rubygems/rubygems/pull/2187) by Colby Swandale.
|
|
1887
|
+
* Missing comma creates ambiguous meaning. Pull request [#2190](https://github.com/rubygems/rubygems/pull/2190) by Clifford
|
|
1216
1888
|
Heath.
|
|
1217
|
-
* Fix getting started instructions. Pull request #2198 by Luis Sagastume.
|
|
1218
|
-
* Fix rubygems dev env. Pull request #2201 by Luis Sagastume.
|
|
1889
|
+
* Fix getting started instructions. Pull request [#2198](https://github.com/rubygems/rubygems/pull/2198) by Luis Sagastume.
|
|
1890
|
+
* Fix rubygems dev env. Pull request [#2201](https://github.com/rubygems/rubygems/pull/2201) by Luis Sagastume.
|
|
1219
1891
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
|
1220
|
-
request #2229 by Elias Hernandis.
|
|
1221
|
-
* Fix activation when multiple platforms installed. Pull request #2339 by
|
|
1892
|
+
request [#2229](https://github.com/rubygems/rubygems/pull/2229) by Elias Hernandis.
|
|
1893
|
+
* Fix activation when multiple platforms installed. Pull request [#2339](https://github.com/rubygems/rubygems/pull/2339) by
|
|
1222
1894
|
MSP-Greg.
|
|
1223
1895
|
* Fix required_ruby_version with prereleases and improve error message.
|
|
1224
|
-
Pull request #2344 by David Rodríguez.
|
|
1225
|
-
* Update tests for 'newer' Windows builds. Pull request #2348 by MSP-Greg.
|
|
1226
|
-
* Fix broken rubocop task by upgrading to 0.58.1. Pull request #2356 by
|
|
1896
|
+
Pull request [#2344](https://github.com/rubygems/rubygems/pull/2344) by David Rodríguez.
|
|
1897
|
+
* Update tests for 'newer' Windows builds. Pull request [#2348](https://github.com/rubygems/rubygems/pull/2348) by MSP-Greg.
|
|
1898
|
+
* Fix broken rubocop task by upgrading to 0.58.1. Pull request [#2356](https://github.com/rubygems/rubygems/pull/2356) by
|
|
1227
1899
|
David Rodríguez.
|
|
1228
1900
|
* Gem::Version should handle nil like it used to before. Pull request
|
|
1229
|
-
#2363 by Luis Sagastume.
|
|
1230
|
-
* Avoid need of C++ compiler to pass the test suite. Pull request #2367 by
|
|
1901
|
+
[#2363](https://github.com/rubygems/rubygems/pull/2363) by Luis Sagastume.
|
|
1902
|
+
* Avoid need of C++ compiler to pass the test suite. Pull request [#2367](https://github.com/rubygems/rubygems/pull/2367) by
|
|
1231
1903
|
Vít Ondruch.
|
|
1232
|
-
* Fix auto resign expired certificate. Pull request #2380 by Luis
|
|
1904
|
+
* Fix auto resign expired certificate. Pull request [#2380](https://github.com/rubygems/rubygems/pull/2380) by Luis
|
|
1233
1905
|
Sagastume.
|
|
1234
|
-
* Skip permissions-dependent test when root. Pull request #2386 by Alyssa
|
|
1906
|
+
* Skip permissions-dependent test when root. Pull request [#2386](https://github.com/rubygems/rubygems/pull/2386) by Alyssa
|
|
1235
1907
|
Ross.
|
|
1236
|
-
* Fix test that depended on /usr/bin being in PATH. Pull request #2387 by
|
|
1908
|
+
* Fix test that depended on /usr/bin being in PATH. Pull request [#2387](https://github.com/rubygems/rubygems/pull/2387) by
|
|
1237
1909
|
Alyssa Ross.
|
|
1238
|
-
* Fixed test fail with mswin environment. Pull request #2390 by SHIBATA
|
|
1910
|
+
* Fixed test fail with mswin environment. Pull request [#2390](https://github.com/rubygems/rubygems/pull/2390) by SHIBATA
|
|
1239
1911
|
Hiroshi.
|
|
1240
|
-
* Fix broken builds using the correct rubocop version. Pull request #2396
|
|
1912
|
+
* Fix broken builds using the correct rubocop version. Pull request [#2396](https://github.com/rubygems/rubygems/pull/2396)
|
|
1241
1913
|
by Luis Sagastume.
|
|
1242
|
-
* Fix extension builder failure when verbose. Pull request #2457 by Sorah
|
|
1914
|
+
* Fix extension builder failure when verbose. Pull request [#2457](https://github.com/rubygems/rubygems/pull/2457) by Sorah
|
|
1243
1915
|
Fukumori.
|
|
1244
|
-
* Fix test warnings. Pull request #2472 by MSP-Greg.
|
|
1916
|
+
* Fix test warnings. Pull request [#2472](https://github.com/rubygems/rubygems/pull/2472) by MSP-Greg.
|
|
1245
1917
|
* The test suite of bundler is not present ruby description. Pull request
|
|
1246
|
-
#2484 by SHIBATA Hiroshi.
|
|
1247
|
-
* Fix crash on certain gemspecs. Pull request #2506 by David Rodríguez.
|
|
1248
|
-
* Fixed test fails with the newer version of OpenSSL. Pull request #2507
|
|
1918
|
+
[#2484](https://github.com/rubygems/rubygems/pull/2484) by SHIBATA Hiroshi.
|
|
1919
|
+
* Fix crash on certain gemspecs. Pull request [#2506](https://github.com/rubygems/rubygems/pull/2506) by David Rodríguez.
|
|
1920
|
+
* Fixed test fails with the newer version of OpenSSL. Pull request [#2507](https://github.com/rubygems/rubygems/pull/2507)
|
|
1249
1921
|
by SHIBATA Hiroshi.
|
|
1250
|
-
* Fix broken symlink that points to ../*. Pull request #2516 by Akira
|
|
1922
|
+
* Fix broken symlink that points to ../*. Pull request [#2516](https://github.com/rubygems/rubygems/pull/2516) by Akira
|
|
1251
1923
|
Matsuda.
|
|
1252
|
-
* Fix remote fetcher tests. Pull request #2520 by Luis Sagastume.
|
|
1924
|
+
* Fix remote fetcher tests. Pull request [#2520](https://github.com/rubygems/rubygems/pull/2520) by Luis Sagastume.
|
|
1253
1925
|
* Fix tests when --program-suffix and similar ruby configure options are
|
|
1254
|
-
used. Pull request #2529 by Jeremy Evans.
|
|
1926
|
+
used. Pull request [#2529](https://github.com/rubygems/rubygems/pull/2529) by Jeremy Evans.
|
|
1255
1927
|
|
|
1256
1928
|
## Breaking changes:
|
|
1257
1929
|
|
|
1258
|
-
* IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
|
|
1930
|
+
* IO.binread is not provided at Ruby 1.8. Pull request [#2093](https://github.com/rubygems/rubygems/pull/2093) by SHIBATA
|
|
1259
1931
|
Hiroshi.
|
|
1260
1932
|
* Ignored to publish rdoc documentation of rubygems for
|
|
1261
|
-
docs.seattlerb.org. Pull request #2105 by SHIBATA Hiroshi.
|
|
1262
|
-
* Support pre-release RubyGems. Pull request #2128 by SHIBATA Hiroshi.
|
|
1263
|
-
* Relax minitest version for 5. Pull request #2131 by SHIBATA Hiroshi.
|
|
1264
|
-
* Remove zentest from dev dependency. Pull request #2132 by SHIBATA
|
|
1933
|
+
docs.seattlerb.org. Pull request [#2105](https://github.com/rubygems/rubygems/pull/2105) by SHIBATA Hiroshi.
|
|
1934
|
+
* Support pre-release RubyGems. Pull request [#2128](https://github.com/rubygems/rubygems/pull/2128) by SHIBATA Hiroshi.
|
|
1935
|
+
* Relax minitest version for 5. Pull request [#2131](https://github.com/rubygems/rubygems/pull/2131) by SHIBATA Hiroshi.
|
|
1936
|
+
* Remove zentest from dev dependency. Pull request [#2132](https://github.com/rubygems/rubygems/pull/2132) by SHIBATA
|
|
1265
1937
|
Hiroshi.
|
|
1266
|
-
* Remove hoe for test suite. Pull request #2160 by SHIBATA Hiroshi.
|
|
1267
|
-
* Cleanup deprecated tasks. Pull request #2162 by SHIBATA Hiroshi.
|
|
1268
|
-
* Drop to support Ruby < 2.2. Pull request #2182 by SHIBATA Hiroshi.
|
|
1269
|
-
* Cleanup deprecated style. Pull request #2193 by SHIBATA Hiroshi.
|
|
1270
|
-
* Remove CVEs from the rubygems repo. Pull request #2195 by Colby
|
|
1938
|
+
* Remove hoe for test suite. Pull request [#2160](https://github.com/rubygems/rubygems/pull/2160) by SHIBATA Hiroshi.
|
|
1939
|
+
* Cleanup deprecated tasks. Pull request [#2162](https://github.com/rubygems/rubygems/pull/2162) by SHIBATA Hiroshi.
|
|
1940
|
+
* Drop to support Ruby < 2.2. Pull request [#2182](https://github.com/rubygems/rubygems/pull/2182) by SHIBATA Hiroshi.
|
|
1941
|
+
* Cleanup deprecated style. Pull request [#2193](https://github.com/rubygems/rubygems/pull/2193) by SHIBATA Hiroshi.
|
|
1942
|
+
* Remove CVEs from the rubygems repo. Pull request [#2195](https://github.com/rubygems/rubygems/pull/2195) by Colby
|
|
1271
1943
|
Swandale.
|
|
1272
|
-
* Removed needless condition for old version of ruby. Pull request #2206
|
|
1944
|
+
* Removed needless condition for old version of ruby. Pull request [#2206](https://github.com/rubygems/rubygems/pull/2206)
|
|
1273
1945
|
by SHIBATA Hiroshi.
|
|
1274
|
-
* Removed deprecated methods over the limit day. Pull request #2216 by
|
|
1946
|
+
* Removed deprecated methods over the limit day. Pull request [#2216](https://github.com/rubygems/rubygems/pull/2216) by
|
|
1275
1947
|
SHIBATA Hiroshi.
|
|
1276
|
-
* Remove syck support. Pull request #2222 by SHIBATA Hiroshi.
|
|
1277
|
-
* Removed needless condition for Encoding. Pull request #2223 by SHIBATA
|
|
1948
|
+
* Remove syck support. Pull request [#2222](https://github.com/rubygems/rubygems/pull/2222) by SHIBATA Hiroshi.
|
|
1949
|
+
* Removed needless condition for Encoding. Pull request [#2223](https://github.com/rubygems/rubygems/pull/2223) by SHIBATA
|
|
1278
1950
|
Hiroshi.
|
|
1279
|
-
* Removed needless condition for String#force_encoding. Pull request #2225
|
|
1951
|
+
* Removed needless condition for String#force_encoding. Pull request [#2225](https://github.com/rubygems/rubygems/pull/2225)
|
|
1280
1952
|
by SHIBATA Hiroshi.
|
|
1281
|
-
* Removed needless OpenSSL patch for Ruby 1.8. Pull request #2243 by
|
|
1953
|
+
* Removed needless OpenSSL patch for Ruby 1.8. Pull request [#2243](https://github.com/rubygems/rubygems/pull/2243) by
|
|
1282
1954
|
SHIBATA Hiroshi.
|
|
1283
|
-
* Removed compatibility code for Ruby 1.9.2. Pull request #2244 by SHIBATA
|
|
1955
|
+
* Removed compatibility code for Ruby 1.9.2. Pull request [#2244](https://github.com/rubygems/rubygems/pull/2244) by SHIBATA
|
|
1284
1956
|
Hiroshi.
|
|
1285
|
-
* Removed needless version condition for the old ruby. Pull request #2252
|
|
1957
|
+
* Removed needless version condition for the old ruby. Pull request [#2252](https://github.com/rubygems/rubygems/pull/2252)
|
|
1286
1958
|
by SHIBATA Hiroshi.
|
|
1287
|
-
* Remove needless define/respond_to condition. Pull request #2255 by
|
|
1959
|
+
* Remove needless define/respond_to condition. Pull request [#2255](https://github.com/rubygems/rubygems/pull/2255) by
|
|
1288
1960
|
SHIBATA Hiroshi.
|
|
1289
|
-
* Use File.realpath directly in Gem::Package. Pull request #2284 by
|
|
1961
|
+
* Use File.realpath directly in Gem::Package. Pull request [#2284](https://github.com/rubygems/rubygems/pull/2284) by
|
|
1290
1962
|
SHIBATA Hiroshi.
|
|
1291
|
-
* Removed needless condition for old versions of Ruby. Pull request #2286
|
|
1963
|
+
* Removed needless condition for old versions of Ruby. Pull request [#2286](https://github.com/rubygems/rubygems/pull/2286)
|
|
1292
1964
|
by SHIBATA Hiroshi.
|
|
1293
1965
|
* Remove the --rdoc and --ri options from install/update. Pull request
|
|
1294
|
-
#2354 by Colby Swandale.
|
|
1966
|
+
[#2354](https://github.com/rubygems/rubygems/pull/2354) by Colby Swandale.
|
|
1295
1967
|
* Move authors assigner to required attributes section of
|
|
1296
|
-
Gem::Specification. Pull request #2406 by Grey Baker.
|
|
1297
|
-
* Remove rubyforge_page functionality. Pull request #2436 by Nick
|
|
1968
|
+
Gem::Specification. Pull request [#2406](https://github.com/rubygems/rubygems/pull/2406) by Grey Baker.
|
|
1969
|
+
* Remove rubyforge_page functionality. Pull request [#2436](https://github.com/rubygems/rubygems/pull/2436) by Nick
|
|
1298
1970
|
Schwaderer.
|
|
1299
|
-
* Drop ruby 1.8 support and use IO.popen. Pull request #2441 by Nobuyoshi
|
|
1971
|
+
* Drop ruby 1.8 support and use IO.popen. Pull request [#2441](https://github.com/rubygems/rubygems/pull/2441) by Nobuyoshi
|
|
1300
1972
|
Nakada.
|
|
1301
|
-
* Drop ruby 2.2 support. Pull request #2487 by David Rodríguez.
|
|
1302
|
-
* Remove some old compatibility code. Pull request #2488 by David
|
|
1973
|
+
* Drop ruby 2.2 support. Pull request [#2487](https://github.com/rubygems/rubygems/pull/2487) by David Rodríguez.
|
|
1974
|
+
* Remove some old compatibility code. Pull request [#2488](https://github.com/rubygems/rubygems/pull/2488) by David
|
|
1303
1975
|
Rodríguez.
|
|
1304
|
-
* Remove .document from src. Pull request #2489 by Colby Swandale.
|
|
1305
|
-
* Remove old version support. Pull request #2493 by Nobuyoshi Nakada.
|
|
1976
|
+
* Remove .document from src. Pull request [#2489](https://github.com/rubygems/rubygems/pull/2489) by Colby Swandale.
|
|
1977
|
+
* Remove old version support. Pull request [#2493](https://github.com/rubygems/rubygems/pull/2493) by Nobuyoshi Nakada.
|
|
1306
1978
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
|
1307
|
-
major versions. Pull request #2515 by Colby Swandale.
|
|
1979
|
+
major versions. Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
|
|
1308
1980
|
|
|
1309
1981
|
# 2.7.10 / 2019-06-14
|
|
1310
1982
|
|
|
1311
1983
|
## Enhancements:
|
|
1312
1984
|
|
|
1313
|
-
* Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
|
|
1985
|
+
* Fix bundler rubygems binstub not properly looking for bundler. Pull request [#2426](https://github.com/rubygems/rubygems/pull/2426)
|
|
1314
1986
|
by David Rodríguez.
|
|
1315
1987
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
|
|
1316
|
-
Pull request #2515 by Colby Swandale.
|
|
1317
|
-
+ Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
|
|
1988
|
+
Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
|
|
1989
|
+
+ Update for compatibility with new minitest. Pull request [#2118](https://github.com/rubygems/rubygems/pull/2118) by MSP-Greg.
|
|
1318
1990
|
|
|
1319
1991
|
# 2.7.9 / 2019-03-05
|
|
1320
1992
|
|
|
@@ -1332,76 +2004,76 @@ Security fixes:
|
|
|
1332
2004
|
## Enhancements:
|
|
1333
2005
|
|
|
1334
2006
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
|
1335
|
-
request #2230 by Samuel Giddins.
|
|
1336
|
-
* Fix exec_name documentation. Pull request #2239 by Luis Sagastume.
|
|
1337
|
-
* [TarHeader] Extract the empty header into a constant. Pull request #2247
|
|
2007
|
+
request [#2230](https://github.com/rubygems/rubygems/pull/2230) by Samuel Giddins.
|
|
2008
|
+
* Fix exec_name documentation. Pull request [#2239](https://github.com/rubygems/rubygems/pull/2239) by Luis Sagastume.
|
|
2009
|
+
* [TarHeader] Extract the empty header into a constant. Pull request [#2247](https://github.com/rubygems/rubygems/pull/2247)
|
|
1338
2010
|
by Samuel Giddins.
|
|
1339
2011
|
* Simplify the code that lets us call the original, non-monkeypatched
|
|
1340
|
-
Kernel#require. Pull request #2267 by Leon Miller-Out.
|
|
1341
|
-
* Add install alias documentation. Pull request #2320 by ota42y.
|
|
2012
|
+
Kernel#require. Pull request [#2267](https://github.com/rubygems/rubygems/pull/2267) by Leon Miller-Out.
|
|
2013
|
+
* Add install alias documentation. Pull request [#2320](https://github.com/rubygems/rubygems/pull/2320) by ota42y.
|
|
1342
2014
|
* [Rakefile] Set bundler build metadata when doing a release. Pull request
|
|
1343
|
-
#2335 by Samuel Giddins.
|
|
1344
|
-
* Backport commits from ruby core . Pull request #2347 by SHIBATA Hiroshi.
|
|
1345
|
-
* Sign in to the correct host before push. Pull request #2366 by Luis
|
|
2015
|
+
[#2335](https://github.com/rubygems/rubygems/pull/2335) by Samuel Giddins.
|
|
2016
|
+
* Backport commits from ruby core . Pull request [#2347](https://github.com/rubygems/rubygems/pull/2347) by SHIBATA Hiroshi.
|
|
2017
|
+
* Sign in to the correct host before push. Pull request [#2366](https://github.com/rubygems/rubygems/pull/2366) by Luis
|
|
1346
2018
|
Sagastume.
|
|
1347
|
-
* Bump bundler-1.16.4. Pull request #2381 by SHIBATA Hiroshi.
|
|
1348
|
-
* Improve bindir flag description. Pull request #2383 by Luis Sagastume.
|
|
1349
|
-
* Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
|
|
2019
|
+
* Bump bundler-1.16.4. Pull request [#2381](https://github.com/rubygems/rubygems/pull/2381) by SHIBATA Hiroshi.
|
|
2020
|
+
* Improve bindir flag description. Pull request [#2383](https://github.com/rubygems/rubygems/pull/2383) by Luis Sagastume.
|
|
2021
|
+
* Update bundler-1.16.6. Pull request [#2423](https://github.com/rubygems/rubygems/pull/2423) by SHIBATA Hiroshi.
|
|
1350
2022
|
|
|
1351
2023
|
## Bug fixes:
|
|
1352
2024
|
|
|
1353
2025
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
|
1354
|
-
request #2229 by Elias Hernandis.
|
|
1355
|
-
* Fix no proxy checking. Pull request #2249 by Luis Sagastume.
|
|
1356
|
-
* Validate SPDX license exceptions. Pull request #2257 by Mikit.
|
|
1357
|
-
* Retry api specification spec with original platform. Pull request #2275
|
|
2026
|
+
request [#2229](https://github.com/rubygems/rubygems/pull/2229) by Elias Hernandis.
|
|
2027
|
+
* Fix no proxy checking. Pull request [#2249](https://github.com/rubygems/rubygems/pull/2249) by Luis Sagastume.
|
|
2028
|
+
* Validate SPDX license exceptions. Pull request [#2257](https://github.com/rubygems/rubygems/pull/2257) by Mikit.
|
|
2029
|
+
* Retry api specification spec with original platform. Pull request [#2275](https://github.com/rubygems/rubygems/pull/2275)
|
|
1358
2030
|
by Luis Sagastume.
|
|
1359
|
-
* Fix approximate recommendation with prereleases. Pull request #2345 by
|
|
2031
|
+
* Fix approximate recommendation with prereleases. Pull request [#2345](https://github.com/rubygems/rubygems/pull/2345) by
|
|
1360
2032
|
David Rodríguez.
|
|
1361
2033
|
* Gem::Version should handle nil like it used to before. Pull request
|
|
1362
|
-
#2363 by Luis Sagastume.
|
|
2034
|
+
[#2363](https://github.com/rubygems/rubygems/pull/2363) by Luis Sagastume.
|
|
1363
2035
|
|
|
1364
2036
|
# 2.7.7 / 2018-05-08
|
|
1365
2037
|
|
|
1366
2038
|
## Enhancements:
|
|
1367
2039
|
|
|
1368
2040
|
* [RequestSet] Only suggest a gem version with an installable platform.
|
|
1369
|
-
Pull request #2175 by Samuel Giddins.
|
|
2041
|
+
Pull request [#2175](https://github.com/rubygems/rubygems/pull/2175) by Samuel Giddins.
|
|
1370
2042
|
* Fixed no assignment variables about default gems installation. Pull
|
|
1371
|
-
request #2181 by SHIBATA Hiroshi.
|
|
1372
|
-
* Backport improvements for test-case from Ruby core. Pull request #2189
|
|
2043
|
+
request [#2181](https://github.com/rubygems/rubygems/pull/2181) by SHIBATA Hiroshi.
|
|
2044
|
+
* Backport improvements for test-case from Ruby core. Pull request [#2189](https://github.com/rubygems/rubygems/pull/2189)
|
|
1373
2045
|
by SHIBATA Hiroshi.
|
|
1374
|
-
* Fix ruby warnings in test suite. Pull request #2205 by Colby Swandale.
|
|
2046
|
+
* Fix ruby warnings in test suite. Pull request [#2205](https://github.com/rubygems/rubygems/pull/2205) by Colby Swandale.
|
|
1375
2047
|
* To use Gem::Specification#bindir of bundler instead of hard coded path.
|
|
1376
|
-
Pull request #2208 by SHIBATA Hiroshi.
|
|
1377
|
-
* Update gem push --help description. Pull request #2215 by Luis
|
|
2048
|
+
Pull request [#2208](https://github.com/rubygems/rubygems/pull/2208) by SHIBATA Hiroshi.
|
|
2049
|
+
* Update gem push --help description. Pull request [#2215](https://github.com/rubygems/rubygems/pull/2215) by Luis
|
|
1378
2050
|
Sagastume.
|
|
1379
|
-
* Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
|
|
2051
|
+
* Backport ruby core commits. Pull request [#2264](https://github.com/rubygems/rubygems/pull/2264) by SHIBATA Hiroshi.
|
|
1380
2052
|
|
|
1381
2053
|
## Bug fixes:
|
|
1382
2054
|
|
|
1383
2055
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
|
1384
|
-
#2115 by MSP-Greg.
|
|
1385
|
-
* Fixed tempfile leak for RubyGems 2.7.6. Pull request #2194 by SHIBATA
|
|
2056
|
+
[#2115](https://github.com/rubygems/rubygems/pull/2115) by MSP-Greg.
|
|
2057
|
+
* Fixed tempfile leak for RubyGems 2.7.6. Pull request [#2194](https://github.com/rubygems/rubygems/pull/2194) by SHIBATA
|
|
1386
2058
|
Hiroshi.
|
|
1387
|
-
* Add missing requires. Pull request #2196 by David Rodríguez.
|
|
1388
|
-
* Fix Gem::Version.correct?. Pull request #2203 by Masato Nakamura.
|
|
1389
|
-
* Fix verify_entry regex for metadata. Pull request #2212 by Luis
|
|
2059
|
+
* Add missing requires. Pull request [#2196](https://github.com/rubygems/rubygems/pull/2196) by David Rodríguez.
|
|
2060
|
+
* Fix Gem::Version.correct?. Pull request [#2203](https://github.com/rubygems/rubygems/pull/2203) by Masato Nakamura.
|
|
2061
|
+
* Fix verify_entry regex for metadata. Pull request [#2212](https://github.com/rubygems/rubygems/pull/2212) by Luis
|
|
1390
2062
|
Sagastume.
|
|
1391
|
-
* Fix path checks for case insensitive filesystem. Pull request #2211 by
|
|
2063
|
+
* Fix path checks for case insensitive filesystem. Pull request [#2211](https://github.com/rubygems/rubygems/pull/2211) by
|
|
1392
2064
|
Lars Kanis.
|
|
1393
2065
|
|
|
1394
2066
|
## Deprecations:
|
|
1395
2067
|
|
|
1396
|
-
* Deprecate unused code before removing them at #1524. Pull request #2197
|
|
2068
|
+
* Deprecate unused code before removing them at #1524. Pull request [#2197](https://github.com/rubygems/rubygems/pull/2197)
|
|
1397
2069
|
by SHIBATA Hiroshi.
|
|
1398
|
-
* Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
|
|
1399
|
-
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
|
|
2070
|
+
* Deprecate for rubygems 3. Pull request [#2214](https://github.com/rubygems/rubygems/pull/2214) by SHIBATA Hiroshi.
|
|
2071
|
+
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request [#2269](https://github.com/rubygems/rubygems/pull/2269) by
|
|
1400
2072
|
SHIBATA Hiroshi.
|
|
1401
2073
|
|
|
1402
2074
|
## Breaking changes:
|
|
1403
2075
|
|
|
1404
|
-
* Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
|
|
2076
|
+
* Update bundler-1.16.2. Pull request [#2291](https://github.com/rubygems/rubygems/pull/2291) by SHIBATA Hiroshi.
|
|
1405
2077
|
|
|
1406
2078
|
# 2.7.6 / 2018-02-16
|
|
1407
2079
|
|
|
@@ -1427,7 +2099,7 @@ Security fixes:
|
|
|
1427
2099
|
## Bug fixes:
|
|
1428
2100
|
|
|
1429
2101
|
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
|
1430
|
-
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
|
2102
|
+
* Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
|
|
1431
2103
|
* Support option for `--destdir` with upgrade installer. #2169 by Thibault Jouan.
|
|
1432
2104
|
* Remove PID from gem index directory. #2155 by SHIBATA Hiroshi.
|
|
1433
2105
|
* Avoid a #mkdir race condition #2148 by Samuel Giddins.
|
|
@@ -1440,226 +2112,226 @@ Security fixes:
|
|
|
1440
2112
|
|
|
1441
2113
|
## Bug fixes:
|
|
1442
2114
|
|
|
1443
|
-
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
|
2115
|
+
* Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
|
|
1444
2116
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
|
1445
|
-
#2125 by SHIBATA Hiroshi.
|
|
1446
|
-
* Fix updater with rubygems-2.7.3 Pull request #2124 by SHIBATA Hiroshi.
|
|
2117
|
+
[#2125](https://github.com/rubygems/rubygems/pull/2125) by SHIBATA Hiroshi.
|
|
2118
|
+
* Fix updater with rubygems-2.7.3 Pull request [#2124](https://github.com/rubygems/rubygems/pull/2124) by SHIBATA Hiroshi.
|
|
1447
2119
|
* Handle environment that does not have `flock` system call. Pull request
|
|
1448
|
-
#2107 by SHIBATA Hiroshi.
|
|
2120
|
+
[#2107](https://github.com/rubygems/rubygems/pull/2107) by SHIBATA Hiroshi.
|
|
1449
2121
|
|
|
1450
2122
|
# 2.7.3
|
|
1451
2123
|
|
|
1452
2124
|
## Enhancements:
|
|
1453
2125
|
|
|
1454
|
-
* Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
|
|
2126
|
+
* Removed needless version lock. Pull request [#2074](https://github.com/rubygems/rubygems/pull/2074) by SHIBATA Hiroshi.
|
|
1455
2127
|
* Add --[no-]check-development option to cleanup command. Pull request
|
|
1456
|
-
#2061 by Lin Jen-Shin (godfat).
|
|
1457
|
-
* Merge glob pattern using braces. Pull request #2072 by Kazuhiro
|
|
2128
|
+
[#2061](https://github.com/rubygems/rubygems/pull/2061) by Lin Jen-Shin (godfat).
|
|
2129
|
+
* Merge glob pattern using braces. Pull request [#2072](https://github.com/rubygems/rubygems/pull/2072) by Kazuhiro
|
|
1458
2130
|
NISHIYAMA.
|
|
1459
|
-
* Removed warnings of unused variables. Pull request #2084 by SHIBATA
|
|
2131
|
+
* Removed warnings of unused variables. Pull request [#2084](https://github.com/rubygems/rubygems/pull/2084) by SHIBATA
|
|
1460
2132
|
Hiroshi.
|
|
1461
|
-
* Call SPDX.org using HTTPS. Pull request #2102 by Olle Jonsson.
|
|
1462
|
-
* Remove multi load warning from plugins documentation. Pull request #2103
|
|
2133
|
+
* Call SPDX.org using HTTPS. Pull request [#2102](https://github.com/rubygems/rubygems/pull/2102) by Olle Jonsson.
|
|
2134
|
+
* Remove multi load warning from plugins documentation. Pull request [#2103](https://github.com/rubygems/rubygems/pull/2103)
|
|
1463
2135
|
by Thibault Jouan.
|
|
1464
2136
|
|
|
1465
2137
|
## Bug fixes:
|
|
1466
2138
|
|
|
1467
|
-
* Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
|
|
2139
|
+
* Fix test failure on Alpine Linux. Pull request [#2079](https://github.com/rubygems/rubygems/pull/2079) by Ellen Marie
|
|
1468
2140
|
Dash.
|
|
1469
|
-
* Avoid encoding issues by using binread in setup. Pull request #2089 by
|
|
2141
|
+
* Avoid encoding issues by using binread in setup. Pull request [#2089](https://github.com/rubygems/rubygems/pull/2089) by
|
|
1470
2142
|
Mauro Morales.
|
|
1471
2143
|
* Fix rake install_test_deps once the rake clean_env does not exist. Pull
|
|
1472
|
-
request #2090 by Lucas Oliveira.
|
|
2144
|
+
request [#2090](https://github.com/rubygems/rubygems/pull/2090) by Lucas Oliveira.
|
|
1473
2145
|
* Prevent to delete to "bundler-" prefix gem like bundler-audit. Pull
|
|
1474
|
-
request #2086 by SHIBATA Hiroshi.
|
|
1475
|
-
* Generate .bat files on Windows platform. Pull request #2094 by SHIBATA
|
|
2146
|
+
request [#2086](https://github.com/rubygems/rubygems/pull/2086) by SHIBATA Hiroshi.
|
|
2147
|
+
* Generate .bat files on Windows platform. Pull request [#2094](https://github.com/rubygems/rubygems/pull/2094) by SHIBATA
|
|
1476
2148
|
Hiroshi.
|
|
1477
2149
|
* Workaround common options mutation in Gem::Command test. Pull request
|
|
1478
|
-
#2098 by Thibault Jouan.
|
|
1479
|
-
* Check gems dir existence before removing bundler. Pull request #2104 by
|
|
2150
|
+
[#2098](https://github.com/rubygems/rubygems/pull/2098) by Thibault Jouan.
|
|
2151
|
+
* Check gems dir existence before removing bundler. Pull request [#2104](https://github.com/rubygems/rubygems/pull/2104) by
|
|
1480
2152
|
Thibault Jouan.
|
|
1481
|
-
* Use setup command --regenerate-binstubs option flag. Pull request #2099
|
|
2153
|
+
* Use setup command --regenerate-binstubs option flag. Pull request [#2099](https://github.com/rubygems/rubygems/pull/2099)
|
|
1482
2154
|
by Thibault Jouan.
|
|
1483
2155
|
|
|
1484
2156
|
# 2.7.2
|
|
1485
2157
|
|
|
1486
2158
|
## Bug fixes:
|
|
1487
2159
|
|
|
1488
|
-
* Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
|
|
2160
|
+
* Added template files to vendoerd bundler. Pull request [#2065](https://github.com/rubygems/rubygems/pull/2065) by SHIBATA
|
|
1489
2161
|
Hiroshi.
|
|
1490
|
-
* Added workaround for non-git environment. Pull request #2066 by SHIBATA
|
|
2162
|
+
* Added workaround for non-git environment. Pull request [#2066](https://github.com/rubygems/rubygems/pull/2066) by SHIBATA
|
|
1491
2163
|
Hiroshi.
|
|
1492
2164
|
|
|
1493
2165
|
# 2.7.1 (2017-11-03)
|
|
1494
2166
|
|
|
1495
2167
|
## Bug fixes:
|
|
1496
2168
|
|
|
1497
|
-
* Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
|
|
2169
|
+
* Fix `gem update --system` with RubyGems 2.7+. Pull request [#2054](https://github.com/rubygems/rubygems/pull/2054) by
|
|
1498
2170
|
Samuel Giddins.
|
|
1499
2171
|
|
|
1500
2172
|
# 2.7.0 (2017-11-02)
|
|
1501
2173
|
|
|
1502
2174
|
## Enhancements:
|
|
1503
2175
|
|
|
1504
|
-
* Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
|
|
1505
|
-
* Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
|
|
1506
|
-
* Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
|
|
1507
|
-
* Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
|
|
2176
|
+
* Update vendored bundler-1.16.0. Pull request [#2051](https://github.com/rubygems/rubygems/pull/2051) by Samuel Giddins.
|
|
2177
|
+
* Use Bundler for Gem.use_gemdeps. Pull request [#1674](https://github.com/rubygems/rubygems/pull/1674) by Samuel Giddins.
|
|
2178
|
+
* Add command `signin` to `gem` CLI. Pull request [#1944](https://github.com/rubygems/rubygems/pull/1944) by Shiva Bhusal.
|
|
2179
|
+
* Add Logout feature to CLI. Pull request [#1938](https://github.com/rubygems/rubygems/pull/1938) by Shiva Bhusal.
|
|
1508
2180
|
* Added message to uninstall command for gem that is not installed. Pull
|
|
1509
|
-
request #1979 by anant anil kolvankar.
|
|
1510
|
-
* Add --trust-policy option to unpack command. Pull request #1718 by
|
|
2181
|
+
request [#1979](https://github.com/rubygems/rubygems/pull/1979) by anant anil kolvankar.
|
|
2182
|
+
* Add --trust-policy option to unpack command. Pull request [#1718](https://github.com/rubygems/rubygems/pull/1718) by
|
|
1511
2183
|
Nobuyoshi Nakada.
|
|
1512
|
-
* Show default gems for all platforms. Pull request #1685 by Konstantin
|
|
2184
|
+
* Show default gems for all platforms. Pull request [#1685](https://github.com/rubygems/rubygems/pull/1685) by Konstantin
|
|
1513
2185
|
Shabanov.
|
|
1514
|
-
* Add Travis and Appveyor build status to README. Pull request #1918 by
|
|
2186
|
+
* Add Travis and Appveyor build status to README. Pull request [#1918](https://github.com/rubygems/rubygems/pull/1918) by
|
|
1515
2187
|
Jun Aruga.
|
|
1516
|
-
* Remove warning `no email specified` when no email. Pull request #1675 by
|
|
2188
|
+
* Remove warning `no email specified` when no email. Pull request [#1675](https://github.com/rubygems/rubygems/pull/1675) by
|
|
1517
2189
|
Leigh McCulloch.
|
|
1518
|
-
* Improve -rubygems performance. Pull request #1801 by Samuel Giddins.
|
|
1519
|
-
* Improve the performance of Kernel#require. Pull request #1678 by Samuel
|
|
2190
|
+
* Improve -rubygems performance. Pull request [#1801](https://github.com/rubygems/rubygems/pull/1801) by Samuel Giddins.
|
|
2191
|
+
* Improve the performance of Kernel#require. Pull request [#1678](https://github.com/rubygems/rubygems/pull/1678) by Samuel
|
|
1520
2192
|
Giddins.
|
|
1521
2193
|
* Improve user-facing messages by consistent casing of Ruby/RubyGems. Pull
|
|
1522
|
-
request #1771 by John Labovitz.
|
|
2194
|
+
request [#1771](https://github.com/rubygems/rubygems/pull/1771) by John Labovitz.
|
|
1523
2195
|
* Improve error message when Gem::RuntimeRequirementNotMetError is raised.
|
|
1524
|
-
Pull request #1789 by Luis Sagastume.
|
|
1525
|
-
* Code Improvement: Inheritance corrected. Pull request #1942 by Shiva
|
|
2196
|
+
Pull request [#1789](https://github.com/rubygems/rubygems/pull/1789) by Luis Sagastume.
|
|
2197
|
+
* Code Improvement: Inheritance corrected. Pull request [#1942](https://github.com/rubygems/rubygems/pull/1942) by Shiva
|
|
1526
2198
|
Bhusal.
|
|
1527
|
-
* [Source] Autoload fileutils. Pull request #1906 by Samuel Giddins.
|
|
1528
|
-
* Use Hash#fetch instead of if/else in Gem::ConfigFile. Pull request #1824
|
|
2199
|
+
* [Source] Autoload fileutils. Pull request [#1906](https://github.com/rubygems/rubygems/pull/1906) by Samuel Giddins.
|
|
2200
|
+
* Use Hash#fetch instead of if/else in Gem::ConfigFile. Pull request [#1824](https://github.com/rubygems/rubygems/pull/1824)
|
|
1529
2201
|
by Daniel Berger.
|
|
1530
|
-
* Require digest when it is used. Pull request #2006 by Samuel Giddins.
|
|
2202
|
+
* Require digest when it is used. Pull request [#2006](https://github.com/rubygems/rubygems/pull/2006) by Samuel Giddins.
|
|
1531
2203
|
* Do not index the doc folder in the `update_manifest` task. Pull request
|
|
1532
|
-
#2031 by Colby Swandale.
|
|
1533
|
-
* Don't use two postfix conditionals on one line. Pull request #2038 by
|
|
2204
|
+
[#2031](https://github.com/rubygems/rubygems/pull/2031) by Colby Swandale.
|
|
2205
|
+
* Don't use two postfix conditionals on one line. Pull request [#2038](https://github.com/rubygems/rubygems/pull/2038) by
|
|
1534
2206
|
Ellen Marie Dash.
|
|
1535
2207
|
* [SafeYAML] Avoid warning when Gem::Deprecate.skip is set. Pull request
|
|
1536
|
-
#2034 by Samuel Giddins.
|
|
1537
|
-
* Update gem yank description. Pull request #2009 by David Radcliffe.
|
|
2208
|
+
[#2034](https://github.com/rubygems/rubygems/pull/2034) by Samuel Giddins.
|
|
2209
|
+
* Update gem yank description. Pull request [#2009](https://github.com/rubygems/rubygems/pull/2009) by David Radcliffe.
|
|
1538
2210
|
* Fix formatting of installation instructions in README. Pull request
|
|
1539
|
-
#2018 by Jordan Danford.
|
|
1540
|
-
* Do not use #quick_spec internally. Pull request #1733 by Jon Moss.
|
|
1541
|
-
* Switch from docs to guides reference. Pull request #1886 by Jonathan
|
|
2211
|
+
[#2018](https://github.com/rubygems/rubygems/pull/2018) by Jordan Danford.
|
|
2212
|
+
* Do not use #quick_spec internally. Pull request [#1733](https://github.com/rubygems/rubygems/pull/1733) by Jon Moss.
|
|
2213
|
+
* Switch from docs to guides reference. Pull request [#1886](https://github.com/rubygems/rubygems/pull/1886) by Jonathan
|
|
1542
2214
|
Claudius.
|
|
1543
2215
|
* Happier message when latest version is already installed. Pull request
|
|
1544
|
-
#1956 by Jared Beck.
|
|
1545
|
-
* Update specification reference docs. Pull request #1960 by Grey Baker.
|
|
2216
|
+
[#1956](https://github.com/rubygems/rubygems/pull/1956) by Jared Beck.
|
|
2217
|
+
* Update specification reference docs. Pull request [#1960](https://github.com/rubygems/rubygems/pull/1960) by Grey Baker.
|
|
1546
2218
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
|
1547
|
-
request #1910 by Samuel Giddins.
|
|
1548
|
-
* Update cryptography for Gem::Security. Pull request #1691 by Sylvain
|
|
2219
|
+
request [#1910](https://github.com/rubygems/rubygems/pull/1910) by Samuel Giddins.
|
|
2220
|
+
* Update cryptography for Gem::Security. Pull request [#1691](https://github.com/rubygems/rubygems/pull/1691) by Sylvain
|
|
1549
2221
|
Daubert.
|
|
1550
2222
|
* Don't output mkmf.log message if compilation didn't fail. Pull request
|
|
1551
|
-
#1808 by Jeremy Evans.
|
|
1552
|
-
* Matches_for_glob - remove root path. Pull request #2010 by ahorek.
|
|
2223
|
+
[#1808](https://github.com/rubygems/rubygems/pull/1808) by Jeremy Evans.
|
|
2224
|
+
* Matches_for_glob - remove root path. Pull request [#2010](https://github.com/rubygems/rubygems/pull/2010) by ahorek.
|
|
1553
2225
|
* Gem::Resolver#search_for update for reliable searching/sorting. Pull
|
|
1554
|
-
request #1993 by MSP-Greg.
|
|
2226
|
+
request [#1993](https://github.com/rubygems/rubygems/pull/1993) by MSP-Greg.
|
|
1555
2227
|
* Allow local installs with transitive prerelease requirements. Pull
|
|
1556
|
-
request #1990 by Samuel Giddins.
|
|
1557
|
-
* Small style fixes to Installer Set. Pull request #1985 by Arthur
|
|
2228
|
+
request [#1990](https://github.com/rubygems/rubygems/pull/1990) by Samuel Giddins.
|
|
2229
|
+
* Small style fixes to Installer Set. Pull request [#1985](https://github.com/rubygems/rubygems/pull/1985) by Arthur
|
|
1558
2230
|
Marzinkovskiy.
|
|
1559
|
-
* Setup cmd: Avoid terminating option string w/ dot. Pull request #1825 by
|
|
2231
|
+
* Setup cmd: Avoid terminating option string w/ dot. Pull request [#1825](https://github.com/rubygems/rubygems/pull/1825) by
|
|
1560
2232
|
Olle Jonsson.
|
|
1561
|
-
* Warn when no files are set. Pull request #1773 by Aidan Coyle.
|
|
1562
|
-
* Ensure `to_spec` falls back on prerelease specs. Pull request #1755 by
|
|
2233
|
+
* Warn when no files are set. Pull request [#1773](https://github.com/rubygems/rubygems/pull/1773) by Aidan Coyle.
|
|
2234
|
+
* Ensure `to_spec` falls back on prerelease specs. Pull request [#1755](https://github.com/rubygems/rubygems/pull/1755) by
|
|
1563
2235
|
André Arko.
|
|
1564
2236
|
* [Specification] Eval setting default attributes in #initialize. Pull
|
|
1565
|
-
request #1739 by Samuel Giddins.
|
|
1566
|
-
* Sort ordering of sources is preserved. Pull request #1633 by Nathan
|
|
2237
|
+
request [#1739](https://github.com/rubygems/rubygems/pull/1739) by Samuel Giddins.
|
|
2238
|
+
* Sort ordering of sources is preserved. Pull request [#1633](https://github.com/rubygems/rubygems/pull/1633) by Nathan
|
|
1567
2239
|
Ladd.
|
|
1568
|
-
* Retry with :prerelease when no suggestions are found. Pull request #1696
|
|
2240
|
+
* Retry with :prerelease when no suggestions are found. Pull request [#1696](https://github.com/rubygems/rubygems/pull/1696)
|
|
1569
2241
|
by Aditya Prakash.
|
|
1570
2242
|
* [Rakefile] Run `git submodule update --init` in `rake newb`. Pull
|
|
1571
|
-
request #1694 by Samuel Giddins.
|
|
1572
|
-
* [TestCase] Address comments around ui changes. Pull request #1677 by
|
|
2243
|
+
request [#1694](https://github.com/rubygems/rubygems/pull/1694) by Samuel Giddins.
|
|
2244
|
+
* [TestCase] Address comments around ui changes. Pull request [#1677](https://github.com/rubygems/rubygems/pull/1677) by
|
|
1573
2245
|
Samuel Giddins.
|
|
1574
|
-
* Eagerly resolve in activate_bin_path. Pull request #1666 by Samuel
|
|
2246
|
+
* Eagerly resolve in activate_bin_path. Pull request [#1666](https://github.com/rubygems/rubygems/pull/1666) by Samuel
|
|
1575
2247
|
Giddins.
|
|
1576
|
-
* [Version] Make hash based upon canonical segments. Pull request #1659 by
|
|
2248
|
+
* [Version] Make hash based upon canonical segments. Pull request [#1659](https://github.com/rubygems/rubygems/pull/1659) by
|
|
1577
2249
|
Samuel Giddins.
|
|
1578
|
-
* Add Ruby Together CTA, rearrange README a bit. Pull request #1775 by
|
|
2250
|
+
* Add Ruby Together CTA, rearrange README a bit. Pull request [#1775](https://github.com/rubygems/rubygems/pull/1775) by
|
|
1579
2251
|
Michael Bernstein.
|
|
1580
|
-
* Update Contributing.rdoc with new label usage. Pull request #1716 by
|
|
2252
|
+
* Update Contributing.rdoc with new label usage. Pull request [#1716](https://github.com/rubygems/rubygems/pull/1716) by
|
|
1581
2253
|
Lynn Cyrin.
|
|
1582
|
-
* Add --host sample to help. Pull request #1709 by Code Ahss.
|
|
2254
|
+
* Add --host sample to help. Pull request [#1709](https://github.com/rubygems/rubygems/pull/1709) by Code Ahss.
|
|
1583
2255
|
* Add a helpful suggestion when `gem install` fails due to required_rub….
|
|
1584
|
-
Pull request #1697 by Samuel Giddins.
|
|
1585
|
-
* Add cert expiration length flag. Pull request #1725 by Luis Sagastume.
|
|
1586
|
-
* Add submodule instructions to manual install. Pull request #1727 by
|
|
2256
|
+
Pull request [#1697](https://github.com/rubygems/rubygems/pull/1697) by Samuel Giddins.
|
|
2257
|
+
* Add cert expiration length flag. Pull request [#1725](https://github.com/rubygems/rubygems/pull/1725) by Luis Sagastume.
|
|
2258
|
+
* Add submodule instructions to manual install. Pull request [#1727](https://github.com/rubygems/rubygems/pull/1727) by
|
|
1587
2259
|
Joseph Frazier.
|
|
1588
|
-
* Allow usage of multiple `--version` operators. Pull request #1546 by
|
|
2260
|
+
* Allow usage of multiple `--version` operators. Pull request [#1546](https://github.com/rubygems/rubygems/pull/1546) by
|
|
1589
2261
|
James Wen.
|
|
1590
|
-
* Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
|
|
2262
|
+
* Warn when requiring deprecated files. Pull request [#1939](https://github.com/rubygems/rubygems/pull/1939) by Ellen Marie
|
|
1591
2263
|
Dash.
|
|
1592
2264
|
|
|
1593
2265
|
## Deprecations:
|
|
1594
2266
|
|
|
1595
2267
|
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
|
1596
|
-
Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
|
|
1597
|
-
* Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
|
|
2268
|
+
Gem::InstallerTestCase#util_gem_dir. Pull request [#1729](https://github.com/rubygems/rubygems/pull/1729) by Jon Moss.
|
|
2269
|
+
* Deprecate passing options to Gem::GemRunner. Pull request [#1730](https://github.com/rubygems/rubygems/pull/1730) by Jon
|
|
1598
2270
|
Moss.
|
|
1599
|
-
* Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
|
|
2271
|
+
* Add deprecation for Gem#datadir. Pull request [#1732](https://github.com/rubygems/rubygems/pull/1732) by Jon Moss.
|
|
1600
2272
|
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
|
1601
|
-
Pull request #1731 by Jon Moss.
|
|
2273
|
+
Pull request [#1731](https://github.com/rubygems/rubygems/pull/1731) by Jon Moss.
|
|
1602
2274
|
|
|
1603
2275
|
## Breaking changes:
|
|
1604
2276
|
|
|
1605
2277
|
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
|
1606
|
-
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
|
2278
|
+
unavailable on Ruby 2.5. Pull request [#2028](https://github.com/rubygems/rubygems/pull/2028) #2027 #2029
|
|
1607
2279
|
by SHIBATA Hiroshi.
|
|
1608
2280
|
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
|
1609
|
-
#1796 by Matej.
|
|
2281
|
+
[#1796](https://github.com/rubygems/rubygems/pull/1796) by Matej.
|
|
1610
2282
|
|
|
1611
2283
|
## Bug fixes:
|
|
1612
2284
|
|
|
1613
|
-
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
|
|
2285
|
+
* Fix issue for MinGW / MSYS2 builds and testing. Pull request [#1876](https://github.com/rubygems/rubygems/pull/1876) by
|
|
1614
2286
|
MSP-Greg.
|
|
1615
2287
|
* Fixed broken links and overzealous URL encoding in gem server. Pull
|
|
1616
|
-
request #1809 by Nicole Orchard.
|
|
1617
|
-
* Fix a typo. Pull request #1722 by Koichi ITO.
|
|
1618
|
-
* Fix error message Gem::Security::Policy. Pull request #1724 by Nobuyoshi
|
|
2288
|
+
request [#1809](https://github.com/rubygems/rubygems/pull/1809) by Nicole Orchard.
|
|
2289
|
+
* Fix a typo. Pull request [#1722](https://github.com/rubygems/rubygems/pull/1722) by Koichi ITO.
|
|
2290
|
+
* Fix error message Gem::Security::Policy. Pull request [#1724](https://github.com/rubygems/rubygems/pull/1724) by Nobuyoshi
|
|
1619
2291
|
Nakada.
|
|
1620
|
-
* Fixing links markdown formatting in README. Pull request #1791 by Piotr
|
|
2292
|
+
* Fixing links markdown formatting in README. Pull request [#1791](https://github.com/rubygems/rubygems/pull/1791) by Piotr
|
|
1621
2293
|
Kuczynski.
|
|
1622
|
-
* Fix failing Bundler 1.8.7 CI builds. Pull request #1820 by Samuel
|
|
2294
|
+
* Fix failing Bundler 1.8.7 CI builds. Pull request [#1820](https://github.com/rubygems/rubygems/pull/1820) by Samuel
|
|
1623
2295
|
Giddins.
|
|
1624
|
-
* Fixed test broken on ruby-head . Pull request #1842 by SHIBATA Hiroshi.
|
|
1625
|
-
* Fix typos with misspell. Pull request #1846 by SHIBATA Hiroshi.
|
|
2296
|
+
* Fixed test broken on ruby-head . Pull request [#1842](https://github.com/rubygems/rubygems/pull/1842) by SHIBATA Hiroshi.
|
|
2297
|
+
* Fix typos with misspell. Pull request [#1846](https://github.com/rubygems/rubygems/pull/1846) by SHIBATA Hiroshi.
|
|
1626
2298
|
* Fix gem open to open highest version number rather than lowest. Pull
|
|
1627
|
-
request #1877 by Tim Pope.
|
|
2299
|
+
request [#1877](https://github.com/rubygems/rubygems/pull/1877) by Tim Pope.
|
|
1628
2300
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
|
1629
|
-
request #1878 by Kazuaki Matsuo.
|
|
1630
|
-
* Fix typos in CONTRIBUTING.rdoc. Pull request #1909 by Mark Sayson.
|
|
1631
|
-
* Fix some small documentation issues in installer. Pull request #1972 by
|
|
2301
|
+
request [#1878](https://github.com/rubygems/rubygems/pull/1878) by Kazuaki Matsuo.
|
|
2302
|
+
* Fix typos in CONTRIBUTING.rdoc. Pull request [#1909](https://github.com/rubygems/rubygems/pull/1909) by Mark Sayson.
|
|
2303
|
+
* Fix some small documentation issues in installer. Pull request [#1972](https://github.com/rubygems/rubygems/pull/1972) by
|
|
1632
2304
|
Colby Swandale.
|
|
1633
|
-
* Fix links in Policies document. Pull request #1964 by Alyssa Ross.
|
|
1634
|
-
* Fix NoMethodError on bundler/inline environment. Pull request #2042 by
|
|
2305
|
+
* Fix links in Policies document. Pull request [#1964](https://github.com/rubygems/rubygems/pull/1964) by Alyssa Ross.
|
|
2306
|
+
* Fix NoMethodError on bundler/inline environment. Pull request [#2042](https://github.com/rubygems/rubygems/pull/2042) by
|
|
1635
2307
|
SHIBATA Hiroshi.
|
|
1636
|
-
* Correct comments for Gem::InstallerTestCase#setup. Pull request #1741 by
|
|
2308
|
+
* Correct comments for Gem::InstallerTestCase#setup. Pull request [#1741](https://github.com/rubygems/rubygems/pull/1741) by
|
|
1637
2309
|
MSP-Greg.
|
|
1638
2310
|
* Use File.expand_path for certification and key location. Pull request
|
|
1639
|
-
#1987 by SHIBATA Hiroshi.
|
|
1640
|
-
* Rescue EROFS. Pull request #1417 by Nobuyoshi Nakada.
|
|
1641
|
-
* Fix spelling of 'vulnerability'. Pull request #2022 by Philip Arndt.
|
|
1642
|
-
* Fix metadata link key names. Pull request #1896 by Aditya Prakash.
|
|
1643
|
-
* Fix a typo in uninstall_command.rb. Pull request #1934 by Yasuhiro
|
|
2311
|
+
[#1987](https://github.com/rubygems/rubygems/pull/1987) by SHIBATA Hiroshi.
|
|
2312
|
+
* Rescue EROFS. Pull request [#1417](https://github.com/rubygems/rubygems/pull/1417) by Nobuyoshi Nakada.
|
|
2313
|
+
* Fix spelling of 'vulnerability'. Pull request [#2022](https://github.com/rubygems/rubygems/pull/2022) by Philip Arndt.
|
|
2314
|
+
* Fix metadata link key names. Pull request [#1896](https://github.com/rubygems/rubygems/pull/1896) by Aditya Prakash.
|
|
2315
|
+
* Fix a typo in uninstall_command.rb. Pull request [#1934](https://github.com/rubygems/rubygems/pull/1934) by Yasuhiro
|
|
1644
2316
|
Horimoto.
|
|
1645
2317
|
* Gem::Requirement.create treat arguments as variable-length. Pull request
|
|
1646
|
-
#1830 by Toru YAGI.
|
|
2318
|
+
[#1830](https://github.com/rubygems/rubygems/pull/1830) by Toru YAGI.
|
|
1647
2319
|
* Display an explanation when rake encounters an ontological problem. Pull
|
|
1648
|
-
request #1982 by Wilson Bilkovich.
|
|
1649
|
-
* [Server] Handle gems with names ending in `-\d`. Pull request #1926 by
|
|
2320
|
+
request [#1982](https://github.com/rubygems/rubygems/pull/1982) by Wilson Bilkovich.
|
|
2321
|
+
* [Server] Handle gems with names ending in `-\d`. Pull request [#1926](https://github.com/rubygems/rubygems/pull/1926) by
|
|
1650
2322
|
Samuel Giddins.
|
|
1651
2323
|
* [InstallerSet] Avoid reloading _all_ local gems multiple times during
|
|
1652
|
-
dependency resolution. Pull request #1925 by Samuel Giddins.
|
|
1653
|
-
* Modify the return value of Gem::Version.correct?. Pull request #1916 by
|
|
2324
|
+
dependency resolution. Pull request [#1925](https://github.com/rubygems/rubygems/pull/1925) by Samuel Giddins.
|
|
2325
|
+
* Modify the return value of Gem::Version.correct?. Pull request [#1916](https://github.com/rubygems/rubygems/pull/1916) by
|
|
1654
2326
|
Tsukuru Tanimichi.
|
|
1655
|
-
* Validate metadata link keys. Pull request #1834 by Aditya Prakash.
|
|
1656
|
-
* Add changelog to metadata validation. Pull request #1885 by Aditya
|
|
2327
|
+
* Validate metadata link keys. Pull request [#1834](https://github.com/rubygems/rubygems/pull/1834) by Aditya Prakash.
|
|
2328
|
+
* Add changelog to metadata validation. Pull request [#1885](https://github.com/rubygems/rubygems/pull/1885) by Aditya
|
|
1657
2329
|
Prakash.
|
|
1658
|
-
* Replace socket error text message. Pull request #1823 by Daniel Berger.
|
|
2330
|
+
* Replace socket error text message. Pull request [#1823](https://github.com/rubygems/rubygems/pull/1823) by Daniel Berger.
|
|
1659
2331
|
* Raise error if the email is invalid when building cert. Pull request
|
|
1660
|
-
#1779 by Luis Sagastume.
|
|
2332
|
+
[#1779](https://github.com/rubygems/rubygems/pull/1779) by Luis Sagastume.
|
|
1661
2333
|
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
|
1662
|
-
Pull request #1738 by Samuel Giddins.
|
|
2334
|
+
Pull request [#1738](https://github.com/rubygems/rubygems/pull/1738) by Samuel Giddins.
|
|
1663
2335
|
|
|
1664
2336
|
# 2.6.14 / 2017-10-09
|
|
1665
2337
|
|
|
@@ -1688,35 +2360,35 @@ Security fixes:
|
|
|
1688
2360
|
## Bug fixes:
|
|
1689
2361
|
|
|
1690
2362
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
|
1691
|
-
request #1880 by Kazuaki Matsuo.
|
|
1692
|
-
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1879 by
|
|
2363
|
+
request [#1880](https://github.com/rubygems/rubygems/pull/1880) by Kazuaki Matsuo.
|
|
2364
|
+
* Fix issue for MinGW / MSYS2 builds and testing. Pull request [#1879](https://github.com/rubygems/rubygems/pull/1879) by
|
|
1693
2365
|
MSP-Greg.
|
|
1694
2366
|
* Fix gem open to open highest version number rather than lowest. Pull
|
|
1695
|
-
request #1877 by Tim Pope.
|
|
2367
|
+
request [#1877](https://github.com/rubygems/rubygems/pull/1877) by Tim Pope.
|
|
1696
2368
|
* Add a test for requiring a default spec as installed by the ruby
|
|
1697
|
-
installer. Pull request #1899 by Samuel Giddins.
|
|
1698
|
-
* Fix broken --exact parameter to gem command. Pull request #1873 by Jason
|
|
2369
|
+
installer. Pull request [#1899](https://github.com/rubygems/rubygems/pull/1899) by Samuel Giddins.
|
|
2370
|
+
* Fix broken --exact parameter to gem command. Pull request [#1873](https://github.com/rubygems/rubygems/pull/1873) by Jason
|
|
1699
2371
|
Frey.
|
|
1700
|
-
* [Installer] Generate backwards-compatible binstubs. Pull request #1904
|
|
2372
|
+
* [Installer] Generate backwards-compatible binstubs. Pull request [#1904](https://github.com/rubygems/rubygems/pull/1904)
|
|
1701
2373
|
by Samuel Giddins.
|
|
1702
|
-
* Fix pre-existing source recognition on add action. Pull request #1883 by
|
|
2374
|
+
* Fix pre-existing source recognition on add action. Pull request [#1883](https://github.com/rubygems/rubygems/pull/1883) by
|
|
1703
2375
|
Jonathan Claudius.
|
|
1704
|
-
* Prevent negative IDs in output of #inspect. Pull request #1908 by Vít
|
|
2376
|
+
* Prevent negative IDs in output of #inspect. Pull request [#1908](https://github.com/rubygems/rubygems/pull/1908) by Vít
|
|
1705
2377
|
Ondruch.
|
|
1706
2378
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
|
1707
|
-
request #1910 by Samuel Giddins.
|
|
2379
|
+
request [#1910](https://github.com/rubygems/rubygems/pull/1910) by Samuel Giddins.
|
|
1708
2380
|
|
|
1709
2381
|
# 2.6.11 / 2017-03-16
|
|
1710
2382
|
|
|
1711
2383
|
## Bug fixes:
|
|
1712
2384
|
|
|
1713
|
-
* Fixed broken tests on ruby-head. Pull request #1841 by
|
|
2385
|
+
* Fixed broken tests on ruby-head. Pull request [#1841](https://github.com/rubygems/rubygems/pull/1841) by
|
|
1714
2386
|
SHIBATA Hiroshi.
|
|
1715
|
-
* Update vendored Molinillo to 0.5.7. Pull request #1859 by Samuel
|
|
2387
|
+
* Update vendored Molinillo to 0.5.7. Pull request [#1859](https://github.com/rubygems/rubygems/pull/1859) by Samuel
|
|
1716
2388
|
Giddins.
|
|
1717
|
-
* Avoid activating Ruby 2.5 default gems when possible. Pull request #1843
|
|
2389
|
+
* Avoid activating Ruby 2.5 default gems when possible. Pull request [#1843](https://github.com/rubygems/rubygems/pull/1843)
|
|
1718
2390
|
by Samuel Giddins.
|
|
1719
|
-
* Use improved resolver sorting algorithm. Pull request #1856 by
|
|
2391
|
+
* Use improved resolver sorting algorithm. Pull request [#1856](https://github.com/rubygems/rubygems/pull/1856) by
|
|
1720
2392
|
Samuel Giddins.
|
|
1721
2393
|
|
|
1722
2394
|
# 2.6.10 / 2017-01-23
|
|
@@ -1724,33 +2396,33 @@ Security fixes:
|
|
|
1724
2396
|
## Bug fixes:
|
|
1725
2397
|
|
|
1726
2398
|
* Fix `require` calling the wrong `gem` method when it is overridden.
|
|
1727
|
-
Pull request #1822 by Samuel Giddins.
|
|
2399
|
+
Pull request [#1822](https://github.com/rubygems/rubygems/pull/1822) by Samuel Giddins.
|
|
1728
2400
|
|
|
1729
2401
|
# 2.6.9 / 2017-01-20
|
|
1730
2402
|
|
|
1731
2403
|
## Bug fixes:
|
|
1732
2404
|
|
|
1733
|
-
* Allow initializing versions with empty strings. Pull request #1767 by
|
|
2405
|
+
* Allow initializing versions with empty strings. Pull request [#1767](https://github.com/rubygems/rubygems/pull/1767) by
|
|
1734
2406
|
Luis Sagastume.
|
|
1735
|
-
* Fix TypeError on 2.4. Pull request #1788 by Nobuyoshi Nakada.
|
|
2407
|
+
* Fix TypeError on 2.4. Pull request [#1788](https://github.com/rubygems/rubygems/pull/1788) by Nobuyoshi Nakada.
|
|
1736
2408
|
* Don't output mkmf.log message if compilation didn't fail. Pull request
|
|
1737
|
-
#1808 by Jeremy Evans.
|
|
2409
|
+
[#1808](https://github.com/rubygems/rubygems/pull/1808) by Jeremy Evans.
|
|
1738
2410
|
* Fixed broken links and overzealous URL encoding in gem server. Pull
|
|
1739
|
-
request #1809 by Nicole Orchard.
|
|
1740
|
-
* Update vendored Molinillo to 0.5.5. Pull request #1812 by Samuel
|
|
2411
|
+
request [#1809](https://github.com/rubygems/rubygems/pull/1809) by Nicole Orchard.
|
|
2412
|
+
* Update vendored Molinillo to 0.5.5. Pull request [#1812](https://github.com/rubygems/rubygems/pull/1812) by Samuel
|
|
1741
2413
|
Giddins.
|
|
1742
|
-
* RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
|
|
2414
|
+
* RakeBuilder: avoid frozen string issue. Pull request [#1819](https://github.com/rubygems/rubygems/pull/1819) by Olle
|
|
1743
2415
|
Jonsson.
|
|
1744
2416
|
|
|
1745
2417
|
# 2.6.8 / 2016-10-29
|
|
1746
2418
|
|
|
1747
2419
|
## Bug fixes:
|
|
1748
2420
|
|
|
1749
|
-
* Improve SSL verification failure message. Pull request #1751
|
|
2421
|
+
* Improve SSL verification failure message. Pull request [#1751](https://github.com/rubygems/rubygems/pull/1751)
|
|
1750
2422
|
by Eric Hodel.
|
|
1751
2423
|
* Ensure `to_spec` falls back on prerelease specs. Pull request
|
|
1752
|
-
#1755 by André Arko.
|
|
1753
|
-
* Update vendored Molinillo to 0.5.3. Pull request #1763 by
|
|
2424
|
+
[#1755](https://github.com/rubygems/rubygems/pull/1755) by André Arko.
|
|
2425
|
+
* Update vendored Molinillo to 0.5.3. Pull request [#1763](https://github.com/rubygems/rubygems/pull/1763) by
|
|
1754
2426
|
Samuel Giddins.
|
|
1755
2427
|
|
|
1756
2428
|
# 2.6.7 / 2016-09-26
|
|
@@ -1758,13 +2430,13 @@ Security fixes:
|
|
|
1758
2430
|
## Bug fixes:
|
|
1759
2431
|
|
|
1760
2432
|
* Install native extensions in the correct location when using the
|
|
1761
|
-
`--user-install` flag. Pull request #1683 by Noah Kantrowitz.
|
|
2433
|
+
`--user-install` flag. Pull request [#1683](https://github.com/rubygems/rubygems/pull/1683) by Noah Kantrowitz.
|
|
1762
2434
|
* When calling `Gem.sources`, load sources from `configuration`
|
|
1763
|
-
if present, else use the default sources. Pull request #1699
|
|
2435
|
+
if present, else use the default sources. Pull request [#1699](https://github.com/rubygems/rubygems/pull/1699)
|
|
1764
2436
|
by Luis Sagastume.
|
|
1765
2437
|
* Fail gracefully when attempting to redirect without a Location.
|
|
1766
|
-
Pull request #1711 by Samuel Giddins.
|
|
1767
|
-
* Update vendored Molinillo to 0.5.1. Pull request #1714 by
|
|
2438
|
+
Pull request [#1711](https://github.com/rubygems/rubygems/pull/1711) by Samuel Giddins.
|
|
2439
|
+
* Update vendored Molinillo to 0.5.1. Pull request [#1714](https://github.com/rubygems/rubygems/pull/1714) by
|
|
1768
2440
|
Samuel Giddins.
|
|
1769
2441
|
|
|
1770
2442
|
# 2.6.6 / 2016-06-22
|
|
@@ -1773,51 +2445,51 @@ Security fixes:
|
|
|
1773
2445
|
|
|
1774
2446
|
* Sort installed versions to make sure we install the latest version when
|
|
1775
2447
|
running `gem update --system`. As a one-time fix, run
|
|
1776
|
-
`gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
|
|
2448
|
+
`gem update --system=2.6.6`. Pull request [#1601](https://github.com/rubygems/rubygems/pull/1601) by David Radcliffe.
|
|
1777
2449
|
|
|
1778
2450
|
# 2.6.5 / 2016-06-21
|
|
1779
2451
|
|
|
1780
2452
|
## Enhancements:
|
|
1781
2453
|
|
|
1782
|
-
* Support for unified Integer in Ruby 2.4. Pull request #1618
|
|
2454
|
+
* Support for unified Integer in Ruby 2.4. Pull request [#1618](https://github.com/rubygems/rubygems/pull/1618)
|
|
1783
2455
|
by SHIBATA Hiroshi.
|
|
1784
2456
|
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
|
1785
|
-
Pull request #1638 by Samuel Giddins.
|
|
2457
|
+
Pull request [#1638](https://github.com/rubygems/rubygems/pull/1638) by Samuel Giddins.
|
|
1786
2458
|
|
|
1787
2459
|
## Bug fixes:
|
|
1788
2460
|
|
|
1789
2461
|
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
|
1790
|
-
request #1605 by Daniel Berger.
|
|
2462
|
+
request [#1605](https://github.com/rubygems/rubygems/pull/1605) by Daniel Berger.
|
|
1791
2463
|
* Update `update_bundled_ca_certificates` utility script for directory
|
|
1792
|
-
nesting. Pull request #1583 by James Wen.
|
|
2464
|
+
nesting. Pull request [#1583](https://github.com/rubygems/rubygems/pull/1583) by James Wen.
|
|
1793
2465
|
* Fix broken symlink support in tar writer (+ fix broken test). Pull
|
|
1794
|
-
request #1578 by Cezary Baginski.
|
|
1795
|
-
* Remove extension directory before (re-)installing. Pull request #1576
|
|
2466
|
+
request [#1578](https://github.com/rubygems/rubygems/pull/1578) by Cezary Baginski.
|
|
2467
|
+
* Remove extension directory before (re-)installing. Pull request [#1576](https://github.com/rubygems/rubygems/pull/1576)
|
|
1796
2468
|
by Jeremy Hinegardner.
|
|
1797
2469
|
* Regenerate test CA certificates with appropriate extensions. Pull
|
|
1798
|
-
request #1611 by rhenium.
|
|
2470
|
+
request [#1611](https://github.com/rubygems/rubygems/pull/1611) by rhenium.
|
|
1799
2471
|
* Rubygems does not terminate on failed file lock when not superuser. Pull
|
|
1800
|
-
request #1582 by Ellen Marie Dash.
|
|
1801
|
-
* Fix tar headers with a 101 character name. Pull request #1612 by Paweł
|
|
2472
|
+
request [#1582](https://github.com/rubygems/rubygems/pull/1582) by Ellen Marie Dash.
|
|
2473
|
+
* Fix tar headers with a 101 character name. Pull request [#1612](https://github.com/rubygems/rubygems/pull/1612) by Paweł
|
|
1802
2474
|
Tomulik.
|
|
1803
2475
|
* Add Gem.platform_defaults to allow implementations to override defaults.
|
|
1804
|
-
Pull request #1644 by Charles Oliver Nutter.
|
|
1805
|
-
* Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
|
|
2476
|
+
Pull request [#1644](https://github.com/rubygems/rubygems/pull/1644) by Charles Oliver Nutter.
|
|
2477
|
+
* Run Bundler tests on TravisCI. Pull request [#1650](https://github.com/rubygems/rubygems/pull/1650) by Samuel Giddins.
|
|
1806
2478
|
|
|
1807
2479
|
# 2.6.4 / 2016-04-26
|
|
1808
2480
|
|
|
1809
2481
|
## Enhancements:
|
|
1810
2482
|
|
|
1811
|
-
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
|
|
2483
|
+
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request [#1588](https://github.com/rubygems/rubygems/pull/1588)
|
|
1812
2484
|
by Chris Charabaruk.
|
|
1813
|
-
* Use File.symlink on MS Windows if supported. Pull request #1418
|
|
2485
|
+
* Use File.symlink on MS Windows if supported. Pull request [#1418](https://github.com/rubygems/rubygems/pull/1418)
|
|
1814
2486
|
by Nobuyoshi Nakada.
|
|
1815
2487
|
|
|
1816
2488
|
## Bug fixes:
|
|
1817
2489
|
|
|
1818
2490
|
* Redact uri password from error output when gem fetch fails. Pull request
|
|
1819
|
-
#1565 by Brian Fletcher.
|
|
1820
|
-
* Suppress warnings. Pull request #1594 by Nobuyoshi Nakada.
|
|
2491
|
+
[#1565](https://github.com/rubygems/rubygems/pull/1565) by Brian Fletcher.
|
|
2492
|
+
* Suppress warnings. Pull request [#1594](https://github.com/rubygems/rubygems/pull/1594) by Nobuyoshi Nakada.
|
|
1821
2493
|
* Escape user-supplied content served on web pages by `gem server` to avoid
|
|
1822
2494
|
potential XSS vulnerabilities. Samuel Giddins.
|
|
1823
2495
|
|
|
@@ -1825,136 +2497,136 @@ Security fixes:
|
|
|
1825
2497
|
|
|
1826
2498
|
## Enhancements:
|
|
1827
2499
|
|
|
1828
|
-
* Lazily calculate Gem::LoadError exception messages. Pull request #1550
|
|
2500
|
+
* Lazily calculate Gem::LoadError exception messages. Pull request [#1550](https://github.com/rubygems/rubygems/pull/1550)
|
|
1829
2501
|
by Aaron Patterson.
|
|
1830
|
-
* New fastly cert. Pull request #1548 by David Radcliffe.
|
|
1831
|
-
* Organize and cleanup SSL certs. Pull request #1555 by James Wen.
|
|
2502
|
+
* New fastly cert. Pull request [#1548](https://github.com/rubygems/rubygems/pull/1548) by David Radcliffe.
|
|
2503
|
+
* Organize and cleanup SSL certs. Pull request [#1555](https://github.com/rubygems/rubygems/pull/1555) by James Wen.
|
|
1832
2504
|
* [RubyGems] Make deprecation message for paths= more helpful. Pull
|
|
1833
|
-
request #1562 by Samuel Giddins.
|
|
1834
|
-
* Show default gems when using "gem list". Pull request #1570 by Luis
|
|
2505
|
+
request [#1562](https://github.com/rubygems/rubygems/pull/1562) by Samuel Giddins.
|
|
2506
|
+
* Show default gems when using "gem list". Pull request [#1570](https://github.com/rubygems/rubygems/pull/1570) by Luis
|
|
1835
2507
|
Sagastume.
|
|
1836
2508
|
|
|
1837
2509
|
## Bug fixes:
|
|
1838
2510
|
|
|
1839
2511
|
* Stub ordering should be consistent regardless of how cache is populated.
|
|
1840
|
-
Pull request #1552 by Aaron Patterson.
|
|
2512
|
+
Pull request [#1552](https://github.com/rubygems/rubygems/pull/1552) by Aaron Patterson.
|
|
1841
2513
|
* Handle cases when the @@stubs variable contains non-stubs. Pull request
|
|
1842
|
-
#1558 by Per Lundberg.
|
|
1843
|
-
* Fix test on Windows for inconsistent temp path. Pull request #1554 by
|
|
2514
|
+
[#1558](https://github.com/rubygems/rubygems/pull/1558) by Per Lundberg.
|
|
2515
|
+
* Fix test on Windows for inconsistent temp path. Pull request [#1554](https://github.com/rubygems/rubygems/pull/1554) by
|
|
1844
2516
|
Hiroshi Shirosaki.
|
|
1845
|
-
* Fix `Gem.find_spec_for_exe` picks oldest gem. Pull request #1566 by
|
|
2517
|
+
* Fix `Gem.find_spec_for_exe` picks oldest gem. Pull request [#1566](https://github.com/rubygems/rubygems/pull/1566) by
|
|
1846
2518
|
Shinichi Maeshima.
|
|
1847
2519
|
* [Owner] Fallback to email and userid when owner email is missing. Pull
|
|
1848
|
-
request #1569 by Samuel Giddins.
|
|
1849
|
-
* [Installer] Handle nil existing executable. Pull request #1561 by Samuel
|
|
2520
|
+
request [#1569](https://github.com/rubygems/rubygems/pull/1569) by Samuel Giddins.
|
|
2521
|
+
* [Installer] Handle nil existing executable. Pull request [#1561](https://github.com/rubygems/rubygems/pull/1561) by Samuel
|
|
1850
2522
|
Giddins.
|
|
1851
|
-
* Allow two digit version numbers in the tests. Pull request #1575 by unak.
|
|
2523
|
+
* Allow two digit version numbers in the tests. Pull request [#1575](https://github.com/rubygems/rubygems/pull/1575) by unak.
|
|
1852
2524
|
|
|
1853
2525
|
# 2.6.2 / 2016-03-12
|
|
1854
2526
|
|
|
1855
2527
|
## Bug fixes:
|
|
1856
2528
|
|
|
1857
|
-
* Fix wrong version of gem activation for bin stub. Pull request #1527 by
|
|
2529
|
+
* Fix wrong version of gem activation for bin stub. Pull request [#1527](https://github.com/rubygems/rubygems/pull/1527) by
|
|
1858
2530
|
Aaron Patterson.
|
|
1859
|
-
* Speed up gem activation failures. Pull request #1539 by Aaron Patterson.
|
|
1860
|
-
* Fix platform sorting in the resolver. Pull request #1542 by Samuel E.
|
|
2531
|
+
* Speed up gem activation failures. Pull request [#1539](https://github.com/rubygems/rubygems/pull/1539) by Aaron Patterson.
|
|
2532
|
+
* Fix platform sorting in the resolver. Pull request [#1542](https://github.com/rubygems/rubygems/pull/1542) by Samuel E.
|
|
1861
2533
|
Giddins.
|
|
1862
2534
|
* Ensure we unlock the monitor even if try_activate throws. Pull request
|
|
1863
|
-
#1538 by Charles Oliver Nutter.
|
|
2535
|
+
[#1538](https://github.com/rubygems/rubygems/pull/1538) by Charles Oliver Nutter.
|
|
1864
2536
|
|
|
1865
2537
|
|
|
1866
2538
|
# 2.6.1 / 2016-02-28
|
|
1867
2539
|
|
|
1868
2540
|
## Bug fixes:
|
|
1869
2541
|
|
|
1870
|
-
* Ensure `default_path` and `home` are set for paths. Pull request #1513
|
|
2542
|
+
* Ensure `default_path` and `home` are set for paths. Pull request [#1513](https://github.com/rubygems/rubygems/pull/1513)
|
|
1871
2543
|
by Aaron Patterson.
|
|
1872
2544
|
* Restore but deprecate support for Array values on `Gem.paths=`. Pull
|
|
1873
|
-
request #1514 by Aaron Patterson.
|
|
2545
|
+
request [#1514](https://github.com/rubygems/rubygems/pull/1514) by Aaron Patterson.
|
|
1874
2546
|
* Fix invalid gem file preventing gem install from working. Pull request
|
|
1875
|
-
#1499 by Luis Sagastume.
|
|
2547
|
+
[#1499](https://github.com/rubygems/rubygems/pull/1499) by Luis Sagastume.
|
|
1876
2548
|
|
|
1877
2549
|
# 2.6.0 / 2016-02-26
|
|
1878
2550
|
|
|
1879
2551
|
## Enhancements:
|
|
1880
2552
|
|
|
1881
2553
|
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
|
1882
|
-
metadata setting. Pull request #1486 by Josh Lane.
|
|
1883
|
-
* Update bundled Molinillo to 0.4.3. Pull request #1493 by Samuel E. Giddins.
|
|
1884
|
-
* Add version option to gem open command. Pull request #1483 by Hrvoje
|
|
2554
|
+
metadata setting. Pull request [#1486](https://github.com/rubygems/rubygems/pull/1486) by Josh Lane.
|
|
2555
|
+
* Update bundled Molinillo to 0.4.3. Pull request [#1493](https://github.com/rubygems/rubygems/pull/1493) by Samuel E. Giddins.
|
|
2556
|
+
* Add version option to gem open command. Pull request [#1483](https://github.com/rubygems/rubygems/pull/1483) by Hrvoje
|
|
1885
2557
|
Šimić.
|
|
1886
|
-
* Feature/add silent flag. Pull request #1455 by Luis Sagastume.
|
|
1887
|
-
* Allow specifying gem requirements via env variables. Pull request #1472
|
|
2558
|
+
* Feature/add silent flag. Pull request [#1455](https://github.com/rubygems/rubygems/pull/1455) by Luis Sagastume.
|
|
2559
|
+
* Allow specifying gem requirements via env variables. Pull request [#1472](https://github.com/rubygems/rubygems/pull/1472)
|
|
1888
2560
|
by Samuel E. Giddins.
|
|
1889
2561
|
|
|
1890
2562
|
## Bug fixes:
|
|
1891
2563
|
|
|
1892
2564
|
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
|
1893
|
-
Pull request #1485 by Josh Lane.
|
|
1894
|
-
* Move `coding` location to first line. Pull request #1471 by SHIBATA
|
|
2565
|
+
Pull request [#1485](https://github.com/rubygems/rubygems/pull/1485) by Josh Lane.
|
|
2566
|
+
* Move `coding` location to first line. Pull request [#1471](https://github.com/rubygems/rubygems/pull/1471) by SHIBATA
|
|
1895
2567
|
Hiroshi.
|
|
1896
|
-
* [PathSupport] Handle a regexp path separator. Pull request #1469 by
|
|
2568
|
+
* [PathSupport] Handle a regexp path separator. Pull request [#1469](https://github.com/rubygems/rubygems/pull/1469) by
|
|
1897
2569
|
Samuel E. Giddins.
|
|
1898
|
-
* Clean up the PathSupport object. Pull request #1094 by Aaron Patterson.
|
|
1899
|
-
* Join with File::PATH_SEPARATOR in Gem.use_paths. Pull request #1476 by
|
|
2570
|
+
* Clean up the PathSupport object. Pull request [#1094](https://github.com/rubygems/rubygems/pull/1094) by Aaron Patterson.
|
|
2571
|
+
* Join with File::PATH_SEPARATOR in Gem.use_paths. Pull request [#1476](https://github.com/rubygems/rubygems/pull/1476) by
|
|
1900
2572
|
Samuel E. Giddins.
|
|
1901
2573
|
* Handle when the gem home and gem path aren't set in the config file. Pull
|
|
1902
|
-
request #1478 by Samuel E. Giddins.
|
|
1903
|
-
* Terminate TimeoutHandler. Pull request #1479 by Nobuyoshi Nakada.
|
|
1904
|
-
* Remove redundant cache. Pull request #1482 by Eileen M. Uchitelle.
|
|
1905
|
-
* Freeze `Gem::Version@segments` instance variable. Pull request #1487 by
|
|
2574
|
+
request [#1478](https://github.com/rubygems/rubygems/pull/1478) by Samuel E. Giddins.
|
|
2575
|
+
* Terminate TimeoutHandler. Pull request [#1479](https://github.com/rubygems/rubygems/pull/1479) by Nobuyoshi Nakada.
|
|
2576
|
+
* Remove redundant cache. Pull request [#1482](https://github.com/rubygems/rubygems/pull/1482) by Eileen M. Uchitelle.
|
|
2577
|
+
* Freeze `Gem::Version@segments` instance variable. Pull request [#1487](https://github.com/rubygems/rubygems/pull/1487) by
|
|
1906
2578
|
Ben Dean.
|
|
1907
2579
|
* Gem cleanup is trying to uninstall gems outside GEM_HOME and reporting
|
|
1908
|
-
an error after it tries. Pull request #1353 by Luis Sagastume.
|
|
1909
|
-
* Avoid duplicated sources. Pull request #1489 by Luis Sagastume.
|
|
1910
|
-
* Better description for quiet flag. Pull request #1491 by Luis Sagastume.
|
|
1911
|
-
* Raise error if find_by_name returns with nil. Pull request #1494 by
|
|
2580
|
+
an error after it tries. Pull request [#1353](https://github.com/rubygems/rubygems/pull/1353) by Luis Sagastume.
|
|
2581
|
+
* Avoid duplicated sources. Pull request [#1489](https://github.com/rubygems/rubygems/pull/1489) by Luis Sagastume.
|
|
2582
|
+
* Better description for quiet flag. Pull request [#1491](https://github.com/rubygems/rubygems/pull/1491) by Luis Sagastume.
|
|
2583
|
+
* Raise error if find_by_name returns with nil. Pull request [#1494](https://github.com/rubygems/rubygems/pull/1494) by
|
|
1912
2584
|
Zoltán Hegedüs.
|
|
1913
|
-
* Find_files only from loaded_gems when using gemdeps. Pull request #1277
|
|
2585
|
+
* Find_files only from loaded_gems when using gemdeps. Pull request [#1277](https://github.com/rubygems/rubygems/pull/1277)
|
|
1914
2586
|
by Michal Papis.
|
|
1915
2587
|
|
|
1916
2588
|
# 2.5.2 / 2016-01-31
|
|
1917
2589
|
|
|
1918
2590
|
## Bug fixes:
|
|
1919
2591
|
|
|
1920
|
-
* Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
|
|
2592
|
+
* Fix memoization of Gem::Version#prerelease? Pull request [#1125](https://github.com/rubygems/rubygems/pull/1125) by Matijs van
|
|
1921
2593
|
Zuijlen.
|
|
1922
2594
|
* Handle trailing colons in GEM_PATH, by Damien Robert.
|
|
1923
2595
|
* Improve the Gemfile `gemspec` method, fixing #1204 and #1033. Pull request
|
|
1924
|
-
#1276 by Michael Papis.
|
|
1925
|
-
* Warn only once when a gemspec license is invalid. Pull request #1414 by Samuel
|
|
2596
|
+
[#1276](https://github.com/rubygems/rubygems/pull/1276) by Michael Papis.
|
|
2597
|
+
* Warn only once when a gemspec license is invalid. Pull request [#1414](https://github.com/rubygems/rubygems/pull/1414) by Samuel
|
|
1926
2598
|
E. Giddins.
|
|
1927
2599
|
* Check for exact constants before using them, fixing Ruby bug #11940. Pull
|
|
1928
|
-
request #1438 by Nobuyoshi Nakada.
|
|
1929
|
-
* Fix building C extensions on Ruby 1.9.x on Windows. Pull request #1453 by Marie
|
|
2600
|
+
request [#1438](https://github.com/rubygems/rubygems/pull/1438) by Nobuyoshi Nakada.
|
|
2601
|
+
* Fix building C extensions on Ruby 1.9.x on Windows. Pull request [#1453](https://github.com/rubygems/rubygems/pull/1453) by Marie
|
|
1930
2602
|
Markwell.
|
|
1931
|
-
* Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
|
|
2603
|
+
* Handle symlinks containing ".." correctly. Pull request [#1457](https://github.com/rubygems/rubygems/pull/1457) by Samuel E.
|
|
1932
2604
|
Giddins.
|
|
1933
2605
|
|
|
1934
2606
|
## Enhancements:
|
|
1935
2607
|
|
|
1936
|
-
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
|
|
2608
|
+
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request [#1329](https://github.com/rubygems/rubygems/pull/1329) by Luis
|
|
1937
2609
|
Sagastume.
|
|
1938
2610
|
* Allow basic auth to be excluded from `allowed_push_host`. By Josh Lane.
|
|
1939
2611
|
* Add `gem list --exact`, which finds gems by string match instead of regex. Pull
|
|
1940
|
-
request #1344 by Luis Sagastume.
|
|
1941
|
-
* Suggest alternatives when gem license is unknown. Pull request #1443 by Samuel
|
|
2612
|
+
request [#1344](https://github.com/rubygems/rubygems/pull/1344) by Luis Sagastume.
|
|
2613
|
+
* Suggest alternatives when gem license is unknown. Pull request [#1443](https://github.com/rubygems/rubygems/pull/1443) by Samuel
|
|
1942
2614
|
E. Giddins.
|
|
1943
2615
|
* Print a useful error if a binstub expects a newer version of a gem than is
|
|
1944
|
-
installed. Pull request #1407 by Samuel E. Giddins.
|
|
2616
|
+
installed. Pull request [#1407](https://github.com/rubygems/rubygems/pull/1407) by Samuel E. Giddins.
|
|
1945
2617
|
* Allow the (supported) s3:// scheme to be used with `--source`. Pull request
|
|
1946
|
-
#1416 by Dave Adams.
|
|
1947
|
-
* Add `--[no-]post-install-message` to `install` and `update`. Pull request #1162
|
|
2618
|
+
[#1416](https://github.com/rubygems/rubygems/pull/1416) by Dave Adams.
|
|
2619
|
+
* Add `--[no-]post-install-message` to `install` and `update`. Pull request [#1162](https://github.com/rubygems/rubygems/pull/1162)
|
|
1948
2620
|
by Josef Šimánek.
|
|
1949
2621
|
* Add `--host` option to `yank`, providing symmetry with `pull`. Pull request
|
|
1950
|
-
#1361 by Mike Virata-Stone.
|
|
1951
|
-
* Update bundled Molinillo to 0.4.1. Pull request #1452 by Samuel E. Giddins.
|
|
1952
|
-
* Allow calling `build` without '.gemspec'. Pull request #1454 by Stephen
|
|
2622
|
+
[#1361](https://github.com/rubygems/rubygems/pull/1361) by Mike Virata-Stone.
|
|
2623
|
+
* Update bundled Molinillo to 0.4.1. Pull request [#1452](https://github.com/rubygems/rubygems/pull/1452) by Samuel E. Giddins.
|
|
2624
|
+
* Allow calling `build` without '.gemspec'. Pull request [#1454](https://github.com/rubygems/rubygems/pull/1454) by Stephen
|
|
1953
2625
|
Blackstone.
|
|
1954
|
-
* Add support for `source` option on gems in Gemfile. Pull request #1355 by
|
|
2626
|
+
* Add support for `source` option on gems in Gemfile. Pull request [#1355](https://github.com/rubygems/rubygems/pull/1355) by
|
|
1955
2627
|
Michael Papis.
|
|
1956
2628
|
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
|
1957
|
-
#1408 by Samuel E. Giddins.
|
|
2629
|
+
[#1408](https://github.com/rubygems/rubygems/pull/1408) by Samuel E. Giddins.
|
|
1958
2630
|
|
|
1959
2631
|
# 2.5.1 / 2015-12-10
|
|
1960
2632
|
|
|
@@ -1962,30 +2634,30 @@ Security fixes:
|
|
|
1962
2634
|
|
|
1963
2635
|
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
|
1964
2636
|
Issue #1369 reported by Ryan Atball (among others).
|
|
1965
|
-
Pull request #1375 by Samuel E. Giddins.
|
|
2637
|
+
Pull request [#1375](https://github.com/rubygems/rubygems/pull/1375) by Samuel E. Giddins.
|
|
1966
2638
|
* Revert PR #1332. Unable to reproduce, and nil should be impossible.
|
|
1967
2639
|
* Gem::Specification#to_fullpath now returns .rb extensions when such a file
|
|
1968
|
-
exists. Pull request #1114 by y-yagi.
|
|
2640
|
+
exists. Pull request [#1114](https://github.com/rubygems/rubygems/pull/1114) by y-yagi.
|
|
1969
2641
|
* RubyGems now handles Net::HTTPFatalError instead of crashing. Pull
|
|
1970
|
-
request #1314 by Samuel E. Giddins.
|
|
1971
|
-
* Updated bundled Molinillo to 0.4.0. Pull request #1322, #1396 by Samuel E.
|
|
2642
|
+
request [#1314](https://github.com/rubygems/rubygems/pull/1314) by Samuel E. Giddins.
|
|
2643
|
+
* Updated bundled Molinillo to 0.4.0. Pull request [#1322](https://github.com/rubygems/rubygems/pull/1322), #1396 by Samuel E.
|
|
1972
2644
|
Giddins.
|
|
1973
2645
|
* Improved performance of spec loading by reducing likelihood of loading the
|
|
1974
|
-
complete specification. Pull request #1373 by Aaron Patterson.
|
|
1975
|
-
* Improved caching of requirable files Pull request #1377 by Aaron Patterson.
|
|
1976
|
-
* Fixed activation of gems with development dependencies. Pull request #1388
|
|
2646
|
+
complete specification. Pull request [#1373](https://github.com/rubygems/rubygems/pull/1373) by Aaron Patterson.
|
|
2647
|
+
* Improved caching of requirable files Pull request [#1377](https://github.com/rubygems/rubygems/pull/1377) by Aaron Patterson.
|
|
2648
|
+
* Fixed activation of gems with development dependencies. Pull request [#1388](https://github.com/rubygems/rubygems/pull/1388)
|
|
1977
2649
|
by Samuel E. Giddins.
|
|
1978
2650
|
* RubyGems now uses the same Molinillo vendoring strategy as Bundler. Pull
|
|
1979
|
-
request #1397 by Samuel E. Giddins.
|
|
1980
|
-
* Fixed documentation of Gem::Requirement.parse. Pull request #1398 by
|
|
2651
|
+
request [#1397](https://github.com/rubygems/rubygems/pull/1397) by Samuel E. Giddins.
|
|
2652
|
+
* Fixed documentation of Gem::Requirement.parse. Pull request [#1398](https://github.com/rubygems/rubygems/pull/1398) by
|
|
1981
2653
|
Juanito Fatas.
|
|
1982
2654
|
* RubyGems no longer warns when a prerelease gem has prerelease dependencies.
|
|
1983
|
-
Pull request #1399 by Samuel E. Giddins.
|
|
1984
|
-
* Fixed Gem::Version documentation example. Pull request #1401 by Guilherme
|
|
2655
|
+
Pull request [#1399](https://github.com/rubygems/rubygems/pull/1399) by Samuel E. Giddins.
|
|
2656
|
+
* Fixed Gem::Version documentation example. Pull request [#1401](https://github.com/rubygems/rubygems/pull/1401) by Guilherme
|
|
1985
2657
|
Goettems Schneider.
|
|
1986
|
-
* Updated documentation links to https://. Pull request #1404 by Suriyaa
|
|
2658
|
+
* Updated documentation links to https://. Pull request [#1404](https://github.com/rubygems/rubygems/pull/1404) by Suriyaa
|
|
1987
2659
|
Kudo.
|
|
1988
|
-
* Fixed double word typo. Pull request #1411 by Jake Worth.
|
|
2660
|
+
* Fixed double word typo. Pull request [#1411](https://github.com/rubygems/rubygems/pull/1411) by Jake Worth.
|
|
1989
2661
|
|
|
1990
2662
|
# 2.5.0 / 2015-11-03
|
|
1991
2663
|
|
|
@@ -1996,24 +2668,24 @@ Security fixes:
|
|
|
1996
2668
|
Gem::Specification#license attribute to try to standardize (though not
|
|
1997
2669
|
enforce) licenses set by gem authors.
|
|
1998
2670
|
|
|
1999
|
-
Pull request #1249 by Kyle Mitchell.
|
|
2671
|
+
Pull request [#1249](https://github.com/rubygems/rubygems/pull/1249) by Kyle Mitchell.
|
|
2000
2672
|
|
|
2001
2673
|
* Use Molinillo as the resolver library. This is the same resolver as used by
|
|
2002
|
-
Bundler. Pull request #1189 by Samuel E. Giddins.
|
|
2003
|
-
* Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
|
|
2674
|
+
Bundler. Pull request [#1189](https://github.com/rubygems/rubygems/pull/1189) by Samuel E. Giddins.
|
|
2675
|
+
* Add `--skip=gem_name` to Pristine command. Pull request [#1018](https://github.com/rubygems/rubygems/pull/1018) by windwiny.
|
|
2004
2676
|
* The parsed gem dependencies file is now available via Gem.gemdeps following
|
|
2005
|
-
Gem.use_gemdeps. Pull request #1224 by Hsing-Hui Hsu, issue #1213 by
|
|
2677
|
+
Gem.use_gemdeps. Pull request [#1224](https://github.com/rubygems/rubygems/pull/1224) by Hsing-Hui Hsu, issue #1213 by
|
|
2006
2678
|
Michal Papis.
|
|
2007
2679
|
* Moved description attribute to recommended for Gem::Specification.
|
|
2008
|
-
Pull request #1046 by Michal Papis
|
|
2680
|
+
Pull request [#1046](https://github.com/rubygems/rubygems/pull/1046) by Michal Papis
|
|
2009
2681
|
* Moved `Gem::Indexer#abbreviate` and `#sanitize` to `Gem::Specification`.
|
|
2010
|
-
Pull request #1145 by Arthur Nogueira Neves
|
|
2682
|
+
Pull request [#1145](https://github.com/rubygems/rubygems/pull/1145) by Arthur Nogueira Neves
|
|
2011
2683
|
* Cache Gem::Version segments for `#bump` and `#release`.
|
|
2012
|
-
Pull request #1131 by Matijs van Zuijlen
|
|
2684
|
+
Pull request [#1131](https://github.com/rubygems/rubygems/pull/1131) by Matijs van Zuijlen
|
|
2013
2685
|
* Fix edge case in `levenshtein_distance` for comparing longer strings.
|
|
2014
|
-
Pull request #1173 by Richard Schneeman
|
|
2686
|
+
Pull request [#1173](https://github.com/rubygems/rubygems/pull/1173) by Richard Schneeman
|
|
2015
2687
|
* Remove duplication from List#to_a, improving from O(n^2) to O(n) time.
|
|
2016
|
-
Pull request #1200 by Marc Siegel.
|
|
2688
|
+
Pull request [#1200](https://github.com/rubygems/rubygems/pull/1200) by Marc Siegel.
|
|
2017
2689
|
* Gem::Specification.add_specs is deprecated and will be removed from version
|
|
2018
2690
|
3.0 with no replacement. To add specs, install the gem, then reset the
|
|
2019
2691
|
cache.
|
|
@@ -2025,95 +2697,95 @@ Security fixes:
|
|
|
2025
2697
|
cache by calling Gem::Specification.reset.
|
|
2026
2698
|
* Call Array#compact before calling Array#uniq for minor speed improvement in
|
|
2027
2699
|
the Gem::Specification#files method.
|
|
2028
|
-
Pull request #1253 by Marat Amerov.
|
|
2700
|
+
Pull request [#1253](https://github.com/rubygems/rubygems/pull/1253) by Marat Amerov.
|
|
2029
2701
|
* Use stringio instead of custom String classes.
|
|
2030
|
-
Pull request #1250 by Petr Skocik.
|
|
2702
|
+
Pull request [#1250](https://github.com/rubygems/rubygems/pull/1250) by Petr Skocik.
|
|
2031
2703
|
* Use URI#host instead of URI#hostname to retain backwards compatibility with
|
|
2032
2704
|
Ruby 1.9.2 and earlier in util library.
|
|
2033
|
-
Pull request #1288 by Joe Rafaniello.
|
|
2705
|
+
Pull request [#1288](https://github.com/rubygems/rubygems/pull/1288) by Joe Rafaniello.
|
|
2034
2706
|
* Documentation update for gem sources.
|
|
2035
|
-
Pull request #1324 by Ilya Vassilevsky.
|
|
2707
|
+
Pull request [#1324](https://github.com/rubygems/rubygems/pull/1324) by Ilya Vassilevsky.
|
|
2036
2708
|
* Documentation update for required_ruby_version.
|
|
2037
|
-
Pull request #1321 by Matt Patterson.
|
|
2709
|
+
Pull request [#1321](https://github.com/rubygems/rubygems/pull/1321) by Matt Patterson.
|
|
2038
2710
|
* Documentation update for gem update.
|
|
2039
|
-
Pull request #1306 by Tim Blair.
|
|
2711
|
+
Pull request [#1306](https://github.com/rubygems/rubygems/pull/1306) by Tim Blair.
|
|
2040
2712
|
* Emit a warning on SRV resolve failure.
|
|
2041
|
-
Pull request #1023 by Ivan Kuchin.
|
|
2713
|
+
Pull request [#1023](https://github.com/rubygems/rubygems/pull/1023) by Ivan Kuchin.
|
|
2042
2714
|
* Allow duplicate dependencies between runtime and development.
|
|
2043
|
-
Pull request #1032 by Murray Steele.
|
|
2715
|
+
Pull request [#1032](https://github.com/rubygems/rubygems/pull/1032) by Murray Steele.
|
|
2044
2716
|
* The gem env command now shows the user installation directory.
|
|
2045
|
-
Pull request #1343 by Luis Sagastume.
|
|
2717
|
+
Pull request [#1343](https://github.com/rubygems/rubygems/pull/1343) by Luis Sagastume.
|
|
2046
2718
|
* The Gem::Platform#=== method now treats a nil cpu arch the same as 'universal'.
|
|
2047
|
-
Pull request #1356 by Daniel Berger.
|
|
2719
|
+
Pull request [#1356](https://github.com/rubygems/rubygems/pull/1356) by Daniel Berger.
|
|
2048
2720
|
* Improved memory performance in Gem::Specification.traverse. Pull request
|
|
2049
|
-
#1188 by Aaron Patterson.
|
|
2050
|
-
* RubyGems packages now support symlinks. Pull request #1209 by Samuel E.
|
|
2721
|
+
[#1188](https://github.com/rubygems/rubygems/pull/1188) by Aaron Patterson.
|
|
2722
|
+
* RubyGems packages now support symlinks. Pull request [#1209](https://github.com/rubygems/rubygems/pull/1209) by Samuel E.
|
|
2051
2723
|
Giddins.
|
|
2052
2724
|
* RubyGems no longer outputs mkmf.log if it does not exist. Pull request
|
|
2053
|
-
#1222 by Andrew Hooker.
|
|
2054
|
-
* Added Bitrig platform. Pull request #1233 by John C. Vernaleo.
|
|
2725
|
+
[#1222](https://github.com/rubygems/rubygems/pull/1222) by Andrew Hooker.
|
|
2726
|
+
* Added Bitrig platform. Pull request [#1233](https://github.com/rubygems/rubygems/pull/1233) by John C. Vernaleo.
|
|
2055
2727
|
* Improved error message for first-time RubyGems developers. Pull request
|
|
2056
|
-
#1241 by André Arko
|
|
2728
|
+
[#1241](https://github.com/rubygems/rubygems/pull/1241) by André Arko
|
|
2057
2729
|
* Improved performance of Gem::Specification#load with cached specs. Pull
|
|
2058
|
-
request #1297 by Samuel E. Giddins.
|
|
2059
|
-
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
|
|
2730
|
+
request [#1297](https://github.com/rubygems/rubygems/pull/1297) by Samuel E. Giddins.
|
|
2731
|
+
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request [#1363](https://github.com/rubygems/rubygems/pull/1363) by
|
|
2060
2732
|
Agis Anastasopoulos.
|
|
2061
2733
|
|
|
2062
2734
|
## Bug fixes:
|
|
2063
2735
|
|
|
2064
2736
|
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
|
2065
|
-
Pull request #1171 by Arthur Nogueira Neves
|
|
2737
|
+
Pull request [#1171](https://github.com/rubygems/rubygems/pull/1171) by Arthur Nogueira Neves
|
|
2066
2738
|
* Don't crash if partially uninstalled gem can't be found.
|
|
2067
|
-
Pull request #1283 by Cezary Baginski.
|
|
2739
|
+
Pull request [#1283](https://github.com/rubygems/rubygems/pull/1283) by Cezary Baginski.
|
|
2068
2740
|
* Test warning cleanup.
|
|
2069
|
-
Pull request #1298 by Samuel E. Giddins.
|
|
2741
|
+
Pull request [#1298](https://github.com/rubygems/rubygems/pull/1298) by Samuel E. Giddins.
|
|
2070
2742
|
* Documentation fix for GemDependencyAPI.
|
|
2071
|
-
Pull request #1308 by Michael Papis.
|
|
2743
|
+
Pull request [#1308](https://github.com/rubygems/rubygems/pull/1308) by Michael Papis.
|
|
2072
2744
|
* Fetcher now ignores ENOLCK errors in single threaded environments. This
|
|
2073
2745
|
handles an issue with gem installation on NFS as best we can. Addresses
|
|
2074
2746
|
issue #1176 by Ryan Moore.
|
|
2075
|
-
Pull request #1327 by Daniel Berger.
|
|
2747
|
+
Pull request [#1327](https://github.com/rubygems/rubygems/pull/1327) by Daniel Berger.
|
|
2076
2748
|
* Fix some path quoting issues in the test suite.
|
|
2077
|
-
Pull request #1328 by Gavin Miller.
|
|
2749
|
+
Pull request [#1328](https://github.com/rubygems/rubygems/pull/1328) by Gavin Miller.
|
|
2078
2750
|
* Fix NoMethodError in running ruby processes when gems are uninstalled.
|
|
2079
|
-
Pull request #1332 by Peter Drake.
|
|
2751
|
+
Pull request [#1332](https://github.com/rubygems/rubygems/pull/1332) by Peter Drake.
|
|
2080
2752
|
* Fixed a potential NoMethodError for gem cleanup.
|
|
2081
|
-
Pull request #1333 by Peter Drake.
|
|
2753
|
+
Pull request [#1333](https://github.com/rubygems/rubygems/pull/1333) by Peter Drake.
|
|
2082
2754
|
* Fixed gem help bug.
|
|
2083
|
-
Issue #1352 reported by bogem, pull request #1357 by Luis Sagastume.
|
|
2084
|
-
* Remove temporary directories after tests finish. Pull request #1181 by
|
|
2755
|
+
Issue #1352 reported by bogem, pull request [#1357](https://github.com/rubygems/rubygems/pull/1357) by Luis Sagastume.
|
|
2756
|
+
* Remove temporary directories after tests finish. Pull request [#1181](https://github.com/rubygems/rubygems/pull/1181) by
|
|
2085
2757
|
Nobuyoshi Nokada.
|
|
2086
|
-
* Update links in RubyGems documentation. Pull request #1185 by Darío Hereñú.
|
|
2087
|
-
* Prerelease gem executables can now be run. Pull request #1186 by Samuel E.
|
|
2758
|
+
* Update links in RubyGems documentation. Pull request [#1185](https://github.com/rubygems/rubygems/pull/1185) by Darío Hereñú.
|
|
2759
|
+
* Prerelease gem executables can now be run. Pull request [#1186](https://github.com/rubygems/rubygems/pull/1186) by Samuel E.
|
|
2088
2760
|
Giddins.
|
|
2089
|
-
* Updated RubyGems travis-ci ruby versions. Pull request #1187 by Samuel E.
|
|
2761
|
+
* Updated RubyGems travis-ci ruby versions. Pull request [#1187](https://github.com/rubygems/rubygems/pull/1187) by Samuel E.
|
|
2090
2762
|
Giddins.
|
|
2091
|
-
* Fixed release date of RubyGems 2.4.6. Pull request #1190 by Frieder
|
|
2763
|
+
* Fixed release date of RubyGems 2.4.6. Pull request [#1190](https://github.com/rubygems/rubygems/pull/1190) by Frieder
|
|
2092
2764
|
Bluemle.
|
|
2093
|
-
* Fixed bugs in gem activation. Pull request #1202 by Miklós Fazekas.
|
|
2094
|
-
* Fixed documentation for `gem list`. Pull request #1228 by Godfrey Chan.
|
|
2095
|
-
* Fixed #1200 history entry. Pull request #1234 by Marc Siegel.
|
|
2765
|
+
* Fixed bugs in gem activation. Pull request [#1202](https://github.com/rubygems/rubygems/pull/1202) by Miklós Fazekas.
|
|
2766
|
+
* Fixed documentation for `gem list`. Pull request [#1228](https://github.com/rubygems/rubygems/pull/1228) by Godfrey Chan.
|
|
2767
|
+
* Fixed #1200 history entry. Pull request [#1234](https://github.com/rubygems/rubygems/pull/1234) by Marc Siegel.
|
|
2096
2768
|
* Fixed synchronization issue when resetting the Gem::Specification gem list.
|
|
2097
|
-
Pull request #1239 by Samuel E. Giddins.
|
|
2098
|
-
* Fixed running tests in parallel. Pull request #1257 by SHIBATA Hiroshi.
|
|
2769
|
+
Pull request [#1239](https://github.com/rubygems/rubygems/pull/1239) by Samuel E. Giddins.
|
|
2770
|
+
* Fixed running tests in parallel. Pull request [#1257](https://github.com/rubygems/rubygems/pull/1257) by SHIBATA Hiroshi.
|
|
2099
2771
|
* Fixed running tests with `--program-prefix` or `--program-suffix` for ruby.
|
|
2100
|
-
Pull request #1258 by Shane Gibbs.
|
|
2101
|
-
* Fixed Gem::Specification#to_yaml. Pull request #1262 by Hiroaki Izu.
|
|
2772
|
+
Pull request [#1258](https://github.com/rubygems/rubygems/pull/1258) by Shane Gibbs.
|
|
2773
|
+
* Fixed Gem::Specification#to_yaml. Pull request [#1262](https://github.com/rubygems/rubygems/pull/1262) by Hiroaki Izu.
|
|
2102
2774
|
* Fixed taintedness of Gem::Specification#raw_require_paths. Pull request
|
|
2103
|
-
#1268 by Sam Ruby.
|
|
2104
|
-
* Fixed sorting of platforms when installing gems. Pull request #1271 by
|
|
2775
|
+
[#1268](https://github.com/rubygems/rubygems/pull/1268) by Sam Ruby.
|
|
2776
|
+
* Fixed sorting of platforms when installing gems. Pull request [#1271](https://github.com/rubygems/rubygems/pull/1271) by
|
|
2105
2777
|
nonsequitur.
|
|
2106
2778
|
* Use `--no-document` over deprecated documentation options when installing
|
|
2107
|
-
dependencies on travis. Pull request #1272 by takiy33.
|
|
2108
|
-
* Improved support for IPv6 addresses in URIs. Pull request #1275 by Joe
|
|
2779
|
+
dependencies on travis. Pull request [#1272](https://github.com/rubygems/rubygems/pull/1272) by takiy33.
|
|
2780
|
+
* Improved support for IPv6 addresses in URIs. Pull request [#1275](https://github.com/rubygems/rubygems/pull/1275) by Joe
|
|
2109
2781
|
Rafaniello.
|
|
2110
2782
|
* Spec validation no longer crashes if a file does not exist. Pull request
|
|
2111
|
-
#1278 by Samuel E. Giddins.
|
|
2112
|
-
* Gems can now be installed within `rescue`. Pull request #1282 by Samuel E.
|
|
2783
|
+
[#1278](https://github.com/rubygems/rubygems/pull/1278) by Samuel E. Giddins.
|
|
2784
|
+
* Gems can now be installed within `rescue`. Pull request [#1282](https://github.com/rubygems/rubygems/pull/1282) by Samuel E.
|
|
2113
2785
|
Giddins.
|
|
2114
2786
|
* Increased Diffie-Hellman key size for tests for modern OpenSSL. Pull
|
|
2115
|
-
request #1290 by Vít Ondruch.
|
|
2116
|
-
* RubyGems handles invalid config files better. Pull request #1367 by Agis
|
|
2787
|
+
request [#1290](https://github.com/rubygems/rubygems/pull/1290) by Vít Ondruch.
|
|
2788
|
+
* RubyGems handles invalid config files better. Pull request [#1367](https://github.com/rubygems/rubygems/pull/1367) by Agis
|
|
2117
2789
|
Anastasopoulos.
|
|
2118
2790
|
|
|
2119
2791
|
# 2.4.8 / 2015-06-08
|
|
@@ -2137,33 +2809,33 @@ Security fixes:
|
|
|
2137
2809
|
Issue #1141 by Jakub Jirutka.
|
|
2138
2810
|
* Moved extension directory after require_paths to fix missing constant bugs
|
|
2139
2811
|
in some gems with C extensions. Issue #784 by André Arko, pull request
|
|
2140
|
-
#1137 by Barry Allard.
|
|
2812
|
+
[#1137](https://github.com/rubygems/rubygems/pull/1137) by Barry Allard.
|
|
2141
2813
|
* Use Gem::Dependency#requirement when adding a dependency to an existing
|
|
2142
|
-
dependency instance. Pull request #1101 by Josh Cheek.
|
|
2814
|
+
dependency instance. Pull request [#1101](https://github.com/rubygems/rubygems/pull/1101) by Josh Cheek.
|
|
2143
2815
|
* Fixed warning of shadowed local variable in Gem::Specification. Pull request
|
|
2144
|
-
#1109 by Rohit Arondekar
|
|
2816
|
+
[#1109](https://github.com/rubygems/rubygems/pull/1109) by Rohit Arondekar
|
|
2145
2817
|
* Gem::Requirement should always sort requirements before coercion to Hash.
|
|
2146
|
-
Pull request #1139 by Eito Katagiri.
|
|
2818
|
+
Pull request [#1139](https://github.com/rubygems/rubygems/pull/1139) by Eito Katagiri.
|
|
2147
2819
|
* The `gem open` command should change the current working directory before
|
|
2148
|
-
opening the editor. Pull request #1142 by Alex Wood.
|
|
2820
|
+
opening the editor. Pull request [#1142](https://github.com/rubygems/rubygems/pull/1142) by Alex Wood.
|
|
2149
2821
|
* Ensure quotes are stripped from the Windows launcher script used to install
|
|
2150
|
-
gems. Pull request #1115 by Youngjun Song.
|
|
2822
|
+
gems. Pull request [#1115](https://github.com/rubygems/rubygems/pull/1115) by Youngjun Song.
|
|
2151
2823
|
* Fixed errors when writing to NFS to to 0444 files. Issue #1161 by Emmanuel
|
|
2152
2824
|
Hadoux.
|
|
2153
|
-
* Removed dead code in Gem::StreamUI. Pull request #1117 by mediaslave24.
|
|
2154
|
-
* Fixed typos. Pull request #1096 by hakeda.
|
|
2155
|
-
* Relaxed CMake dependency for RHEL 6 and CentOS 6. Pull request #1124 by Vít
|
|
2825
|
+
* Removed dead code in Gem::StreamUI. Pull request [#1117](https://github.com/rubygems/rubygems/pull/1117) by mediaslave24.
|
|
2826
|
+
* Fixed typos. Pull request [#1096](https://github.com/rubygems/rubygems/pull/1096) by hakeda.
|
|
2827
|
+
* Relaxed CMake dependency for RHEL 6 and CentOS 6. Pull request [#1124](https://github.com/rubygems/rubygems/pull/1124) by Vít
|
|
2156
2828
|
Ondruch.
|
|
2157
|
-
* Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
|
|
2829
|
+
* Relaxed Psych dependency. Pull request [#1128](https://github.com/rubygems/rubygems/pull/1128) by Vít Ondruch.
|
|
2158
2830
|
|
|
2159
2831
|
# 2.4.5 / 2014-12-03
|
|
2160
2832
|
|
|
2161
2833
|
## Bug fixes:
|
|
2162
2834
|
|
|
2163
2835
|
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
|
2164
|
-
request #1060 by unak.
|
|
2836
|
+
request [#1060](https://github.com/rubygems/rubygems/pull/1060) by unak.
|
|
2165
2837
|
* RubyGems no longer attempts to look up gems remotely with the --local flag.
|
|
2166
|
-
Pull request #1084 by Jeremy Evans.
|
|
2838
|
+
Pull request [#1084](https://github.com/rubygems/rubygems/pull/1084) by Jeremy Evans.
|
|
2167
2839
|
* Executable stubs use the correct gem version when RUBYGEMS_GEMDEPS is
|
|
2168
2840
|
active. Issue #1072 by Michael Kaiser-Nyman.
|
|
2169
2841
|
* Fixed handling of pinned gems in lockfiles with versions. Issue #1078 by
|
|
@@ -2172,30 +2844,30 @@ Security fixes:
|
|
|
2172
2844
|
* Fixed handling of platforms retrieved from the dependencies API. Issue
|
|
2173
2845
|
#1058 and patch suggestion by tux-mind.
|
|
2174
2846
|
* RubyGems now suggests a copy-pasteable `gem pristine` command when
|
|
2175
|
-
extensions are missing. Pull request #1057 by Shannon Skipper.
|
|
2176
|
-
* Improved errors for long file names when packaging. Pull request #1016 by
|
|
2847
|
+
extensions are missing. Pull request [#1057](https://github.com/rubygems/rubygems/pull/1057) by Shannon Skipper.
|
|
2848
|
+
* Improved errors for long file names when packaging. Pull request [#1016](https://github.com/rubygems/rubygems/pull/1016) by
|
|
2177
2849
|
Piotrek Bator.
|
|
2178
|
-
* `gem pristine` now skips gems cannot be found remotely. Pull request #1064
|
|
2850
|
+
* `gem pristine` now skips gems cannot be found remotely. Pull request [#1064](https://github.com/rubygems/rubygems/pull/1064)
|
|
2179
2851
|
by Tuomas Kareinen.
|
|
2180
|
-
* `gem pristine` now caches gems to the proper directory. Pull request #1064
|
|
2852
|
+
* `gem pristine` now caches gems to the proper directory. Pull request [#1064](https://github.com/rubygems/rubygems/pull/1064)
|
|
2181
2853
|
by Tuomas Kareinen.
|
|
2182
|
-
* `gem pristine` now skips bundled gems properly. Pull request #1064 by
|
|
2854
|
+
* `gem pristine` now skips bundled gems properly. Pull request [#1064](https://github.com/rubygems/rubygems/pull/1064) by
|
|
2183
2855
|
Tuomas Kareinen.
|
|
2184
|
-
* Improved interoperability of Vagrant with RubyGems. Pull request #1057 by
|
|
2856
|
+
* Improved interoperability of Vagrant with RubyGems. Pull request [#1057](https://github.com/rubygems/rubygems/pull/1057) by
|
|
2185
2857
|
Vít Ondruch.
|
|
2186
2858
|
* Renamed CONTRIBUTING to CONTRIBUTING.rdoc to allow markup. Pull request
|
|
2187
|
-
#1090 by Roberto Miranda.
|
|
2859
|
+
[#1090](https://github.com/rubygems/rubygems/pull/1090) by Roberto Miranda.
|
|
2188
2860
|
* Switched from #partition to #reject as only one collection is used. Pull
|
|
2189
|
-
request #1074 by Tuomas Kareinen.
|
|
2861
|
+
request [#1074](https://github.com/rubygems/rubygems/pull/1074) by Tuomas Kareinen.
|
|
2190
2862
|
* Fixed installation of gems on systems using memory-mapped files. Pull
|
|
2191
|
-
request #1038 by Justin Li.
|
|
2192
|
-
* Fixed bug in Gem::Text#min3 where `a == b < c`. Pull request #1026 by
|
|
2863
|
+
request [#1038](https://github.com/rubygems/rubygems/pull/1038) by Justin Li.
|
|
2864
|
+
* Fixed bug in Gem::Text#min3 where `a == b < c`. Pull request [#1026](https://github.com/rubygems/rubygems/pull/1026) by
|
|
2193
2865
|
fortissimo1997.
|
|
2194
2866
|
* Fixed uninitialized variable warning in BasicSpecification. Pull request
|
|
2195
|
-
#1019 by Piotr Szotkowski.
|
|
2867
|
+
[#1019](https://github.com/rubygems/rubygems/pull/1019) by Piotr Szotkowski.
|
|
2196
2868
|
* Removed unneeded exception handling for cyclic dependencies. Pull request
|
|
2197
|
-
#1043 by Jens Wille.
|
|
2198
|
-
* Fixed grouped expression warning. Pull request #1081 by André Arko.
|
|
2869
|
+
[#1043](https://github.com/rubygems/rubygems/pull/1043) by Jens Wille.
|
|
2870
|
+
* Fixed grouped expression warning. Pull request [#1081](https://github.com/rubygems/rubygems/pull/1081) by André Arko.
|
|
2199
2871
|
* Fixed handling of platforms when writing lockfiles.
|
|
2200
2872
|
|
|
2201
2873
|
# 2.4.4 / 2014-11-12
|
|
@@ -2209,8 +2881,8 @@ Security fixes:
|
|
|
2209
2881
|
|
|
2210
2882
|
## Bug fixes:
|
|
2211
2883
|
|
|
2212
|
-
* Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
|
|
2213
|
-
* Fix typo in platform= docs. Pull request #1048 by @jasonrclark
|
|
2884
|
+
* Fix redefine MirrorCommand issue. Pull request [#1044](https://github.com/rubygems/rubygems/pull/1044) by @akr.
|
|
2885
|
+
* Fix typo in platform= docs. Pull request [#1048](https://github.com/rubygems/rubygems/pull/1048) by @jasonrclark
|
|
2214
2886
|
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
|
2215
2887
|
Protosac
|
|
2216
2888
|
|
|
@@ -2227,16 +2899,16 @@ This release was sponsored by Ruby Central.
|
|
|
2227
2899
|
* Lockfiles will no longer be truncated upon resolution errors.
|
|
2228
2900
|
* Fixed messaging for `gem owner -a`. Issue #1004 by Aaron Patterson, Ryan
|
|
2229
2901
|
Davis.
|
|
2230
|
-
* Removed meaningless ensure. Pull request #1003 by gogotanaka.
|
|
2231
|
-
* Improved wording of --source option help. Pull request #989 by Jason Clark.
|
|
2902
|
+
* Removed meaningless ensure. Pull request [#1003](https://github.com/rubygems/rubygems/pull/1003) by gogotanaka.
|
|
2903
|
+
* Improved wording of --source option help. Pull request [#989](https://github.com/rubygems/rubygems/pull/989) by Jason Clark.
|
|
2232
2904
|
* Empty build_info files are now ignored. Issue #903 by Adan Alvarado.
|
|
2233
2905
|
* Gem::Installer ignores dependency checks when installing development
|
|
2234
2906
|
dependencies. Issue #994 by Jens Willie.
|
|
2235
2907
|
* `gem update` now continues after dependency errors. Issue #993 by aaronchi.
|
|
2236
2908
|
* RubyGems no longer warns about semantic version dependencies for the 0.x
|
|
2237
|
-
range. Issue #987 by Jeff Felchner, pull request #1006 by Hsing-Hui Hsu.
|
|
2909
|
+
range. Issue #987 by Jeff Felchner, pull request [#1006](https://github.com/rubygems/rubygems/pull/1006) by Hsing-Hui Hsu.
|
|
2238
2910
|
* Added minimal lock to allow multithread installation of gems. Issue #982
|
|
2239
|
-
and pull request #1005 by Yorick Peterse
|
|
2911
|
+
and pull request [#1005](https://github.com/rubygems/rubygems/pull/1005) by Yorick Peterse
|
|
2240
2912
|
* RubyGems now considers prerelease dependencies as it did in earlier versions
|
|
2241
2913
|
when --prerelease is given. Issue #990 by Jeremy Tryba.
|
|
2242
2914
|
* Updated capitalization in README. Issue #1010 by Ben Bodenmiller.
|
|
@@ -2244,7 +2916,7 @@ This release was sponsored by Ruby Central.
|
|
|
2244
2916
|
* Fixed windows stub script generation for Cygwin. Issue #1000 by Brett
|
|
2245
2917
|
DiFrischia.
|
|
2246
2918
|
* Allow gem bindir and ruby.exe to live in separate directories. Pull request
|
|
2247
|
-
#942 by Ian Flynn.
|
|
2919
|
+
[#942](https://github.com/rubygems/rubygems/pull/942) by Ian Flynn.
|
|
2248
2920
|
* Fixed handling of gemspec in gem dependencies files to match Bundler
|
|
2249
2921
|
behavior. Issue #1020 by Michal Papis.
|
|
2250
2922
|
* Fixed `gem update` when updating to prereleases. Issue #1028 by Santiago
|
|
@@ -2264,10 +2936,10 @@ This release was sponsored by Ruby Central.
|
|
|
2264
2936
|
## Enhancements:
|
|
2265
2937
|
|
|
2266
2938
|
* The contents command now supports a --show-install-dir option that shows
|
|
2267
|
-
only the directory the gem is installed in. Feature request #966 by Akinori
|
|
2939
|
+
only the directory the gem is installed in. Feature request [#966](https://github.com/rubygems/rubygems/pull/966) by Akinori
|
|
2268
2940
|
MUSHA.
|
|
2269
2941
|
* Added a --build-root option to the install command for packagers. Pull
|
|
2270
|
-
request #965 by Marcus Rückert.
|
|
2942
|
+
request [#965](https://github.com/rubygems/rubygems/pull/965) by Marcus Rückert.
|
|
2271
2943
|
* Added vendor gem support to RubyGems. Package managers may now install gems
|
|
2272
2944
|
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
|
2273
2945
|
Marcus Rückert.
|
|
@@ -2286,34 +2958,34 @@ This release was sponsored by Ruby Central.
|
|
|
2286
2958
|
Bug #941 by Michael Kaiser-Nyman.
|
|
2287
2959
|
* Added open to list of builtin commands (`gem open` now works). Reported by
|
|
2288
2960
|
Espen Antonsen.
|
|
2289
|
-
* `gem open` now works with command-line editors. Pull request #962 by Tim
|
|
2961
|
+
* `gem open` now works with command-line editors. Pull request [#962](https://github.com/rubygems/rubygems/pull/962) by Tim
|
|
2290
2962
|
Pope.
|
|
2291
|
-
* `gem install -g` now respects `--conservative`. Pull request #950 by Jeremy
|
|
2963
|
+
* `gem install -g` now respects `--conservative`. Pull request [#950](https://github.com/rubygems/rubygems/pull/950) by Jeremy
|
|
2292
2964
|
Evans.
|
|
2293
2965
|
* RubyGems releases announcements now now include checksums. Bug #939 by
|
|
2294
2966
|
Alexander E. Fischer.
|
|
2295
2967
|
* RubyGems now expands ~ in $PATH when checking if installed executables will
|
|
2296
|
-
be runnable. Pull request #945 by Alex Talker.
|
|
2968
|
+
be runnable. Pull request [#945](https://github.com/rubygems/rubygems/pull/945) by Alex Talker.
|
|
2297
2969
|
* Fixed `gem install -g --explain`. Issue #947 by Luis Lavena. Patch by
|
|
2298
2970
|
Hsing-Hui Hsu.
|
|
2299
|
-
* RubyGems locks less during gem activation. Pull request #951 by Aaron
|
|
2971
|
+
* RubyGems locks less during gem activation. Pull request [#951](https://github.com/rubygems/rubygems/pull/951) by Aaron
|
|
2300
2972
|
Patterson and Justin Searls, #969 by Jeremy Tryba.
|
|
2301
|
-
* Kernel#gem is now thread-safe. Pull request #967 by Aaron Patterson.
|
|
2973
|
+
* Kernel#gem is now thread-safe. Pull request [#967](https://github.com/rubygems/rubygems/pull/967) by Aaron Patterson.
|
|
2302
2974
|
* RubyGems now handles spaces in directory names for some parts of extension
|
|
2303
|
-
building. Pull request #949 by Tristan Hill.
|
|
2975
|
+
building. Pull request [#949](https://github.com/rubygems/rubygems/pull/949) by Tristan Hill.
|
|
2304
2976
|
* RubyGems no longer defines an empty Date class. Pull Request #948 by Benoit
|
|
2305
2977
|
Daloze.
|
|
2306
2978
|
* RubyGems respects --document options for `gem update` again. Bug 946 by
|
|
2307
2979
|
jonforums. Patch by Hsing-Hui Hsu.
|
|
2308
2980
|
* RubyGems generates documentation again with --ignore-dependencies. Bug #961
|
|
2309
2981
|
by Pulfer.
|
|
2310
|
-
* RubyGems can install extensions across partitions now. Pull request #970 by
|
|
2982
|
+
* RubyGems can install extensions across partitions now. Pull request [#970](https://github.com/rubygems/rubygems/pull/970) by
|
|
2311
2983
|
Michael Scherer.
|
|
2312
2984
|
* `-s` is now short for `--source` which resolves an ambiguity with
|
|
2313
|
-
--no-suggestions. Pull request #955 by Alexander Kahn.
|
|
2314
|
-
* Added extra test for ~> for 0.0.X versions. Pull request #958 by Mark
|
|
2985
|
+
--no-suggestions. Pull request [#955](https://github.com/rubygems/rubygems/pull/955) by Alexander Kahn.
|
|
2986
|
+
* Added extra test for ~> for 0.0.X versions. Pull request [#958](https://github.com/rubygems/rubygems/pull/958) by Mark
|
|
2315
2987
|
Lorenz.
|
|
2316
|
-
* Fixed typo in gem updated help. Pull request #952 by Per Modin.
|
|
2988
|
+
* Fixed typo in gem updated help. Pull request [#952](https://github.com/rubygems/rubygems/pull/952) by Per Modin.
|
|
2317
2989
|
* Clarified that the gem description should not be excessively long. Part of
|
|
2318
2990
|
bug #956 by Renier Morales.
|
|
2319
2991
|
* Hid documentation of outdated test_files related methods in Specification.
|
|
@@ -2328,59 +3000,59 @@ This release was sponsored by Ruby Central.
|
|
|
2328
3000
|
|
|
2329
3001
|
* Added the `open` command which allows you to inspect the source of a gem
|
|
2330
3002
|
using your editor.
|
|
2331
|
-
Issue #789 by Mike Perham. Pull request #804 by Vitali F.
|
|
3003
|
+
Issue #789 by Mike Perham. Pull request [#804](https://github.com/rubygems/rubygems/pull/804) by Vitali F.
|
|
2332
3004
|
* The `update` command shows a summary of which gems were and were not
|
|
2333
3005
|
updated. Issue #544 by Mark D. Blackwell.
|
|
2334
|
-
Pull request #777 by Tejas Bubane.
|
|
2335
|
-
* Improved "could not find 'gem'" error reporting. Pull request #913 by
|
|
3006
|
+
Pull request [#777](https://github.com/rubygems/rubygems/pull/777) by Tejas Bubane.
|
|
3007
|
+
* Improved "could not find 'gem'" error reporting. Pull request [#913](https://github.com/rubygems/rubygems/pull/913) by
|
|
2336
3008
|
Richard Schneeman.
|
|
2337
3009
|
* Gem.use_gemdeps now accepts an argument specifying the path of the gem
|
|
2338
3010
|
dependencies file. When the file is not found an ArgumentError is raised.
|
|
2339
3011
|
* Writing a .lock file for a gem dependencies file is now controlled by the
|
|
2340
|
-
--[no-]lock option. Pull request #774 by Jeremy Evans.
|
|
3012
|
+
--[no-]lock option. Pull request [#774](https://github.com/rubygems/rubygems/pull/774) by Jeremy Evans.
|
|
2341
3013
|
* Suggestion of alternate names and spelling corrections during install can be
|
|
2342
3014
|
suppressed with the --no-suggestions option. Issue #867 by Jimmy Cuadra.
|
|
2343
|
-
* Added mswin64 support. Pull request #881 by U. Nakamura.
|
|
3015
|
+
* Added mswin64 support. Pull request [#881](https://github.com/rubygems/rubygems/pull/881) by U. Nakamura.
|
|
2344
3016
|
* A gem is installable from an IO again (as in RubyGems 1.8.x and older).
|
|
2345
|
-
Pull request #716 by Xavier Shay.
|
|
3017
|
+
Pull request [#716](https://github.com/rubygems/rubygems/pull/716) by Xavier Shay.
|
|
2346
3018
|
* RubyGems no longer attempts to build extensions during activation. Instead
|
|
2347
3019
|
a warning is issued instructing you to run `gem pristine` which will build
|
|
2348
3020
|
the extensions for the current platform. Issue #796 by dunric.
|
|
2349
3021
|
* Added Gem::UserInteraction#verbose which prints when the --verbose option is
|
|
2350
|
-
given. Pull request #811 by Aaron Patterson.
|
|
3022
|
+
given. Pull request [#811](https://github.com/rubygems/rubygems/pull/811) by Aaron Patterson.
|
|
2351
3023
|
* RubyGems can now fetch gems from private repositories using S3. Pull
|
|
2352
|
-
request #856 by Brian Palmer.
|
|
3024
|
+
request [#856](https://github.com/rubygems/rubygems/pull/856) by Brian Palmer.
|
|
2353
3025
|
* Added Gem::ConflictError subclass of Gem::LoadError so you can distinguish
|
|
2354
|
-
conflicts from other problems. Pull request #841 by Aaron Patterson.
|
|
2355
|
-
* Cleaned up unneeded load_yaml bootstrapping in Rakefile. Pull request #815
|
|
3026
|
+
conflicts from other problems. Pull request [#841](https://github.com/rubygems/rubygems/pull/841) by Aaron Patterson.
|
|
3027
|
+
* Cleaned up unneeded load_yaml bootstrapping in Rakefile. Pull request [#815](https://github.com/rubygems/rubygems/pull/815)
|
|
2356
3028
|
by Zachary Scott.
|
|
2357
|
-
* Improved performance of conflict resolution. Pull request #842 by Aaron
|
|
3029
|
+
* Improved performance of conflict resolution. Pull request [#842](https://github.com/rubygems/rubygems/pull/842) by Aaron
|
|
2358
3030
|
Patterson.
|
|
2359
3031
|
* Add documentation of "~> 0" to Gem::Version. Issue #896 by Aaron Suggs.
|
|
2360
|
-
* Added CONTRIBUTING file. Pull request #849 by Mark Turner.
|
|
3032
|
+
* Added CONTRIBUTING file. Pull request [#849](https://github.com/rubygems/rubygems/pull/849) by Mark Turner.
|
|
2361
3033
|
* Allow use of bindir in windows_stub_script in .bat
|
|
2362
|
-
Pull request #818 by @unak and @nobu
|
|
3034
|
+
Pull request [#818](https://github.com/rubygems/rubygems/pull/818) by @unak and @nobu
|
|
2363
3035
|
* Use native File::PATH_SEPARATOR and remove $ before gem env on
|
|
2364
|
-
Gem::Dependency#to_specs. Pull request #915 by @parkr
|
|
2365
|
-
* RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
|
|
3036
|
+
Gem::Dependency#to_specs. Pull request [#915](https://github.com/rubygems/rubygems/pull/915) by @parkr
|
|
3037
|
+
* RubyGems recommends SPDX IDs for licenses now. Pull request [#917](https://github.com/rubygems/rubygems/pull/917) by
|
|
2366
3038
|
Benjamin Fleischer.
|
|
2367
3039
|
|
|
2368
3040
|
## Bug fixes:
|
|
2369
3041
|
|
|
2370
3042
|
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
|
2371
|
-
up gem suggestions. Pull request #808 by Aaron Patterson.
|
|
3043
|
+
up gem suggestions. Pull request [#808](https://github.com/rubygems/rubygems/pull/808) by Aaron Patterson.
|
|
2372
3044
|
* The given .gem is installed again when multiple versions of the same gem
|
|
2373
3045
|
exist in the current directory. Bug #875 by Prem Sichanugrist.
|
|
2374
3046
|
* Local gems are preferred by name over remote gems again. Bug #834 by
|
|
2375
3047
|
jonforums.
|
|
2376
|
-
* RubyGems can install local prerelease gems again. Pull request #866 by
|
|
3048
|
+
* RubyGems can install local prerelease gems again. Pull request [#866](https://github.com/rubygems/rubygems/pull/866) by
|
|
2377
3049
|
Aaron Patterson. Issue #813 by André Arko.
|
|
2378
3050
|
* RubyGems installs development dependencies correctly again. Issue #893 by
|
|
2379
3051
|
Jens Wille.
|
|
2380
3052
|
* RubyGems only installs prerelease versions when they are requested again.
|
|
2381
3053
|
Issue #853 by Seth Vargo, special thanks to Zachary Scott and Ben Moss.
|
|
2382
3054
|
Issue #884 by Nathaniel Bibler.
|
|
2383
|
-
* Fixed RubyGems list and search command help. Pull request #905 and #928 by
|
|
3055
|
+
* Fixed RubyGems list and search command help. Pull request [#905](https://github.com/rubygems/rubygems/pull/905) and #928 by
|
|
2384
3056
|
Gabriel Gilder.
|
|
2385
3057
|
* The list of gems to uninstall is always sorted now. Bug #918 by postmodern.
|
|
2386
3058
|
* The update command only updates exactly matching gem names now. Bug #919 by
|
|
@@ -2409,39 +3081,39 @@ This release was sponsored by Ruby Central.
|
|
|
2409
3081
|
by Noah Luck Easterly.
|
|
2410
3082
|
* The environment command now shows the system configuration directory where
|
|
2411
3083
|
the all-users gemrc lives. Bug #827 by Ben Langfeld.
|
|
2412
|
-
* Improved speed of conflict checking when activating gems. Pull request #843
|
|
3084
|
+
* Improved speed of conflict checking when activating gems. Pull request [#843](https://github.com/rubygems/rubygems/pull/843)
|
|
2413
3085
|
by Aaron Patterson.
|
|
2414
3086
|
* Improved speed of levenshtein distance for gem suggestion misspellings.
|
|
2415
3087
|
Pull requests #809, #812 by Aaron Patterson.
|
|
2416
|
-
* Restored persistent connections. Pull request #869 by Aaron Patterson.
|
|
2417
|
-
* Reduced requests when fetching gems with the bundler API. Pull request #773
|
|
3088
|
+
* Restored persistent connections. Pull request [#869](https://github.com/rubygems/rubygems/pull/869) by Aaron Patterson.
|
|
3089
|
+
* Reduced requests when fetching gems with the bundler API. Pull request [#773](https://github.com/rubygems/rubygems/pull/773)
|
|
2418
3090
|
by Charlie Somerville.
|
|
2419
3091
|
* Reduced dependency prefetching to improve install speed. Pull requests
|
|
2420
3092
|
#871, #872 by Matthew Draper.
|
|
2421
3093
|
* RubyGems now avoids net/http auto-proxy detection. Issue #824 by HINOHARA
|
|
2422
3094
|
Hiroshi.
|
|
2423
3095
|
* Removed conversion of Gem::List (used for debugging installs) to unless
|
|
2424
|
-
necessary. Pull request #870 by Aaron Patterson.
|
|
3096
|
+
necessary. Pull request [#870](https://github.com/rubygems/rubygems/pull/870) by Aaron Patterson.
|
|
2425
3097
|
* RubyGems now prints release notes from the current release. Bug #814 by
|
|
2426
3098
|
André Arko.
|
|
2427
3099
|
* RubyGems allows installation of unsigned gems again with -P MediumSecurity
|
|
2428
3100
|
and lower. Bug #859 by Justin S. Collins.
|
|
2429
|
-
* Fixed typo in Jim Weirich's name. Ruby pull request #577 by Mo Khan.
|
|
2430
|
-
* Fixed typo in Gem.datadir documentation. Pull request #868 by Patrick
|
|
3101
|
+
* Fixed typo in Jim Weirich's name. Ruby pull request [#577](https://github.com/rubygems/rubygems/pull/577) by Mo Khan.
|
|
3102
|
+
* Fixed typo in Gem.datadir documentation. Pull request [#868](https://github.com/rubygems/rubygems/pull/868) by Patrick
|
|
2431
3103
|
Jones.
|
|
2432
|
-
* Fixed File.exists? warnings. Pull request #829 by SHIBATA Hiroshi.
|
|
3104
|
+
* Fixed File.exists? warnings. Pull request [#829](https://github.com/rubygems/rubygems/pull/829) by SHIBATA Hiroshi.
|
|
2433
3105
|
* Fixed show_release_notes test for LANG=C. Issue #862 by Luis Lavena.
|
|
2434
3106
|
* Fixed Gem::Package from IO tests on windows. Patch from issue #861 by Luis
|
|
2435
3107
|
Lavena.
|
|
2436
3108
|
* Check for nil extensions as BasicSpecification does not initialize them.
|
|
2437
|
-
Pull request #882 by André Arko.
|
|
3109
|
+
Pull request [#882](https://github.com/rubygems/rubygems/pull/882) by André Arko.
|
|
2438
3110
|
* Fixed Gem::BasicSpecification#require_paths receives a String for
|
|
2439
|
-
@require_paths. Pull request #904 by @danielpclark
|
|
3111
|
+
@require_paths. Pull request [#904](https://github.com/rubygems/rubygems/pull/904) by @danielpclark
|
|
2440
3112
|
* Fixed circular require warnings. Bug #908 by Zachary Scott.
|
|
2441
3113
|
* Gem::Specification#require_paths can no longer accidentally be an Array.
|
|
2442
3114
|
Pull requests #904, #909 by Daniel P. Clark.
|
|
2443
3115
|
* Don't build extensions if `build_dir/extensions` isn't writable.
|
|
2444
|
-
Pull request #912 by @dunric
|
|
3116
|
+
Pull request [#912](https://github.com/rubygems/rubygems/pull/912) by @dunric
|
|
2445
3117
|
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
|
2446
3118
|
#852 by Vít Ondruch.
|
|
2447
3119
|
|
|
@@ -2472,21 +3144,21 @@ This release was sponsored by Ruby Central.
|
|
|
2472
3144
|
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
|
2473
3145
|
Nakada.
|
|
2474
3146
|
* Removed double requests in RemoteFetcher#cache_update_path to improve remote
|
|
2475
|
-
install speed. Pull request #772 by Charlie Somerville.
|
|
3147
|
+
install speed. Pull request [#772](https://github.com/rubygems/rubygems/pull/772) by Charlie Somerville.
|
|
2476
3148
|
* The mkmf.log is now placed next to gem_make.out when building extensions.
|
|
2477
3149
|
* `gem install -g --local` no longer accesses the network. Bug #776 by Jeremy
|
|
2478
3150
|
Evans.
|
|
2479
3151
|
* RubyGems now correctly handles URL passwords with encoded characters. Pull
|
|
2480
|
-
request #781 by Brian Fletcher.
|
|
2481
|
-
* RubyGems now correctly escapes URL characters. Pull request #788 by Brian
|
|
3152
|
+
request [#781](https://github.com/rubygems/rubygems/pull/781) by Brian Fletcher.
|
|
3153
|
+
* RubyGems now correctly escapes URL characters. Pull request [#788](https://github.com/rubygems/rubygems/pull/788) by Brian
|
|
2482
3154
|
Fletcher.
|
|
2483
3155
|
* RubyGems can now unpack tar files where the type flag is not given. Pull
|
|
2484
|
-
request #790 by Cody Russell.
|
|
3156
|
+
request [#790](https://github.com/rubygems/rubygems/pull/790) by Cody Russell.
|
|
2485
3157
|
* Typo corrections. Pull request ruby/ruby#506 by windwiny.
|
|
2486
3158
|
* RubyGems now uses both the default certificates and ssl_ca_cert instead of
|
|
2487
|
-
one or the other. Pull request #795 by zebardy.
|
|
3159
|
+
one or the other. Pull request [#795](https://github.com/rubygems/rubygems/pull/795) by zebardy.
|
|
2488
3160
|
* RubyGems can now use the bundler API against hosted gem servers in a
|
|
2489
|
-
directory. Pull request #801 by Brian Fletcher.
|
|
3161
|
+
directory. Pull request [#801](https://github.com/rubygems/rubygems/pull/801) by Brian Fletcher.
|
|
2490
3162
|
* RubyGems bin stubs now ignore non-versions. This allows RubyGems bin stubs
|
|
2491
3163
|
to list file names like "_foo_". Issue #799 by Postmodern.
|
|
2492
3164
|
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
|
@@ -2499,12 +3171,12 @@ This release was sponsored by Ruby Central.
|
|
|
2499
3171
|
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
|
2500
3172
|
#767 by Diego Viola.
|
|
2501
3173
|
* RubyGems now displays which gem couldn't be uninstalled from the home
|
|
2502
|
-
directory. Pull request #757 by Michal Papis.
|
|
2503
|
-
* Removed unused method Gem::Resolver#find_conflict_state. Pull request #759
|
|
3174
|
+
directory. Pull request [#757](https://github.com/rubygems/rubygems/pull/757) by Michal Papis.
|
|
3175
|
+
* Removed unused method Gem::Resolver#find_conflict_state. Pull request [#759](https://github.com/rubygems/rubygems/pull/759)
|
|
2504
3176
|
by Smit Shah.
|
|
2505
3177
|
* Fixed installing gems from local files without dependencies. Issue #760 by
|
|
2506
|
-
Arash Mousavi, pull request #764 by Tim Moore.
|
|
2507
|
-
* Removed TODO about syntax that works in Ruby 1.8.7. Pull request #765 by
|
|
3178
|
+
Arash Mousavi, pull request [#764](https://github.com/rubygems/rubygems/pull/764) by Tim Moore.
|
|
3179
|
+
* Removed TODO about syntax that works in Ruby 1.8.7. Pull request [#765](https://github.com/rubygems/rubygems/pull/765) by
|
|
2508
3180
|
Benjamin Fleischer.
|
|
2509
3181
|
* Switched Gem.ruby_api_version to use RbConfig::CONFIG['ruby_version'] which
|
|
2510
3182
|
has the same value but is overridable by packagers through
|
|
@@ -2518,7 +3190,7 @@ This release was sponsored by Ruby Central.
|
|
|
2518
3190
|
* Gem.read_binary can read read-only files again. This caused file://
|
|
2519
3191
|
repositories to stop working. Bug #761 by John Anderson.
|
|
2520
3192
|
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
|
2521
|
-
request #763 by James Mead
|
|
3193
|
+
request [#763](https://github.com/rubygems/rubygems/pull/763) by James Mead
|
|
2522
3194
|
|
|
2523
3195
|
# 2.2.0 / 2013-12-26
|
|
2524
3196
|
|
|
@@ -2551,17 +3223,17 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
|
2551
3223
|
* RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
|
|
2552
3224
|
prevent an accidental push to a public repository (such as rubygems.org).
|
|
2553
3225
|
If you have private gems you should set this value in your gem specification
|
|
2554
|
-
metadata. Pull request #603 by Seamus Abshere.
|
|
2555
|
-
* `gem list` now shows results for multiple arguments. Pull request #604 by
|
|
3226
|
+
metadata. Pull request [#603](https://github.com/rubygems/rubygems/pull/603) by Seamus Abshere.
|
|
3227
|
+
* `gem list` now shows results for multiple arguments. Pull request [#604](https://github.com/rubygems/rubygems/pull/604) by
|
|
2556
3228
|
Zach Rabinovich.
|
|
2557
3229
|
* `gem pristine --extensions` will restore only gems with extensions. Issue
|
|
2558
3230
|
#619 by Postmodern.
|
|
2559
|
-
* Gem::Specification#files is now sorted. Pull request #612 by Justin George.
|
|
3231
|
+
* Gem::Specification#files is now sorted. Pull request [#612](https://github.com/rubygems/rubygems/pull/612) by Justin George.
|
|
2560
3232
|
* For `gem list` and friends, "LOCAL" and "REMOTE" headers are omitted if
|
|
2561
3233
|
only local or remote gem information is requested with --quiet. Pull
|
|
2562
|
-
request #615 by Michal Papis.
|
|
3234
|
+
request [#615](https://github.com/rubygems/rubygems/pull/615) by Michal Papis.
|
|
2563
3235
|
* Added Gem::Specification#full_require_paths which is like require_paths, but
|
|
2564
|
-
returns a fully-qualified results. Pull request #632 by Vít Ondruch.
|
|
3236
|
+
returns a fully-qualified results. Pull request [#632](https://github.com/rubygems/rubygems/pull/632) by Vít Ondruch.
|
|
2565
3237
|
* RubyGems now looks for the https_proxy environment variable for https://
|
|
2566
3238
|
sources. RubyGems will fall back to http_proxy if there is no https_proxy.
|
|
2567
3239
|
Issue #610 by mkristian.
|
|
@@ -2579,7 +3251,7 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
|
2579
3251
|
* When using `gem install -g`, RubyGems now detects the presence of an
|
|
2580
3252
|
Isolate, Gemfile or gem.deps.rb file.
|
|
2581
3253
|
* Added Gem::StubSpecification#stubbed? to help determine if a user should run
|
|
2582
|
-
`gem pristine` to speed up gem loading. Pull request #694 and #701 by Jon
|
|
3254
|
+
`gem pristine` to speed up gem loading. Pull request [#694](https://github.com/rubygems/rubygems/pull/694) and #701 by Jon
|
|
2583
3255
|
Leighton.
|
|
2584
3256
|
* RubyGems now warns when a gem has a pessimistic version dependency that may
|
|
2585
3257
|
be too strict.
|
|
@@ -2587,9 +3259,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
|
2587
3259
|
* RubyGems now raises an exception when a dependency for a gem is defined
|
|
2588
3260
|
twice.
|
|
2589
3261
|
* Marked the license specification attribute as recommended. Pull request
|
|
2590
|
-
#713 by Benjamin Fleischer.
|
|
3262
|
+
[#713](https://github.com/rubygems/rubygems/pull/713) by Benjamin Fleischer.
|
|
2591
3263
|
* RubyGems uses io/console instead of `stty` when available. Pull request
|
|
2592
|
-
#740 by Nobuyoshi Nakada
|
|
3264
|
+
[#740](https://github.com/rubygems/rubygems/pull/740) by Nobuyoshi Nakada
|
|
2593
3265
|
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
|
2594
3266
|
Request #755 by strzibny.
|
|
2595
3267
|
|
|
@@ -2597,14 +3269,14 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
|
2597
3269
|
|
|
2598
3270
|
* RubyGems now returns an error status when any file given to `gem which`
|
|
2599
3271
|
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
|
2600
|
-
* Fixed command escaping when building rake extensions. Pull request #721 by
|
|
3272
|
+
* Fixed command escaping when building rake extensions. Pull request [#721](https://github.com/rubygems/rubygems/pull/721) by
|
|
2601
3273
|
Dmitry Ratnikov.
|
|
2602
3274
|
* Fixed uninstallation of gems when GEM_HOME is a relative directory. Issue
|
|
2603
3275
|
#708 by Ryan Davis.
|
|
2604
3276
|
* Default gems are now ignored by Gem::Validator#alien. Issue #717 by David
|
|
2605
3277
|
Bahar.
|
|
2606
3278
|
* Fixed typos in RubyGems. Pull requests #723, #725, #731 by Akira Matsuda,
|
|
2607
|
-
pull request #736 by Leo Gallucci, pull request #746 by DV Suresh.
|
|
3279
|
+
pull request [#736](https://github.com/rubygems/rubygems/pull/736) by Leo Gallucci, pull request [#746](https://github.com/rubygems/rubygems/pull/746) by DV Suresh.
|
|
2608
3280
|
* RubyGems now holds exclusive locks on cached gem files to prevent incorrect
|
|
2609
3281
|
updates. Pull Request #737 by Smit Shah
|
|
2610
3282
|
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
|
@@ -2666,11 +3338,11 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
|
2666
3338
|
|
|
2667
3339
|
## Bug fixes:
|
|
2668
3340
|
|
|
2669
|
-
* `gem sources --list` now displays a list of sources. Pull request #672 by
|
|
3341
|
+
* `gem sources --list` now displays a list of sources. Pull request [#672](https://github.com/rubygems/rubygems/pull/672) by
|
|
2670
3342
|
Nathan Marley.
|
|
2671
3343
|
* RubyGems no longer alters Gem::Specification.dirs when installing. Pull
|
|
2672
3344
|
Request #670 by Vít Ondruch
|
|
2673
|
-
* Use RFC 2616-compatible time in HTTP headers. Pull request #655 by Larry
|
|
3345
|
+
* Use RFC 2616-compatible time in HTTP headers. Pull request [#655](https://github.com/rubygems/rubygems/pull/655) by Larry
|
|
2674
3346
|
Marburger.
|
|
2675
3347
|
* RubyGems now gives a more descriptive message for missing licenses on
|
|
2676
3348
|
validation. Issue #656 by Markus Heiler.
|
|
@@ -2686,9 +3358,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
|
2686
3358
|
* Remove redundant built-in certificates not needed for https://rubygems.org
|
|
2687
3359
|
Fixes #654 by Vít Ondruch.
|
|
2688
3360
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
|
2689
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
|
3361
|
+
https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
|
|
2690
3362
|
* RubyGems now allows a Pathname for Kernel#require like the built-in
|
|
2691
|
-
Kernel#require. Pull request #663 by Aaron Patterson.
|
|
3363
|
+
Kernel#require. Pull request [#663](https://github.com/rubygems/rubygems/pull/663) by Aaron Patterson.
|
|
2692
3364
|
* Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
|
|
2693
3365
|
1.9.1 is no longer receiving security fixes, so please update to a newer
|
|
2694
3366
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
|
@@ -2724,7 +3396,7 @@ Security fixes:
|
|
|
2724
3396
|
## Bug fixes:
|
|
2725
3397
|
|
|
2726
3398
|
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
|
2727
|
-
request #637 and issue #640 by Charles Nutter.
|
|
3399
|
+
request [#637](https://github.com/rubygems/rubygems/pull/637) and issue #640 by Charles Nutter.
|
|
2728
3400
|
* Gems with extensions are now installed correctly when the --install-dir
|
|
2729
3401
|
option is used. Issue #642 by Lin Jen-Shin.
|
|
2730
3402
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
|
@@ -2772,7 +3444,7 @@ Security fixes:
|
|
|
2772
3444
|
gemcutter API. Pull Request #462 and issue #461 by Hugo Lopes Tavares
|
|
2773
3445
|
* Added --abort-on-dependent to `gem uninstall`. This will abort instead of
|
|
2774
3446
|
asking to uninstall a gem that is depended upon by another gem. Pull
|
|
2775
|
-
request #549 by Philip Arndt.
|
|
3447
|
+
request [#549](https://github.com/rubygems/rubygems/pull/549) by Philip Arndt.
|
|
2776
3448
|
* RubyGems no longer alters Gem::Specification.dirs when installing. Based on
|
|
2777
3449
|
Pull Request #452 by Vít Ondruch
|
|
2778
3450
|
* RubyGems uses ENV['MAKE'] or ENV['make'] over rbconfig.rb's make if present.
|
|
@@ -2784,21 +3456,21 @@ Security fixes:
|
|
|
2784
3456
|
Klabnik.
|
|
2785
3457
|
* RubyGems indicates when a .gem's content is corrupt while verifying. Bug
|
|
2786
3458
|
#519 by William T Nelson.
|
|
2787
|
-
* Refactored common installer setup. Pull request #520 by Gastón Ramos
|
|
2788
|
-
* Moved activation tests to Gem::Specification. Pull request #521 by Gastón
|
|
3459
|
+
* Refactored common installer setup. Pull request [#520](https://github.com/rubygems/rubygems/pull/520) by Gastón Ramos
|
|
3460
|
+
* Moved activation tests to Gem::Specification. Pull request [#521](https://github.com/rubygems/rubygems/pull/521) by Gastón
|
|
2789
3461
|
Ramos
|
|
2790
3462
|
* When a --version option with a prerelease version is given RubyGems
|
|
2791
3463
|
automatically enables prerelease versions but only the last version is
|
|
2792
3464
|
used. If the first version is a prerelease version this is no longer sticky
|
|
2793
3465
|
unless an explicit --[no-]prerelease was also given. Fixes part of #531.
|
|
2794
|
-
* RubyGems now supports an SSL client certificate. Pull request #550 by
|
|
3466
|
+
* RubyGems now supports an SSL client certificate. Pull request [#550](https://github.com/rubygems/rubygems/pull/550) by
|
|
2795
3467
|
Robert Kenny.
|
|
2796
|
-
* RubyGems now suggests how to fix permission errors. Pull request #553 by
|
|
3468
|
+
* RubyGems now suggests how to fix permission errors. Pull request [#553](https://github.com/rubygems/rubygems/pull/553) by
|
|
2797
3469
|
Odin Dutton.
|
|
2798
3470
|
* Added support for installing a gem as default gems for alternate ruby
|
|
2799
|
-
implementations. Pull request #566 by Charles Nutter.
|
|
3471
|
+
implementations. Pull request [#566](https://github.com/rubygems/rubygems/pull/566) by Charles Nutter.
|
|
2800
3472
|
* Improved performance of Gem::Specification#load by caching the loaded
|
|
2801
|
-
gemspec. Pull request #569 by Charlie Somerville.
|
|
3473
|
+
gemspec. Pull request [#569](https://github.com/rubygems/rubygems/pull/569) by Charlie Somerville.
|
|
2802
3474
|
* RubyGems now warns when an unsigned gem is verified if -P was given during
|
|
2803
3475
|
installation even if the security policy allows unsigned gems and warns when
|
|
2804
3476
|
an untrusted certificate is seen even if the security policy allows
|
|
@@ -2808,13 +3480,13 @@ Security fixes:
|
|
|
2808
3480
|
--env-[no-]shebang</code>. Issue #579 by Paul Annesley.
|
|
2809
3481
|
* RubyGems can now run its tests without OpenSSL. Ruby Bug #8557 by nobu.
|
|
2810
3482
|
* Improved performance by caching Gem::Version objects and avoiding
|
|
2811
|
-
method_missing in Gem::Specification. Pull request #447 by Jon Leighton.
|
|
2812
|
-
* Files in a .gem now preserve their modification times. Pull request #582 by
|
|
3483
|
+
method_missing in Gem::Specification. Pull request [#447](https://github.com/rubygems/rubygems/pull/447) by Jon Leighton.
|
|
3484
|
+
* Files in a .gem now preserve their modification times. Pull request [#582](https://github.com/rubygems/rubygems/pull/582) by
|
|
2813
3485
|
Jesse Bowes
|
|
2814
3486
|
* Improved speed of looking up dependencies in SpecFetcher through
|
|
2815
|
-
Array#bsearch (when present). Pull request #595 by Andras Suller
|
|
3487
|
+
Array#bsearch (when present). Pull request [#595](https://github.com/rubygems/rubygems/pull/595) by Andras Suller
|
|
2816
3488
|
* Added `--all` option to `gem uninstall` which removes all gems in GEM_HOME.
|
|
2817
|
-
Pull request #584 by Shannon Skipper.
|
|
3489
|
+
Pull request [#584](https://github.com/rubygems/rubygems/pull/584) by Shannon Skipper.
|
|
2818
3490
|
* Added Gem.find_latest_files which is equivalent to Gem.find_files but only
|
|
2819
3491
|
returns matching files from the latest version of each gem. Issue #186 by
|
|
2820
3492
|
Ryan Davis.
|
|
@@ -2826,9 +3498,9 @@ Security fixes:
|
|
|
2826
3498
|
|
|
2827
3499
|
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
|
2828
3500
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
|
2829
|
-
#625 by elarkin
|
|
3501
|
+
[#625](https://github.com/rubygems/rubygems/pull/625) by elarkin
|
|
2830
3502
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
|
2831
|
-
request #622 by Arthur Nogueira Neves
|
|
3503
|
+
request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
|
|
2832
3504
|
|
|
2833
3505
|
# 2.0.17 / 2015-06-08
|
|
2834
3506
|
|
|
@@ -2889,9 +3561,9 @@ Security fixes:
|
|
|
2889
3561
|
* Remove redundant built-in certificates not needed for https://rubygems.org
|
|
2890
3562
|
Fixes #654 by Vít Ondruch.
|
|
2891
3563
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
|
2892
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
|
3564
|
+
https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
|
|
2893
3565
|
* RubyGems now allows a Pathname for Kernel#require like the built-in
|
|
2894
|
-
Kernel#require. Pull request #663 by Aaron Patterson.
|
|
3566
|
+
Kernel#require. Pull request [#663](https://github.com/rubygems/rubygems/pull/663) by Aaron Patterson.
|
|
2895
3567
|
* Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
|
|
2896
3568
|
1.9.1 is no longer receiving security fixes, so please update to a newer
|
|
2897
3569
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
|
@@ -2913,7 +3585,7 @@ Security fixes:
|
|
|
2913
3585
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
|
2914
3586
|
Issue #643 by Brian Shirai.
|
|
2915
3587
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
|
2916
|
-
request #622 by Arthur Nogueira Neves
|
|
3588
|
+
request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
|
|
2917
3589
|
|
|
2918
3590
|
# 2.0.8 / 2013-09-09
|
|
2919
3591
|
|
|
@@ -2927,7 +3599,7 @@ Security fixes:
|
|
|
2927
3599
|
## Bug fixes:
|
|
2928
3600
|
|
|
2929
3601
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
|
2930
|
-
#625 by elarkin
|
|
3602
|
+
[#625](https://github.com/rubygems/rubygems/pull/625) by elarkin
|
|
2931
3603
|
|
|
2932
3604
|
# 2.0.7 / 2013-08-15
|
|
2933
3605
|
|
|
@@ -2936,7 +3608,7 @@ Security fixes:
|
|
|
2936
3608
|
* Extensions may now be built in parallel (therefore gems may be installed in
|
|
2937
3609
|
parallel). Bug #607 by Hemant Kumar.
|
|
2938
3610
|
* Changed broken link to RubyGems Bookshelf to point to RubyGems guides. Ruby
|
|
2939
|
-
pull request #369 by 謝致邦.
|
|
3611
|
+
pull request [#369](https://github.com/rubygems/rubygems/pull/369) by 謝致邦.
|
|
2940
3612
|
* Fixed various test failures due to platform differences or poor tests.
|
|
2941
3613
|
Patches by Yui Naruse and Koichi Sasada.
|
|
2942
3614
|
* Fixed documentation for Kernel#require.
|
|
@@ -2969,7 +3641,7 @@ Security fixes:
|
|
|
2969
3641
|
* Fixed pushing gems with the default host. Bug #495 by Utkarsh Kukreti
|
|
2970
3642
|
* Improved unhelpful error message from `gem owner --remove`. Bug #488 by
|
|
2971
3643
|
Steve Klabnik
|
|
2972
|
-
* Fixed typo in `gem spec` help. Pull request #563 by oooooooo
|
|
3644
|
+
* Fixed typo in `gem spec` help. Pull request [#563](https://github.com/rubygems/rubygems/pull/563) by oooooooo
|
|
2973
3645
|
* Fixed creation of build_info with --install-dir. Bug #457 by Vít Ondruch.
|
|
2974
3646
|
* RubyGems converts non-string dependency names to strings now. Bug #505 by
|
|
2975
3647
|
Terence Lee
|
|
@@ -2978,18 +3650,18 @@ Security fixes:
|
|
|
2978
3650
|
every file from the gem. This improves the performance of gem installation
|
|
2979
3651
|
on some systems. Pull Request #556 by Grzesiek Kolodziejczyk
|
|
2980
3652
|
* Removed surprise search term anchoring in `gem search` to restore 1.8-like
|
|
2981
|
-
search behavior while still defaulting to --remote. Pull request #562 by
|
|
3653
|
+
search behavior while still defaulting to --remote. Pull request [#562](https://github.com/rubygems/rubygems/pull/562) by
|
|
2982
3654
|
Ben Bleything
|
|
2983
|
-
* Fixed handling of DESTDIR when building extensions. Pull request #573 by
|
|
3655
|
+
* Fixed handling of DESTDIR when building extensions. Pull request [#573](https://github.com/rubygems/rubygems/pull/573) by
|
|
2984
3656
|
Akinori MUSHA
|
|
2985
3657
|
* Fixed documentation of `gem pristine` defaults (--all is not a default).
|
|
2986
|
-
Pull request #577 by Shannon Skipper
|
|
2987
|
-
* Fixed a windows extension-building test failure. Pull request #575 by
|
|
3658
|
+
Pull request [#577](https://github.com/rubygems/rubygems/pull/577) by Shannon Skipper
|
|
3659
|
+
* Fixed a windows extension-building test failure. Pull request [#575](https://github.com/rubygems/rubygems/pull/575) by
|
|
2988
3660
|
Hiroshi Shirosaki
|
|
2989
3661
|
* Fixed issue with `gem update` where it would attempt to use a Version
|
|
2990
3662
|
instead of a Requirement to find the latest gem. Fixes #570 by Nick Cox.
|
|
2991
3663
|
* RubyGems now ignores an empty but set RUBYGEMS_HOST environment variable.
|
|
2992
|
-
Based on pull request #558 by Robin Dupret.
|
|
3664
|
+
Based on pull request [#558](https://github.com/rubygems/rubygems/pull/558) by Robin Dupret.
|
|
2993
3665
|
* Removed duplicate creation of gem subdirectories in
|
|
2994
3666
|
Gem::DependencyInstaller. Pull Request #456 by Vít Ondruch
|
|
2995
3667
|
* RubyGems now works with Ruby built with `--with-ruby-version=''`. Pull
|
|
@@ -2997,7 +3669,7 @@ Security fixes:
|
|
|
2997
3669
|
* Fixed race condition when two threads require the same gem. Ruby bug report
|
|
2998
3670
|
#8374 by Joel VanderWerf
|
|
2999
3671
|
* Cleaned up siteconf between extension build and extension install. Pull
|
|
3000
|
-
request #587 by Dominic Cleal
|
|
3672
|
+
request [#587](https://github.com/rubygems/rubygems/pull/587) by Dominic Cleal
|
|
3001
3673
|
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
|
3002
3674
|
r41148 by Yui Naruse
|
|
3003
3675
|
|
|
@@ -3015,7 +3687,7 @@ Security fixes:
|
|
|
3015
3687
|
* Use the absolute path to the generated siteconf in case the extension
|
|
3016
3688
|
changes directories to run extconf.rb (like memcached). Fixes #498 by
|
|
3017
3689
|
Chris Morris.
|
|
3018
|
-
* Fixed default gem key and cert locations. Pull request #511 by Samuel
|
|
3690
|
+
* Fixed default gem key and cert locations. Pull request [#511](https://github.com/rubygems/rubygems/pull/511) by Samuel
|
|
3019
3691
|
Cochran.
|
|
3020
3692
|
|
|
3021
3693
|
# 2.0.2 / 2013-03-06
|
|
@@ -3038,7 +3710,7 @@ Security fixes:
|
|
|
3038
3710
|
* "Done installing documentation" is no longer displayed when documentation
|
|
3039
3711
|
generation is disabled. Fixes bug #469 by Jeff Sandberg
|
|
3040
3712
|
* The existing executable check now respects --format-executable. Pull
|
|
3041
|
-
request #471 by Jeremy Evans.
|
|
3713
|
+
request [#471](https://github.com/rubygems/rubygems/pull/471) by Jeremy Evans.
|
|
3042
3714
|
* RubyGems no longer creates gem subdirectories when fetching gems. Fixes
|
|
3043
3715
|
#482 by Loren Segal.
|
|
3044
3716
|
* RubyGems does not require OpenSSL like RubyGems 1.8, but still prefers it.
|
|
@@ -3109,7 +3781,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
|
3109
3781
|
Skipper.
|
|
3110
3782
|
* Gem::DependencyInstaller now passes build_args down to the installer.
|
|
3111
3783
|
Pull Request #412 by Sam Rawlins.
|
|
3112
|
-
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
|
3784
|
+
* Added a cmake builder. Pull request [#265](https://github.com/rubygems/rubygems/pull/265) by Allan Espinosa.
|
|
3113
3785
|
* Removed rubyforge page from gem list output
|
|
3114
3786
|
* Added --only-executables option to `gem pristine`. Fixes #326
|
|
3115
3787
|
* Added -I flag for 'gem query' to exclude installed items
|
|
@@ -3239,7 +3911,7 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
|
3239
3911
|
# 2.0.0.preview2.2 / 2012-12-14
|
|
3240
3912
|
|
|
3241
3913
|
## Enhancements:
|
|
3242
|
-
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
|
3914
|
+
* Added a cmake builder. Pull request [#265](https://github.com/rubygems/rubygems/pull/265) by Allan Espinosa.
|
|
3243
3915
|
* Removed rubyforge page from gem list output
|
|
3244
3916
|
|
|
3245
3917
|
## Bug fixes:
|
|
@@ -3405,7 +4077,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
|
3405
4077
|
* Remove redundant built-in certificates not needed for https://rubygems.org
|
|
3406
4078
|
Fixes #654 by Vít Ondruch.
|
|
3407
4079
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
|
3408
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
|
4080
|
+
https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
|
|
3409
4081
|
|
|
3410
4082
|
# 1.8.27 / 2013-09-24
|
|
3411
4083
|
|
|
@@ -3720,7 +4392,7 @@ work focused on moving functionality out of Gem::SourceIndex and
|
|
|
3720
4392
|
Gem::GemPathSearcher into Gem::Specification where it belongs.
|
|
3721
4393
|
|
|
3722
4394
|
After installing RubyGems 1.8.0 you will see deprecations when loading your
|
|
3723
|
-
|
|
4395
|
+
existing gems. Run `gem pristine --all --no-extensions` to regenerate your
|
|
3724
4396
|
gem specifications safely.
|
|
3725
4397
|
|
|
3726
4398
|
Currently RubyGems does not save the build arguments used to build gems with
|
|
@@ -4247,8 +4919,8 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
|
4247
4919
|
Steve Purcell.
|
|
4248
4920
|
* `gem generate_index`
|
|
4249
4921
|
* Can now generate an RSS feed.
|
|
4250
|
-
* Modern
|
|
4251
|
-
* Legacy
|
|
4922
|
+
* Modern indices can now be updated incrementally.
|
|
4923
|
+
* Legacy indices can be updated separately from modern.
|
|
4252
4924
|
|
|
4253
4925
|
## Bug fixes:
|
|
4254
4926
|
|
|
@@ -4483,7 +5155,7 @@ Lavena and Daniel Berger for continuing windows support.
|
|
|
4483
5155
|
* Tar handling code refactoring and cleanup.
|
|
4484
5156
|
* Gem::DependencyInstaller's API has changed.
|
|
4485
5157
|
|
|
4486
|
-
For a full list of changes to RubyGems, see the
|
|
5158
|
+
For a full list of changes to RubyGems, see the git log.
|
|
4487
5159
|
|
|
4488
5160
|
# 1.0.1 / 2007-12-20
|
|
4489
5161
|
|
|
@@ -4627,7 +5299,7 @@ have permanently enabled the work around on all versions.
|
|
|
4627
5299
|
|
|
4628
5300
|
# 0.9.1 / 2007-01-16
|
|
4629
5301
|
|
|
4630
|
-
See
|
|
5302
|
+
See git log
|
|
4631
5303
|
|
|
4632
5304
|
# 0.9.0 / 2006-06-28
|
|
4633
5305
|
|
|
@@ -4875,11 +5547,11 @@ There has been some minor usability enhancements and changes ...
|
|
|
4875
5547
|
|
|
4876
5548
|
# 0.7.0 / 2004-07-09
|
|
4877
5549
|
|
|
4878
|
-
See
|
|
5550
|
+
See git log
|
|
4879
5551
|
|
|
4880
5552
|
# 0.6.1 / 2004-06-08
|
|
4881
5553
|
|
|
4882
|
-
See
|
|
5554
|
+
See git log
|
|
4883
5555
|
|
|
4884
5556
|
# 0.6.0 / 2004-06-08
|
|
4885
5557
|
|