rubygems-update 3.1.6 → 3.3.22
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/{History.txt → CHANGELOG.md} +1452 -514
- data/CODE_OF_CONDUCT.md +55 -19
- data/CONTRIBUTING.md +74 -27
- data/Manifest.txt +154 -117
- data/POLICIES.md +27 -19
- data/README.md +10 -8
- data/UPGRADING.md +5 -81
- data/bin/gem +3 -8
- data/bin/update_rubygems +5 -5
- data/bundler/CHANGELOG.md +2358 -1430
- data/bundler/README.md +7 -9
- data/bundler/UPGRADING.md +27 -34
- data/bundler/bundler.gemspec +8 -11
- data/bundler/exe/bundle +10 -8
- data/bundler/exe/bundler +1 -1
- data/bundler/lib/bundler/.document +1 -0
- data/bundler/lib/bundler/build_metadata.rb +4 -12
- data/bundler/lib/bundler/cli/add.rb +1 -1
- data/bundler/lib/bundler/cli/binstubs.rb +6 -2
- data/bundler/lib/bundler/cli/cache.rb +3 -8
- data/bundler/lib/bundler/cli/check.rb +4 -2
- data/bundler/lib/bundler/cli/clean.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +31 -3
- data/bundler/lib/bundler/cli/config.rb +10 -1
- data/bundler/lib/bundler/cli/console.rb +1 -1
- data/bundler/lib/bundler/cli/doctor.rb +25 -6
- data/bundler/lib/bundler/cli/exec.rb +5 -10
- data/bundler/lib/bundler/cli/fund.rb +36 -0
- data/bundler/lib/bundler/cli/gem.rb +219 -28
- data/bundler/lib/bundler/cli/info.rb +38 -6
- data/bundler/lib/bundler/cli/init.rb +3 -3
- data/bundler/lib/bundler/cli/inject.rb +1 -1
- data/bundler/lib/bundler/cli/install.rb +25 -54
- data/bundler/lib/bundler/cli/issue.rb +5 -4
- data/bundler/lib/bundler/cli/list.rb +19 -11
- data/bundler/lib/bundler/cli/lock.rb +5 -1
- data/bundler/lib/bundler/cli/open.rb +1 -2
- data/bundler/lib/bundler/cli/outdated.rb +105 -76
- data/bundler/lib/bundler/cli/platform.rb +2 -2
- data/bundler/lib/bundler/cli/plugin.rb +10 -0
- data/bundler/lib/bundler/cli/pristine.rb +5 -0
- data/bundler/lib/bundler/cli/remove.rb +1 -2
- data/bundler/lib/bundler/cli/show.rb +2 -2
- data/bundler/lib/bundler/cli/update.rb +20 -9
- data/bundler/lib/bundler/cli.rb +106 -83
- data/bundler/lib/bundler/compact_index_client/cache.rb +6 -23
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
- data/bundler/lib/bundler/compact_index_client/updater.rb +29 -25
- data/bundler/lib/bundler/compact_index_client.rb +3 -9
- data/bundler/lib/bundler/current_ruby.rb +17 -6
- data/bundler/lib/bundler/definition.rb +297 -396
- data/bundler/lib/bundler/dep_proxy.rb +16 -9
- data/bundler/lib/bundler/dependency.rb +22 -77
- data/bundler/lib/bundler/digest.rb +71 -0
- data/bundler/lib/bundler/dsl.rb +76 -83
- data/bundler/lib/bundler/endpoint_specification.rb +16 -14
- data/bundler/lib/bundler/env.rb +2 -2
- data/bundler/lib/bundler/environment_preserver.rb +29 -2
- data/bundler/lib/bundler/errors.rb +30 -3
- data/bundler/lib/bundler/feature_flag.rb +0 -9
- data/bundler/lib/bundler/fetcher/base.rb +7 -9
- data/bundler/lib/bundler/fetcher/compact_index.rb +11 -16
- data/bundler/lib/bundler/fetcher/downloader.rb +10 -7
- data/bundler/lib/bundler/fetcher/index.rb +2 -30
- data/bundler/lib/bundler/fetcher.rb +24 -25
- data/bundler/lib/bundler/friendly_errors.rb +46 -47
- data/bundler/lib/bundler/gem_helper.rb +53 -31
- data/bundler/lib/bundler/gem_helpers.rb +43 -24
- data/bundler/lib/bundler/gem_version_promoter.rb +10 -20
- data/bundler/lib/bundler/graph.rb +1 -1
- data/bundler/lib/bundler/index.rb +19 -25
- data/bundler/lib/bundler/injector.rb +38 -6
- data/bundler/lib/bundler/inline.rb +4 -13
- data/bundler/lib/bundler/installer/gem_installer.rb +19 -24
- data/bundler/lib/bundler/installer/parallel_installer.rb +46 -25
- data/bundler/lib/bundler/installer/standalone.rb +58 -11
- data/bundler/lib/bundler/installer.rb +51 -81
- data/bundler/lib/bundler/lazy_specification.rb +79 -36
- data/bundler/lib/bundler/lockfile_generator.rb +3 -3
- data/bundler/lib/bundler/lockfile_parser.rb +19 -44
- data/bundler/lib/bundler/man/.document +1 -0
- data/bundler/{man → lib/bundler/man}/bundle-add.1 +21 -5
- data/bundler/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +16 -4
- data/bundler/{man → lib/bundler/man}/bundle-binstubs.1 +5 -3
- data/bundler/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +2 -4
- data/bundler/{man → lib/bundler/man}/bundle-cache.1 +7 -1
- data/bundler/{man/bundle-cache.ronn → lib/bundler/man/bundle-cache.1.ronn} +7 -0
- data/bundler/{man → lib/bundler/man}/bundle-check.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-clean.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-config.1 +65 -47
- data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +74 -65
- data/bundler/lib/bundler/man/bundle-console.1 +53 -0
- data/bundler/lib/bundler/man/bundle-console.1.ronn +44 -0
- data/bundler/{man → lib/bundler/man}/bundle-doctor.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-exec.1 +2 -2
- data/bundler/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-gem.1 +38 -3
- data/bundler/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +46 -7
- data/bundler/lib/bundler/man/bundle-help.1 +13 -0
- data/bundler/lib/bundler/man/bundle-help.1.ronn +12 -0
- data/bundler/{man → lib/bundler/man}/bundle-info.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-init.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-inject.1 +5 -2
- data/bundler/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +3 -1
- data/bundler/{man → lib/bundler/man}/bundle-install.1 +35 -4
- data/bundler/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +33 -5
- data/bundler/{man → lib/bundler/man}/bundle-list.1 +7 -7
- data/bundler/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +6 -6
- data/bundler/{man → lib/bundler/man}/bundle-lock.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-open.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-outdated.1 +3 -10
- data/bundler/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +1 -10
- data/bundler/{man → lib/bundler/man}/bundle-platform.1 +16 -6
- data/bundler/{man/bundle-platform.ronn → 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/{man → lib/bundler/man}/bundle-pristine.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-remove.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-show.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-update.1 +5 -5
- data/bundler/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +5 -4
- data/bundler/lib/bundler/man/bundle-version.1 +35 -0
- data/bundler/lib/bundler/man/bundle-version.1.ronn +24 -0
- data/bundler/{man → lib/bundler/man}/bundle-viz.1 +4 -1
- data/bundler/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +2 -0
- data/bundler/{man → lib/bundler/man}/bundle.1 +15 -10
- data/bundler/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +12 -7
- data/bundler/{man → lib/bundler/man}/gemfile.5 +106 -80
- data/bundler/{man → lib/bundler/man}/gemfile.5.ronn +94 -83
- data/bundler/{man → 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 +2 -2
- data/bundler/lib/bundler/plugin/api/source.rb +25 -9
- data/bundler/lib/bundler/plugin/dsl.rb +1 -1
- data/bundler/lib/bundler/plugin/index.rb +13 -1
- data/bundler/lib/bundler/plugin/installer/git.rb +0 -4
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -5
- data/bundler/lib/bundler/plugin/installer.rb +11 -11
- data/bundler/lib/bundler/plugin/source_list.rb +5 -1
- data/bundler/lib/bundler/plugin.rb +58 -11
- data/bundler/lib/bundler/process_lock.rb +1 -1
- data/bundler/lib/bundler/remote_specification.rb +11 -6
- data/bundler/lib/bundler/resolver/base.rb +50 -0
- data/bundler/lib/bundler/resolver/spec_group.rb +64 -57
- data/bundler/lib/bundler/resolver.rb +234 -230
- data/bundler/lib/bundler/retry.rb +2 -2
- data/bundler/lib/bundler/ruby_dsl.rb +1 -1
- data/bundler/lib/bundler/ruby_version.rb +6 -19
- data/bundler/lib/bundler/rubygems_ext.rb +194 -33
- data/bundler/lib/bundler/rubygems_gem_installer.rb +87 -16
- data/bundler/lib/bundler/rubygems_integration.rb +71 -153
- data/bundler/lib/bundler/runtime.rb +22 -26
- data/bundler/lib/bundler/self_manager.rb +168 -0
- data/bundler/lib/bundler/settings.rb +145 -66
- data/bundler/lib/bundler/setup.rb +2 -2
- data/bundler/lib/bundler/shared_helpers.rb +17 -32
- data/bundler/lib/bundler/similarity_detector.rb +1 -1
- data/bundler/lib/bundler/source/git/git_proxy.rb +88 -84
- data/bundler/lib/bundler/source/git.rb +50 -32
- data/bundler/lib/bundler/source/metadata.rb +3 -7
- data/bundler/lib/bundler/source/path/installer.rb +10 -10
- data/bundler/lib/bundler/source/path.rb +10 -4
- data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
- data/bundler/lib/bundler/source/rubygems.rb +201 -179
- data/bundler/lib/bundler/source/rubygems_aggregate.rb +68 -0
- data/bundler/lib/bundler/source.rb +25 -5
- data/bundler/lib/bundler/source_list.rb +105 -63
- data/bundler/lib/bundler/source_map.rb +71 -0
- data/bundler/lib/bundler/spec_set.rb +62 -57
- data/bundler/lib/bundler/stub_specification.rb +30 -10
- data/bundler/lib/bundler/templates/Executable +2 -4
- data/bundler/lib/bundler/templates/Executable.bundler +8 -8
- data/bundler/lib/bundler/templates/Executable.standalone +2 -4
- data/bundler/lib/bundler/templates/Gemfile +0 -2
- data/bundler/lib/bundler/templates/gems.rb +0 -3
- data/bundler/lib/bundler/templates/newgem/CHANGELOG.md.tt +5 -0
- data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
- data/bundler/lib/bundler/templates/newgem/Gemfile.tt +12 -1
- data/bundler/lib/bundler/templates/newgem/README.md.tt +9 -14
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +32 -5
- data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -0
- data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +27 -0
- data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
- data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +4 -2
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +27 -17
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +13 -0
- data/bundler/lib/bundler/templates/newgem/sig/newgem.rbs.tt +8 -0
- data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
- data/bundler/lib/bundler/templates/newgem/standard.yml.tt +3 -0
- data/bundler/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
- data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/test_newgem.rb.tt} +3 -1
- data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
- data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
- data/bundler/lib/bundler/ui/shell.rb +6 -6
- data/bundler/lib/bundler/uri_credentials_filter.rb +3 -1
- data/bundler/lib/bundler/vendor/.document +1 -0
- data/bundler/lib/bundler/vendor/connection_pool/LICENSE +20 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +19 -21
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +57 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +39 -74
- data/bundler/lib/bundler/vendor/fileutils/LICENSE.txt +22 -0
- data/bundler/lib/bundler/vendor/molinillo/LICENSE +9 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +11 -5
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +37 -5
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +34 -28
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +12 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +49 -47
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +82 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +82 -189
- data/bundler/lib/bundler/vendor/thor/LICENSE.md +20 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +9 -7
- 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 +7 -3
- data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
- 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 +10 -5
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +5 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +28 -9
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +27 -6
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +5 -1
- 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/thor/lib/thor.rb +5 -13
- data/bundler/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
- 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/LICENSE.txt +22 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +17 -80
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +0 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +5 -6
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +0 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/https.rb +0 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb +1 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +0 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +1 -14
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +1 -12
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/ws.rb +84 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/wss.rb +22 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri.rb +0 -1
- data/bundler/lib/bundler/vendored_persistent.rb +0 -7
- data/bundler/lib/bundler/vendored_tmpdir.rb +4 -0
- data/bundler/lib/bundler/vendored_tsort.rb +4 -0
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler/worker.rb +20 -5
- data/bundler/lib/bundler/yaml_serializer.rb +1 -1
- data/bundler/lib/bundler.rb +79 -47
- data/hide_lib_for_update/note.txt +0 -4
- data/lib/rubygems/available_set.rb +7 -9
- data/lib/rubygems/basic_specification.rb +23 -21
- data/lib/rubygems/bundler_version_finder.rb +26 -53
- data/lib/rubygems/command.rb +48 -45
- data/lib/rubygems/command_manager.rb +20 -14
- data/lib/rubygems/commands/build_command.rb +47 -27
- data/lib/rubygems/commands/cert_command.rb +78 -75
- data/lib/rubygems/commands/check_command.rb +20 -22
- data/lib/rubygems/commands/cleanup_command.rb +30 -26
- data/lib/rubygems/commands/contents_command.rb +16 -18
- data/lib/rubygems/commands/dependency_command.rb +39 -51
- data/lib/rubygems/commands/environment_command.rb +11 -10
- data/lib/rubygems/commands/fetch_command.rb +33 -16
- data/lib/rubygems/commands/generate_index_command.rb +17 -19
- data/lib/rubygems/commands/help_command.rb +6 -6
- data/lib/rubygems/commands/info_command.rb +10 -7
- data/lib/rubygems/commands/install_command.rb +29 -27
- data/lib/rubygems/commands/list_command.rb +9 -8
- data/lib/rubygems/commands/lock_command.rb +5 -7
- data/lib/rubygems/commands/mirror_command.rb +3 -5
- data/lib/rubygems/commands/open_command.rb +10 -14
- data/lib/rubygems/commands/outdated_command.rb +5 -7
- data/lib/rubygems/commands/owner_command.rb +26 -16
- data/lib/rubygems/commands/pristine_command.rb +61 -49
- data/lib/rubygems/commands/push_command.rb +22 -59
- data/lib/rubygems/commands/query_command.rb +21 -351
- data/lib/rubygems/commands/rdoc_command.rb +23 -25
- data/lib/rubygems/commands/search_command.rb +8 -8
- data/lib/rubygems/commands/server_command.rb +16 -77
- data/lib/rubygems/commands/setup_command.rb +255 -229
- data/lib/rubygems/commands/signin_command.rb +9 -11
- data/lib/rubygems/commands/signout_command.rb +7 -9
- data/lib/rubygems/commands/sources_command.rb +27 -25
- data/lib/rubygems/commands/specification_command.rb +25 -21
- data/lib/rubygems/commands/stale_command.rb +3 -5
- data/lib/rubygems/commands/uninstall_command.rb +41 -43
- data/lib/rubygems/commands/unpack_command.rb +13 -15
- data/lib/rubygems/commands/update_command.rb +132 -74
- data/lib/rubygems/commands/which_command.rb +7 -9
- data/lib/rubygems/commands/yank_command.rb +16 -19
- data/lib/rubygems/compatibility.rb +4 -2
- data/lib/rubygems/config_file.rb +42 -26
- data/lib/rubygems/core_ext/kernel_gem.rb +1 -1
- data/lib/rubygems/core_ext/kernel_require.rb +6 -3
- data/lib/rubygems/core_ext/kernel_warn.rb +12 -13
- data/lib/rubygems/core_ext/tcpsocket_init.rb +52 -0
- data/lib/rubygems/defaults.rb +108 -32
- data/lib/rubygems/dependency.rb +21 -22
- data/lib/rubygems/dependency_installer.rb +19 -91
- data/lib/rubygems/dependency_list.rb +13 -15
- data/lib/rubygems/deprecate.rb +102 -8
- data/lib/rubygems/doctor.rb +22 -22
- data/lib/rubygems/errors.rb +6 -21
- data/lib/rubygems/exceptions.rb +33 -34
- data/lib/rubygems/ext/build_error.rb +2 -0
- data/lib/rubygems/ext/builder.rb +48 -54
- data/lib/rubygems/ext/cargo_builder/link_flag_converter.rb +23 -0
- data/lib/rubygems/ext/cargo_builder.rb +321 -0
- data/lib/rubygems/ext/cmake_builder.rb +6 -9
- data/lib/rubygems/ext/configure_builder.rb +5 -8
- data/lib/rubygems/ext/ext_conf_builder.rb +42 -66
- data/lib/rubygems/ext/rake_builder.rb +7 -10
- data/lib/rubygems/ext.rb +7 -6
- data/lib/rubygems/gem_runner.rb +15 -26
- data/lib/rubygems/gemcutter_utilities.rb +153 -32
- data/lib/rubygems/indexer.rb +30 -49
- data/lib/rubygems/install_default_message.rb +2 -2
- data/lib/rubygems/install_message.rb +2 -2
- data/lib/rubygems/install_update_options.rb +73 -64
- data/lib/rubygems/installer.rb +194 -151
- data/lib/rubygems/installer_uninstaller_utils.rb +29 -0
- data/lib/rubygems/local_remote_options.rb +22 -24
- data/lib/rubygems/mock_gem_ui.rb +2 -8
- data/lib/rubygems/name_tuple.rb +9 -14
- data/lib/rubygems/openssl.rb +7 -0
- 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 +2303 -0
- data/lib/rubygems/optparse.rb +3 -0
- data/lib/rubygems/package/digest_io.rb +0 -2
- data/lib/rubygems/package/file_source.rb +2 -4
- data/lib/rubygems/package/io_source.rb +4 -2
- data/lib/rubygems/package/old.rb +9 -11
- data/lib/rubygems/package/tar_header.rb +54 -56
- data/lib/rubygems/package/tar_reader/entry.rb +2 -5
- data/lib/rubygems/package/tar_reader.rb +1 -4
- data/lib/rubygems/package/tar_writer.rb +8 -18
- data/lib/rubygems/package.rb +101 -117
- data/lib/rubygems/package_task.rb +5 -11
- data/lib/rubygems/path_support.rb +2 -9
- data/lib/rubygems/platform.rb +101 -76
- data/lib/rubygems/psych_tree.rb +1 -3
- data/lib/rubygems/query_utils.rb +351 -0
- data/lib/rubygems/rdoc.rb +2 -14
- data/lib/rubygems/remote_fetcher.rb +48 -74
- data/lib/rubygems/request/connection_pools.rb +6 -10
- data/lib/rubygems/request/http_pool.rb +2 -4
- data/lib/rubygems/request/https_pool.rb +0 -2
- data/lib/rubygems/request.rb +26 -31
- data/lib/rubygems/request_set/gem_dependency_api.rb +23 -25
- data/lib/rubygems/request_set/lockfile/parser.rb +26 -28
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +5 -7
- data/lib/rubygems/request_set/lockfile.rb +17 -21
- data/lib/rubygems/request_set.rb +27 -40
- data/lib/rubygems/requirement.rb +28 -48
- data/lib/rubygems/resolver/activation_request.rb +12 -6
- data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
- data/lib/rubygems/resolver/api_set.rb +32 -25
- data/lib/rubygems/resolver/api_specification.rb +29 -15
- data/lib/rubygems/resolver/best_set.rb +7 -9
- data/lib/rubygems/resolver/composed_set.rb +3 -5
- data/lib/rubygems/resolver/conflict.rb +12 -14
- data/lib/rubygems/resolver/current_set.rb +0 -2
- data/lib/rubygems/resolver/dependency_request.rb +3 -5
- data/lib/rubygems/resolver/git_set.rb +2 -4
- data/lib/rubygems/resolver/git_specification.rb +6 -8
- data/lib/rubygems/resolver/index_set.rb +4 -6
- data/lib/rubygems/resolver/index_specification.rb +38 -7
- data/lib/rubygems/resolver/installed_specification.rb +4 -6
- data/lib/rubygems/resolver/installer_set.rb +66 -24
- data/lib/rubygems/resolver/local_specification.rb +2 -4
- data/lib/rubygems/resolver/lock_set.rb +6 -8
- data/lib/rubygems/resolver/lock_specification.rb +4 -6
- data/lib/rubygems/resolver/molinillo/LICENSE +9 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +8 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +7 -6
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +4 -3
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +51 -12
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +41 -8
- data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +76 -8
- data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +13 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +510 -165
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +3 -2
- data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +8 -4
- data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +6 -5
- data/lib/rubygems/resolver/molinillo.rb +1 -1
- data/lib/rubygems/resolver/requirement_list.rb +0 -2
- data/lib/rubygems/resolver/set.rb +0 -3
- data/lib/rubygems/resolver/source_set.rb +0 -2
- data/lib/rubygems/resolver/spec_specification.rb +14 -2
- data/lib/rubygems/resolver/specification.rb +14 -4
- data/lib/rubygems/resolver/stats.rb +0 -2
- data/lib/rubygems/resolver/vendor_set.rb +1 -3
- data/lib/rubygems/resolver/vendor_specification.rb +3 -5
- data/lib/rubygems/resolver.rb +53 -51
- data/lib/rubygems/s3_uri_signer.rb +7 -15
- data/lib/rubygems/safe_yaml.rb +14 -16
- data/lib/rubygems/security/policies.rb +11 -11
- data/lib/rubygems/security/policy.rb +25 -29
- data/lib/rubygems/security/signer.rb +13 -16
- data/lib/rubygems/security/trust_dir.rb +4 -5
- data/lib/rubygems/security.rb +103 -69
- data/lib/rubygems/security_option.rb +7 -7
- data/lib/rubygems/source/git.rb +30 -30
- data/lib/rubygems/source/installed.rb +1 -3
- data/lib/rubygems/source/local.rb +4 -6
- data/lib/rubygems/source/lock.rb +0 -2
- data/lib/rubygems/source/specific_file.rb +1 -3
- data/lib/rubygems/source/vendor.rb +0 -2
- data/lib/rubygems/source.rb +44 -38
- data/lib/rubygems/source_list.rb +9 -16
- data/lib/rubygems/spec_fetcher.rb +49 -48
- data/lib/rubygems/specification.rb +338 -295
- data/lib/rubygems/specification_policy.rb +112 -61
- data/lib/rubygems/stub_specification.rb +21 -28
- data/lib/rubygems/text.rb +21 -20
- data/lib/rubygems/tsort/.document +1 -0
- data/lib/rubygems/tsort/LICENSE.txt +22 -0
- data/lib/rubygems/tsort/lib/tsort.rb +454 -0
- data/lib/rubygems/tsort.rb +3 -0
- data/lib/rubygems/uninstaller.rb +98 -45
- data/lib/rubygems/unknown_command_spell_checker.rb +21 -0
- data/lib/rubygems/uri.rb +126 -0
- data/lib/rubygems/uri_formatter.rb +2 -3
- data/lib/rubygems/user_interaction.rb +43 -54
- data/lib/rubygems/util/licenses.rb +115 -10
- data/lib/rubygems/util/list.rb +0 -2
- data/lib/rubygems/util.rb +18 -12
- data/lib/rubygems/validator.rb +6 -8
- data/lib/rubygems/version.rb +29 -20
- data/lib/rubygems/version_option.rb +11 -5
- data/lib/rubygems.rb +192 -289
- data/rubygems-update.gemspec +4 -4
- data/setup.rb +11 -22
- data/test/rubygems/data/excon-0.7.7.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-rubygems-version.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/{lib/rubygems/test_case.rb → test/rubygems/helper.rb} +380 -314
- data/{lib → test}/rubygems/installer_test_case.rb +38 -24
- data/{lib → test}/rubygems/package/tar_test_case.rb +4 -6
- data/test/rubygems/packages/ascii_binder-0.1.10.1.gem +0 -0
- data/test/rubygems/packages/ill-formatted-platform-1.0.0.10.gem +0 -0
- data/test/rubygems/plugin/exception/rubygems_plugin.rb +1 -1
- data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -2
- data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +1 -1
- data/test/rubygems/private_ec_key.pem +9 -0
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
- data/test/rubygems/rubygems_plugin.rb +2 -4
- data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
- data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +4 -6
- data/test/rubygems/test_bundled_ca.rb +43 -50
- data/test/rubygems/test_config.rb +5 -7
- data/test/rubygems/test_deprecate.rb +87 -10
- data/test/rubygems/test_exit.rb +11 -0
- data/test/rubygems/test_gem.rb +719 -639
- data/test/rubygems/test_gem_available_set.rb +24 -26
- data/test/rubygems/test_gem_bundler_version_finder.rb +37 -44
- data/test/rubygems/test_gem_command.rb +78 -49
- data/test/rubygems/test_gem_command_manager.rb +98 -35
- data/test/rubygems/test_gem_commands_build_command.rb +275 -57
- data/test/rubygems/test_gem_commands_cert_command.rb +180 -125
- data/test/rubygems/test_gem_commands_check_command.rb +9 -11
- data/test/rubygems/test_gem_commands_cleanup_command.rb +78 -69
- data/test/rubygems/test_gem_commands_contents_command.rb +73 -42
- data/test/rubygems/test_gem_commands_dependency_command.rb +38 -40
- data/test/rubygems/test_gem_commands_environment_command.rb +60 -38
- data/test/rubygems/test_gem_commands_fetch_command.rb +163 -32
- data/test/rubygems/test_gem_commands_generate_index_command.rb +8 -14
- data/test/rubygems/test_gem_commands_help_command.rb +34 -16
- data/test/rubygems/test_gem_commands_info_command.rb +33 -9
- data/test/rubygems/test_gem_commands_install_command.rb +401 -198
- data/test/rubygems/test_gem_commands_list_command.rb +5 -7
- data/test/rubygems/test_gem_commands_lock_command.rb +11 -13
- data/test/rubygems/test_gem_commands_mirror.rb +3 -5
- data/test/rubygems/test_gem_commands_open_command.rb +16 -19
- data/test/rubygems/test_gem_commands_outdated_command.rb +23 -7
- data/test/rubygems/test_gem_commands_owner_command.rb +100 -46
- data/test/rubygems/test_gem_commands_pristine_command.rb +131 -99
- data/test/rubygems/test_gem_commands_push_command.rb +134 -66
- data/test/rubygems/test_gem_commands_query_command.rb +91 -91
- data/test/rubygems/test_gem_commands_search_command.rb +2 -4
- data/test/rubygems/test_gem_commands_server_command.rb +6 -50
- data/test/rubygems/test_gem_commands_setup_command.rb +288 -179
- data/test/rubygems/test_gem_commands_signin_command.rb +162 -28
- data/test/rubygems/test_gem_commands_signout_command.rb +3 -10
- data/test/rubygems/test_gem_commands_sources_command.rb +139 -32
- data/test/rubygems/test_gem_commands_specification_command.rb +81 -55
- data/test/rubygems/test_gem_commands_stale_command.rb +4 -6
- data/test/rubygems/test_gem_commands_uninstall_command.rb +80 -82
- data/test/rubygems/test_gem_commands_unpack_command.rb +32 -34
- data/test/rubygems/test_gem_commands_update_command.rb +335 -88
- data/test/rubygems/test_gem_commands_which_command.rb +12 -14
- data/test/rubygems/test_gem_commands_yank_command.rb +80 -44
- data/test/rubygems/test_gem_config_file.rb +114 -97
- data/test/rubygems/test_gem_dependency.rb +87 -87
- data/test/rubygems/test_gem_dependency_installer.rb +277 -391
- data/test/rubygems/test_gem_dependency_list.rb +57 -59
- data/test/rubygems/test_gem_dependency_resolution_error.rb +5 -7
- data/test/rubygems/test_gem_doctor.rb +73 -47
- data/test/rubygems/test_gem_ext_builder.rb +115 -109
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.lock +243 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.toml +10 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/build.rb +21 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +10 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/src/lib.rs +27 -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 +243 -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/build.rb +21 -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 +39 -0
- data/test/rubygems/test_gem_ext_cargo_builder.rb +178 -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 +75 -0
- data/test/rubygems/test_gem_ext_cmake_builder.rb +31 -38
- data/test/rubygems/test_gem_ext_configure_builder.rb +23 -39
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +66 -82
- data/test/rubygems/test_gem_ext_rake_builder.rb +49 -32
- data/test/rubygems/test_gem_gem_runner.rb +51 -8
- data/test/rubygems/test_gem_gemcutter_utilities.rb +87 -76
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +4 -6
- data/test/rubygems/test_gem_indexer.rb +62 -64
- data/test/rubygems/test_gem_install_update_options.rb +31 -21
- data/test/rubygems/test_gem_installer.rb +798 -491
- data/test/rubygems/test_gem_local_remote_options.rb +11 -13
- data/test/rubygems/test_gem_name_tuple.rb +4 -6
- data/test/rubygems/test_gem_package.rb +318 -283
- data/test/rubygems/test_gem_package_old.rb +18 -20
- data/test/rubygems/test_gem_package_tar_header.rb +64 -47
- data/test/rubygems/test_gem_package_tar_reader.rb +8 -10
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +18 -20
- data/test/rubygems/test_gem_package_tar_writer.rb +96 -100
- data/test/rubygems/test_gem_package_task.rb +58 -25
- data/test/rubygems/test_gem_path_support.rb +15 -21
- data/test/rubygems/test_gem_platform.rb +354 -201
- data/test/rubygems/test_gem_rdoc.rb +19 -21
- data/test/rubygems/test_gem_remote_fetcher.rb +376 -337
- data/test/rubygems/test_gem_request.rb +114 -86
- data/test/rubygems/test_gem_request_connection_pools.rb +30 -34
- data/test/rubygems/test_gem_request_set.rb +123 -124
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +222 -226
- data/test/rubygems/test_gem_request_set_lockfile.rb +93 -95
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +68 -70
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +136 -138
- data/test/rubygems/test_gem_requirement.rb +133 -54
- data/test/rubygems/test_gem_resolver.rb +149 -117
- data/test/rubygems/test_gem_resolver_activation_request.rb +6 -8
- data/test/rubygems/test_gem_resolver_api_set.rb +79 -78
- data/test/rubygems/test_gem_resolver_api_specification.rb +47 -49
- data/test/rubygems/test_gem_resolver_best_set.rb +43 -22
- data/test/rubygems/test_gem_resolver_composed_set.rb +1 -3
- data/test/rubygems/test_gem_resolver_conflict.rb +12 -14
- data/test/rubygems/test_gem_resolver_dependency_request.rb +15 -17
- data/test/rubygems/test_gem_resolver_git_set.rb +22 -24
- data/test/rubygems/test_gem_resolver_git_specification.rb +22 -23
- data/test/rubygems/test_gem_resolver_index_set.rb +14 -16
- data/test/rubygems/test_gem_resolver_index_specification.rb +16 -18
- data/test/rubygems/test_gem_resolver_installed_specification.rb +5 -7
- data/test/rubygems/test_gem_resolver_installer_set.rb +104 -44
- data/test/rubygems/test_gem_resolver_local_specification.rb +7 -9
- data/test/rubygems/test_gem_resolver_lock_set.rb +15 -17
- data/test/rubygems/test_gem_resolver_lock_specification.rb +17 -19
- data/test/rubygems/test_gem_resolver_requirement_list.rb +1 -3
- data/test/rubygems/test_gem_resolver_specification.rb +8 -12
- data/test/rubygems/test_gem_resolver_vendor_set.rb +9 -11
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +10 -12
- data/test/rubygems/test_gem_security.rb +104 -78
- data/test/rubygems/test_gem_security_policy.rb +92 -97
- data/test/rubygems/test_gem_security_signer.rb +45 -47
- data/test/rubygems/test_gem_security_trust_dir.rb +12 -14
- data/test/rubygems/test_gem_silent_ui.rb +46 -42
- data/test/rubygems/test_gem_source.rb +53 -52
- data/test/rubygems/test_gem_source_fetch_problem.rb +16 -8
- data/test/rubygems/test_gem_source_git.rb +69 -69
- data/test/rubygems/test_gem_source_installed.rb +16 -18
- data/test/rubygems/test_gem_source_list.rb +5 -6
- data/test/rubygems/test_gem_source_local.rb +15 -17
- data/test/rubygems/test_gem_source_lock.rb +31 -33
- data/test/rubygems/test_gem_source_specific_file.rb +18 -20
- data/test/rubygems/test_gem_source_subpath_problem.rb +49 -0
- data/test/rubygems/test_gem_source_vendor.rb +13 -15
- data/test/rubygems/test_gem_spec_fetcher.rb +74 -67
- data/test/rubygems/test_gem_specification.rb +888 -1024
- data/test/rubygems/test_gem_stream_ui.rb +23 -23
- data/test/rubygems/test_gem_stub_specification.rb +39 -57
- data/test/rubygems/test_gem_text.rb +8 -4
- data/test/rubygems/test_gem_uninstaller.rb +233 -104
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +3 -5
- data/test/rubygems/test_gem_uri.rb +39 -0
- data/test/rubygems/test_gem_uri_formatter.rb +14 -16
- data/test/rubygems/test_gem_util.rb +37 -35
- data/test/rubygems/test_gem_validator.rb +10 -12
- data/test/rubygems/test_gem_version.rb +31 -31
- data/test/rubygems/test_gem_version_option.rb +16 -18
- data/test/rubygems/test_kernel.rb +46 -60
- data/test/rubygems/test_project_sanity.rb +8 -3
- data/test/rubygems/test_remote_fetch_error.rb +7 -9
- data/test/rubygems/test_require.rb +240 -167
- data/test/rubygems/test_rubygems.rb +74 -0
- data/{lib/rubygems/test_utilities.rb → test/rubygems/utilities.rb} +30 -39
- data/test/test_changelog_generator.rb +17 -0
- metadata +158 -146
- data/.bundle/config +0 -2
- data/.rubocop.yml +0 -91
- data/Gemfile +0 -8
- data/Gemfile.lock +0 -43
- data/Rakefile +0 -428
- data/bundler/CODE_OF_CONDUCT.md +0 -136
- data/bundler/lib/bundler/gemdeps.rb +0 -29
- data/bundler/lib/bundler/psyched_yaml.rb +0 -37
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb +0 -66
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
- data/bundler/man/bundle-add.1.txt +0 -58
- data/bundler/man/bundle-binstubs.1.txt +0 -48
- data/bundler/man/bundle-cache.1.txt +0 -78
- data/bundler/man/bundle-check.1.txt +0 -33
- data/bundler/man/bundle-clean.1.txt +0 -26
- data/bundler/man/bundle-config.1.txt +0 -528
- data/bundler/man/bundle-doctor.1.txt +0 -44
- data/bundler/man/bundle-exec.1.txt +0 -178
- data/bundler/man/bundle-gem.1.txt +0 -91
- data/bundler/man/bundle-info.1.txt +0 -21
- data/bundler/man/bundle-init.1.txt +0 -34
- data/bundler/man/bundle-inject.1.txt +0 -32
- data/bundler/man/bundle-install.1.txt +0 -401
- data/bundler/man/bundle-list.1.txt +0 -43
- data/bundler/man/bundle-lock.1.txt +0 -93
- data/bundler/man/bundle-open.1.txt +0 -29
- data/bundler/man/bundle-outdated.1.txt +0 -131
- data/bundler/man/bundle-platform.1.txt +0 -57
- data/bundler/man/bundle-pristine.1.txt +0 -44
- data/bundler/man/bundle-remove.1.txt +0 -34
- data/bundler/man/bundle-show.1.txt +0 -27
- data/bundler/man/bundle-update.1.txt +0 -390
- data/bundler/man/bundle-viz.1.txt +0 -39
- data/bundler/man/bundle.1.txt +0 -116
- data/bundler/man/gemfile.5.txt +0 -649
- data/lib/rubygems/psych_additions.rb +0 -10
- data/lib/rubygems/server.rb +0 -879
- data/lib/rubygems/source_local.rb +0 -7
- data/lib/rubygems/source_specific_file.rb +0 -6
- data/lib/rubygems/syck_hack.rb +0 -79
- data/lib/rubygems/uri_parser.rb +0 -36
- data/lib/rubygems/uri_parsing.rb +0 -23
- data/lib/ubygems.rb +0 -14
- 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 -612
- data/tmp/.keep +0 -0
- data/util/CL2notes +0 -55
- data/util/bisect +0 -10
- data/util/ci.sh +0 -62
- data/util/cops/deprecations.rb +0 -52
- data/util/create_certs.rb +0 -171
- data/util/create_certs.sh +0 -27
- data/util/create_encrypted_key.rb +0 -16
- data/util/generate_spdx_license_list.rb +0 -63
- data/util/patch_with_prs.rb +0 -77
- data/util/rubocop +0 -8
- data/util/update_bundled_ca_certificates.rb +0 -137
- data/util/update_changelog.rb +0 -64
- /data/bundler/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
- /data/bundler/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
- /data/bundler/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
- /data/bundler/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
- /data/bundler/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +0 -0
- /data/bundler/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
- /data/bundler/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
- /data/bundler/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
- /data/bundler/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
- /data/bundler/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
@@ -1,25 +1,1006 @@
|
|
1
|
-
#
|
1
|
+
# 3.3.22 / 2022-09-07
|
2
2
|
|
3
|
-
|
3
|
+
## Enhancements:
|
4
4
|
|
5
|
-
|
5
|
+
* Support non gnu libc arm-linux-eabi platforms. Pull request #5889 by
|
6
|
+
ntkme
|
7
|
+
* Installs bundler 2.3.22 as a default gem.
|
6
8
|
|
7
|
-
|
8
|
-
|
9
|
+
## Bug fixes:
|
10
|
+
|
11
|
+
* Fix `gem info` with explicit `--version`. Pull request #5884 by
|
12
|
+
tonyaraujop
|
13
|
+
|
14
|
+
# 3.3.21 / 2022-08-24
|
15
|
+
|
16
|
+
## Enhancements:
|
17
|
+
|
18
|
+
* Support non gnu libc linux platforms. Pull request #5852 by
|
19
|
+
deivid-rodriguez
|
20
|
+
* Installs bundler 2.3.21 as a default gem.
|
21
|
+
|
22
|
+
# 3.3.20 / 2022-08-10
|
23
|
+
|
24
|
+
## Enhancements:
|
25
|
+
|
26
|
+
* Include backtrace with crashes by default. Pull request #5811 by
|
27
|
+
deivid-rodriguez
|
28
|
+
* Don't create broken symlinks when a gem includes them, but print a
|
29
|
+
warning instead. Pull request #5801 by deivid-rodriguez
|
30
|
+
* Warn (rather than crash) when setting `nil` specification versions. Pull
|
31
|
+
request #5794 by deivid-rodriguez
|
32
|
+
* Installs bundler 2.3.20 as a default gem.
|
33
|
+
|
34
|
+
## Bug fixes:
|
35
|
+
|
36
|
+
* Always consider installed specs for resolution, even if prereleases.
|
37
|
+
Pull request #5821 by deivid-rodriguez
|
38
|
+
* Fix `gem install` with `--platform` flag not matching simulated platform
|
39
|
+
correctly. Pull request #5820 by deivid-rodriguez
|
40
|
+
* Fix platform matching for index specs. Pull request #5795 by Ilushkanama
|
41
|
+
|
42
|
+
# 3.3.19 / 2022-07-27
|
43
|
+
|
44
|
+
## Enhancements:
|
45
|
+
|
46
|
+
* Display mfa warnings on `gem signin`. Pull request #5590 by aellispierce
|
47
|
+
* Require fileutils more lazily when installing gems. Pull request #5738
|
48
|
+
by deivid-rodriguez
|
49
|
+
* Fix upgrading RubyGems with a customized `Gem.default_dir`. Pull request
|
50
|
+
#5728 by deivid-rodriguez
|
51
|
+
* Stop using `/dev/null` for silent ui for WASI platform. Pull request
|
52
|
+
#5703 by kateinoigakukun
|
53
|
+
* Unify loading `Gem::Requirement`. Pull request #5596 by deivid-rodriguez
|
54
|
+
* Installs bundler 2.3.19 as a default gem.
|
55
|
+
|
56
|
+
## Bug fixes:
|
57
|
+
|
58
|
+
* Fix `ruby setup.rb` with `--destdir` writing outside of `--destdir`.
|
59
|
+
Pull request #5737 by deivid-rodriguez
|
60
|
+
|
61
|
+
## Documentation:
|
62
|
+
|
63
|
+
* Fix wrong information about default RubyGems source. Pull request #5723
|
64
|
+
by tnir
|
65
|
+
|
66
|
+
# 3.3.18 / 2022-07-14
|
67
|
+
|
68
|
+
## Enhancements:
|
69
|
+
|
70
|
+
* Make platform `universal-mingw32` match "x64-mingw-ucrt". Pull request
|
71
|
+
#5655 by johnnyshields
|
72
|
+
* Add more descriptive messages when `gem update` fails to update some
|
73
|
+
gems. Pull request #5676 by brianleshopify
|
74
|
+
* Installs bundler 2.3.18 as a default gem.
|
75
|
+
|
76
|
+
## Bug fixes:
|
77
|
+
|
78
|
+
* Make sure RubyGems prints no warnings when loading plugins. Pull request
|
79
|
+
#5607 by deivid-rodriguez
|
80
|
+
|
81
|
+
# 3.3.17 / 2022-06-29
|
82
|
+
|
83
|
+
## Enhancements:
|
84
|
+
|
85
|
+
* Document `gem env` argument aliases and add `gem env user_gemhome` and
|
86
|
+
`gem env user_gemdir`. Pull request #5644 by deivid-rodriguez
|
87
|
+
* Improve error message when `operating_system.rb` fails to load. Pull
|
88
|
+
request #5658 by deivid-rodriguez
|
89
|
+
* Clean up temporary directory after `generate_index --update`. Pull
|
90
|
+
request #5653 by graywolf-at-work
|
91
|
+
* Simplify extension builder. Pull request #5626 by deivid-rodriguez
|
92
|
+
* Installs bundler 2.3.17 as a default gem.
|
93
|
+
|
94
|
+
## Documentation:
|
95
|
+
|
96
|
+
* Modify RubyGems issue template to be like the one for Bundler. Pull
|
97
|
+
request #5643 by deivid-rodriguez
|
98
|
+
|
99
|
+
# 3.3.16 / 2022-06-15
|
100
|
+
|
101
|
+
## Enhancements:
|
102
|
+
|
103
|
+
* Auto-fix and warn gem packages including a gemspec with `require_paths`
|
104
|
+
as an array of arrays. Pull request #5615 by deivid-rodriguez
|
105
|
+
* Misc cargo builder improvements. Pull request #5459 by ianks
|
106
|
+
* Installs bundler 2.3.16 as a default gem.
|
107
|
+
|
108
|
+
## Bug fixes:
|
109
|
+
|
110
|
+
* Fix incorrect password redaction when there's an error in `gem source
|
111
|
+
-a`. Pull request #5623 by deivid-rodriguez
|
112
|
+
* Fix another regression when loading old marshaled specs. Pull request
|
113
|
+
#5610 by deivid-rodriguez
|
114
|
+
|
115
|
+
# 3.3.15 / 2022-06-01
|
116
|
+
|
117
|
+
## Enhancements:
|
118
|
+
|
119
|
+
* Support the change of did_you_mean about `Exception#detailed_message`.
|
120
|
+
Pull request #5560 by mame
|
121
|
+
* Installs bundler 2.3.15 as a default gem.
|
122
|
+
|
123
|
+
## Bug fixes:
|
124
|
+
|
125
|
+
* Fix loading old marshaled specs including `YAML::PrivateType` constant.
|
126
|
+
Pull request #5415 by deivid-rodriguez
|
127
|
+
* Fix rubygems update when non default `--install-dir` is configured. Pull
|
128
|
+
request #5566 by deivid-rodriguez
|
129
|
+
|
130
|
+
# 3.3.14 / 2022-05-18
|
131
|
+
|
132
|
+
## Enhancements:
|
133
|
+
|
134
|
+
* Installs bundler 2.3.14 as a default gem.
|
135
|
+
|
136
|
+
# 3.3.13 / 2022-05-04
|
137
|
+
|
138
|
+
## Enhancements:
|
139
|
+
|
140
|
+
* Installs bundler 2.3.13 as a default gem.
|
141
|
+
|
142
|
+
## Bug fixes:
|
143
|
+
|
144
|
+
* Fix regression when resolving ruby constraints. Pull request #5486 by
|
145
|
+
deivid-rodriguez
|
146
|
+
|
147
|
+
## Documentation:
|
148
|
+
|
149
|
+
* Clarify description of owner-flags. Pull request #5497 by kronn
|
150
|
+
|
151
|
+
# 3.3.12 / 2022-04-20
|
152
|
+
|
153
|
+
## Enhancements:
|
154
|
+
|
155
|
+
* Less error swallowing when installing gems. Pull request #5475 by
|
156
|
+
deivid-rodriguez
|
157
|
+
* Stop considering `RUBY_PATCHLEVEL` for resolution. Pull request #5472 by
|
158
|
+
deivid-rodriguez
|
159
|
+
* Bump vendored optparse to latest master. Pull request #5466 by
|
160
|
+
deivid-rodriguez
|
161
|
+
* Installs bundler 2.3.12 as a default gem.
|
162
|
+
|
163
|
+
## Documentation:
|
164
|
+
|
165
|
+
* Fix formatting in docs. Pull request #5470 by peterzhu2118
|
166
|
+
* Fix a typo. Pull request #5401 by znz
|
167
|
+
|
168
|
+
# 3.3.11 / 2022-04-07
|
169
|
+
|
170
|
+
## Enhancements:
|
171
|
+
|
172
|
+
* Enable mfa on specific keys during gem signin. Pull request #5305 by
|
173
|
+
aellispierce
|
174
|
+
* Prefer `__dir__` to `__FILE__`. Pull request #5444 by deivid-rodriguez
|
175
|
+
* Add cargo builder for rust extensions. Pull request #5175 by ianks
|
176
|
+
* Installs bundler 2.3.11 as a default gem.
|
177
|
+
|
178
|
+
## Documentation:
|
179
|
+
|
180
|
+
* Improve RDoc setup. Pull request #5398 by deivid-rodriguez
|
181
|
+
|
182
|
+
# 3.3.10 / 2022-03-23
|
183
|
+
|
184
|
+
## Enhancements:
|
185
|
+
|
186
|
+
* Installs bundler 2.3.10 as a default gem.
|
187
|
+
|
188
|
+
## Documentation:
|
189
|
+
|
190
|
+
* Enable `Gem::Package` example in RDoc documentation. Pull request #5399
|
191
|
+
by nobu
|
192
|
+
* Unhide RDoc documentation from top level `Gem` module. Pull request
|
193
|
+
#5396 by nobu
|
194
|
+
|
195
|
+
# 3.3.9 / 2022-03-09
|
196
|
+
|
197
|
+
## Enhancements:
|
198
|
+
|
199
|
+
* Installs bundler 2.3.9 as a default gem.
|
200
|
+
|
201
|
+
# 3.3.8 / 2022-02-23
|
202
|
+
|
203
|
+
## Enhancements:
|
204
|
+
|
205
|
+
* Installs bundler 2.3.8 as a default gem.
|
206
|
+
|
207
|
+
# 3.3.7 / 2022-02-09
|
208
|
+
|
209
|
+
## Enhancements:
|
210
|
+
|
211
|
+
* Installs bundler 2.3.7 as a default gem.
|
212
|
+
|
213
|
+
## Documentation:
|
214
|
+
|
215
|
+
* Fix missing rdoc for `Gem::Version`. Pull request #5299 by nevans
|
216
|
+
|
217
|
+
# 3.3.6 / 2022-01-26
|
218
|
+
|
219
|
+
## Enhancements:
|
220
|
+
|
221
|
+
* Forbid downgrading past the originally shipped version on Ruby 3.1. Pull
|
222
|
+
request #5301 by deivid-rodriguez
|
223
|
+
* Support `--enable-load-relative` inside binstubs. Pull request #2929 by
|
224
|
+
deivid-rodriguez
|
225
|
+
* Let `Version#<=>` accept a String. Pull request #5275 by amatsuda
|
226
|
+
* Installs bundler 2.3.6 as a default gem.
|
227
|
+
|
228
|
+
## Bug fixes:
|
229
|
+
|
230
|
+
* Avoid `flock` on non Windows systems, since it causing issues on NFS
|
231
|
+
file systems. Pull request #5278 by deivid-rodriguez
|
232
|
+
* Fix `gem update --system` for already installed version of
|
233
|
+
`rubygems-update`. Pull request #5285 by loadkpi
|
234
|
+
|
235
|
+
# 3.3.5 / 2022-01-12
|
236
|
+
|
237
|
+
## Enhancements:
|
238
|
+
|
239
|
+
* Don't activate `yaml` gem from RubyGems. Pull request #5266 by
|
240
|
+
deivid-rodriguez
|
241
|
+
* Let `gem fetch` understand `<gem>:<version>` syntax and
|
242
|
+
`--[no-]suggestions` flag. Pull request #5242 by ximenasandoval
|
243
|
+
* Installs bundler 2.3.5 as a default gem.
|
244
|
+
|
245
|
+
## Bug fixes:
|
246
|
+
|
247
|
+
* Fix `gem install <non-existent-gem> --force` crash. Pull request #5262
|
248
|
+
by deivid-rodriguez
|
249
|
+
* Fix longstanding `gem install` failure on JRuby. Pull request #5228 by
|
250
|
+
deivid-rodriguez
|
251
|
+
|
252
|
+
## Documentation:
|
253
|
+
|
254
|
+
* Markup `Gem::Specification` documentation with RDoc notations. Pull
|
255
|
+
request #5268 by nobu
|
256
|
+
|
257
|
+
# 3.3.4 / 2021-12-29
|
258
|
+
|
259
|
+
## Enhancements:
|
260
|
+
|
261
|
+
* Don't redownload `rubygems-update` package if already there. Pull
|
262
|
+
request #5230 by deivid-rodriguez
|
263
|
+
* Installs bundler 2.3.4 as a default gem.
|
264
|
+
|
265
|
+
## Bug fixes:
|
266
|
+
|
267
|
+
* Fix `gem update --system` crashing when latest version not supported.
|
268
|
+
Pull request #5191 by deivid-rodriguez
|
269
|
+
|
270
|
+
## Performance:
|
271
|
+
|
272
|
+
* Make SpecificationPolicy autoload constant. Pull request #5222 by pocke
|
273
|
+
|
274
|
+
# 3.3.3 / 2021-12-24
|
275
|
+
|
276
|
+
## Enhancements:
|
277
|
+
|
278
|
+
* Installs bundler 2.3.3 as a default gem.
|
279
|
+
|
280
|
+
## Bug fixes:
|
281
|
+
|
282
|
+
* Fix gem installation failing in Solaris due to bad `IO#flock` usage.
|
283
|
+
Pull request #5216 by mame
|
284
|
+
|
285
|
+
# 3.3.2 / 2021-12-23
|
286
|
+
|
287
|
+
## Enhancements:
|
288
|
+
|
289
|
+
* Fix deprecations when activating DidYouMean for misspelled command
|
290
|
+
suggestions. Pull request #5211 by yuki24
|
291
|
+
* Installs bundler 2.3.2 as a default gem.
|
292
|
+
|
293
|
+
## Bug fixes:
|
294
|
+
|
295
|
+
* Fix gemspec truncation. Pull request #5208 by deivid-rodriguez
|
296
|
+
|
297
|
+
# 3.3.1 / 2021-12-22
|
298
|
+
|
299
|
+
## Enhancements:
|
300
|
+
|
301
|
+
* Fix compatibility with OpenSSL 3.0. Pull request #5196 by rhenium
|
302
|
+
* Remove hard errors when matching major bundler not found. Pull request
|
303
|
+
#5181 by deivid-rodriguez
|
304
|
+
* Installs bundler 2.3.1 as a default gem.
|
305
|
+
|
306
|
+
# 3.3.0 / 2021-12-21
|
307
|
+
|
308
|
+
## Breaking changes:
|
309
|
+
|
310
|
+
* Removed deprecated `gem server` command. Pull request #5034 by hsbt
|
311
|
+
* Remove MacOS specific gem layout. Pull request #4833 by deivid-rodriguez
|
312
|
+
* Default `gem update` documentation format is now only `ri`. Pull request
|
313
|
+
#3888 by hsbt
|
314
|
+
|
315
|
+
## Features:
|
316
|
+
|
317
|
+
* Give command misspelled suggestions via `did_you_mean` gem. Pull request
|
318
|
+
#3904 by hsbt
|
319
|
+
|
320
|
+
## Performance:
|
321
|
+
|
322
|
+
* Avoid some unnecessary stat calls. Pull request #3887 by kares
|
323
|
+
* Improve spell checking suggestion performance by
|
324
|
+
vendoring`DidYouMean::Levenshtein.distance` from `did_you_mean-1.4.0`.
|
325
|
+
Pull request #3856 by austinpray
|
326
|
+
|
327
|
+
## Enhancements:
|
328
|
+
|
329
|
+
* Set `BUNDLER_VERSION` when `bundle _<version>_` is passed. Pull request
|
330
|
+
#5180 by deivid-rodriguez
|
331
|
+
* Don't require `rdoc` for `gem uninstall`. Pull request #4691 by ndren
|
332
|
+
* More focused rescue on extension builder exception to get more
|
333
|
+
information on errors. Pull request #4189 by deivid-rodriguez
|
334
|
+
* Installs bundler 2.3.0 as a default gem.
|
335
|
+
|
336
|
+
## Bug fixes:
|
337
|
+
|
338
|
+
* Fix encoding mismatch issues when writing gem packages. Pull request
|
339
|
+
#5162 by deivid-rodriguez
|
340
|
+
* Fix broken brew formula due to loading `operating_system.rb`
|
341
|
+
customizations too late. Pull request #5154 by deivid-rodriguez
|
342
|
+
* Properly fetch `Gem#latest_spec_for` with multiple sources. Pull request
|
343
|
+
#2764 by kevlogan90
|
344
|
+
* Fix upgrade crashing when multiple versions of `fileutils` installed.
|
345
|
+
Pull request #5140 by deivid-rodriguez
|
346
|
+
|
347
|
+
# 3.2.33 / 2021-12-07
|
348
|
+
|
349
|
+
## Deprecations:
|
350
|
+
|
351
|
+
* Deprecate typo name. Pull request #5109 by nobu
|
352
|
+
|
353
|
+
## Enhancements:
|
354
|
+
|
355
|
+
* Add login & logout alias for the signin & signout commands. Pull request
|
356
|
+
#5133 by colby-swandale
|
357
|
+
* Fix race conditions when reading & writing gemspecs concurrently. Pull
|
358
|
+
request #4408 by deivid-rodriguez
|
359
|
+
* Installs bundler 2.2.33 as a default gem.
|
360
|
+
|
361
|
+
## Bug fixes:
|
362
|
+
|
363
|
+
* Fix `ruby setup.rb` trying to write outside of `--destdir`. Pull request
|
364
|
+
#5053 by deivid-rodriguez
|
365
|
+
|
366
|
+
## Documentation:
|
367
|
+
|
368
|
+
* Move required_ruby_version gemspec attribute to recommended section.
|
369
|
+
Pull request #5130 by simi
|
370
|
+
* Ignore to generate the documentation from vendored libraries. Pull
|
371
|
+
request #5118 by hsbt
|
372
|
+
|
373
|
+
# 3.2.32 / 2021-11-23
|
374
|
+
|
375
|
+
## Enhancements:
|
376
|
+
|
377
|
+
* Refactor installer thread safety protections. Pull request #5050 by
|
378
|
+
deivid-rodriguez
|
379
|
+
* Allow gem activation from `operating_system.rb`. Pull request #5044 by
|
380
|
+
deivid-rodriguez
|
381
|
+
* Installs bundler 2.2.32 as a default gem.
|
382
|
+
|
383
|
+
# 3.2.31 / 2021-11-08
|
384
|
+
|
385
|
+
## Enhancements:
|
386
|
+
|
387
|
+
* Don't pass empty `DESTDIR` to `nmake` since it works differently from
|
388
|
+
standard `make`. Pull request #5057 by hsbt
|
389
|
+
* Fix `gem install` vs `gem fetch` inconsistency. Pull request #5037 by
|
390
|
+
deivid-rodriguez
|
391
|
+
* Lazily load and vendor `optparse`. Pull request #4881 by
|
392
|
+
deivid-rodriguez
|
393
|
+
* Use a vendored copy of `tsort` internally. Pull request #5027 by
|
394
|
+
deivid-rodriguez
|
395
|
+
* Install bundler 2.2.31 as a default gem.
|
396
|
+
|
397
|
+
## Bug fixes:
|
398
|
+
|
399
|
+
* Fix `ruby setup.rb` when `--prefix` is passed. Pull request #5051 by
|
400
|
+
deivid-rodriguez
|
401
|
+
* Don't apply `--destdir` twice when running `setup.rb`. Pull request
|
402
|
+
#2768 by alyssais
|
403
|
+
|
404
|
+
# 3.2.30 / 2021-10-26
|
405
|
+
|
406
|
+
## Enhancements:
|
407
|
+
|
408
|
+
* Add support to build and sign certificates with multiple key algorithms.
|
409
|
+
Pull request #4991 by doodzik
|
410
|
+
* Avoid loading the `digest` gem unnecessarily. Pull request #4979 by
|
411
|
+
deivid-rodriguez
|
412
|
+
* Prefer `require_relative` for all internal requires. Pull request #4978
|
413
|
+
by deivid-rodriguez
|
414
|
+
* Add missing `require` of `time` within
|
415
|
+
`Gem::Request.verify_certificate_message`. Pull request #4975 by nobu
|
416
|
+
* Install bundler 2.2.30 as a default gem.
|
417
|
+
|
418
|
+
## Performance:
|
419
|
+
|
420
|
+
* Speed up `gem install`, specially under Windows. Pull request #4960 by
|
421
|
+
deivid-rodriguez
|
422
|
+
|
423
|
+
# 3.2.29 / 2021-10-08
|
424
|
+
|
425
|
+
## Enhancements:
|
426
|
+
|
427
|
+
* Only disallow FIXME/TODO for first word of gemspec description. Pull
|
428
|
+
request #4937 by duckinator
|
429
|
+
* Install bundler 2.2.29 as a default gem.
|
430
|
+
|
431
|
+
## Bug fixes:
|
432
|
+
|
433
|
+
* Fix `wordy` method in `SourceFetchProblem` changing the password of
|
434
|
+
source. Pull request #4910 by Huangxiaodui
|
435
|
+
|
436
|
+
## Performance:
|
437
|
+
|
438
|
+
* Improve `require` performance, particularly on systems with a lot of
|
439
|
+
gems installed. Pull request #4951 by pocke
|
440
|
+
|
441
|
+
# 3.2.28 / 2021-09-23
|
442
|
+
|
443
|
+
## Enhancements:
|
444
|
+
|
445
|
+
* Support MINGW-UCRT. Pull request #4925 by hsbt
|
446
|
+
* Only check if descriptions *start with* FIXME/TODO. Pull request #4841
|
447
|
+
by duckinator
|
448
|
+
* Avoid loading `uri` unnecessarily when activating gems. Pull request
|
449
|
+
#4897 by deivid-rodriguez
|
450
|
+
* Install bundler 2.2.28 as a default gem.
|
451
|
+
|
452
|
+
## Bug fixes:
|
453
|
+
|
454
|
+
* Fix redacted credentials being sent to gemserver. Pull request #4919 by
|
455
|
+
jdliss
|
456
|
+
|
457
|
+
# 3.2.27 / 2021-09-03
|
458
|
+
|
459
|
+
## Enhancements:
|
460
|
+
|
461
|
+
* Redact credentails when printing URI. Pull request #4868 by intuxicated
|
462
|
+
* Prefer `require_relative` to `require` for internal requires. Pull
|
463
|
+
request #4858 by deivid-rodriguez
|
464
|
+
* Prioritise gems with higher version for fetching metadata, and stop
|
465
|
+
fetching once we find a valid candidate. Pull request #4843 by intuxicated
|
466
|
+
* Install bundler 2.2.27 as a default gem.
|
467
|
+
|
468
|
+
# 3.2.26 / 2021-08-17
|
469
|
+
|
470
|
+
## Enhancements:
|
471
|
+
|
472
|
+
* Enhance the error handling for loading the
|
473
|
+
`rubygems/defaults/operating_system` file. Pull request #4824 by
|
474
|
+
intuxicated
|
475
|
+
* Ignore `RUBYGEMS_GEMDEPS` for the bundler gem. Pull request #4532 by
|
476
|
+
deivid-rodriguez
|
477
|
+
* Install bundler 2.2.26 as a default gem.
|
478
|
+
|
479
|
+
## Bug fixes:
|
480
|
+
|
481
|
+
* Also load user installed rubygems plugins. Pull request #4829 by
|
482
|
+
deivid-rodriguez
|
483
|
+
|
484
|
+
# 3.2.25 / 2021-07-30
|
485
|
+
|
486
|
+
## Enhancements:
|
487
|
+
|
488
|
+
* Don't load the `base64` library since it's not used. Pull request #4785
|
489
|
+
by deivid-rodriguez
|
490
|
+
* Don't load the `resolv` library since it's not used. Pull request #4784
|
491
|
+
by deivid-rodriguez
|
492
|
+
* Lazily load `shellwords` library. Pull request #4783 by deivid-rodriguez
|
493
|
+
* Check requirements class before loading marshalled requirements. Pull
|
494
|
+
request #4651 by nobu
|
495
|
+
* Install bundler 2.2.25 as a default gem.
|
496
|
+
|
497
|
+
## Bug fixes:
|
498
|
+
|
499
|
+
* Add missing `require 'fileutils'` in `Gem::ConfigFile`. Pull request
|
500
|
+
#4768 by ybiquitous
|
501
|
+
|
502
|
+
# 3.2.24 / 2021-07-15
|
503
|
+
|
504
|
+
## Enhancements:
|
505
|
+
|
506
|
+
* Install bundler 2.2.24 as a default gem.
|
507
|
+
|
508
|
+
## Bug fixes:
|
509
|
+
|
510
|
+
* Fix contradictory message about deletion of default gem. Pull request
|
511
|
+
#4739 by jaredbeck
|
512
|
+
|
513
|
+
## Documentation:
|
514
|
+
|
515
|
+
* Add a description about `GEM_HOST_OTP_CODE` to help text. Pull request
|
516
|
+
#4742 by ybiquitous
|
517
|
+
|
518
|
+
# 3.2.23 / 2021-07-09
|
519
|
+
|
520
|
+
## Enhancements:
|
521
|
+
|
522
|
+
* Rewind IO source to allow working with contents in memory. Pull request
|
523
|
+
#4729 by drcapulet
|
524
|
+
* Install bundler 2.2.23 as a default gem.
|
525
|
+
|
526
|
+
# 3.2.22 / 2021-07-06
|
527
|
+
|
528
|
+
## Enhancements:
|
529
|
+
|
530
|
+
* Allow setting `--otp` via `GEM_HOST_OTP_CODE`. Pull request #4697 by
|
531
|
+
CGA1123
|
532
|
+
* Fixes for the edge case when openssl library is missing. Pull request
|
533
|
+
#4695 by rhenium
|
534
|
+
* Install bundler 2.2.22 as a default gem.
|
535
|
+
|
536
|
+
# 3.2.21 / 2021-06-23
|
537
|
+
|
538
|
+
## Enhancements:
|
539
|
+
|
540
|
+
* Fix typo in OpenSSL detection. Pull request #4679 by osyoyu
|
541
|
+
* Add the most recent licenses from spdx.org. Pull request #4662 by nobu
|
542
|
+
* Simplify setup.rb code to allow installing rubygems from source on
|
543
|
+
truffleruby 21.0 and 21.1. Pull request #4624 by deivid-rodriguez
|
544
|
+
* Install bundler 2.2.21 as a default gem.
|
545
|
+
|
546
|
+
## Bug fixes:
|
547
|
+
|
548
|
+
* Create credentials folder when setting API keys if not there yet. Pull
|
549
|
+
request #4665 by deivid-rodriguez
|
550
|
+
|
551
|
+
# 3.2.20 / 2021-06-11
|
552
|
+
|
553
|
+
## Security fixes:
|
554
|
+
|
555
|
+
* Verify plaform before installing to avoid potential remote code
|
556
|
+
execution. Pull request #4667 by sonalkr132
|
557
|
+
|
558
|
+
## Enhancements:
|
559
|
+
|
560
|
+
* Add better specification policy error description. Pull request #4658 by
|
561
|
+
ceritium
|
562
|
+
* Install bundler 2.2.20 as a default gem.
|
563
|
+
|
564
|
+
# 3.2.19 / 2021-05-31
|
565
|
+
|
566
|
+
## Enhancements:
|
567
|
+
|
568
|
+
* Fix `gem help build` output format. Pull request #4613 by tnir
|
569
|
+
* Install bundler 2.2.19 as a default gem.
|
570
|
+
|
571
|
+
# 3.2.18 / 2021-05-25
|
572
|
+
|
573
|
+
## Enhancements:
|
574
|
+
|
575
|
+
* Don't leave temporary directory around when building extensions to
|
576
|
+
improve build reproducibility. Pull request #4610 by baloo
|
577
|
+
* Install bundler 2.2.18 as a default gem.
|
578
|
+
|
579
|
+
# 3.2.17 / 2021-05-05
|
580
|
+
|
581
|
+
## Enhancements:
|
582
|
+
|
583
|
+
* Only print month & year in deprecation messages. Pull request #3085 by
|
584
|
+
Schwad
|
585
|
+
* Make deprecate method support ruby3's keyword arguments. Pull request
|
586
|
+
#4558 by mame
|
587
|
+
* Update the default bindir on macOS. Pull request #4524 by nobu
|
588
|
+
* Prefer File.open instead of Kernel#open. Pull request #4529 by mame
|
589
|
+
* Install bundler 2.2.17 as a default gem.
|
590
|
+
|
591
|
+
## Documentation:
|
592
|
+
|
593
|
+
* Fix usage messages to reflect the current POSIX-compatible behaviour.
|
594
|
+
Pull request #4551 by graywolf-at-work
|
595
|
+
|
596
|
+
# 3.2.16 / 2021-04-08
|
597
|
+
|
598
|
+
## Enhancements:
|
599
|
+
|
600
|
+
* Install bundler 2.2.16 as a default gem.
|
601
|
+
|
602
|
+
## Bug fixes:
|
603
|
+
|
604
|
+
* Correctly handle symlinks. Pull request #2836 by voxik
|
605
|
+
|
606
|
+
# 3.2.15 / 2021-03-19
|
607
|
+
|
608
|
+
## Enhancements:
|
609
|
+
|
610
|
+
* Prevent downgrades to untested rubygems versions. Pull request #4460 by
|
611
|
+
deivid-rodriguez
|
612
|
+
* Install bundler 2.2.15 as a default gem.
|
613
|
+
|
614
|
+
## Bug fixes:
|
615
|
+
|
616
|
+
* Fix missing require breaking `gem cert`. Pull request #4464 by lukehinds
|
617
|
+
|
618
|
+
# 3.2.14 / 2021-03-08
|
619
|
+
|
620
|
+
## Enhancements:
|
621
|
+
|
622
|
+
* Less wrapping of network errors. Pull request #4064 by deivid-rodriguez
|
623
|
+
* Install bundler 2.2.14 as a default gem.
|
624
|
+
|
625
|
+
## Bug fixes:
|
626
|
+
|
627
|
+
* Revert addition of support for `musl` variants to restore graceful
|
628
|
+
fallback on Alpine. Pull request #4434 by deivid-rodriguez
|
629
|
+
|
630
|
+
# 3.2.13 / 2021-03-03
|
631
|
+
|
632
|
+
## Enhancements:
|
633
|
+
|
634
|
+
* Install bundler 2.2.13 as a default gem.
|
635
|
+
|
636
|
+
## Bug fixes:
|
637
|
+
|
638
|
+
* Support non-gnu libc linux platforms. Pull request #4082 by lloeki
|
639
|
+
|
640
|
+
# 3.2.12 / 2021-03-01
|
641
|
+
|
642
|
+
## Enhancements:
|
643
|
+
|
644
|
+
* Install bundler 2.2.12 as a default gem.
|
645
|
+
|
646
|
+
## Bug fixes:
|
647
|
+
|
648
|
+
* Restore the ability to manually install extension gems. Pull request
|
649
|
+
#4384 by cfis
|
650
|
+
|
651
|
+
# 3.2.11 / 2021-02-17
|
652
|
+
|
653
|
+
## Enhancements:
|
654
|
+
|
655
|
+
* Optionally fallback to IPv4 when IPv6 is unreachable. Pull request #2662
|
656
|
+
by sonalkr132
|
657
|
+
* Install bundler 2.2.11 as a default gem.
|
658
|
+
|
659
|
+
# 3.2.10 / 2021-02-15
|
660
|
+
|
661
|
+
## Enhancements:
|
662
|
+
|
663
|
+
* Install bundler 2.2.10 as a default gem.
|
664
|
+
|
665
|
+
## Documentation:
|
666
|
+
|
667
|
+
* Add a `gem push` example to `gem help`. Pull request #4373 by
|
668
|
+
deivid-rodriguez
|
669
|
+
* Improve documentation for `required_ruby_version`. Pull request #4343 by
|
670
|
+
AlexWayfer
|
671
|
+
|
672
|
+
# 3.2.9 / 2021-02-08
|
673
|
+
|
674
|
+
## Enhancements:
|
675
|
+
|
676
|
+
* Install bundler 2.2.9 as a default gem.
|
677
|
+
|
678
|
+
## Bug fixes:
|
679
|
+
|
680
|
+
* Fix error message when underscore selection can't find bundler. Pull
|
681
|
+
request #4363 by deivid-rodriguez
|
682
|
+
* Fix `Gem::Specification.stubs_for` returning wrong named specs. Pull
|
683
|
+
request #4356 by tompng
|
684
|
+
* Don't error out when activating a binstub unless necessary. Pull request
|
685
|
+
#4351 by deivid-rodriguez
|
686
|
+
* Fix `gem outdated` incorrectly handling platform specific gems. Pull
|
687
|
+
request #4248 by deivid-rodriguez
|
688
|
+
|
689
|
+
# 3.2.8 / 2021-02-02
|
690
|
+
|
691
|
+
## Enhancements:
|
692
|
+
|
693
|
+
* Install bundler 2.2.8 as a default gem.
|
694
|
+
|
695
|
+
## Bug fixes:
|
696
|
+
|
697
|
+
* Fix `gem install` crashing on gemspec with nil required_ruby_version.
|
698
|
+
Pull request #4334 by pbernays
|
699
|
+
|
700
|
+
# 3.2.7 / 2021-01-26
|
701
|
+
|
702
|
+
## Enhancements:
|
703
|
+
|
704
|
+
* Install bundler 2.2.7 as a default gem.
|
705
|
+
|
706
|
+
## Bug fixes:
|
707
|
+
|
708
|
+
* Generate plugin wrappers with relative requires. Pull request #4317 by
|
709
|
+
deivid-rodriguez
|
710
|
+
|
711
|
+
# 3.2.6 / 2021-01-18
|
712
|
+
|
713
|
+
## Enhancements:
|
714
|
+
|
715
|
+
* Fix `Gem::Platform#inspect` showing duplicate information. Pull request
|
716
|
+
#4276 by deivid-rodriguez
|
717
|
+
* Install bundler 2.2.6 as a default gem.
|
718
|
+
|
719
|
+
## Bug fixes:
|
720
|
+
|
721
|
+
* Swallow any system call error in `ensure_gem_subdirs` to support jruby
|
722
|
+
embedded paths. Pull request #4291 by kares
|
723
|
+
* Restore accepting custom make command with extra options as the `make`
|
724
|
+
env variable. Pull request #4271 by terceiro
|
725
|
+
|
726
|
+
# 3.2.5 / 2021-01-11
|
727
|
+
|
728
|
+
## Enhancements:
|
729
|
+
|
730
|
+
* Install bundler 2.2.5 as a default gem.
|
731
|
+
|
732
|
+
## Bug fixes:
|
733
|
+
|
734
|
+
* Don't load more specs after the whole set of specs has been setup. Pull
|
735
|
+
request #4262 by deivid-rodriguez
|
736
|
+
* Fix broken `bundler` executable after `gem update --system`. Pull
|
737
|
+
request #4221 by deivid-rodriguez
|
738
|
+
|
739
|
+
# 3.2.4 / 2020-12-31
|
740
|
+
|
741
|
+
## Enhancements:
|
742
|
+
|
743
|
+
* Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
|
744
|
+
deivid-rodriguez
|
745
|
+
* Never spawn subshells when building extensions. Pull request #4190 by
|
746
|
+
deivid-rodriguez
|
747
|
+
* Install bundler 2.2.4 as a default gem.
|
748
|
+
|
749
|
+
## Bug fixes:
|
750
|
+
|
751
|
+
* Fix fallback to the old index and installation from it not working. Pull
|
752
|
+
request #4213 by deivid-rodriguez
|
753
|
+
* Fix installing from source on truffleruby. Pull request #4201 by
|
754
|
+
deivid-rodriguez
|
755
|
+
|
756
|
+
# 3.2.3 / 2020-12-22
|
757
|
+
|
758
|
+
## Enhancements:
|
759
|
+
|
760
|
+
* Fix misspellings in default API key name. Pull request #4177 by hsbt
|
761
|
+
* Install bundler 2.2.3 as a default gem.
|
762
|
+
|
763
|
+
## Bug fixes:
|
764
|
+
|
765
|
+
* Respect `required_ruby_version` and `required_rubygems_version`
|
766
|
+
constraints when looking for `gem install` candidates. Pull request #4110
|
767
|
+
by deivid-rodriguez
|
768
|
+
|
769
|
+
# 3.2.2 / 2020-12-17
|
770
|
+
|
771
|
+
## Enhancements:
|
772
|
+
|
773
|
+
* Install bundler 2.2.2 as a default gem.
|
774
|
+
|
775
|
+
## Bug fixes:
|
776
|
+
|
777
|
+
* Fix issue where CLI commands making more than one request to
|
778
|
+
rubygems.org needing an OTP code would crash or ask for the code twice.
|
779
|
+
Pull request #4162 by sonalkr132
|
780
|
+
* Fix building rake extensions that require openssl. Pull request #4165 by
|
781
|
+
deivid-rodriguez
|
782
|
+
* Fix `gem update --system` displaying too many changelog entries. Pull
|
783
|
+
request #4145 by deivid-rodriguez
|
784
|
+
|
785
|
+
# 3.2.1 / 2020-12-14
|
786
|
+
|
787
|
+
## Enhancements:
|
788
|
+
|
789
|
+
* Added help message for gem i webrick in gem server command. Pull request
|
790
|
+
#4117 by hsbt
|
791
|
+
* Install bundler 2.2.1 as a default gem.
|
792
|
+
|
793
|
+
## Bug fixes:
|
794
|
+
|
795
|
+
* Added the missing loading of fileutils same as load_specs. Pull request
|
796
|
+
#4124 by hsbt
|
797
|
+
* Fix Resolver::APISet to always include prereleases when necessary. Pull
|
798
|
+
request #4113 by deivid-rodriguez
|
799
|
+
|
800
|
+
# 3.2.0 / 2020-12-07
|
801
|
+
|
802
|
+
## Enhancements:
|
803
|
+
|
804
|
+
* Do not override Kernel#warn when there is no need. Pull request #4075 by
|
805
|
+
eregon
|
806
|
+
* Update endpoint of gem signin command. Pull request #3840 by sonalkr132
|
807
|
+
* Omit deprecated commands from command help output. Pull request #4023 by
|
808
|
+
landongrindheim
|
809
|
+
* Suggest alternatives in `gem query` deprecation. Pull request #4021 by
|
810
|
+
landongrindheim
|
811
|
+
* Lazily load `time`, `cgi`, and `zlib`. Pull request #4010 by
|
812
|
+
deivid-rodriguez
|
813
|
+
* Don't hit the network when installing dependencyless local gemspec. Pull
|
814
|
+
request #3968 by deivid-rodriguez
|
815
|
+
* Add `--force` option to `gem sources` command. Pull request #3956 by
|
816
|
+
andy-smith-msm
|
817
|
+
* Lazily load `openssl`. Pull request #3850 by deivid-rodriguez
|
818
|
+
* Pass more information when comparing platforms. Pull request #3817 by
|
819
|
+
eregon
|
820
|
+
* Install bundler 2.2.0 as a default gem.
|
821
|
+
|
822
|
+
## Bug fixes:
|
823
|
+
|
824
|
+
* Use better owner & group for files in rubygems package. Pull request
|
825
|
+
#4065 by deivid-rodriguez
|
826
|
+
* Improve gem build -C flag. Pull request #3983 by bronzdoc
|
827
|
+
* Handle unexpected behavior with URI#merge and subpaths missing trailing
|
828
|
+
slashes. Pull request #3123 by drcapulet
|
829
|
+
* Add missing `fileutils` require in rubygems installer. Pull request
|
830
|
+
#4036 by deivid-rodriguez
|
831
|
+
* Fix `--platform` option to `gem specification` being ignored. Pull
|
832
|
+
request #4043 by deivid-rodriguez
|
833
|
+
* Expose `--no-minimal-deps` flag to install the latest version of
|
834
|
+
dependencies. Pull request #4030 by deivid-rodriguez
|
835
|
+
* Fix "stack level too deep" error when overriding `Warning.warn`. Pull
|
836
|
+
request #3987 by eregon
|
837
|
+
* Append '.gemspec' extension only when it is not present. Pull request
|
838
|
+
#3988 by voxik
|
839
|
+
* Install to correct plugins dir when using `--build-root`. Pull request
|
840
|
+
#3972 by deivid-rodriguez
|
841
|
+
* Fix `--build-root` flag under Windows. Pull request #3975 by
|
842
|
+
deivid-rodriguez
|
843
|
+
* Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
|
844
|
+
request #3951 by andy-smith-msm
|
845
|
+
* Make `--default` and `--install-dir` options to `gem install` play nice
|
846
|
+
together. Pull request #3906 by deivid-rodriguez
|
847
|
+
|
848
|
+
## Deprecations:
|
849
|
+
|
850
|
+
* Deprecate server command. Pull request #3868 by bronzdoc
|
851
|
+
|
852
|
+
## Performance:
|
853
|
+
|
854
|
+
* Don't change ruby process CWD when building extensions. Pull request
|
855
|
+
#3498 by deivid-rodriguez
|
856
|
+
|
857
|
+
# 3.2.0.rc.2 / 2020-10-08
|
858
|
+
|
859
|
+
## Enhancements:
|
860
|
+
|
861
|
+
* Make --dry-run flag consistent across rubygems commands. Pull request
|
862
|
+
#3867 by bronzdoc
|
863
|
+
* Disallow downgrades to too old versions. Pull request #3566 by
|
864
|
+
deivid-rodriguez
|
865
|
+
* Added `--platform` option to `build` command. Pull request #3079 by nobu
|
866
|
+
* Have "gem update --system" pass through the `--silent` flag. Pull
|
867
|
+
request #3789 by duckinator
|
868
|
+
* Add writable check for cache dir. Pull request #3876 by xndcn
|
869
|
+
* Warn on duplicate dependency in a specification. Pull request #3864 by
|
870
|
+
bronzdoc
|
871
|
+
* Fix indentation in `gem env`. Pull request #3861 by colby-swandale
|
872
|
+
* Let more exceptions flow. Pull request #3819 by deivid-rodriguez
|
873
|
+
* Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
|
874
|
+
eregon
|
875
|
+
|
876
|
+
## Bug fixes:
|
877
|
+
|
878
|
+
* Add missing fileutils require. Pull request #3911 by deivid-rodriguez
|
879
|
+
* Fix false positive warning on Windows when PATH has
|
880
|
+
`File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
|
881
|
+
* Fix Kernel#warn override to handle backtrace location with nil path.
|
882
|
+
Pull request #3852 by jeremyevans
|
883
|
+
* Don't format executables on `gem update --system`. Pull request #3811 by
|
884
|
+
deivid-rodriguez
|
885
|
+
* `gem install --user` fails with `Gem::FilePermissionError` on the system
|
886
|
+
plugins directory. Pull request #3804 by nobu
|
887
|
+
|
888
|
+
## Performance:
|
889
|
+
|
890
|
+
* Avoid duplicated generation of APISpecification objects. Pull request
|
891
|
+
#3940 by mame
|
892
|
+
* Eval defaults with frozen_string_literal: true. Pull request #3847 by
|
893
|
+
casperisfine
|
894
|
+
* Deduplicate the requirement operators in memory. Pull request #3846 by
|
895
|
+
casperisfine
|
896
|
+
* Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
|
897
|
+
|
898
|
+
# 3.2.0.rc.1 / 2020-07-04
|
899
|
+
|
900
|
+
## Enhancements:
|
901
|
+
|
902
|
+
* Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
|
903
|
+
* Rework plugins system and speed up rubygems. Pull request #3108 by David
|
904
|
+
Rodríguez.
|
905
|
+
* Specify explicit separator not to be affected by $;. Pull request #3424
|
906
|
+
by Nobuyoshi Nakada.
|
907
|
+
* Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
|
908
|
+
* Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
|
909
|
+
* Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
|
910
|
+
* Log messages to stdout in `rake package`. Pull request #3632 by David
|
911
|
+
Rodríguez.
|
912
|
+
* Remove explicit `psych` activation. Pull request #3636 by David
|
913
|
+
Rodríguez.
|
914
|
+
* Delay `fileutils` loading to fix some warnings. Pull request #3637 by
|
915
|
+
David Rodríguez.
|
916
|
+
* Make sure rubygems/package can be directly required reliably. Pull
|
917
|
+
request #3670 by Luis Sagastume.
|
918
|
+
* Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
|
919
|
+
#3711 by David Rodríguez.
|
920
|
+
* Add Gem.disable_system_update_message to disable gem update --system if
|
921
|
+
needed. Pull request #3720 by Josef Šimánek.
|
922
|
+
* Tweaks to play nice with ruby-core setup. Pull request #3733 by David
|
9
923
|
Rodríguez.
|
10
|
-
*
|
11
|
-
|
924
|
+
* Remove explicit require for auto-loaded constant. Pull request #3751 by
|
925
|
+
Karol Bucek.
|
926
|
+
* Test files should not be included in spec.files. Pull request #3758 by
|
927
|
+
Marc-André Lafortune.
|
928
|
+
* Remove TODO comment about warning on setting instead of pushing. Pull
|
929
|
+
request #2823 by Luis Sagastume.
|
930
|
+
* Add deprecate command method. Pull request #2935 by Luis Sagastume.
|
931
|
+
* Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
|
932
|
+
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
933
|
+
#2985 by MSP-Greg.
|
934
|
+
* Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
|
935
|
+
Colby Swandale.
|
936
|
+
* Updates to some old gem-signing docs. Pull request #3063 by Tieg
|
937
|
+
Zaharia.
|
938
|
+
* Update the gem method for Gem::Installer. Pull request #3137 by Daniel
|
939
|
+
Berger.
|
940
|
+
* Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
|
941
|
+
* Resolve latest version via `gem contents`. Pull request #3149 by Dan
|
942
|
+
Rice.
|
943
|
+
* Install suggestions. Pull request #3151 by Sophia Castellarin.
|
944
|
+
* Only rescue the errors we actually want to rescue. Pull request #3156 by
|
945
|
+
David Rodríguez.
|
12
946
|
|
13
|
-
|
947
|
+
## Bug fixes:
|
14
948
|
|
15
|
-
|
949
|
+
* Accept not only /usr/bin/env but also /bin/env in some tests. Pull
|
950
|
+
request #3422 by Yusuke Endoh.
|
951
|
+
* Skip a test that attempts to remove the current directory on Solaris.
|
952
|
+
Pull request #3423 by Yusuke Endoh.
|
953
|
+
* Fix race condition on bundler's parallel installer. Pull request #3440
|
954
|
+
by David Rodríguez.
|
955
|
+
* Fix platform comparison check in #contains_requirable_file?. Pull
|
956
|
+
request #3495 by Benoit Daloze.
|
957
|
+
* Improve missing spec error. Pull request #3559 by Luis Sagastume.
|
958
|
+
* Fix hidden bundler template installation from rubygems updater. Pull
|
959
|
+
request #3674 by David Rodríguez.
|
960
|
+
* Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
|
961
|
+
* Correct conflict list when uninstallation is prevented. Pull request
|
962
|
+
#2973 by David Rodríguez.
|
963
|
+
* Fix error when trying to find bundler with a deleted "working directo….
|
964
|
+
Pull request #3090 by Luis Sagastume.
|
965
|
+
* Fix -I require priority. Pull request #3124 by David Rodríguez.
|
966
|
+
* Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
|
967
|
+
Rodríguez.
|
16
968
|
|
17
|
-
|
18
|
-
by Aditya Prakash.
|
969
|
+
## Deprecations:
|
19
970
|
|
20
|
-
|
971
|
+
* Set deprecation warning on query command. Pull request #2967 by Luis
|
972
|
+
Sagastume.
|
21
973
|
|
22
|
-
|
974
|
+
## Breaking changes:
|
975
|
+
|
976
|
+
* Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
|
977
|
+
* Minitest cleanup. Pull request #3445 by David Rodríguez.
|
978
|
+
* Remove `builder` gem requirement for `gem regenerate_index`. Pull
|
979
|
+
request #3552 by David Rodríguez.
|
980
|
+
* Remove modelines for consistency. Pull request #3714 by David Rodríguez.
|
981
|
+
* Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
|
982
|
+
Bart de Water.
|
983
|
+
* Remove Gem module deprecated methods. Pull request #3101 by Luis
|
984
|
+
Sagastume.
|
985
|
+
* Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
|
986
|
+
* Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
|
987
|
+
Sagastume.
|
988
|
+
* Remove dependency installer deprecated methods. Pull request #3106 by
|
989
|
+
Luis Sagastume.
|
990
|
+
* Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
|
991
|
+
Sagastume.
|
992
|
+
* Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
|
993
|
+
Sagastume.
|
994
|
+
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
|
995
|
+
Luis Sagastume.
|
996
|
+
* Remove source_exception from Gem::Exception. Pull request #3112 by Luis
|
997
|
+
Sagastume.
|
998
|
+
* Requiring rubygems/source_specific_file is deprecated, remove it. Pull
|
999
|
+
request #3114 by Luis Sagastume.
|
1000
|
+
|
1001
|
+
# 3.1.4 / 2020-06-03
|
1002
|
+
|
1003
|
+
## Enhancements:
|
23
1004
|
|
24
1005
|
* Deprecate rubyforge_project attribute only during build
|
25
1006
|
time. Pull request #3609 by Josef Šimánek.
|
@@ -28,9 +1009,9 @@ Minor enhancements:
|
|
28
1009
|
* Remove failing ubuntu-rvm CI flow. Pull request #3611 by
|
29
1010
|
Josef Šimánek.
|
30
1011
|
|
31
|
-
|
1012
|
+
# 3.1.3 / 2020-05-05
|
32
1013
|
|
33
|
-
|
1014
|
+
## Enhancements:
|
34
1015
|
|
35
1016
|
* Resolver: require NameTuple before use. Pull request #3171 by Olle
|
36
1017
|
Jonsson.
|
@@ -41,7 +1022,7 @@ Minor enhancements:
|
|
41
1022
|
* Add tests to check if Gem.ruby_version works with ruby git master.
|
42
1023
|
Pull request #3049 by Yusuke Endoh.
|
43
1024
|
|
44
|
-
Bug fixes:
|
1025
|
+
## Bug fixes:
|
45
1026
|
|
46
1027
|
* Fix platform comparison check in #contains_requirable_file?. Pull
|
47
1028
|
request #3495 by Benoit Daloze.
|
@@ -53,9 +1034,9 @@ Bug fixes:
|
|
53
1034
|
* Fix gem install from a gemdeps file with complex dependencies.
|
54
1035
|
Pull request #3054 by Luis Sagastume.
|
55
1036
|
|
56
|
-
|
1037
|
+
# 3.1.2 / 2019-12-20
|
57
1038
|
|
58
|
-
|
1039
|
+
## Enhancements:
|
59
1040
|
|
60
1041
|
* Restore non prompting `gem update --system` behavior. Pull request #3040
|
61
1042
|
by David Rodríguez.
|
@@ -65,29 +1046,26 @@ Minor enhancements:
|
|
65
1046
|
Pull request #3042 by David Rodríguez.
|
66
1047
|
* Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
|
67
1048
|
|
68
|
-
Bug fixes:
|
1049
|
+
## Bug fixes:
|
69
1050
|
|
70
1051
|
* Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
|
71
1052
|
* Fix `gem update --system --force`. Pull request #3035 by David
|
72
1053
|
Rodríguez.
|
73
1054
|
* Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
|
74
1055
|
|
75
|
-
|
1056
|
+
# 3.1.1 / 2019-12-16
|
76
1057
|
|
77
|
-
Bug fixes:
|
1058
|
+
## Bug fixes:
|
78
1059
|
|
79
1060
|
* Vendor Bundler 2.1.0 again. The version of Bundler with
|
80
1061
|
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
|
81
1062
|
SHIBATA Hiroshi.
|
82
1063
|
|
83
|
-
|
1064
|
+
# 3.1.0 / 2019-12-16
|
84
1065
|
|
85
|
-
|
1066
|
+
## Enhancements:
|
86
1067
|
|
87
1068
|
* Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
|
88
|
-
|
89
|
-
Minor enhancements:
|
90
|
-
|
91
1069
|
* Check for rubygems.org typo squatting sources. Pull request #2999 by
|
92
1070
|
Luis Sagastume.
|
93
1071
|
* Refactor remote fetcher. Pull request #3017 by David Rodríguez.
|
@@ -99,22 +1077,25 @@ Minor enhancements:
|
|
99
1077
|
* Use bundler to manage development dependencies. Pull request #3012 by
|
100
1078
|
David Rodríguez.
|
101
1079
|
|
102
|
-
Bug fixes:
|
1080
|
+
## Bug fixes:
|
103
1081
|
|
104
1082
|
* Remove unnecessary executable flags. Pull request #2982 by David
|
105
1083
|
Rodríguez.
|
106
1084
|
* Remove configuration that contained a typo. Pull request #2989 by David
|
107
1085
|
Rodríguez.
|
108
1086
|
|
109
|
-
|
1087
|
+
## Deprecations:
|
110
1088
|
|
111
|
-
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
112
1089
|
* Deprecate `gem generate_index --modern` and `gem generate_index
|
113
1090
|
--no-modern`. Pull request #2992 by David Rodríguez.
|
114
1091
|
|
115
|
-
|
1092
|
+
## Breaking changes:
|
116
1093
|
|
117
|
-
|
1094
|
+
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
1095
|
+
|
1096
|
+
# 3.1.0.pre3 / 2019-11-11
|
1097
|
+
|
1098
|
+
## Enhancements:
|
118
1099
|
|
119
1100
|
* Fix gem pristine not accounting for user installed gems. Pull request
|
120
1101
|
#2914 by Luis Sagastume.
|
@@ -133,18 +1114,18 @@ Minor enhancements:
|
|
133
1114
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
134
1115
|
#2985 by MSP-Greg.
|
135
1116
|
|
136
|
-
|
1117
|
+
# 3.1.0.pre2 / 2019-10-15
|
137
1118
|
|
138
|
-
|
1119
|
+
## Enhancements:
|
139
1120
|
|
140
1121
|
* Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
|
141
1122
|
Boussier.
|
142
1123
|
* Time comparison around date boundary. Pull request #2944 by Nobuyoshi
|
143
1124
|
Nakada.
|
144
1125
|
|
145
|
-
|
1126
|
+
# 3.1.0.pre1 / 2019-10-08
|
146
1127
|
|
147
|
-
|
1128
|
+
## Enhancements:
|
148
1129
|
|
149
1130
|
* Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
|
150
1131
|
* [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
|
@@ -155,9 +1136,6 @@ Major enhancements:
|
|
155
1136
|
Chaofan.
|
156
1137
|
* Autoswitch to exact bundler version if present. Pull request #2583 by
|
157
1138
|
David Rodríguez.
|
158
|
-
|
159
|
-
Minor enhancements:
|
160
|
-
|
161
1139
|
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
162
1140
|
request #2554 by Grey Baker.
|
163
1141
|
* Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
|
@@ -277,7 +1255,7 @@ Minor enhancements:
|
|
277
1255
|
Berger.
|
278
1256
|
* Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
|
279
1257
|
|
280
|
-
Bug fixes:
|
1258
|
+
## Bug fixes:
|
281
1259
|
|
282
1260
|
* Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
|
283
1261
|
* Remove unused empty sources array. Pull request #2598 by Aaron
|
@@ -310,29 +1288,33 @@ Bug fixes:
|
|
310
1288
|
* Fix cryptic error on local and ignore-dependencies combination. Pull
|
311
1289
|
request #2650 by David Rodríguez.
|
312
1290
|
|
313
|
-
|
1291
|
+
## Deprecations:
|
314
1292
|
|
315
|
-
*
|
1293
|
+
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
1294
|
+
#2857 by SHIBATA Hiroshi.
|
1295
|
+
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
316
1296
|
Sagastume.
|
1297
|
+
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
1298
|
+
Rodríguez.
|
1299
|
+
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
1300
|
+
Ondruch.
|
1301
|
+
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
1302
|
+
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
1303
|
+
Sagastume.
|
1304
|
+
|
1305
|
+
## Breaking changes:
|
1306
|
+
|
317
1307
|
* Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
|
318
1308
|
* Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
|
319
1309
|
ITO.
|
320
1310
|
* Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
|
321
|
-
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
322
|
-
#2857 by SHIBATA Hiroshi.
|
323
|
-
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
324
|
-
Sagastume.
|
325
1311
|
* Remove conflict.rb code that was supposed to be removed in Rubygems 3.
|
326
1312
|
Pull request #2802 by Luis Sagastume.
|
327
|
-
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
328
|
-
Rodríguez.
|
329
1313
|
* Compatibility cleanups. Pull request #2754 by David Rodríguez.
|
330
1314
|
* Remove `others_possible` activation request param. Pull request #2747 by
|
331
1315
|
David Rodríguez.
|
332
1316
|
* Remove dependency installer deprecated code. Pull request #2740 by Luis
|
333
1317
|
Sagastume.
|
334
|
-
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
335
|
-
Ondruch.
|
336
1318
|
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
|
337
1319
|
by SHIBATA Hiroshi.
|
338
1320
|
* Skip deprecation warning during specs. Pull request #2718 by David
|
@@ -341,34 +1323,36 @@ Compatibility changes:
|
|
341
1323
|
* Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
|
342
1324
|
* Removed needless environmental variable for Travis CI. Pull request
|
343
1325
|
#2685 by SHIBATA Hiroshi.
|
344
|
-
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
345
1326
|
* Removing yaml require. Pull request #2538 by Luciano Sousa.
|
346
|
-
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
347
|
-
Sagastume.
|
348
1327
|
|
349
|
-
|
1328
|
+
# 3.0.8 / 2020-02-19
|
350
1329
|
|
351
|
-
|
352
|
-
|
353
|
-
*
|
354
|
-
|
355
|
-
* Enable Style/EmptyLinesAroundClassBody rubocop cop. Pull request #2636
|
356
|
-
by David Rodríguez.
|
357
|
-
* Enable Style/BlockDelimiters rubocop cop. Pull request #2640 by David
|
358
|
-
Rodríguez.
|
359
|
-
* Enable Layout/SpaceAroundOperators rubocop cop. Pull request #2642 by
|
360
|
-
David Rodríguez.
|
361
|
-
* Rubocop 0.71. Pull request #2785 by David Rodríguez.
|
1330
|
+
## Bug fixes:
|
1331
|
+
|
1332
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
1333
|
+
Nobuyoshi Nakada.
|
362
1334
|
|
363
|
-
|
1335
|
+
# 3.0.7 / 2020-02-18
|
364
1336
|
|
365
|
-
Bug fixes:
|
1337
|
+
## Bug fixes:
|
1338
|
+
|
1339
|
+
* Fix underscore version selection for bundler #2908 by David Rodríguez.
|
1340
|
+
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
1341
|
+
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
1342
|
+
Pull request #2782 by Luis Sagastume.
|
1343
|
+
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
1344
|
+
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
1345
|
+
request #2894 by Alexander Pakulov.
|
1346
|
+
|
1347
|
+
# 3.0.6 / 2019-08-17
|
1348
|
+
|
1349
|
+
## Bug fixes:
|
366
1350
|
|
367
1351
|
* Revert #2813. It broke the compatibility with 3.0.x versions.
|
368
1352
|
|
369
|
-
|
1353
|
+
# 3.0.5 / 2019-08-16
|
370
1354
|
|
371
|
-
|
1355
|
+
## Enhancements:
|
372
1356
|
|
373
1357
|
* Use env var to configure api key on push. Pull request #2559 by Luis
|
374
1358
|
Sagastume.
|
@@ -378,7 +1362,7 @@ Minor enhancements:
|
|
378
1362
|
* Clean which command. Pull request #2801 by Luis Sagastume.
|
379
1363
|
* Upgrading S3 source signature to AWS SigV4. Pull request #2807 by
|
380
1364
|
Alexander Pakulov.
|
381
|
-
* Remove
|
1365
|
+
* Remove misleading comment, no reason to move Gem.host to Gem::Util.
|
382
1366
|
Pull request #2811 by Luis Sagastume.
|
383
1367
|
* Drop support for 'gem env packageversion'. Pull request #2813 by Luis
|
384
1368
|
Sagastume.
|
@@ -403,7 +1387,7 @@ Minor enhancements:
|
|
403
1387
|
by Alexander Pakulov.
|
404
1388
|
* Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
|
405
1389
|
|
406
|
-
Bug fixes:
|
1390
|
+
## Bug fixes:
|
407
1391
|
|
408
1392
|
* Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
|
409
1393
|
MSP-Greg.
|
@@ -419,9 +1403,9 @@ Bug fixes:
|
|
419
1403
|
* Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
|
420
1404
|
Hiroshi.
|
421
1405
|
|
422
|
-
|
1406
|
+
# 3.0.4 / 2019-06-14
|
423
1407
|
|
424
|
-
|
1408
|
+
## Enhancements:
|
425
1409
|
|
426
1410
|
* Add support for TruffleRuby #2612 by Benoit Daloze
|
427
1411
|
* Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
|
@@ -458,7 +1442,7 @@ Minor enhancements:
|
|
458
1442
|
request #2777 by Yusuke Endoh.
|
459
1443
|
* Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
|
460
1444
|
|
461
|
-
Bug fixes:
|
1445
|
+
## Bug fixes:
|
462
1446
|
|
463
1447
|
* Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
|
464
1448
|
* Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
|
@@ -474,11 +1458,10 @@ Bug fixes:
|
|
474
1458
|
#2732 by Alex Junger.
|
475
1459
|
* Fix TODOs. Pull request #2748 by David Rodríguez.
|
476
1460
|
|
477
|
-
|
1461
|
+
# 3.0.3 / 2019-03-05
|
478
1462
|
|
479
1463
|
Security fixes:
|
480
1464
|
|
481
|
-
* Fixed following vulnerabilities:
|
482
1465
|
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
483
1466
|
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
484
1467
|
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
@@ -486,14 +1469,14 @@ Security fixes:
|
|
486
1469
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
487
1470
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
488
1471
|
|
489
|
-
|
1472
|
+
# 3.0.2 / 2019-01-01
|
490
1473
|
|
491
|
-
|
1474
|
+
## Enhancements:
|
492
1475
|
|
493
1476
|
* Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
|
494
1477
|
* Fix document flag description. Pull request #2555 by Luis Sagastume.
|
495
1478
|
|
496
|
-
Bug fixes:
|
1479
|
+
## Bug fixes:
|
497
1480
|
|
498
1481
|
* Fix tests when ruby --program-suffix is used without rubygems
|
499
1482
|
--format-executable. Pull request #2549 by Jeremy Evans.
|
@@ -503,9 +1486,9 @@ Bug fixes:
|
|
503
1486
|
Fukumori.
|
504
1487
|
* Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
|
505
1488
|
|
506
|
-
|
1489
|
+
# 3.0.1 / 2018-12-23
|
507
1490
|
|
508
|
-
Bug fixes:
|
1491
|
+
## Bug fixes:
|
509
1492
|
|
510
1493
|
* Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
|
511
1494
|
* Dup the Dir.home string before passing it on. Pull request #2545 by
|
@@ -514,9 +1497,9 @@ Bug fixes:
|
|
514
1497
|
by SHIBATA Hiroshi.
|
515
1498
|
* Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
|
516
1499
|
|
517
|
-
|
1500
|
+
# 3.0.0 / 2018-12-19
|
518
1501
|
|
519
|
-
|
1502
|
+
## Enhancements:
|
520
1503
|
|
521
1504
|
* S3 source. Pull request #1690 by Aditya Prakash.
|
522
1505
|
* Download gems with threads. Pull request #1898 by André Arko.
|
@@ -524,9 +1507,6 @@ Major enhancements:
|
|
524
1507
|
* [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
|
525
1508
|
Chaofan.
|
526
1509
|
* Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
|
527
|
-
|
528
|
-
Minor enhancements:
|
529
|
-
|
530
1510
|
* Don't treat inaccessible working directories as build failures. Pull
|
531
1511
|
request #1135 by Pete.
|
532
1512
|
* Remove useless directory parameter from builders .build methods.
|
@@ -553,7 +1533,7 @@ Minor enhancements:
|
|
553
1533
|
Swandale.
|
554
1534
|
* Add Gem.operating_system_defaults to allow packagers to override
|
555
1535
|
defaults. Pull request #2116 by Vít Ondruch.
|
556
|
-
* Update for
|
1536
|
+
* Update for compatibility with new minitest. Pull request #2118 by
|
557
1537
|
MSP-Greg.
|
558
1538
|
* Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
|
559
1539
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
@@ -585,11 +1565,11 @@ Minor enhancements:
|
|
585
1565
|
SHIBATA Hiroshi.
|
586
1566
|
* Add Rake task to install dev dependencies. Pull request #2173 by Ellen
|
587
1567
|
Marie Dash.
|
588
|
-
* Add new sections to the README and
|
1568
|
+
* Add new sections to the README and explanation of what RubyGems is.
|
589
1569
|
Pull request #2174 by Colby Swandale.
|
590
1570
|
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
|
591
1571
|
SHIBATA Hiroshi.
|
592
|
-
* Ignore
|
1572
|
+
* Ignore performance test of version regexp pattern. Pull request #2179 by
|
593
1573
|
SHIBATA Hiroshi.
|
594
1574
|
* Ignore .DS_Store files in the update_manifest task. Pull request #2199
|
595
1575
|
by Colby Swandale.
|
@@ -684,7 +1664,7 @@ Minor enhancements:
|
|
684
1664
|
* Support the environment without OpenSSL. Pull request #2528 by SHIBATA
|
685
1665
|
Hiroshi.
|
686
1666
|
|
687
|
-
Bug fixes:
|
1667
|
+
## Bug fixes:
|
688
1668
|
|
689
1669
|
* Fix undefined method error when printing alert. Pull request #1884 by
|
690
1670
|
Robert Ross.
|
@@ -737,7 +1717,7 @@ Bug fixes:
|
|
737
1717
|
* Fix tests when --program-suffix and similar ruby configure options are
|
738
1718
|
used. Pull request #2529 by Jeremy Evans.
|
739
1719
|
|
740
|
-
|
1720
|
+
## Breaking changes:
|
741
1721
|
|
742
1722
|
* IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
|
743
1723
|
Hiroshi.
|
@@ -790,44 +1770,20 @@ Compatibility changes:
|
|
790
1770
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
791
1771
|
major versions. Pull request #2515 by Colby Swandale.
|
792
1772
|
|
793
|
-
|
794
|
-
|
795
|
-
* Add Rubocop. Pull request #2250 by Colby Swandale.
|
796
|
-
* Removed explicitly declaration of thread library. Pull request #2324 by
|
797
|
-
SHIBATA Hiroshi.
|
798
|
-
* Remove Trailing whitespace with rubocop. Pull request #2394 by SHIBATA
|
799
|
-
Hiroshi.
|
800
|
-
* Update rubocop and also use correct pessimistic version. Pull request
|
801
|
-
#2404 by Colby Swandale.
|
802
|
-
* Enable more rubocop rules. Pull request #2435 by Ellen Marie Dash.
|
803
|
-
* Fix and lock rubocop. Pull request #2465 by David Rodríguez.
|
804
|
-
* Add a rubocop binstub. Pull request #2468 by David Rodríguez.
|
805
|
-
* Restore the `rubocop` task. Pull request #2470 by David Rodríguez.
|
806
|
-
* Remove trailing blank lines. Pull request #2471 by David Rodríguez.
|
807
|
-
* Remove empty lines around method bodies. Pull request #2473 by David
|
808
|
-
Rodríguez.
|
809
|
-
* Enable Style/MethodDefParentheses in Rubocop. Pull request #2478 by
|
810
|
-
Colby Swandale.
|
811
|
-
* Enable Style/MultilineIfThen in Rubocop. Pull request #2479 by Luis
|
812
|
-
Sagastume.
|
813
|
-
* Remove trailing 'then' from generated code. Pull request #2480 by Luis
|
814
|
-
Sagastume.
|
815
|
-
|
816
|
-
=== 2.7.10 / 2019-06-14
|
1773
|
+
# 2.7.10 / 2019-06-14
|
817
1774
|
|
818
|
-
|
1775
|
+
## Enhancements:
|
819
1776
|
|
820
1777
|
* Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
|
821
1778
|
by David Rodríguez.
|
822
1779
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
|
823
1780
|
Pull request #2515 by Colby Swandale.
|
824
|
-
+ Update for
|
1781
|
+
+ Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
|
825
1782
|
|
826
|
-
|
1783
|
+
# 2.7.9 / 2019-03-05
|
827
1784
|
|
828
1785
|
Security fixes:
|
829
1786
|
|
830
|
-
* Fixed following vulnerabilities:
|
831
1787
|
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
832
1788
|
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
833
1789
|
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
@@ -835,9 +1791,9 @@ Security fixes:
|
|
835
1791
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
836
1792
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
837
1793
|
|
838
|
-
|
1794
|
+
# 2.7.8 / 2018-11-02
|
839
1795
|
|
840
|
-
|
1796
|
+
## Enhancements:
|
841
1797
|
|
842
1798
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
843
1799
|
request #2230 by Samuel Giddins.
|
@@ -856,7 +1812,7 @@ Minor enhancements:
|
|
856
1812
|
* Improve bindir flag description. Pull request #2383 by Luis Sagastume.
|
857
1813
|
* Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
|
858
1814
|
|
859
|
-
Bug fixes:
|
1815
|
+
## Bug fixes:
|
860
1816
|
|
861
1817
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
862
1818
|
request #2229 by Elias Hernandis.
|
@@ -869,9 +1825,9 @@ Bug fixes:
|
|
869
1825
|
* Gem::Version should handle nil like it used to before. Pull request
|
870
1826
|
#2363 by Luis Sagastume.
|
871
1827
|
|
872
|
-
|
1828
|
+
# 2.7.7 / 2018-05-08
|
873
1829
|
|
874
|
-
|
1830
|
+
## Enhancements:
|
875
1831
|
|
876
1832
|
* [RequestSet] Only suggest a gem version with an installable platform.
|
877
1833
|
Pull request #2175 by Samuel Giddins.
|
@@ -886,7 +1842,7 @@ Minor enhancements:
|
|
886
1842
|
Sagastume.
|
887
1843
|
* Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
|
888
1844
|
|
889
|
-
Bug fixes:
|
1845
|
+
## Bug fixes:
|
890
1846
|
|
891
1847
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
892
1848
|
#2115 by MSP-Greg.
|
@@ -899,16 +1855,19 @@ Bug fixes:
|
|
899
1855
|
* Fix path checks for case insensitive filesystem. Pull request #2211 by
|
900
1856
|
Lars Kanis.
|
901
1857
|
|
902
|
-
|
1858
|
+
## Deprecations:
|
903
1859
|
|
904
1860
|
* Deprecate unused code before removing them at #1524. Pull request #2197
|
905
1861
|
by SHIBATA Hiroshi.
|
906
1862
|
* Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
|
907
1863
|
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
|
908
1864
|
SHIBATA Hiroshi.
|
1865
|
+
|
1866
|
+
## Breaking changes:
|
1867
|
+
|
909
1868
|
* Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
|
910
1869
|
|
911
|
-
|
1870
|
+
# 2.7.6 / 2018-02-16
|
912
1871
|
|
913
1872
|
Security fixes:
|
914
1873
|
|
@@ -917,7 +1876,7 @@ Security fixes:
|
|
917
1876
|
* Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
|
918
1877
|
Fixed by Jonathan Claudius.
|
919
1878
|
* Strictly interpret octal fields in tar headers.
|
920
|
-
|
1879
|
+
Discovered by plover, fixed by Samuel Giddins.
|
921
1880
|
* Raise a security error when there are duplicate files in a package.
|
922
1881
|
Discovered by plover, fixed by Samuel Giddins.
|
923
1882
|
* Enforce URL validation on spec homepage attribute.
|
@@ -927,9 +1886,9 @@ Security fixes:
|
|
927
1886
|
* Prevent Path Traversal issue during gem installation.
|
928
1887
|
Discovered by nmalkin.
|
929
1888
|
|
930
|
-
|
1889
|
+
# 2.7.5
|
931
1890
|
|
932
|
-
Bug fixes:
|
1891
|
+
## Bug fixes:
|
933
1892
|
|
934
1893
|
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
935
1894
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
@@ -941,9 +1900,9 @@ Bug fixes:
|
|
941
1900
|
* Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
|
942
1901
|
* Fix undefined method error when printing alert #1884 by Robert Ross.
|
943
1902
|
|
944
|
-
|
1903
|
+
# 2.7.4
|
945
1904
|
|
946
|
-
Bug fixes:
|
1905
|
+
## Bug fixes:
|
947
1906
|
|
948
1907
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
949
1908
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
@@ -952,9 +1911,9 @@ Bug fixes:
|
|
952
1911
|
* Handle environment that does not have `flock` system call. Pull request
|
953
1912
|
#2107 by SHIBATA Hiroshi.
|
954
1913
|
|
955
|
-
|
1914
|
+
# 2.7.3
|
956
1915
|
|
957
|
-
|
1916
|
+
## Enhancements:
|
958
1917
|
|
959
1918
|
* Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
|
960
1919
|
* Add --[no-]check-development option to cleanup command. Pull request
|
@@ -967,7 +1926,7 @@ Minor enhancements:
|
|
967
1926
|
* Remove multi load warning from plugins documentation. Pull request #2103
|
968
1927
|
by Thibault Jouan.
|
969
1928
|
|
970
|
-
Bug fixes:
|
1929
|
+
## Bug fixes:
|
971
1930
|
|
972
1931
|
* Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
|
973
1932
|
Dash.
|
@@ -986,33 +1945,30 @@ Bug fixes:
|
|
986
1945
|
* Use setup command --regenerate-binstubs option flag. Pull request #2099
|
987
1946
|
by Thibault Jouan.
|
988
1947
|
|
989
|
-
|
1948
|
+
# 2.7.2
|
990
1949
|
|
991
|
-
Bug fixes:
|
1950
|
+
## Bug fixes:
|
992
1951
|
|
993
1952
|
* Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
|
994
1953
|
Hiroshi.
|
995
1954
|
* Added workaround for non-git environment. Pull request #2066 by SHIBATA
|
996
1955
|
Hiroshi.
|
997
1956
|
|
998
|
-
|
1957
|
+
# 2.7.1 (2017-11-03)
|
999
1958
|
|
1000
|
-
Bug fixes:
|
1959
|
+
## Bug fixes:
|
1001
1960
|
|
1002
1961
|
* Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
|
1003
1962
|
Samuel Giddins.
|
1004
1963
|
|
1005
|
-
|
1964
|
+
# 2.7.0 (2017-11-02)
|
1006
1965
|
|
1007
|
-
|
1966
|
+
## Enhancements:
|
1008
1967
|
|
1009
1968
|
* Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
|
1010
1969
|
* Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
|
1011
1970
|
* Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
|
1012
1971
|
* Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
|
1013
|
-
|
1014
|
-
Minor enhancements:
|
1015
|
-
|
1016
1972
|
* Added message to uninstall command for gem that is not installed. Pull
|
1017
1973
|
request #1979 by anant anil kolvankar.
|
1018
1974
|
* Add --trust-policy option to unpack command. Pull request #1718 by
|
@@ -1098,11 +2054,8 @@ Minor enhancements:
|
|
1098
2054
|
* Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
|
1099
2055
|
Dash.
|
1100
2056
|
|
1101
|
-
|
2057
|
+
## Deprecations:
|
1102
2058
|
|
1103
|
-
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
1104
|
-
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
1105
|
-
by SHIBATA Hiroshi.
|
1106
2059
|
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
1107
2060
|
Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
|
1108
2061
|
* Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
|
@@ -1110,10 +2063,16 @@ Compatibility changes:
|
|
1110
2063
|
* Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
|
1111
2064
|
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
1112
2065
|
Pull request #1731 by Jon Moss.
|
2066
|
+
|
2067
|
+
## Breaking changes:
|
2068
|
+
|
2069
|
+
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
2070
|
+
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
2071
|
+
by SHIBATA Hiroshi.
|
1113
2072
|
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
1114
2073
|
#1796 by Matej.
|
1115
2074
|
|
1116
|
-
Bug fixes:
|
2075
|
+
## Bug fixes:
|
1117
2076
|
|
1118
2077
|
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
|
1119
2078
|
MSP-Greg.
|
@@ -1166,7 +2125,7 @@ Bug fixes:
|
|
1166
2125
|
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
1167
2126
|
Pull request #1738 by Samuel Giddins.
|
1168
2127
|
|
1169
|
-
|
2128
|
+
# 2.6.14 / 2017-10-09
|
1170
2129
|
|
1171
2130
|
Security fixes:
|
1172
2131
|
|
@@ -1174,7 +2133,7 @@ Security fixes:
|
|
1174
2133
|
See CVE-2017-0903 for full details.
|
1175
2134
|
Fix by Aaron Patterson.
|
1176
2135
|
|
1177
|
-
|
2136
|
+
# 2.6.13 / 2017-08-27
|
1178
2137
|
|
1179
2138
|
Security fixes:
|
1180
2139
|
|
@@ -1188,9 +2147,9 @@ Security fixes:
|
|
1188
2147
|
to overwrite arbitrary files. (CVE-2017-0901)
|
1189
2148
|
Discovered by Yusuke Endoh, fix by Samuel Giddins.
|
1190
2149
|
|
1191
|
-
|
2150
|
+
# 2.6.12 / 2017-04-30
|
1192
2151
|
|
1193
|
-
Bug fixes:
|
2152
|
+
## Bug fixes:
|
1194
2153
|
|
1195
2154
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
1196
2155
|
request #1880 by Kazuaki Matsuo.
|
@@ -1211,9 +2170,9 @@ Bug fixes:
|
|
1211
2170
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
1212
2171
|
request #1910 by Samuel Giddins.
|
1213
2172
|
|
1214
|
-
|
2173
|
+
# 2.6.11 / 2017-03-16
|
1215
2174
|
|
1216
|
-
Bug fixes:
|
2175
|
+
## Bug fixes:
|
1217
2176
|
|
1218
2177
|
* Fixed broken tests on ruby-head. Pull request #1841 by
|
1219
2178
|
SHIBATA Hiroshi.
|
@@ -1224,16 +2183,16 @@ Bug fixes:
|
|
1224
2183
|
* Use improved resolver sorting algorithm. Pull request #1856 by
|
1225
2184
|
Samuel Giddins.
|
1226
2185
|
|
1227
|
-
|
2186
|
+
# 2.6.10 / 2017-01-23
|
1228
2187
|
|
1229
|
-
Bug fixes:
|
2188
|
+
## Bug fixes:
|
1230
2189
|
|
1231
2190
|
* Fix `require` calling the wrong `gem` method when it is overridden.
|
1232
2191
|
Pull request #1822 by Samuel Giddins.
|
1233
2192
|
|
1234
|
-
|
2193
|
+
# 2.6.9 / 2017-01-20
|
1235
2194
|
|
1236
|
-
Bug fixes:
|
2195
|
+
## Bug fixes:
|
1237
2196
|
|
1238
2197
|
* Allow initializing versions with empty strings. Pull request #1767 by
|
1239
2198
|
Luis Sagastume.
|
@@ -1247,9 +2206,9 @@ Bug fixes:
|
|
1247
2206
|
* RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
|
1248
2207
|
Jonsson.
|
1249
2208
|
|
1250
|
-
|
2209
|
+
# 2.6.8 / 2016-10-29
|
1251
2210
|
|
1252
|
-
Bug fixes:
|
2211
|
+
## Bug fixes:
|
1253
2212
|
|
1254
2213
|
* Improve SSL verification failure message. Pull request #1751
|
1255
2214
|
by Eric Hodel.
|
@@ -1258,9 +2217,9 @@ Bug fixes:
|
|
1258
2217
|
* Update vendored Molinillo to 0.5.3. Pull request #1763 by
|
1259
2218
|
Samuel Giddins.
|
1260
2219
|
|
1261
|
-
|
2220
|
+
# 2.6.7 / 2016-09-26
|
1262
2221
|
|
1263
|
-
Bug fixes:
|
2222
|
+
## Bug fixes:
|
1264
2223
|
|
1265
2224
|
* Install native extensions in the correct location when using the
|
1266
2225
|
`--user-install` flag. Pull request #1683 by Noah Kantrowitz.
|
@@ -1272,24 +2231,24 @@ Bug fixes:
|
|
1272
2231
|
* Update vendored Molinillo to 0.5.1. Pull request #1714 by
|
1273
2232
|
Samuel Giddins.
|
1274
2233
|
|
1275
|
-
|
2234
|
+
# 2.6.6 / 2016-06-22
|
1276
2235
|
|
1277
|
-
Bug fixes:
|
2236
|
+
## Bug fixes:
|
1278
2237
|
|
1279
2238
|
* Sort installed versions to make sure we install the latest version when
|
1280
2239
|
running `gem update --system`. As a one-time fix, run
|
1281
2240
|
`gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
|
1282
2241
|
|
1283
|
-
|
2242
|
+
# 2.6.5 / 2016-06-21
|
1284
2243
|
|
1285
|
-
|
2244
|
+
## Enhancements:
|
1286
2245
|
|
1287
2246
|
* Support for unified Integer in Ruby 2.4. Pull request #1618
|
1288
2247
|
by SHIBATA Hiroshi.
|
1289
2248
|
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
1290
2249
|
Pull request #1638 by Samuel Giddins.
|
1291
2250
|
|
1292
|
-
Bug fixes:
|
2251
|
+
## Bug fixes:
|
1293
2252
|
|
1294
2253
|
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
1295
2254
|
request #1605 by Daniel Berger.
|
@@ -1309,16 +2268,16 @@ Bug fixes:
|
|
1309
2268
|
Pull request #1644 by Charles Oliver Nutter.
|
1310
2269
|
* Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
|
1311
2270
|
|
1312
|
-
|
2271
|
+
# 2.6.4 / 2016-04-26
|
1313
2272
|
|
1314
|
-
|
2273
|
+
## Enhancements:
|
1315
2274
|
|
1316
2275
|
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
|
1317
2276
|
by Chris Charabaruk.
|
1318
2277
|
* Use File.symlink on MS Windows if supported. Pull request #1418
|
1319
2278
|
by Nobuyoshi Nakada.
|
1320
2279
|
|
1321
|
-
Bug fixes:
|
2280
|
+
## Bug fixes:
|
1322
2281
|
|
1323
2282
|
* Redact uri password from error output when gem fetch fails. Pull request
|
1324
2283
|
#1565 by Brian Fletcher.
|
@@ -1326,9 +2285,9 @@ Bug fixes:
|
|
1326
2285
|
* Escape user-supplied content served on web pages by `gem server` to avoid
|
1327
2286
|
potential XSS vulnerabilities. Samuel Giddins.
|
1328
2287
|
|
1329
|
-
|
2288
|
+
# 2.6.3 / 2016-04-05
|
1330
2289
|
|
1331
|
-
|
2290
|
+
## Enhancements:
|
1332
2291
|
|
1333
2292
|
* Lazily calculate Gem::LoadError exception messages. Pull request #1550
|
1334
2293
|
by Aaron Patterson.
|
@@ -1339,7 +2298,7 @@ Minor enhancements:
|
|
1339
2298
|
* Show default gems when using "gem list". Pull request #1570 by Luis
|
1340
2299
|
Sagastume.
|
1341
2300
|
|
1342
|
-
Bug fixes:
|
2301
|
+
## Bug fixes:
|
1343
2302
|
|
1344
2303
|
* Stub ordering should be consistent regardless of how cache is populated.
|
1345
2304
|
Pull request #1552 by Aaron Patterson.
|
@@ -1355,9 +2314,9 @@ Bug fixes:
|
|
1355
2314
|
Giddins.
|
1356
2315
|
* Allow two digit version numbers in the tests. Pull request #1575 by unak.
|
1357
2316
|
|
1358
|
-
|
2317
|
+
# 2.6.2 / 2016-03-12
|
1359
2318
|
|
1360
|
-
Bug fixes:
|
2319
|
+
## Bug fixes:
|
1361
2320
|
|
1362
2321
|
* Fix wrong version of gem activation for bin stub. Pull request #1527 by
|
1363
2322
|
Aaron Patterson.
|
@@ -1368,9 +2327,9 @@ Bug fixes:
|
|
1368
2327
|
#1538 by Charles Oliver Nutter.
|
1369
2328
|
|
1370
2329
|
|
1371
|
-
|
2330
|
+
# 2.6.1 / 2016-02-28
|
1372
2331
|
|
1373
|
-
Bug fixes:
|
2332
|
+
## Bug fixes:
|
1374
2333
|
|
1375
2334
|
* Ensure `default_path` and `home` are set for paths. Pull request #1513
|
1376
2335
|
by Aaron Patterson.
|
@@ -1379,9 +2338,9 @@ Bug fixes:
|
|
1379
2338
|
* Fix invalid gem file preventing gem install from working. Pull request
|
1380
2339
|
#1499 by Luis Sagastume.
|
1381
2340
|
|
1382
|
-
|
2341
|
+
# 2.6.0 / 2016-02-26
|
1383
2342
|
|
1384
|
-
|
2343
|
+
## Enhancements:
|
1385
2344
|
|
1386
2345
|
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
1387
2346
|
metadata setting. Pull request #1486 by Josh Lane.
|
@@ -1392,7 +2351,7 @@ Minor enhancements:
|
|
1392
2351
|
* Allow specifying gem requirements via env variables. Pull request #1472
|
1393
2352
|
by Samuel E. Giddins.
|
1394
2353
|
|
1395
|
-
Bug fixes:
|
2354
|
+
## Bug fixes:
|
1396
2355
|
|
1397
2356
|
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
1398
2357
|
Pull request #1485 by Josh Lane.
|
@@ -1403,7 +2362,7 @@ Bug fixes:
|
|
1403
2362
|
* Clean up the PathSupport object. Pull request #1094 by Aaron Patterson.
|
1404
2363
|
* Join with File::PATH_SEPARATOR in Gem.use_paths. Pull request #1476 by
|
1405
2364
|
Samuel E. Giddins.
|
1406
|
-
* Handle when the gem home and gem path
|
2365
|
+
* Handle when the gem home and gem path aren't set in the config file. Pull
|
1407
2366
|
request #1478 by Samuel E. Giddins.
|
1408
2367
|
* Terminate TimeoutHandler. Pull request #1479 by Nobuyoshi Nakada.
|
1409
2368
|
* Remove redundant cache. Pull request #1482 by Eileen M. Uchitelle.
|
@@ -1418,9 +2377,9 @@ Bug fixes:
|
|
1418
2377
|
* Find_files only from loaded_gems when using gemdeps. Pull request #1277
|
1419
2378
|
by Michal Papis.
|
1420
2379
|
|
1421
|
-
|
2380
|
+
# 2.5.2 / 2016-01-31
|
1422
2381
|
|
1423
|
-
Bug fixes:
|
2382
|
+
## Bug fixes:
|
1424
2383
|
|
1425
2384
|
* Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
|
1426
2385
|
Zuijlen.
|
@@ -1436,7 +2395,7 @@ Bug fixes:
|
|
1436
2395
|
* Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
|
1437
2396
|
Giddins.
|
1438
2397
|
|
1439
|
-
|
2398
|
+
## Enhancements:
|
1440
2399
|
|
1441
2400
|
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
|
1442
2401
|
Sagastume.
|
@@ -1461,9 +2420,9 @@ Minor enhancements:
|
|
1461
2420
|
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
1462
2421
|
#1408 by Samuel E. Giddins.
|
1463
2422
|
|
1464
|
-
|
2423
|
+
# 2.5.1 / 2015-12-10
|
1465
2424
|
|
1466
|
-
Bug fixes:
|
2425
|
+
## Bug fixes:
|
1467
2426
|
|
1468
2427
|
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
1469
2428
|
Issue #1369 reported by Ryan Atball (among others).
|
@@ -1492,9 +2451,9 @@ Bug fixes:
|
|
1492
2451
|
Kudo.
|
1493
2452
|
* Fixed double word typo. Pull request #1411 by Jake Worth.
|
1494
2453
|
|
1495
|
-
|
2454
|
+
# 2.5.0 / 2015-11-03
|
1496
2455
|
|
1497
|
-
|
2456
|
+
## Enhancements:
|
1498
2457
|
|
1499
2458
|
* Added the Gem::Licenses class which provides a set of standard license
|
1500
2459
|
identifiers as set by spdx.org. This is now used by the
|
@@ -1503,8 +2462,6 @@ Major enhancements:
|
|
1503
2462
|
|
1504
2463
|
Pull request #1249 by Kyle Mitchell.
|
1505
2464
|
|
1506
|
-
Minor enhancements:
|
1507
|
-
|
1508
2465
|
* Use Molinillo as the resolver library. This is the same resolver as used by
|
1509
2466
|
Bundler. Pull request #1189 by Samuel E. Giddins.
|
1510
2467
|
* Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
|
@@ -1566,7 +2523,7 @@ Minor enhancements:
|
|
1566
2523
|
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
|
1567
2524
|
Agis Anastasopoulos.
|
1568
2525
|
|
1569
|
-
Bug fixes:
|
2526
|
+
## Bug fixes:
|
1570
2527
|
|
1571
2528
|
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
1572
2529
|
Pull request #1171 by Arthur Nogueira Neves
|
@@ -1623,22 +2580,22 @@ Bug fixes:
|
|
1623
2580
|
* RubyGems handles invalid config files better. Pull request #1367 by Agis
|
1624
2581
|
Anastasopoulos.
|
1625
2582
|
|
1626
|
-
|
2583
|
+
# 2.4.8 / 2015-06-08
|
1627
2584
|
|
1628
|
-
Bug fixes:
|
2585
|
+
## Bug fixes:
|
1629
2586
|
|
1630
2587
|
* Tightened API endpoint checks for CVE-2015-3900
|
1631
2588
|
|
1632
|
-
|
2589
|
+
# 2.4.7 / 2015-05-14
|
1633
2590
|
|
1634
|
-
Bug fixes:
|
2591
|
+
## Bug fixes:
|
1635
2592
|
|
1636
2593
|
* Limit API endpoint to original security domain for CVE-2015-3900.
|
1637
2594
|
Fix by claudijd
|
1638
2595
|
|
1639
|
-
|
2596
|
+
# 2.4.6 / 2015-02-05
|
1640
2597
|
|
1641
|
-
Bug fixes:
|
2598
|
+
## Bug fixes:
|
1642
2599
|
|
1643
2600
|
* Fixed resolving gems with both upper and lower requirement boundaries.
|
1644
2601
|
Issue #1141 by Jakub Jirutka.
|
@@ -1663,9 +2620,9 @@ Bug fixes:
|
|
1663
2620
|
Ondruch.
|
1664
2621
|
* Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
|
1665
2622
|
|
1666
|
-
|
2623
|
+
# 2.4.5 / 2014-12-03
|
1667
2624
|
|
1668
|
-
Bug fixes:
|
2625
|
+
## Bug fixes:
|
1669
2626
|
|
1670
2627
|
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
1671
2628
|
request #1060 by unak.
|
@@ -1705,27 +2662,27 @@ Bug fixes:
|
|
1705
2662
|
* Fixed grouped expression warning. Pull request #1081 by André Arko.
|
1706
2663
|
* Fixed handling of platforms when writing lockfiles.
|
1707
2664
|
|
1708
|
-
|
2665
|
+
# 2.4.4 / 2014-11-12
|
1709
2666
|
|
1710
|
-
Bug fixes:
|
2667
|
+
## Bug fixes:
|
1711
2668
|
|
1712
2669
|
* Add alternate Root CA for upcoming certificate change. Fixes #1050 by
|
1713
2670
|
Protosac
|
1714
2671
|
|
1715
|
-
|
2672
|
+
# 2.4.3 / 2014-11-10
|
1716
2673
|
|
1717
|
-
Bug fixes:
|
2674
|
+
## Bug fixes:
|
1718
2675
|
|
1719
2676
|
* Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
|
1720
2677
|
* Fix typo in platform= docs. Pull request #1048 by @jasonrclark
|
1721
2678
|
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
1722
2679
|
Protosac
|
1723
2680
|
|
1724
|
-
|
2681
|
+
# 2.4.2 / 2014-10-01
|
1725
2682
|
|
1726
2683
|
This release was sponsored by Ruby Central.
|
1727
2684
|
|
1728
|
-
Bug fixes:
|
2685
|
+
## Bug fixes:
|
1729
2686
|
|
1730
2687
|
* RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
|
1731
2688
|
voelzemo.
|
@@ -1750,7 +2707,7 @@ Bug fixes:
|
|
1750
2707
|
* Fixed activating gems from a Gemfile for default gems. Issue #991 by khoan.
|
1751
2708
|
* Fixed windows stub script generation for Cygwin. Issue #1000 by Brett
|
1752
2709
|
DiFrischia.
|
1753
|
-
* Allow gem bindir and ruby.exe to live in separate
|
2710
|
+
* Allow gem bindir and ruby.exe to live in separate directories. Pull request
|
1754
2711
|
#942 by Ian Flynn.
|
1755
2712
|
* Fixed handling of gemspec in gem dependencies files to match Bundler
|
1756
2713
|
behavior. Issue #1020 by Michal Papis.
|
@@ -1759,16 +2716,16 @@ Bug fixes:
|
|
1759
2716
|
* RubyGems now fails immediately when a git reference cannot be found instead
|
1760
2717
|
of spewing git errors. Issue #1031 by Michal Papis
|
1761
2718
|
|
1762
|
-
|
2719
|
+
# 2.4.1 / 2014-07-17
|
1763
2720
|
|
1764
|
-
Bug fixes:
|
2721
|
+
## Bug fixes:
|
1765
2722
|
|
1766
2723
|
* RubyGems can now be updated on Ruby implementations that do not support
|
1767
2724
|
vendordir in RbConfig::CONFIG. Issue #974 by net1957.
|
1768
2725
|
|
1769
|
-
|
2726
|
+
# 2.4.0 / 2014-07-16
|
1770
2727
|
|
1771
|
-
|
2728
|
+
## Enhancements:
|
1772
2729
|
|
1773
2730
|
* The contents command now supports a --show-install-dir option that shows
|
1774
2731
|
only the directory the gem is installed in. Feature request #966 by Akinori
|
@@ -1779,7 +2736,7 @@ Minor enhancements:
|
|
1779
2736
|
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
1780
2737
|
Marcus Rückert.
|
1781
2738
|
|
1782
|
-
Bug fixes:
|
2739
|
+
## Bug fixes:
|
1783
2740
|
|
1784
2741
|
* Kernel#gem now respects the prerelease flag when activating gems.
|
1785
2742
|
Previously this behavior was undefined which could lead to bugs when a
|
@@ -1829,9 +2786,9 @@ Bug fixes:
|
|
1829
2786
|
during gem resolution.
|
1830
2787
|
|
1831
2788
|
|
1832
|
-
|
2789
|
+
# 2.3.0 / 2014-06-10
|
1833
2790
|
|
1834
|
-
|
2791
|
+
## Enhancements:
|
1835
2792
|
|
1836
2793
|
* Added the `open` command which allows you to inspect the source of a gem
|
1837
2794
|
using your editor.
|
@@ -1844,7 +2801,7 @@ Minor enhancements:
|
|
1844
2801
|
* Gem.use_gemdeps now accepts an argument specifying the path of the gem
|
1845
2802
|
dependencies file. When the file is not found an ArgumentError is raised.
|
1846
2803
|
* Writing a .lock file for a gem dependencies file is now controlled by the
|
1847
|
-
--[no-]lock option. Pull
|
2804
|
+
--[no-]lock option. Pull request #774 by Jeremy Evans.
|
1848
2805
|
* Suggestion of alternate names and spelling corrections during install can be
|
1849
2806
|
suppressed with the --no-suggestions option. Issue #867 by Jimmy Cuadra.
|
1850
2807
|
* Added mswin64 support. Pull request #881 by U. Nakamura.
|
@@ -1872,7 +2829,7 @@ Minor enhancements:
|
|
1872
2829
|
* RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
|
1873
2830
|
Benjamin Fleischer.
|
1874
2831
|
|
1875
|
-
Bug fixes:
|
2832
|
+
## Bug fixes:
|
1876
2833
|
|
1877
2834
|
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
1878
2835
|
up gem suggestions. Pull request #808 by Aaron Patterson.
|
@@ -1943,7 +2900,7 @@ Bug fixes:
|
|
1943
2900
|
* Check for nil extensions as BasicSpecification does not initialize them.
|
1944
2901
|
Pull request #882 by André Arko.
|
1945
2902
|
* Fixed Gem::BasicSpecification#require_paths receives a String for
|
1946
|
-
@require_paths. Pull
|
2903
|
+
@require_paths. Pull request #904 by @danielpclark
|
1947
2904
|
* Fixed circular require warnings. Bug #908 by Zachary Scott.
|
1948
2905
|
* Gem::Specification#require_paths can no longer accidentally be an Array.
|
1949
2906
|
Pull requests #904, #909 by Daniel P. Clark.
|
@@ -1952,29 +2909,29 @@ Bug fixes:
|
|
1952
2909
|
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
1953
2910
|
#852 by Vít Ondruch.
|
1954
2911
|
|
1955
|
-
|
2912
|
+
# 2.2.5 / 2015-06-08
|
1956
2913
|
|
1957
|
-
Bug fixes:
|
2914
|
+
## Bug fixes:
|
1958
2915
|
|
1959
2916
|
* Tightened API endpoint checks for CVE-2015-3900
|
1960
2917
|
|
1961
|
-
|
2918
|
+
# 2.2.4 / 2015-05-14
|
1962
2919
|
|
1963
|
-
Bug fixes:
|
2920
|
+
## Bug fixes:
|
1964
2921
|
|
1965
2922
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
1966
2923
|
Fix by claudijd
|
1967
2924
|
|
1968
|
-
|
2925
|
+
# 2.2.3 / 2014-12-21
|
1969
2926
|
|
1970
|
-
Bug fixes:
|
2927
|
+
## Bug fixes:
|
1971
2928
|
|
1972
2929
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
1973
2930
|
Fixes #1050 by Protosac
|
1974
2931
|
|
1975
|
-
|
2932
|
+
# 2.2.2 / 2014-02-05
|
1976
2933
|
|
1977
|
-
Bug fixes:
|
2934
|
+
## Bug fixes:
|
1978
2935
|
|
1979
2936
|
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
1980
2937
|
Nakada.
|
@@ -1999,9 +2956,9 @@ Bug fixes:
|
|
1999
2956
|
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
2000
2957
|
Sergio Rubio.
|
2001
2958
|
|
2002
|
-
|
2959
|
+
# 2.2.1 / 2014-01-06
|
2003
2960
|
|
2004
|
-
Bug fixes:
|
2961
|
+
## Bug fixes:
|
2005
2962
|
|
2006
2963
|
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
2007
2964
|
#767 by Diego Viola.
|
@@ -2027,12 +2984,12 @@ Bug fixes:
|
|
2027
2984
|
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
2028
2985
|
request #763 by James Mead
|
2029
2986
|
|
2030
|
-
|
2987
|
+
# 2.2.0 / 2013-12-26
|
2031
2988
|
|
2032
2989
|
Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
|
2033
2990
|
RubyGems as it was prepared for the 2.2.0 release.
|
2034
2991
|
|
2035
|
-
|
2992
|
+
## Enhancements:
|
2036
2993
|
|
2037
2994
|
* RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
|
2038
2995
|
rubygems executables are started and uses the found dependencies. This
|
@@ -2055,8 +3012,6 @@ Major enhancements:
|
|
2055
3012
|
The default sharing location may be configured by RubyGems packagers through
|
2056
3013
|
Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
|
2057
3014
|
|
2058
|
-
Minor enhancements:
|
2059
|
-
|
2060
3015
|
* RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
|
2061
3016
|
prevent an accidental push to a public repository (such as rubygems.org).
|
2062
3017
|
If you have private gems you should set this value in your gem specification
|
@@ -2102,7 +3057,7 @@ Minor enhancements:
|
|
2102
3057
|
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
2103
3058
|
Request #755 by strzibny.
|
2104
3059
|
|
2105
|
-
Bug fixes:
|
3060
|
+
## Bug fixes:
|
2106
3061
|
|
2107
3062
|
* RubyGems now returns an error status when any file given to `gem which`
|
2108
3063
|
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
@@ -2119,9 +3074,9 @@ Bug fixes:
|
|
2119
3074
|
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
2120
3075
|
Lee.
|
2121
3076
|
|
2122
|
-
|
3077
|
+
# 2.1.11 / 2013-11-12
|
2123
3078
|
|
2124
|
-
Bug fixes:
|
3079
|
+
## Bug fixes:
|
2125
3080
|
|
2126
3081
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
2127
3082
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -2131,9 +3086,9 @@ Bug fixes:
|
|
2131
3086
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
2132
3087
|
Pull Request #706 by akr.
|
2133
3088
|
|
2134
|
-
|
3089
|
+
# 2.1.10 / 2013-10-24
|
2135
3090
|
|
2136
|
-
Bug fixes:
|
3091
|
+
## Bug fixes:
|
2137
3092
|
|
2138
3093
|
* Use class check instead of :version method check when creating Gem::Version
|
2139
3094
|
objects. Fixes #674 by jkanywhere.
|
@@ -2152,18 +3107,18 @@ Bug fixes:
|
|
2152
3107
|
* The --ignore-dependencies option for gem installation works again. Issue
|
2153
3108
|
#695
|
2154
3109
|
|
2155
|
-
|
3110
|
+
# 2.1.9 / 2013-10-14
|
2156
3111
|
|
2157
|
-
Bug fixes:
|
3112
|
+
## Bug fixes:
|
2158
3113
|
|
2159
3114
|
* Reduce sorting when fetching specifications. This speeds up the update and
|
2160
3115
|
outdated commands, and others. Issue #657 by windwiny.
|
2161
3116
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
2162
3117
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
2163
3118
|
|
2164
|
-
|
3119
|
+
# 2.1.8 / 2013-10-10
|
2165
3120
|
|
2166
|
-
Bug fixes:
|
3121
|
+
## Bug fixes:
|
2167
3122
|
|
2168
3123
|
* Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
|
2169
3124
|
* Files starting with "." in the root directory are installed again. Issue
|
@@ -2171,9 +3126,9 @@ Bug fixes:
|
|
2171
3126
|
* The index generator no longer indexes default gems. Issue #661 by
|
2172
3127
|
Jeremy Hinegardner.
|
2173
3128
|
|
2174
|
-
|
3129
|
+
# 2.1.7 / 2013-10-09
|
2175
3130
|
|
2176
|
-
Bug fixes:
|
3131
|
+
## Bug fixes:
|
2177
3132
|
|
2178
3133
|
* `gem sources --list` now displays a list of sources. Pull request #672 by
|
2179
3134
|
Nathan Marley.
|
@@ -2186,9 +3141,9 @@ Bug fixes:
|
|
2186
3141
|
* Expand unpack destination directory. This fixes problems when File.realpath
|
2187
3142
|
is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
|
2188
3143
|
|
2189
|
-
|
3144
|
+
# 2.1.6 / 2013-10-08
|
2190
3145
|
|
2191
|
-
Bug fixes:
|
3146
|
+
## Bug fixes:
|
2192
3147
|
|
2193
3148
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
2194
3149
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -2203,7 +3158,7 @@ Bug fixes:
|
|
2203
3158
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
2204
3159
|
Thomas Sänger.
|
2205
3160
|
|
2206
|
-
|
3161
|
+
# 2.1.5 / 2013-09-24
|
2207
3162
|
|
2208
3163
|
Security fixes:
|
2209
3164
|
|
@@ -2212,25 +3167,25 @@ Security fixes:
|
|
2212
3167
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2213
3168
|
1.8.23.2 (for Ruby 1.9.3).
|
2214
3169
|
|
2215
|
-
|
3170
|
+
# 2.1.4 / 2013-09-17
|
2216
3171
|
|
2217
|
-
Bug fixes:
|
3172
|
+
## Bug fixes:
|
2218
3173
|
|
2219
3174
|
* `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
|
2220
3175
|
#650 by Kyle (remkade).
|
2221
3176
|
* Fixed uninstalling gems installed in the home directory (as in
|
2222
3177
|
`--user-install`). Issue #653 by Lin Jen-Shin.
|
2223
3178
|
|
2224
|
-
|
3179
|
+
# 2.1.3 / 2013-09-12
|
2225
3180
|
|
2226
|
-
Bug fixes:
|
3181
|
+
## Bug fixes:
|
2227
3182
|
|
2228
3183
|
* Gems with files entries starting with "./" no longer install 0 files. Issue
|
2229
3184
|
#644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
|
2230
3185
|
|
2231
|
-
|
3186
|
+
# 2.1.2 / 2013-09-11
|
2232
3187
|
|
2233
|
-
Bug fixes:
|
3188
|
+
## Bug fixes:
|
2234
3189
|
|
2235
3190
|
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
2236
3191
|
request #637 and issue #640 by Charles Nutter.
|
@@ -2239,14 +3194,14 @@ Bug fixes:
|
|
2239
3194
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
2240
3195
|
Issue #643 by Brian Shirai.
|
2241
3196
|
|
2242
|
-
|
3197
|
+
# 2.1.1 / 2013-09-10
|
2243
3198
|
|
2244
|
-
Bug fixes:
|
3199
|
+
## Bug fixes:
|
2245
3200
|
|
2246
3201
|
* Only matching gems matching your local platform are considered for
|
2247
3202
|
installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
|
2248
3203
|
|
2249
|
-
|
3204
|
+
# 2.1.0 / 2013-09-09
|
2250
3205
|
|
2251
3206
|
Security fixes:
|
2252
3207
|
|
@@ -2255,15 +3210,13 @@ Security fixes:
|
|
2255
3210
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2256
3211
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2257
3212
|
|
2258
|
-
|
3213
|
+
## Enhancements:
|
2259
3214
|
|
2260
3215
|
* RubyGems uses a new dependency resolver for gem installation which works
|
2261
3216
|
similar to the bundler resolver. The new resolver can resolve conflicts the
|
2262
3217
|
previous resolver could not and offers improved diagnostics when conflicts
|
2263
3218
|
are discovered.
|
2264
3219
|
|
2265
|
-
Minor enhancements:
|
2266
|
-
|
2267
3220
|
* RubyGems now has improved platform matching for the ARM architecture. Gems
|
2268
3221
|
built with a CPU of "arm" will match any specific ARM CPU. See `gem help
|
2269
3222
|
platform` for further details. Fixes #532 by Kim Burgestrand.
|
@@ -2333,7 +3286,7 @@ Minor enhancements:
|
|
2333
3286
|
still slow, but I see a near 50% improvement for 250 gems on a fast
|
2334
3287
|
connection). See also Gem::Specification::outdated_and_latest_version
|
2335
3288
|
|
2336
|
-
Bug fixes:
|
3289
|
+
## Bug fixes:
|
2337
3290
|
|
2338
3291
|
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
2339
3292
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
@@ -2341,29 +3294,29 @@ Bug fixes:
|
|
2341
3294
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
2342
3295
|
request #622 by Arthur Nogueira Neves
|
2343
3296
|
|
2344
|
-
|
3297
|
+
# 2.0.17 / 2015-06-08
|
2345
3298
|
|
2346
|
-
Bug fixes:
|
3299
|
+
## Bug fixes:
|
2347
3300
|
|
2348
3301
|
* Tightened API endpoint checks for CVE-2015-3900
|
2349
3302
|
|
2350
|
-
|
3303
|
+
# 2.0.16 / 2015-05-14
|
2351
3304
|
|
2352
|
-
Bug fixes:
|
3305
|
+
## Bug fixes:
|
2353
3306
|
|
2354
3307
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
2355
3308
|
Fix by claudijd
|
2356
3309
|
|
2357
|
-
|
3310
|
+
# 2.0.15 / 2014-12-21
|
2358
3311
|
|
2359
|
-
Bug fixes:
|
3312
|
+
## Bug fixes:
|
2360
3313
|
|
2361
3314
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
2362
3315
|
Fixes #1050 by Protosac
|
2363
3316
|
|
2364
|
-
|
3317
|
+
# 2.0.14 / 2013-11-12
|
2365
3318
|
|
2366
|
-
Bug fixes:
|
3319
|
+
## Bug fixes:
|
2367
3320
|
|
2368
3321
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
2369
3322
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -2373,9 +3326,9 @@ Bug fixes:
|
|
2373
3326
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
2374
3327
|
Pull Request #706 by akr.
|
2375
3328
|
|
2376
|
-
|
3329
|
+
# 2.0.13 / 2013-10-24
|
2377
3330
|
|
2378
|
-
Bug fixes:
|
3331
|
+
## Bug fixes:
|
2379
3332
|
|
2380
3333
|
* Use class check instead of :version method check when creating Gem::Version
|
2381
3334
|
objects. Fixes #674 by jkanywhere.
|
@@ -2384,16 +3337,16 @@ Bug fixes:
|
|
2384
3337
|
* Fix updating gems which have multiple platforms. Issue #693 by Ookami
|
2385
3338
|
Kenrou.
|
2386
3339
|
|
2387
|
-
|
3340
|
+
# 2.0.12 / 2013-10-14
|
2388
3341
|
|
2389
|
-
Bug fixes:
|
3342
|
+
## Bug fixes:
|
2390
3343
|
|
2391
3344
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
2392
3345
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
2393
3346
|
|
2394
|
-
|
3347
|
+
# 2.0.11 / 2013-10-08
|
2395
3348
|
|
2396
|
-
Bug fixes:
|
3349
|
+
## Bug fixes:
|
2397
3350
|
|
2398
3351
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
2399
3352
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -2408,7 +3361,7 @@ Bug fixes:
|
|
2408
3361
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
2409
3362
|
Thomas Sänger.
|
2410
3363
|
|
2411
|
-
|
3364
|
+
# 2.0.10 / 2013-09-24
|
2412
3365
|
|
2413
3366
|
Security fixes:
|
2414
3367
|
|
@@ -2417,16 +3370,16 @@ Security fixes:
|
|
2417
3370
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2418
3371
|
1.8.23.2 (for Ruby 1.9.3).
|
2419
3372
|
|
2420
|
-
|
3373
|
+
# 2.0.9 / 2013-09-13
|
2421
3374
|
|
2422
|
-
Bug fixes:
|
3375
|
+
## Bug fixes:
|
2423
3376
|
|
2424
3377
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
2425
3378
|
Issue #643 by Brian Shirai.
|
2426
3379
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
2427
3380
|
request #622 by Arthur Nogueira Neves
|
2428
3381
|
|
2429
|
-
|
3382
|
+
# 2.0.8 / 2013-09-09
|
2430
3383
|
|
2431
3384
|
Security fixes:
|
2432
3385
|
|
@@ -2435,14 +3388,14 @@ Security fixes:
|
|
2435
3388
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2436
3389
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2437
3390
|
|
2438
|
-
Bug fixes:
|
3391
|
+
## Bug fixes:
|
2439
3392
|
|
2440
3393
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
2441
3394
|
#625 by elarkin
|
2442
3395
|
|
2443
|
-
|
3396
|
+
# 2.0.7 / 2013-08-15
|
2444
3397
|
|
2445
|
-
Bug fixes:
|
3398
|
+
## Bug fixes:
|
2446
3399
|
|
2447
3400
|
* Extensions may now be built in parallel (therefore gems may be installed in
|
2448
3401
|
parallel). Bug #607 by Hemant Kumar.
|
@@ -2452,9 +3405,9 @@ Bug fixes:
|
|
2452
3405
|
Patches by Yui Naruse and Koichi Sasada.
|
2453
3406
|
* Fixed documentation for Kernel#require.
|
2454
3407
|
|
2455
|
-
|
3408
|
+
# 2.0.6 / 2013-07-24
|
2456
3409
|
|
2457
|
-
Bug fixes:
|
3410
|
+
## Bug fixes:
|
2458
3411
|
|
2459
3412
|
* Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
|
2460
3413
|
#593 by Blargel.
|
@@ -2466,14 +3419,14 @@ Bug fixes:
|
|
2466
3419
|
Bug #599 by Chris Riesbeck
|
2467
3420
|
* Restored default of remote search to `gem search`.
|
2468
3421
|
|
2469
|
-
|
3422
|
+
# 2.0.5 / 2013-07-11
|
2470
3423
|
|
2471
3424
|
* Fixed building of extensions that run ruby in their makefiles. Bug #589 by
|
2472
3425
|
Zachary Salzbank.
|
2473
3426
|
|
2474
|
-
|
3427
|
+
# 2.0.4 / 2013-07-09
|
2475
3428
|
|
2476
|
-
Bug fixes:
|
3429
|
+
## Bug fixes:
|
2477
3430
|
|
2478
3431
|
* Fixed error caused by gem install not finding the right platform for your
|
2479
3432
|
platform. Bug #576 by John Anderson
|
@@ -2512,9 +3465,9 @@ Bug fixes:
|
|
2512
3465
|
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
2513
3466
|
r41148 by Yui Naruse
|
2514
3467
|
|
2515
|
-
|
3468
|
+
# 2.0.3 / 2013-03-11
|
2516
3469
|
|
2517
|
-
|
3470
|
+
## Bug fixes:
|
2518
3471
|
* Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
|
2519
3472
|
#506 by André Arko
|
2520
3473
|
* Use File.realpath to remove extra / while checking if files are
|
@@ -2529,17 +3482,17 @@ Bug fixes:
|
|
2529
3482
|
* Fixed default gem key and cert locations. Pull request #511 by Samuel
|
2530
3483
|
Cochran.
|
2531
3484
|
|
2532
|
-
|
3485
|
+
# 2.0.2 / 2013-03-06
|
2533
3486
|
|
2534
|
-
|
3487
|
+
## Bug fixes:
|
2535
3488
|
* HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
|
2536
3489
|
upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
|
2537
3490
|
* SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
|
2538
3491
|
* Fixed HTTP to HTTPS upgrade for rubygems.org.
|
2539
3492
|
|
2540
|
-
|
3493
|
+
# 2.0.1 / 2013-03-05
|
2541
3494
|
|
2542
|
-
|
3495
|
+
## Bug fixes:
|
2543
3496
|
* Lazily load RubyGems.org API credentials to avoid failure during
|
2544
3497
|
RubyGems installation. Bug #465 by Isaac Sanders.
|
2545
3498
|
* RubyGems now picks the latest prerelease to install. Fixes bug #468 by
|
@@ -2561,7 +3514,7 @@ Bug fixes:
|
|
2561
3514
|
Ruby bug #7713 by nobu
|
2562
3515
|
* Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
|
2563
3516
|
|
2564
|
-
|
3517
|
+
# 2.0.0 / 2013-02-24
|
2565
3518
|
|
2566
3519
|
RubyGems 2.0 includes several new features and many breaking changes. Some of
|
2567
3520
|
these changes will cause existing software to break. These changes are a
|
@@ -2573,7 +3526,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
|
|
2573
3526
|
|
2574
3527
|
Changes since RubyGems 1.8.25 (including past pre-releases):
|
2575
3528
|
|
2576
|
-
|
3529
|
+
## Breaking changes:
|
2577
3530
|
|
2578
3531
|
* Deprecated Gem.unresolved_deps in favor of
|
2579
3532
|
Gem::Specification.unresolved_deps
|
@@ -2595,7 +3548,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2595
3548
|
* Removed support for Ruby 1.9.1
|
2596
3549
|
* Removed many deprecated methods
|
2597
3550
|
|
2598
|
-
|
3551
|
+
## Enhancements:
|
2599
3552
|
|
2600
3553
|
* Improved support for default gems shipping with ruby 2.0.0+
|
2601
3554
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -2613,8 +3566,6 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2613
3566
|
file (Gemfile, Isolate, gem.deps.rb).
|
2614
3567
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2615
3568
|
to autodetect (current and parent directories are searched).
|
2616
|
-
|
2617
|
-
* Minor enhancements:
|
2618
3569
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2619
3570
|
#419 by Erik Hollensbe
|
2620
3571
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
@@ -2657,7 +3608,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2657
3608
|
GEM_HOME
|
2658
3609
|
* When building gems with non-world-readable files a warning is shown.
|
2659
3610
|
|
2660
|
-
|
3611
|
+
## Bug fixes:
|
2661
3612
|
* Gem.refresh now maintains the active gem list. Clearing the list would
|
2662
3613
|
cause double-loads which would cause other bugs. Pull Request #427 by
|
2663
3614
|
Jeremy Evans
|
@@ -2714,7 +3665,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2714
3665
|
|
2715
3666
|
Changes since RubyGems 2.0.0.rc.2:
|
2716
3667
|
|
2717
|
-
|
3668
|
+
## Bug fixes:
|
2718
3669
|
* Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
|
2719
3670
|
#450 by Jeremy Kemper
|
2720
3671
|
* Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
|
@@ -2727,48 +3678,48 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
2727
3678
|
* Fixed verification of gems at LowSecurity due to missing signature.
|
2728
3679
|
Thanks to André Arko.
|
2729
3680
|
|
2730
|
-
|
3681
|
+
# 2.0.0.rc.2 / 2013-02-08
|
2731
3682
|
|
2732
|
-
|
3683
|
+
## Bug fixes:
|
2733
3684
|
* Fixed signature verification of gems which was broken only on master.
|
2734
3685
|
Thanks to Brian Buchanan.
|
2735
3686
|
* Proper exceptions are raised when verifying an unsigned gem. Thanks to
|
2736
3687
|
André Arko.
|
2737
3688
|
|
2738
|
-
|
3689
|
+
# 2.0.0.rc.1 / 2013-01-08
|
2739
3690
|
|
2740
|
-
|
3691
|
+
## Enhancements:
|
2741
3692
|
* This release of RubyGems can push gems to rubygems.org. Ordinarily
|
2742
3693
|
prerelease versions of RubyGems cannot push gems.
|
2743
3694
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2744
3695
|
#419 by Erik Hollensbe
|
2745
3696
|
|
2746
|
-
|
3697
|
+
## Bug fixes:
|
2747
3698
|
* Fixed exception raised when attempting to push gems to rubygems.org. Bug
|
2748
3699
|
#418 by André Arko
|
2749
3700
|
* Gem installation will fail if RubyGems cannot load the specification from
|
2750
3701
|
the gem. Bug #419 by Erik Hollensbe
|
2751
3702
|
|
2752
|
-
|
3703
|
+
# 2.0.0.preview2.2 / 2012-12-14
|
2753
3704
|
|
2754
|
-
|
3705
|
+
## Enhancements:
|
2755
3706
|
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
2756
3707
|
* Removed rubyforge page from gem list output
|
2757
3708
|
|
2758
|
-
|
3709
|
+
## Bug fixes:
|
2759
3710
|
* Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
|
2760
3711
|
#413 by Jeremy Kemper.
|
2761
3712
|
|
2762
|
-
|
3713
|
+
# 2.0.0.preview2.1 / 2012-12-08
|
2763
3714
|
|
2764
|
-
|
3715
|
+
## Enhancements:
|
2765
3716
|
* Gem::DependencyInstaller now passes build_args down to the installer.
|
2766
3717
|
Pull Request #412 by Sam Rawlins.
|
2767
3718
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
2768
3719
|
broken. Now you must manually say "yes". Pull Request #406 by Shannon
|
2769
3720
|
Skipper.
|
2770
3721
|
|
2771
|
-
|
3722
|
+
## Bug fixes:
|
2772
3723
|
* RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
|
2773
3724
|
* Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
|
2774
3725
|
* Only update the spec cache when we have permission. Ruby Bug #7509
|
@@ -2780,13 +3731,13 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
2780
3731
|
* gem install now ignores directories that match the gem to install. Bug
|
2781
3732
|
#407 by Santiago Pastorino.
|
2782
3733
|
|
2783
|
-
|
3734
|
+
# 2.0.0.preview2 / 2012-12-01
|
2784
3735
|
|
2785
3736
|
This release contains two commits not present in Ruby 2.0.0.preview2. One
|
2786
3737
|
commit is for ruby 1.8.7 support, the second allows RubyGems to work under
|
2787
3738
|
$SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
2788
3739
|
|
2789
|
-
|
3740
|
+
## Breaking changes:
|
2790
3741
|
|
2791
3742
|
* Deprecated Gem.unresolved_deps in favor of
|
2792
3743
|
Gem::Specification.unresolved_deps
|
@@ -2808,7 +3759,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2808
3759
|
* Removed support for Ruby 1.9.1
|
2809
3760
|
* Removed many deprecated methods
|
2810
3761
|
|
2811
|
-
|
3762
|
+
## Enhancements:
|
2812
3763
|
|
2813
3764
|
* Improved support for default gems shipping with ruby 2.0.0+
|
2814
3765
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -2826,9 +3777,6 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2826
3777
|
file (Gemfile, Isolate, gem.deps.rb).
|
2827
3778
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2828
3779
|
to autodetect (current and parent directories are searched).
|
2829
|
-
|
2830
|
-
* Minor enhancements:
|
2831
|
-
|
2832
3780
|
* Added --only-executables option to `gem pristine`. Fixes #326
|
2833
3781
|
* Added -I flag for 'gem query' to exclude installed items
|
2834
3782
|
* Added Gem.install(name, version=default) for interactive sessions
|
@@ -2862,7 +3810,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2862
3810
|
GEM_HOME
|
2863
3811
|
* When building gems with non-world-readable files a warning is shown.
|
2864
3812
|
|
2865
|
-
|
3813
|
+
## Bug fixes:
|
2866
3814
|
|
2867
3815
|
* Added PID to setup bin_file while installing RubyGems to protect against
|
2868
3816
|
errors. Fixes #328 by ConradIrwin
|
@@ -2903,17 +3851,17 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2903
3851
|
* URI scheme matching is no longer case-sensitive. Fixes #322
|
2904
3852
|
* ext/builder now checks $MAKE as well as $make (okkez)
|
2905
3853
|
|
2906
|
-
|
3854
|
+
# 1.8.29 / 2013-11-23
|
2907
3855
|
|
2908
|
-
Bug fixes:
|
3856
|
+
## Bug fixes:
|
2909
3857
|
|
2910
3858
|
* Fixed installation when the LANG environment variable is empty.
|
2911
3859
|
* Added DigiCert High Assurance EV Root CA to the default SSL certificates for
|
2912
3860
|
cloudfront.
|
2913
3861
|
|
2914
|
-
|
3862
|
+
# 1.8.28 / 2013-10-08
|
2915
3863
|
|
2916
|
-
Bug fixes:
|
3864
|
+
## Bug fixes:
|
2917
3865
|
|
2918
3866
|
* Added the Verisign Class 3 Public Primary Certification Authority G5
|
2919
3867
|
certificate and its intermediary to follow the s3.amazonaws.com certificate
|
@@ -2923,7 +3871,7 @@ Bug fixes:
|
|
2923
3871
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
2924
3872
|
https://rubygems.org. Pull request #673 by Hannes Georg.
|
2925
3873
|
|
2926
|
-
|
3874
|
+
# 1.8.27 / 2013-09-24
|
2927
3875
|
|
2928
3876
|
Security fixes:
|
2929
3877
|
|
@@ -2932,7 +3880,7 @@ Security fixes:
|
|
2932
3880
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2933
3881
|
1.8.23.2 (for Ruby 1.9.3).
|
2934
3882
|
|
2935
|
-
|
3883
|
+
# 1.8.26 / 2013-09-09
|
2936
3884
|
|
2937
3885
|
Security fixes:
|
2938
3886
|
|
@@ -2941,13 +3889,13 @@ Security fixes:
|
|
2941
3889
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2942
3890
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2943
3891
|
|
2944
|
-
Bug fixes:
|
3892
|
+
## Bug fixes:
|
2945
3893
|
|
2946
3894
|
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
2947
3895
|
|
2948
|
-
|
3896
|
+
# 1.8.25 / 2013-01-24
|
2949
3897
|
|
2950
|
-
|
3898
|
+
## Bug fixes:
|
2951
3899
|
* Added 11627 to setup bin_file location to protect against errors. Fixes
|
2952
3900
|
#328 by ConradIrwin
|
2953
3901
|
* Specification#ruby_code didn't handle Requirement with multiple
|
@@ -2956,14 +3904,14 @@ Bug fixes:
|
|
2956
3904
|
* Fix missing load_yaml in YAML-related requirement.rb code.
|
2957
3905
|
* Manually backport encoding-aware YAML gemspec
|
2958
3906
|
|
2959
|
-
|
3907
|
+
# 1.8.24 / 2012-04-27
|
2960
3908
|
|
2961
|
-
|
3909
|
+
## Bug fixes:
|
2962
3910
|
|
2963
3911
|
* Install the .pem files properly. Fixes #320
|
2964
3912
|
* Remove OpenSSL dependency from the http code path
|
2965
3913
|
|
2966
|
-
|
3914
|
+
# 1.8.23.2 / 2013-09-24
|
2967
3915
|
|
2968
3916
|
Security fixes:
|
2969
3917
|
|
@@ -2972,7 +3920,7 @@ Security fixes:
|
|
2972
3920
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2973
3921
|
1.8.23.2 (for Ruby 1.9.3).
|
2974
3922
|
|
2975
|
-
|
3923
|
+
# 1.8.23.1 / 2013-09-09
|
2976
3924
|
|
2977
3925
|
Security fixes:
|
2978
3926
|
|
@@ -2981,7 +3929,7 @@ Security fixes:
|
|
2981
3929
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2982
3930
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2983
3931
|
|
2984
|
-
|
3932
|
+
# 1.8.23 / 2012-04-19
|
2985
3933
|
|
2986
3934
|
This release increases the security used when RubyGems is talking to
|
2987
3935
|
an https server. If you use a custom RubyGems server over SSL, this
|
@@ -2997,53 +3945,53 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
|
|
2997
3945
|
certificate checks, but this is not recommended.
|
2998
3946
|
|
2999
3947
|
|
3000
|
-
|
3948
|
+
Security fixes:
|
3001
3949
|
* Disallow redirects from https to http
|
3002
3950
|
* Turn on verification of server SSL certs
|
3003
3951
|
|
3004
|
-
|
3952
|
+
## Enhancements:
|
3005
3953
|
* Add --clear-sources to fetch
|
3006
3954
|
|
3007
|
-
|
3955
|
+
## Bug fixes:
|
3008
3956
|
* Use File.identical? to check if two files are the same.
|
3009
3957
|
* Fixed init_with warning when using psych
|
3010
3958
|
|
3011
|
-
|
3959
|
+
# 1.8.22 / 2012-04-13
|
3012
3960
|
|
3013
|
-
|
3961
|
+
## Bug fixes:
|
3014
3962
|
|
3015
3963
|
* Workaround for psych/syck YAML date parsing issue
|
3016
3964
|
* Don't trust the encoding of ARGV. Fixes #307
|
3017
3965
|
* Quiet default warnings about missing spec variables
|
3018
3966
|
* Read a binary file properly (windows fix)
|
3019
3967
|
|
3020
|
-
|
3968
|
+
# 1.8.21 / 2012-03-22
|
3021
3969
|
|
3022
|
-
|
3970
|
+
## Bug fixes:
|
3023
3971
|
|
3024
3972
|
* Add workaround for buggy yaml output from 1.9.2
|
3025
3973
|
* Force 1.9.1 to remove it's prelude code. Fixes #305
|
3026
3974
|
|
3027
|
-
|
3975
|
+
# 1.8.20 / 2012-03-21
|
3028
3976
|
|
3029
|
-
|
3977
|
+
## Bug fixes:
|
3030
3978
|
|
3031
3979
|
* Add --force to `gem build` to skip validation. Fixes #297
|
3032
3980
|
* Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
|
3033
3981
|
* Treat the source as a proper url base. Fixes #304
|
3034
3982
|
* Warn when updating the specs cache fails. Fixes #300
|
3035
3983
|
|
3036
|
-
|
3984
|
+
# 1.8.19 / 2012-03-14
|
3037
3985
|
|
3038
|
-
|
3986
|
+
## Bug fixes:
|
3039
3987
|
|
3040
3988
|
* Handle loading psych vs syck properly. Fixes #298
|
3041
3989
|
* Make sure Date objects don't leak in via Marshal
|
3042
3990
|
* Perform Date => Time coercion on yaml loading. Fixes #266
|
3043
3991
|
|
3044
|
-
|
3992
|
+
# 1.8.18 / 2012-03-11
|
3045
3993
|
|
3046
|
-
|
3994
|
+
## Bug fixes:
|
3047
3995
|
|
3048
3996
|
* Use Psych API to emit more compatible YAML
|
3049
3997
|
* Download and write inside `gem fetch` directly. Fixes #289
|
@@ -3051,14 +3999,14 @@ certificate checks, but this is not recommended.
|
|
3051
3999
|
* Search everywhere for a spec for `gem spec`. Fixes #288
|
3052
4000
|
* Fix Gem.all_load_path. Fixes #171
|
3053
4001
|
|
3054
|
-
|
4002
|
+
# 1.8.17 / 2012-02-17
|
3055
4003
|
|
3056
|
-
|
4004
|
+
## Enhancements:
|
3057
4005
|
|
3058
4006
|
* Add MacRuby to the list of special cases for platforms (ferrous26)
|
3059
4007
|
* Add a default for where to install rubygems itself
|
3060
4008
|
|
3061
|
-
|
4009
|
+
## Bug fixes:
|
3062
4010
|
|
3063
4011
|
* Fixed gem loading issue caused by dependencies not resolving.
|
3064
4012
|
* Fixed umask error when stdlib is required and unresolved dependencies exist.
|
@@ -3066,57 +4014,59 @@ certificate checks, but this is not recommended.
|
|
3066
4014
|
* Define SUCKAGE better, ie only MRI 1.9.2
|
3067
4015
|
* Propagate env-shebang to the pristine command if set for install.
|
3068
4016
|
|
3069
|
-
|
4017
|
+
# 1.8.16 / 2012-02-12
|
3070
4018
|
|
3071
|
-
|
4019
|
+
## Bug fixes:
|
3072
4020
|
|
3073
4021
|
* Fix gem specification loading when encoding is not UTF-8. #146
|
3074
4022
|
* Allow group writable if umask allows it already.
|
3075
4023
|
* Uniquify the spec list based on directory order priority
|
3076
4024
|
|
3077
|
-
|
4025
|
+
# 1.8.15 / 2012-01-06
|
3078
4026
|
|
3079
|
-
|
4027
|
+
## Bug fixes:
|
3080
4028
|
|
3081
4029
|
* Don't eager load yaml, it creates a bad loop. Fixes #256
|
3082
4030
|
|
3083
|
-
|
4031
|
+
# 1.8.14 / 2012-01-05
|
3084
4032
|
|
3085
|
-
|
4033
|
+
## Bug fixes:
|
3086
4034
|
|
3087
4035
|
* Ignore old/bad cache data in Version
|
3088
4036
|
* Make sure our YAML workarounds are loaded properly. Fixes #250.
|
3089
4037
|
|
3090
|
-
|
4038
|
+
# 1.8.13 / 2011-12-21
|
3091
4039
|
|
3092
|
-
|
4040
|
+
## Bug fixes:
|
3093
4041
|
|
3094
4042
|
* Check loaded_specs properly when trying to satisfy a dep
|
3095
4043
|
|
3096
|
-
|
4044
|
+
## Enhancements:
|
3097
4045
|
|
3098
4046
|
* Remove using #loaded_path? for performance
|
3099
4047
|
* Remove Zlib workaround for Windows build.
|
3100
4048
|
|
3101
|
-
|
4049
|
+
# 1.8.12 / 2011-12-02
|
4050
|
+
|
4051
|
+
## Bug fixes:
|
3102
4052
|
|
3103
|
-
* Bug fix:
|
3104
4053
|
* Handle more cases where Syck's DefaultKey showed up in requirements
|
3105
4054
|
and wasn't cleaned out.
|
3106
4055
|
|
3107
|
-
|
4056
|
+
# 1.8.11 / 2011-10-03
|
4057
|
+
|
4058
|
+
## Bug fixes:
|
3108
4059
|
|
3109
|
-
* Bug fix:
|
3110
4060
|
* Deprecate was moved to Gem::Deprecate to stop polluting the top-level
|
3111
4061
|
namespace.
|
3112
4062
|
|
3113
|
-
|
4063
|
+
# 1.8.10 / 2011-08-25
|
3114
4064
|
|
3115
4065
|
RubyGems 1.8.10 contains a security fix that prevents malicious gems from
|
3116
4066
|
executing code when their specification is loaded. See
|
3117
4067
|
https://github.com/rubygems/rubygems/pull/165 for details.
|
3118
4068
|
|
3119
|
-
|
4069
|
+
## Bug fixes:
|
3120
4070
|
|
3121
4071
|
* RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
|
3122
4072
|
and %q to prevent code injection. Issue #165 by Postmodern
|
@@ -3127,21 +4077,21 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3127
4077
|
* Fixed Syck DefaultKey infecting ruby-format specifications.
|
3128
4078
|
* `gem uninstall a b` no longer stops if gem "a" is not installed.
|
3129
4079
|
|
3130
|
-
|
4080
|
+
# 1.8.9 / 2011-08-23
|
3131
4081
|
|
3132
|
-
|
4082
|
+
## Bug fixes:
|
3133
4083
|
|
3134
4084
|
* Fixed uninstalling multiple gems using `gem uninstall`
|
3135
4085
|
* Gem.use_paths splatted to take multiple paths! Issue #148
|
3136
4086
|
|
3137
|
-
|
4087
|
+
# 1.8.8 / 2011-08-11
|
3138
4088
|
|
3139
|
-
|
4089
|
+
## Bug fixes:
|
3140
4090
|
* The encoding of a gem's YAML spec is now UTF-8. Issue #149
|
3141
4091
|
|
3142
|
-
|
4092
|
+
# 1.8.7 / 2011-08-04
|
3143
4093
|
|
3144
|
-
|
4094
|
+
## Bug fixes:
|
3145
4095
|
* Added missing require for `gem uninstall --format-executable`
|
3146
4096
|
* The correct name of the executable being uninstalled is now displayed with
|
3147
4097
|
--format-executable
|
@@ -3153,14 +4103,14 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3153
4103
|
* Gem repository directories are no longer created world-writable. Patch by
|
3154
4104
|
Sakuro OZAWA. Ruby Bug #4930
|
3155
4105
|
|
3156
|
-
|
4106
|
+
# 1.8.6 / 2011-07-25
|
3157
4107
|
|
3158
|
-
|
4108
|
+
## Enhancements:
|
3159
4109
|
|
3160
4110
|
* Add autorequires and delay startup of RubyGems until require is called.
|
3161
4111
|
See Ruby bug #4962
|
3162
4112
|
|
3163
|
-
|
4113
|
+
## Bug fixes:
|
3164
4114
|
|
3165
4115
|
* Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
|
3166
4116
|
* Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
|
@@ -3172,27 +4122,27 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3172
4122
|
* Handle the Syck DefaultKey problem once and for all.
|
3173
4123
|
* Fix SystemStackError occurring with "gem list -r -a" on 1.9.
|
3174
4124
|
|
3175
|
-
|
4125
|
+
# 1.8.5 / 2011-05-31
|
3176
4126
|
|
3177
|
-
|
4127
|
+
## Enhancements:
|
3178
4128
|
|
3179
4129
|
* The -u option to 'update local source cache' is official deprecated.
|
3180
4130
|
* Remove has_rdoc deprecations from Specification.
|
3181
4131
|
|
3182
|
-
|
4132
|
+
## Bug fixes:
|
3183
4133
|
|
3184
4134
|
* Handle bad specs more gracefully.
|
3185
4135
|
* Reset any Gem paths changed in the installer.
|
3186
4136
|
|
3187
|
-
|
4137
|
+
# 1.8.4 / 2011-05-25
|
3188
4138
|
|
3189
|
-
|
4139
|
+
## Enhancements:
|
3190
4140
|
|
3191
4141
|
* Removed default_executable deprecations from Specification.
|
3192
4142
|
|
3193
|
-
|
4143
|
+
# 1.8.3 / 2011-05-19
|
3194
4144
|
|
3195
|
-
|
4145
|
+
## Bug fixes:
|
3196
4146
|
|
3197
4147
|
* Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
|
3198
4148
|
Shota Fukumori
|
@@ -3201,33 +4151,33 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3201
4151
|
* Fixed some bad calls left behind after rolling out some refactorings.
|
3202
4152
|
* Syck has a parse error on (good) times output from Psych. (dazuma, et al)
|
3203
4153
|
|
3204
|
-
|
4154
|
+
# 1.8.2 / 2011-05-11
|
3205
4155
|
|
3206
|
-
|
4156
|
+
## Enhancements:
|
3207
4157
|
|
3208
4158
|
* Moved #outdated from OutdatedCommand to Specification (for Isolate).
|
3209
4159
|
* Print out a warning about missing executables.
|
3210
4160
|
|
3211
|
-
|
4161
|
+
## Bug fixes:
|
3212
4162
|
|
3213
4163
|
* Added missing requires to fix various upgrade issues.
|
3214
4164
|
* `gem pristine` respects multiple gem repositories.
|
3215
4165
|
* setup.rb now execs with --disable-gems when possible
|
3216
4166
|
|
3217
|
-
|
4167
|
+
# 1.8.1 / 2011-05-05
|
3218
4168
|
|
3219
|
-
|
4169
|
+
## Enhancements:
|
3220
4170
|
|
3221
4171
|
* Added Gem::Requirement#specific? and Gem::Dependency#specific?
|
3222
4172
|
|
3223
|
-
|
4173
|
+
## Bug fixes:
|
3224
4174
|
|
3225
4175
|
* Typo on Indexer rendered it useless on Windows
|
3226
4176
|
* gem dep can fetch remote dependencies for non-latest gems again.
|
3227
4177
|
* gem uninstall with multiple versions no longer crashes with ArgumentError
|
3228
4178
|
* Always use binary mode for File.open to keep Windows happy
|
3229
4179
|
|
3230
|
-
|
4180
|
+
# 1.8.0 / 2011-04-34
|
3231
4181
|
|
3232
4182
|
This release focused on properly encapsulating functionality. Most of this
|
3233
4183
|
work focused on moving functionality out of Gem::SourceIndex and
|
@@ -3242,7 +4192,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
|
|
3242
4192
|
--build-arg` to regenerate a gem with an extension where it requires special
|
3243
4193
|
build arguments.
|
3244
4194
|
|
3245
|
-
|
4195
|
+
## Deprecations:
|
3246
4196
|
|
3247
4197
|
* DependencyList.from_source_index deprecated the source_index argument.
|
3248
4198
|
* Deprecated Dependency.new(/regex/).
|
@@ -3263,14 +4213,11 @@ build arguments.
|
|
3263
4213
|
* Deprecated all of Gem::GemPathSearcher.
|
3264
4214
|
* Deprecated Gem::Specification#default_executable.
|
3265
4215
|
|
3266
|
-
|
4216
|
+
## Enhancements:
|
3267
4217
|
|
3268
4218
|
* Gem::SourceIndex functionality has been moved to Gem::Specification.
|
3269
4219
|
Gem::SourceIndex is completely disconnected from Gem::Specification
|
3270
4220
|
* Refactored GemPathSearcher entirely out. RIPMF
|
3271
|
-
|
3272
|
-
* 41 minor enhancements:
|
3273
|
-
|
3274
4221
|
* Added CommandManager#unregister_command
|
3275
4222
|
* Added Dependency#matching_specs + to_specs.
|
3276
4223
|
* Added Dependency#to_spec
|
@@ -3318,7 +4265,7 @@ build arguments.
|
|
3318
4265
|
extensions.
|
3319
4266
|
* `gem pristine` can now restore multiple gems.
|
3320
4267
|
|
3321
|
-
|
4268
|
+
## Bug fixes:
|
3322
4269
|
|
3323
4270
|
* DependencyInstaller passed around a source_index instance but used
|
3324
4271
|
Gem.source_index.
|
@@ -3330,15 +4277,15 @@ build arguments.
|
|
3330
4277
|
* `gem pristine` can now restore non-latest gems where the cached gem was
|
3331
4278
|
removed.
|
3332
4279
|
|
3333
|
-
|
4280
|
+
# 1.7.1 / 2011-03-32
|
3334
4281
|
|
3335
|
-
|
4282
|
+
## Bug fixes:
|
3336
4283
|
* Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
|
3337
4284
|
`rake check_manifest` showing a diff would not exit with an error.)
|
3338
4285
|
|
3339
|
-
|
4286
|
+
# 1.7.0 / 2011-03-32
|
3340
4287
|
|
3341
|
-
|
4288
|
+
## Deprecations:
|
3342
4289
|
* Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
|
3343
4290
|
cache.
|
3344
4291
|
* Deprecated RemoteFetcher#open_uri_or_path.
|
@@ -3350,7 +4297,7 @@ build arguments.
|
|
3350
4297
|
test_suite_file(=).
|
3351
4298
|
* Deprecated Specification#has_rdoc= and default_executable=
|
3352
4299
|
|
3353
|
-
|
4300
|
+
## Enhancements:
|
3354
4301
|
* Added stupid simple deprecation module.
|
3355
4302
|
* Added --spec option to `gem unpack` to output a gem's original metadata
|
3356
4303
|
* Added packaging option to Specification#validate
|
@@ -3382,14 +4329,14 @@ build arguments.
|
|
3382
4329
|
* UpdateCommand#gems_to_update now returns (name, version) pairs.
|
3383
4330
|
* UpdateCommand#which_to_update now takes an optional system argument.
|
3384
4331
|
|
3385
|
-
|
4332
|
+
## Bug fixes:
|
3386
4333
|
* Added missing remote fetcher require to pristine command (aarnell)
|
3387
4334
|
* Building gems now checks to ensure all required fields are non-nil
|
3388
4335
|
* Fix option parser when summary is nil.
|
3389
4336
|
* Fixed `gem contents` to work with the lightweight specifications
|
3390
4337
|
* Fixed `gem update --system x.y.z` where x.y.z == latest version. (MGPalmer)
|
3391
4338
|
* Fixed gem contents sorting and tests. (MGPalmer)
|
3392
|
-
* Fixed
|
4339
|
+
* Fixed intermittent problem in `gem fetch` with --platform specified (quix)
|
3393
4340
|
* Fixed lightweight specifications so `gem rdoc` will generate proper
|
3394
4341
|
documentation
|
3395
4342
|
* MockGemUI#terminate_interaction should not raise Gem::SystemExitException.
|
@@ -3398,17 +4345,17 @@ build arguments.
|
|
3398
4345
|
Elias Baixas
|
3399
4346
|
* `gem update` now uniq's command line arguments.
|
3400
4347
|
|
3401
|
-
|
4348
|
+
# 1.6.2 / 2011-03-08
|
3402
4349
|
|
3403
|
-
Bug
|
4350
|
+
## Bug fixes:
|
3404
4351
|
|
3405
4352
|
* require of an activated gem could cause activation conflicts. Fixes
|
3406
4353
|
Bug #29056 by Dave Verwer.
|
3407
4354
|
* `gem outdated` now works with up-to-date prerelease gems.
|
3408
4355
|
|
3409
|
-
|
4356
|
+
# 1.6.1 / 2011-03-03
|
3410
4357
|
|
3411
|
-
Bug
|
4358
|
+
## Bug fixes:
|
3412
4359
|
|
3413
4360
|
* Installation no longer fails when a dependency from a version that won't be
|
3414
4361
|
installed is unsatisfied.
|
@@ -3417,9 +4364,9 @@ Bug Fixes:
|
|
3417
4364
|
* Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
|
3418
4365
|
* Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
|
3419
4366
|
|
3420
|
-
|
4367
|
+
# 1.6.0 / 2011-02-29
|
3421
4368
|
|
3422
|
-
|
4369
|
+
## Deprecations:
|
3423
4370
|
|
3424
4371
|
* RubyGems no longer requires 'thread'. Rails < 3 will need to add require
|
3425
4372
|
'thread' to their applications.
|
@@ -3428,14 +4375,11 @@ Bug Fixes:
|
|
3428
4375
|
* Gem::LoadError#version_requirements has been removed. Use
|
3429
4376
|
Gem::LoadError#requirement.
|
3430
4377
|
|
3431
|
-
|
4378
|
+
## Enhancements:
|
3432
4379
|
|
3433
4380
|
* Rewrote how Gem::activate (gem and require) resolves dependencies.
|
3434
4381
|
* Gem::LoadError#version_requirement has been removed. Use
|
3435
4382
|
Gem::LoadError#requirement.
|
3436
|
-
|
3437
|
-
17 Minor Enhancments:
|
3438
|
-
|
3439
4383
|
* Added --key to `gem push` for setting alternate API keys.
|
3440
4384
|
* Added --format-executable support to gem uninstall.
|
3441
4385
|
* Added Gem::DependencyList#clear.
|
@@ -3459,7 +4403,7 @@ Bug Fixes:
|
|
3459
4403
|
locally cached gem specifications.
|
3460
4404
|
* SpecFetcher.fetch_spec can now take a string source_uri.
|
3461
4405
|
|
3462
|
-
|
4406
|
+
## Bug fixes:
|
3463
4407
|
|
3464
4408
|
* Added missing require of Gem::RemoteFetcher to the unpack command.
|
3465
4409
|
* RubyGems now completely removes a previous install when reinstalling.
|
@@ -3472,28 +4416,28 @@ Bug Fixes:
|
|
3472
4416
|
* Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
|
3473
4417
|
* Gem::Uninstaller now respects --format-executable.
|
3474
4418
|
|
3475
|
-
|
4419
|
+
# 1.5.3 / 2011-02-26
|
3476
4420
|
|
3477
|
-
Bug
|
4421
|
+
## Bug fixes:
|
3478
4422
|
|
3479
4423
|
* Fix for a bug in Syck which causes install failures for gems packaged with
|
3480
4424
|
Psych. Bug #28965 by Aaron Patterson.
|
3481
4425
|
|
3482
|
-
|
4426
|
+
# 1.5.2 / 2011-02-10
|
3483
4427
|
|
3484
|
-
Bug
|
4428
|
+
## Bug fixes:
|
3485
4429
|
|
3486
4430
|
* Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
|
3487
4431
|
|
3488
|
-
|
4432
|
+
# 1.5.1 / 2011-02-09
|
3489
4433
|
|
3490
|
-
|
4434
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
3491
4435
|
|
3492
|
-
|
4436
|
+
## Enhancements:
|
3493
4437
|
|
3494
4438
|
* Added ability to do gem update --system X.Y.Z.
|
3495
4439
|
|
3496
|
-
Bug
|
4440
|
+
## Bug fixes:
|
3497
4441
|
|
3498
4442
|
* Scrub !!null YAML from 1.9.2 (install and build).
|
3499
4443
|
* Added missing requires for user_interaction.
|
@@ -3502,17 +4446,14 @@ Bug Fixes:
|
|
3502
4446
|
* Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
|
3503
4447
|
* RubyGems now enforces ruby 1.8.7 or newer.
|
3504
4448
|
|
3505
|
-
|
4449
|
+
# 1.5.0 / 2011-01-31
|
3506
4450
|
|
3507
|
-
|
4451
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
3508
4452
|
|
3509
|
-
|
4453
|
+
## Enhancements:
|
3510
4454
|
|
3511
4455
|
* Finally fixed all known 1.9.x issues. Upgrading is now possible!
|
3512
4456
|
* Merged huge 1.3.7/ruby-core changes to master.
|
3513
|
-
|
3514
|
-
Minor Enhancements:
|
3515
|
-
|
3516
4457
|
* Added UPGRADING.rdoc to help deal with 1.9 issues.
|
3517
4458
|
* Gem::Format now gives better errors for corrupt gem files and includes paths
|
3518
4459
|
* Pre-install hooks can now abort gem installation by returning false
|
@@ -3524,7 +4465,7 @@ Minor Enhancements:
|
|
3524
4465
|
* Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
|
3525
4466
|
Erik Hollensbe.
|
3526
4467
|
|
3527
|
-
Bug
|
4468
|
+
## Bug fixes:
|
3528
4469
|
|
3529
4470
|
* `gem update` was implicitly doing --system.
|
3530
4471
|
* 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
|
@@ -3536,25 +4477,25 @@ Bug Fixes:
|
|
3536
4477
|
Erik Hollensbe.
|
3537
4478
|
* rubygems-update lists its development dependencies again
|
3538
4479
|
|
3539
|
-
|
4480
|
+
# 1.4.2 / 2011-01-06
|
3540
4481
|
|
3541
|
-
Bug fixes:
|
4482
|
+
## Bug fixes:
|
3542
4483
|
|
3543
4484
|
* Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
|
3544
4485
|
* Fixed Gem.find_files.
|
3545
4486
|
* Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
|
3546
4487
|
|
3547
|
-
|
4488
|
+
# 1.4.1 / 2010-12-31
|
3548
4489
|
|
3549
4490
|
Since apparently nobody reads my emails, blog posts or the README:
|
3550
4491
|
|
3551
4492
|
DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
|
3552
4493
|
|
3553
|
-
Bug
|
4494
|
+
## Bug fixes:
|
3554
4495
|
|
3555
4496
|
* Specification#load was untainting a frozen string (via `gem build *.spec`)
|
3556
4497
|
|
3557
|
-
|
4498
|
+
# 1.4.0 / 2010-12-30
|
3558
4499
|
|
3559
4500
|
NOTE: In order to better maintain rubygems and to get it in sync with
|
3560
4501
|
the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
|
@@ -3564,7 +4505,7 @@ You have been warned!
|
|
3564
4505
|
|
3565
4506
|
NOTE: We've switched to git/github. See README.rdoc for details.
|
3566
4507
|
|
3567
|
-
|
4508
|
+
## Features:
|
3568
4509
|
|
3569
4510
|
* Added --launch option to `gem server`. (gthiesfeld)
|
3570
4511
|
* Added fuzzy name matching on install failures. (gstark/presidentbeef)
|
@@ -3574,7 +4515,7 @@ New features:
|
|
3574
4515
|
* --source is now additive with your current sources.
|
3575
4516
|
Use --clear-sources first to maintain previous behavior.
|
3576
4517
|
|
3577
|
-
Bug fixes:
|
4518
|
+
## Bug fixes:
|
3578
4519
|
|
3579
4520
|
* Dependency "~>"s now respect lower-bound prerelease versions.
|
3580
4521
|
* Ensure the gem directories exist on download.
|
@@ -3585,7 +4526,7 @@ Bug fixes:
|
|
3585
4526
|
Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
|
3586
4527
|
* Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
|
3587
4528
|
|
3588
|
-
|
4529
|
+
# 1.3.7 / 2010-05-13
|
3589
4530
|
|
3590
4531
|
NOTE:
|
3591
4532
|
|
@@ -3596,7 +4537,7 @@ http://gems.rubyforge.org with https://rubygems.org/
|
|
3596
4537
|
|
3597
4538
|
http://gems.rubyforge.org will continue to work for the foreseeable future.
|
3598
4539
|
|
3599
|
-
|
4540
|
+
## Features:
|
3600
4541
|
|
3601
4542
|
* `gem` commands
|
3602
4543
|
* `gem install` and `gem fetch` now report alternate platforms when a
|
@@ -3615,7 +4556,7 @@ New features:
|
|
3615
4556
|
in 1.3.6)
|
3616
4557
|
* RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
|
3617
4558
|
|
3618
|
-
Bug fixes:
|
4559
|
+
## Bug fixes:
|
3619
4560
|
|
3620
4561
|
* Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
|
3621
4562
|
Roger Pack.
|
@@ -3627,9 +4568,9 @@ Bug fixes:
|
|
3627
4568
|
* Gem::PackageTask depends on the package dir like the other rake package
|
3628
4569
|
tasks so dependencies can be hooked up correctly.
|
3629
4570
|
|
3630
|
-
|
4571
|
+
# 1.3.6 / 2010-02-17
|
3631
4572
|
|
3632
|
-
|
4573
|
+
## Features:
|
3633
4574
|
|
3634
4575
|
* `gem` commands
|
3635
4576
|
* Added `gem push` and `gem owner` for interacting with modern/Gemcutter
|
@@ -3641,7 +4582,7 @@ New features:
|
|
3641
4582
|
force rebuilding. Patch #25982 by Akinori MUSHA.
|
3642
4583
|
* Capital letters are now allowed in prerelease versions.
|
3643
4584
|
|
3644
|
-
Bug fixes:
|
4585
|
+
## Bug fixes:
|
3645
4586
|
|
3646
4587
|
* Development deps are no longer added to rubygems-update gem so older
|
3647
4588
|
versions can update successfully.
|
@@ -3660,7 +4601,7 @@ Bug fixes:
|
|
3660
4601
|
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
|
3661
4602
|
Patch #27409 by Jakub Šťastný.
|
3662
4603
|
|
3663
|
-
|
4604
|
+
## Deprecations:
|
3664
4605
|
|
3665
4606
|
* lib/rubygems/timer.rb has been removed.
|
3666
4607
|
* Gem::Dependency#version_requirements is deprecated and will be removed on or
|
@@ -3669,23 +4610,23 @@ Deprecation Notices:
|
|
3669
4610
|
* Gem::manage_gems was removed in 1.3.3.
|
3670
4611
|
* Time::today was removed in 1.3.3.
|
3671
4612
|
|
3672
|
-
|
4613
|
+
# 1.3.5 / 2009-07-21
|
3673
4614
|
|
3674
|
-
Bug fixes:
|
4615
|
+
## Bug fixes:
|
3675
4616
|
|
3676
4617
|
* Fix use of prerelease gems.
|
3677
4618
|
* Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
|
3678
4619
|
|
3679
|
-
|
4620
|
+
## Deprecations:
|
3680
4621
|
|
3681
4622
|
* Bulk index update is no longer supported (the code currently remains, but not
|
3682
4623
|
the tests)
|
3683
4624
|
* Gem::manage_gems was removed in 1.3.3.
|
3684
4625
|
* Time::today was removed in 1.3.3.
|
3685
4626
|
|
3686
|
-
|
4627
|
+
# 1.3.4 / 2009-05-03
|
3687
4628
|
|
3688
|
-
Bug
|
4629
|
+
## Bug fixes:
|
3689
4630
|
|
3690
4631
|
* Fixed various warnings
|
3691
4632
|
* Gem::ruby_version works correctly for 1.8 branch and trunk
|
@@ -3696,16 +4637,16 @@ Bug Fixes:
|
|
3696
4637
|
drives. Bug #25882 by Lars Christensen
|
3697
4638
|
* Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
|
3698
4639
|
|
3699
|
-
|
4640
|
+
## Deprecations:
|
3700
4641
|
|
3701
4642
|
* Bulk index update is no longer supported (the code currently remains, but not
|
3702
4643
|
the tests)
|
3703
4644
|
* Gem::manage_gems was removed in 1.3.3.
|
3704
4645
|
* Time::today was removed in 1.3.3.
|
3705
4646
|
|
3706
|
-
|
4647
|
+
# 1.3.3 / 2009-05-04
|
3707
4648
|
|
3708
|
-
|
4649
|
+
## Features:
|
3709
4650
|
|
3710
4651
|
* `gem server` allows port names (from /etc/services) with --port.
|
3711
4652
|
* `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
|
@@ -3715,7 +4656,7 @@ New Features:
|
|
3715
4656
|
* Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
|
3716
4657
|
* RDoc is now generated regardless of Gem::Specification#has_rdoc?
|
3717
4658
|
|
3718
|
-
Bug
|
4659
|
+
## Bug fixes:
|
3719
4660
|
|
3720
4661
|
* `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
|
3721
4662
|
Eisenberg.
|
@@ -3737,15 +4678,15 @@ Bug Fixes:
|
|
3737
4678
|
* Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
|
3738
4679
|
reported by Alf Mikula.
|
3739
4680
|
|
3740
|
-
|
4681
|
+
## Deprecations:
|
3741
4682
|
|
3742
4683
|
* Gem::manage_gems has been removed.
|
3743
4684
|
* Time::today has been removed early. There was no way to make it warn and be
|
3744
4685
|
easy to override with user code.
|
3745
4686
|
|
3746
|
-
|
4687
|
+
# 1.3.2 / 2009-04-15
|
3747
4688
|
|
3748
|
-
|
4689
|
+
## Features:
|
3749
4690
|
|
3750
4691
|
* RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
|
3751
4692
|
This can be used to add commands (See Gem::CommandManager) or add
|
@@ -3773,7 +4714,7 @@ Select New Features:
|
|
3773
4714
|
* Modern indicies can now be updated incrementally.
|
3774
4715
|
* Legacy indicies can be updated separately from modern.
|
3775
4716
|
|
3776
|
-
|
4717
|
+
## Bug fixes:
|
3777
4718
|
|
3778
4719
|
* Better gem activation error message. Patch #23082.
|
3779
4720
|
* Kernel methods are now private. Patch #20801 by James M. Lawrence.
|
@@ -3799,7 +4740,7 @@ Select Bugs Fixed:
|
|
3799
4740
|
* Deal with extraneous quotation mark when autogenerating .bat file on MS
|
3800
4741
|
Windows. Bug #22712.
|
3801
4742
|
|
3802
|
-
|
4743
|
+
## Deprecations:
|
3803
4744
|
|
3804
4745
|
* Gem::manage_gems has been removed.
|
3805
4746
|
* Time::today will be removed in RubyGems 1.4.
|
@@ -3807,9 +4748,9 @@ Deprecation Notices:
|
|
3807
4748
|
Special thanks to Chad Wooley for backwards compatibility testing and Luis
|
3808
4749
|
Lavena and Daniel Berger for continuing windows support.
|
3809
4750
|
|
3810
|
-
|
4751
|
+
# 1.3.1 / 2008-10-28
|
3811
4752
|
|
3812
|
-
|
4753
|
+
## Bug fixes:
|
3813
4754
|
|
3814
4755
|
* Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
|
3815
4756
|
issues related to no uid support under Windows.
|
@@ -3820,13 +4761,13 @@ Bugs fixed:
|
|
3820
4761
|
* Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
|
3821
4762
|
* Silence PATH warning.
|
3822
4763
|
|
3823
|
-
|
4764
|
+
## Deprecations:
|
3824
4765
|
|
3825
4766
|
* Gem::manage_gems will be removed on or after March 2009.
|
3826
4767
|
|
3827
|
-
|
4768
|
+
# 1.3.0 / 2008-09-25
|
3828
4769
|
|
3829
|
-
|
4770
|
+
## Features:
|
3830
4771
|
|
3831
4772
|
* RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
|
3832
4773
|
stdout is not a TTY, except with --both.
|
@@ -3840,12 +4781,12 @@ New features:
|
|
3840
4781
|
* RubyGems now updates the ri cache when the rdoc gem is installed and
|
3841
4782
|
documentation is generated.
|
3842
4783
|
|
3843
|
-
|
4784
|
+
## Deprecations:
|
3844
4785
|
|
3845
4786
|
* Gem::manage_gems now warns when called. It will be removed on or after March
|
3846
4787
|
2009.
|
3847
4788
|
|
3848
|
-
|
4789
|
+
## Bug fixes:
|
3849
4790
|
|
3850
4791
|
* RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
|
3851
4792
|
Bug #20775 by Hemant Kumar.
|
@@ -3869,7 +4810,7 @@ Bugs Fixed:
|
|
3869
4810
|
* `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
|
3870
4811
|
* Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
|
3871
4812
|
|
3872
|
-
|
4813
|
+
## Enhancements:
|
3873
4814
|
|
3874
4815
|
* `gem help install` now describes _version_ argument to executable stubs
|
3875
4816
|
* `gem help environment` describes environment variables and ~/.gemrc and
|
@@ -3895,9 +4836,9 @@ Other Changes Include:
|
|
3895
4836
|
* test/test_ext_configure_builder.rb
|
3896
4837
|
* Locale-free patch by Yusuke Endoh [ruby-core:17444].
|
3897
4838
|
|
3898
|
-
|
4839
|
+
# 1.2.0 / 2008-06-21
|
3899
4840
|
|
3900
|
-
|
4841
|
+
## Features:
|
3901
4842
|
|
3902
4843
|
* RubyGems no longer performs bulk updates and instead only fetches the gemspec
|
3903
4844
|
files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
|
@@ -3916,7 +4857,7 @@ New features:
|
|
3916
4857
|
* setup.rb now handles --vendor and --destdir for packagers
|
3917
4858
|
* `gem stale` command that lists gems by last access time
|
3918
4859
|
|
3919
|
-
|
4860
|
+
## Bug fixes:
|
3920
4861
|
|
3921
4862
|
* File modes from gems are now honored, patch #19737
|
3922
4863
|
* Marshal Gem::Specification objects from the future can now be loaded.
|
@@ -3931,7 +4872,7 @@ Bugs Fixed:
|
|
3931
4872
|
* Gem::DependencyInstaller resets installed gems every install, bug #19444
|
3932
4873
|
* Gem.default_path is now honored if GEM_PATH is not set, patch #19502
|
3933
4874
|
|
3934
|
-
|
4875
|
+
## Enhancements:
|
3935
4876
|
|
3936
4877
|
* setup.rb
|
3937
4878
|
* stub files created by RubyGems 0.7.x and older are no longer removed. When
|
@@ -3950,9 +4891,9 @@ Other Changes Include:
|
|
3950
4891
|
* Gem::RemoteFetcher now performs persistent connections for HEAD requests,
|
3951
4892
|
bug #7973
|
3952
4893
|
|
3953
|
-
|
4894
|
+
# 1.1.1 / 2008-04-11
|
3954
4895
|
|
3955
|
-
|
4896
|
+
## Bug fixes:
|
3956
4897
|
|
3957
4898
|
* Gem.prefix now returns non-nil only when RubyGems was installed outside
|
3958
4899
|
sitelibdir or libdir.
|
@@ -3967,9 +4908,9 @@ Bugs Fixed:
|
|
3967
4908
|
* Gem::RemoteFetcher handles Errno::ECONNABORTED.
|
3968
4909
|
* Printing of release notes fixed.
|
3969
4910
|
|
3970
|
-
|
4911
|
+
# 1.1.0 / 2008-03-29
|
3971
4912
|
|
3972
|
-
|
4913
|
+
## Features:
|
3973
4914
|
|
3974
4915
|
* RubyGems now uses persistent connections on index updates. Index updates are
|
3975
4916
|
much faster now.
|
@@ -3981,7 +4922,7 @@ New features:
|
|
3981
4922
|
* `gem spec` now extracts specifications from .gem files.
|
3982
4923
|
* `gem query --installed` to aid automation of checking for gems.
|
3983
4924
|
|
3984
|
-
|
4925
|
+
## Bug fixes:
|
3985
4926
|
|
3986
4927
|
* RubyGems works with both Config and RbConfig now.
|
3987
4928
|
* Executables are now cleaned upon uninstall.
|
@@ -3997,7 +4938,7 @@ Bugs Fixed:
|
|
3997
4938
|
* Gem stub scripts on windows now work outside Gem.bindir.
|
3998
4939
|
* `gem sources -r` now works without network access.
|
3999
4940
|
|
4000
|
-
|
4941
|
+
## Enhancements:
|
4001
4942
|
|
4002
4943
|
* RubyGems now requires Ruby > 1.8.3.
|
4003
4944
|
* Release notes are now printed upon installation.
|
@@ -4006,28 +4947,28 @@ Other Changes Include:
|
|
4006
4947
|
* Tar handling code refactoring and cleanup.
|
4007
4948
|
* Gem::DependencyInstaller's API has changed.
|
4008
4949
|
|
4009
|
-
For a full list of changes to RubyGems, see the
|
4950
|
+
For a full list of changes to RubyGems, see the git log.
|
4010
4951
|
|
4011
|
-
|
4952
|
+
# 1.0.1 / 2007-12-20
|
4012
4953
|
|
4013
|
-
|
4954
|
+
## Bug fixes:
|
4014
4955
|
|
4015
4956
|
* Installation on Ruby 1.8.3 through 1.8.5 fixed
|
4016
4957
|
* `gem build` on 1.8.3 fixed
|
4017
4958
|
|
4018
|
-
|
4959
|
+
## Enhancements:
|
4019
4960
|
|
4020
4961
|
* Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
|
4021
4962
|
this is official in RubyGems 1.0.1.
|
4022
4963
|
|
4023
|
-
|
4964
|
+
# 1.0.0 / 2007-12-20
|
4024
4965
|
|
4025
|
-
|
4966
|
+
## Features:
|
4026
4967
|
|
4027
4968
|
* RubyGems warns about various problems with gemspecs during gem building
|
4028
4969
|
* More-consistent versioning for the RubyGems software
|
4029
4970
|
|
4030
|
-
|
4971
|
+
## Enhancements:
|
4031
4972
|
|
4032
4973
|
* Fixed various bugs and problems with installing gems on Windows
|
4033
4974
|
* Fixed using `gem server` for installing gems
|
@@ -4041,7 +4982,7 @@ Other Changes Include:
|
|
4041
4982
|
* `gem unpack` can now unpack into a specific directory with --target
|
4042
4983
|
* OpenSSL is no longer required by default
|
4043
4984
|
|
4044
|
-
|
4985
|
+
## Breaking changes:
|
4045
4986
|
|
4046
4987
|
* Kernel#require_gem has been removed
|
4047
4988
|
* Executables without a shebang will not be wrapped in a future version, this
|
@@ -4053,9 +4994,9 @@ Deprecations and Deletions:
|
|
4053
4994
|
* Gem::Specification#autorequire= has been deprecated
|
4054
4995
|
* Time::today will be removed in a future version
|
4055
4996
|
|
4056
|
-
|
4997
|
+
# 0.9.5 / 2007-11-19
|
4057
4998
|
|
4058
|
-
|
4999
|
+
## Features:
|
4059
5000
|
|
4060
5001
|
* Platform support
|
4061
5002
|
* Automatic installation of platform gems
|
@@ -4067,7 +5008,7 @@ Major New Features Include:
|
|
4067
5008
|
* Improved stubs and `gem.bat` on mswin, including better compatibility
|
4068
5009
|
with the One-Click Installer.
|
4069
5010
|
|
4070
|
-
|
5011
|
+
## Enhancements:
|
4071
5012
|
|
4072
5013
|
* Time::today is deprecated and will be removed at a future date
|
4073
5014
|
* Gem::manage_gems is deprecated and will be removed at a future date
|
@@ -4076,7 +5017,7 @@ Other Changes Include:
|
|
4076
5017
|
installation
|
4077
5018
|
* Multi-version diamond dependencies only are installed once
|
4078
5019
|
* Processing a YAML bulk index update takes less memory
|
4079
|
-
* `gem install -i` makes sure all
|
5020
|
+
* `gem install -i` makes sure all dependencies are installed
|
4080
5021
|
* `gem update --system` reinstalls into the prefix it was originally installed
|
4081
5022
|
in
|
4082
5023
|
* `gem update --system` respects --no-rdoc and --no-ri flags
|
@@ -4112,13 +5053,13 @@ Special thanks to:
|
|
4112
5053
|
* Tom Copeland
|
4113
5054
|
* Wilson Bilkovich
|
4114
5055
|
|
4115
|
-
|
5056
|
+
# 0.9.4 / 2007-05-23
|
4116
5057
|
|
4117
5058
|
If you are experiencing problems with the source index (e.g. strange
|
4118
5059
|
"No Method" errors), or problems with zlib (e.g. "Buffer Error"
|
4119
|
-
|
5060
|
+
message), we recommend upgrading to RubyGems 0.9.4.
|
4120
5061
|
|
4121
|
-
Bug
|
5062
|
+
## Bug fixes:
|
4122
5063
|
|
4123
5064
|
* Several people have been experiencing problems with no method errors
|
4124
5065
|
on the source index cache. The source index cache is now a bit more
|
@@ -4130,9 +5071,9 @@ Bug Fixes Include:
|
|
4130
5071
|
* Several sub-commands were accidentally dropped from the "gem" command.
|
4131
5072
|
These commands have been restored.
|
4132
5073
|
|
4133
|
-
|
5074
|
+
# 0.9.3 / 2007-05-10
|
4134
5075
|
|
4135
|
-
Bug
|
5076
|
+
## Bug fixes:
|
4136
5077
|
|
4137
5078
|
The ZLib library on Windows will occasionally complains about a buffer error
|
4138
5079
|
when unpacking gems. The Gems software has a workaround for that problem, but
|
@@ -4140,19 +5081,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
|
|
4140
5081
|
have received several reports of the error occurring with ZLib 1.2.3, so we
|
4141
5082
|
have permanently enabled the work around on all versions.
|
4142
5083
|
|
4143
|
-
|
5084
|
+
# 0.9.2 / 2007-02-05
|
4144
5085
|
|
4145
|
-
Bug
|
5086
|
+
## Bug fixes:
|
4146
5087
|
|
4147
5088
|
* The "unpack" command now works properly.
|
4148
5089
|
* User name and password are now passed properly to the authenticating
|
4149
5090
|
proxy when downloading gems.
|
4150
5091
|
|
4151
|
-
|
5092
|
+
# 0.9.1 / 2007-01-16
|
4152
5093
|
|
4153
|
-
See
|
5094
|
+
See git log
|
4154
5095
|
|
4155
|
-
|
5096
|
+
# 0.9.0 / 2006-06-28
|
4156
5097
|
|
4157
5098
|
Finally, the much anticipated RubyGems version 0.9.0 is now available.
|
4158
5099
|
This release includes a number of new features and bug fixes. The
|
@@ -4160,7 +5101,7 @@ number one change is that we can now download the gem index
|
|
4160
5101
|
incrementally. This will greatly speed up the gem command when only a
|
4161
5102
|
few gems are out of date.
|
4162
5103
|
|
4163
|
-
|
5104
|
+
## Enhancements:
|
4164
5105
|
|
4165
5106
|
* The gem index is now downloaded incrementally, only updating entries
|
4166
5107
|
that are out of date. If more than 50 entries are out of date, we
|
@@ -4175,9 +5116,6 @@ Major Enhancments include:
|
|
4175
5116
|
* Both RI and RDOC documents are now generated by default.
|
4176
5117
|
* A gemri command is included to read gem RI docs (only needed for
|
4177
5118
|
Ruby 1.8.4 or earlier).
|
4178
|
-
|
4179
|
-
Minor enhancements include:
|
4180
|
-
|
4181
5119
|
* Version 0.0.0 is now a valid gem version.
|
4182
5120
|
* Better detection of missing SSL functionality.
|
4183
5121
|
* SSL is not required if the security policy does not require
|
@@ -4190,7 +5128,7 @@ Minor enhancements include:
|
|
4190
5128
|
* .rbw is now a supported suffix for RubyGem's custom require.
|
4191
5129
|
* Several Ruby 1.9 compatibility fixes (Eric Hodel).
|
4192
5130
|
|
4193
|
-
Bug
|
5131
|
+
## Bug fixes:
|
4194
5132
|
|
4195
5133
|
* Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
|
4196
5134
|
cross-Ruby version compatibility issues.
|
@@ -4202,7 +5140,7 @@ Bug Fixes:
|
|
4202
5140
|
* Fixed prefix handling for native expressions (patch by Aaron Patterson).
|
4203
5141
|
* Fixed several Upgrade => Update typos.
|
4204
5142
|
|
4205
|
-
|
5143
|
+
# 0.8.11 / 2005-07-13
|
4206
5144
|
|
4207
5145
|
* -y is a synonym for --include-dependencies.
|
4208
5146
|
* Better handling of errors in the top level rescue clause.
|
@@ -4221,7 +5159,7 @@ Bug Fixes:
|
|
4221
5159
|
* Added David Glasser's install-from-mirror patch.
|
4222
5160
|
* Additional internal structural cleanup and test reorganization.
|
4223
5161
|
|
4224
|
-
|
5162
|
+
# 0.8.10 / 2005-03-27
|
4225
5163
|
|
4226
5164
|
* In multi-user environments, it is common to supply multiple versions of gems
|
4227
5165
|
(for example Rails), allowing individual users to select the version of the
|
@@ -4232,16 +5170,16 @@ Bug Fixes:
|
|
4232
5170
|
installed, then the "gem update --system" command will download a new
|
4233
5171
|
update, but install the latest update prior to the download.
|
4234
5172
|
|
4235
|
-
|
5173
|
+
# 0.8.9
|
4236
5174
|
|
4237
5175
|
Never released
|
4238
5176
|
|
4239
|
-
|
5177
|
+
# 0.8.8 / 2005-03-14
|
4240
5178
|
|
4241
5179
|
* Moved the master definition of class Requirement back under version.
|
4242
5180
|
Kept the body of Requirement under Gem.
|
4243
5181
|
|
4244
|
-
|
5182
|
+
# 0.8.7 / 2005-03-14
|
4245
5183
|
|
4246
5184
|
Even though it has only been a few weeks since that last release,
|
4247
5185
|
there are quite a number of new features in 0.8.7. A complete list of
|
@@ -4294,11 +5232,11 @@ file system. You can read more about them here:
|
|
4294
5232
|
* gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
|
4295
5233
|
* gemwhich: http://docs.rubygems.org/read/chapter/17
|
4296
5234
|
|
4297
|
-
|
5235
|
+
# 0.8.6 / 2005-02-27
|
4298
5236
|
|
4299
5237
|
* Fixed a small bug with shebang construction
|
4300
5238
|
|
4301
|
-
|
5239
|
+
# 0.8.5 / 2005-02-26
|
4302
5240
|
|
4303
5241
|
Do you know how you used to dread getting the following message while
|
4304
5242
|
installing gems?
|
@@ -4320,7 +5258,7 @@ us. No RDoc generation was included in the following times.
|
|
4320
5258
|
The new caching code is at least 3x faster than previous versions. Woo
|
4321
5259
|
Hoo!
|
4322
5260
|
|
4323
|
-
|
5261
|
+
# 0.8.4 / 2005-01-01
|
4324
5262
|
|
4325
5263
|
* Rubygems 0.8.3's installer was broken unless you already had an older
|
4326
5264
|
version of RubyGems installed. That's fixed.
|
@@ -4330,7 +5268,7 @@ Hoo!
|
|
4330
5268
|
* Support for lower-cased Gem file names (for you, Paul Duncan :)
|
4331
5269
|
* Erik Veenstra's patch for making Gem versions sortable.
|
4332
5270
|
|
4333
|
-
|
5271
|
+
# 0.8.3 / 2004-12-07
|
4334
5272
|
|
4335
5273
|
No real earth shattering news here, but there were a number of really
|
4336
5274
|
annoying issues involving other libraries that RubyGems depends upon.
|
@@ -4372,11 +5310,11 @@ There has been some minor usability enhancements and changes ...
|
|
4372
5310
|
names. This was useful for him while testing libs that he had in
|
4373
5311
|
development.
|
4374
5312
|
|
4375
|
-
|
5313
|
+
# 0.8.1 / 2004-09-17
|
4376
5314
|
|
4377
5315
|
* Quick release to capture some bug fixes.
|
4378
5316
|
|
4379
|
-
|
5317
|
+
# 0.8.0 / 2004-09-15
|
4380
5318
|
|
4381
5319
|
* Remove need for library stubs. Set the RUBYOPT environment variable to
|
4382
5320
|
include "rrubygems", and a normal require will find gem files. Continue to
|
@@ -4399,15 +5337,15 @@ There has been some minor usability enhancements and changes ...
|
|
4399
5337
|
to pick.
|
4400
5338
|
* Added "gem unpack" for "unpacking" a gem to the current directory
|
4401
5339
|
|
4402
|
-
|
5340
|
+
# 0.7.0 / 2004-07-09
|
4403
5341
|
|
4404
|
-
See
|
5342
|
+
See git log
|
4405
5343
|
|
4406
|
-
|
5344
|
+
# 0.6.1 / 2004-06-08
|
4407
5345
|
|
4408
|
-
See
|
5346
|
+
See git log
|
4409
5347
|
|
4410
|
-
|
5348
|
+
# 0.6.0 / 2004-06-08
|
4411
5349
|
|
4412
5350
|
* Collapse output of --search and --list (and gem_server) operations so that
|
4413
5351
|
each gem is listed only once, with each of its versions listed on the same
|
@@ -4420,7 +5358,7 @@ See ChangeLog
|
|
4420
5358
|
spec.required_ruby_version = "> 1.8.0"
|
4421
5359
|
* --install-stub defaults to true, so library stubs are created
|
4422
5360
|
|
4423
|
-
|
5361
|
+
# 0.5.0 / 2004-06-06
|
4424
5362
|
|
4425
5363
|
* Jim added the ability to specify version constraints to avoid API
|
4426
5364
|
incompatibilities. This has been the subject of much debate for the past
|
@@ -4443,11 +5381,11 @@ See ChangeLog
|
|
4443
5381
|
automatically included.
|
4444
5382
|
* Some small bug fixes
|
4445
5383
|
|
4446
|
-
|
5384
|
+
# 0.4.0 / 2004-05-30
|
4447
5385
|
|
4448
5386
|
* Minor bug fixes including Windows compatibility issues
|
4449
5387
|
|
4450
|
-
|
5388
|
+
# 0.3.0 / 2004-04-30
|
4451
5389
|
|
4452
5390
|
* Cleanup of command-line arguments and handling. Most commands accept a
|
4453
5391
|
--local or --remote modifier.
|
@@ -4468,6 +5406,6 @@ See ChangeLog
|
|
4468
5406
|
* Generally improved error messages (still more work to do)
|
4469
5407
|
* Rearranged gem directory structure for cleanliness.
|
4470
5408
|
|
4471
|
-
|
5409
|
+
# 0.2.0 / 2004-03-14
|
4472
5410
|
|
4473
5411
|
* Initial public release
|