rubygems-update 3.1.6 → 3.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/{History.txt → CHANGELOG.md} +724 -502
- data/CODE_OF_CONDUCT.md +55 -19
- data/CONTRIBUTING.md +24 -10
- data/Manifest.txt +72 -101
- data/POLICIES.md +6 -12
- data/README.md +1 -1
- data/Rakefile +61 -89
- data/bin/update_rubygems +1 -1
- data/bundler/CHANGELOG.md +1643 -1426
- data/bundler/README.md +6 -8
- data/bundler/UPGRADING.md +18 -32
- data/bundler/bundler.gemspec +4 -4
- data/bundler/exe/bundle +3 -0
- data/bundler/lib/bundler.rb +32 -8
- data/bundler/lib/bundler/build_metadata.rb +4 -12
- data/bundler/lib/bundler/cli.rb +55 -21
- 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 +2 -7
- data/bundler/lib/bundler/cli/clean.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +14 -0
- data/bundler/lib/bundler/cli/console.rb +1 -1
- data/bundler/lib/bundler/cli/doctor.rb +1 -1
- data/bundler/lib/bundler/cli/exec.rb +4 -4
- data/bundler/lib/bundler/cli/fund.rb +36 -0
- data/bundler/lib/bundler/cli/gem.rb +86 -11
- data/bundler/lib/bundler/cli/info.rb +15 -4
- data/bundler/lib/bundler/cli/init.rb +2 -2
- data/bundler/lib/bundler/cli/inject.rb +1 -1
- data/bundler/lib/bundler/cli/install.rb +13 -11
- data/bundler/lib/bundler/cli/issue.rb +2 -2
- data/bundler/lib/bundler/cli/list.rb +12 -10
- data/bundler/lib/bundler/cli/outdated.rb +87 -66
- data/bundler/lib/bundler/cli/plugin.rb +10 -0
- data/bundler/lib/bundler/cli/pristine.rb +5 -0
- data/bundler/lib/bundler/cli/show.rb +1 -1
- data/bundler/lib/bundler/cli/update.rb +3 -1
- data/bundler/lib/bundler/compact_index_client.rb +1 -1
- data/bundler/lib/bundler/compact_index_client/cache.rb +6 -14
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
- data/bundler/lib/bundler/compact_index_client/updater.rb +5 -13
- data/bundler/lib/bundler/definition.rb +67 -82
- data/bundler/lib/bundler/dep_proxy.rb +16 -9
- data/bundler/lib/bundler/dependency.rb +3 -10
- data/bundler/lib/bundler/dsl.rb +5 -9
- data/bundler/lib/bundler/endpoint_specification.rb +1 -1
- data/bundler/lib/bundler/env.rb +1 -1
- data/bundler/lib/bundler/environment_preserver.rb +26 -2
- data/bundler/lib/bundler/errors.rb +1 -0
- data/bundler/lib/bundler/feature_flag.rb +0 -4
- data/bundler/lib/bundler/fetcher.rb +4 -4
- data/bundler/lib/bundler/fetcher/base.rb +1 -1
- data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
- data/bundler/lib/bundler/fetcher/downloader.rb +1 -1
- data/bundler/lib/bundler/fetcher/index.rb +3 -4
- data/bundler/lib/bundler/friendly_errors.rb +22 -13
- data/bundler/lib/bundler/gem_helper.rb +35 -18
- data/bundler/lib/bundler/gem_helpers.rb +36 -25
- data/bundler/lib/bundler/gem_version_promoter.rb +4 -4
- data/bundler/lib/bundler/graph.rb +1 -1
- data/bundler/lib/bundler/index.rb +6 -2
- data/bundler/lib/bundler/injector.rb +22 -4
- data/bundler/lib/bundler/inline.rb +1 -1
- data/bundler/lib/bundler/installer.rb +35 -49
- data/bundler/lib/bundler/installer/gem_installer.rb +3 -3
- data/bundler/lib/bundler/installer/parallel_installer.rb +10 -10
- data/bundler/lib/bundler/installer/standalone.rb +16 -2
- data/bundler/lib/bundler/lazy_specification.rb +35 -11
- data/bundler/lib/bundler/lockfile_generator.rb +1 -1
- data/bundler/lib/bundler/lockfile_parser.rb +1 -1
- data/bundler/lib/bundler/man/.document +1 -0
- data/bundler/{man → lib/bundler/man}/bundle-add.1 +1 -1
- data/bundler/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +0 -0
- 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 +1 -1
- data/bundler/{man/bundle-cache.ronn → lib/bundler/man/bundle-cache.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-check.1 +1 -1
- data/bundler/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-clean.1 +1 -1
- data/bundler/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-config.1 +18 -27
- data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +22 -33
- data/bundler/{man → lib/bundler/man}/bundle-doctor.1 +1 -1
- data/bundler/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-exec.1 +1 -1
- data/bundler/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-gem.1 +25 -3
- data/bundler/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +30 -7
- data/bundler/{man → lib/bundler/man}/bundle-info.1 +1 -1
- data/bundler/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-init.1 +1 -1
- data/bundler/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-inject.1 +1 -1
- data/bundler/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-install.1 +30 -3
- data/bundler/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +25 -3
- 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/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-open.1 +1 -1
- data/bundler/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-outdated.1 +1 -1
- data/bundler/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-platform.1 +1 -1
- data/bundler/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-pristine.1 +1 -1
- data/bundler/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-remove.1 +1 -1
- data/bundler/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-show.1 +1 -1
- data/bundler/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-update.1 +1 -1
- data/bundler/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle-viz.1 +1 -1
- data/bundler/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/bundle.1 +1 -1
- data/bundler/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +0 -0
- data/bundler/{man → lib/bundler/man}/gemfile.5 +4 -4
- data/bundler/{man → lib/bundler/man}/gemfile.5.ronn +4 -4
- data/bundler/{man → lib/bundler/man}/index.txt +0 -0
- data/bundler/lib/bundler/mirror.rb +2 -2
- data/bundler/lib/bundler/plugin.rb +30 -5
- data/bundler/lib/bundler/plugin/api/source.rb +1 -1
- data/bundler/lib/bundler/plugin/dsl.rb +1 -1
- data/bundler/lib/bundler/plugin/index.rb +10 -1
- data/bundler/lib/bundler/plugin/installer.rb +1 -1
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
- data/bundler/lib/bundler/plugin/source_list.rb +1 -1
- data/bundler/lib/bundler/psyched_yaml.rb +0 -15
- data/bundler/lib/bundler/remote_specification.rb +5 -2
- data/bundler/lib/bundler/resolver.rb +71 -32
- data/bundler/lib/bundler/resolver/spec_group.rb +38 -26
- data/bundler/lib/bundler/retry.rb +1 -1
- data/bundler/lib/bundler/ruby_version.rb +1 -1
- data/bundler/lib/bundler/rubygems_ext.rb +69 -9
- data/bundler/lib/bundler/rubygems_gem_installer.rb +3 -9
- data/bundler/lib/bundler/rubygems_integration.rb +25 -60
- data/bundler/lib/bundler/runtime.rb +4 -14
- data/bundler/lib/bundler/settings.rb +50 -47
- data/bundler/lib/bundler/shared_helpers.rb +2 -2
- data/bundler/lib/bundler/similarity_detector.rb +1 -1
- data/bundler/lib/bundler/source.rb +1 -1
- data/bundler/lib/bundler/source/git.rb +24 -22
- data/bundler/lib/bundler/source/git/git_proxy.rb +82 -80
- data/bundler/lib/bundler/source/path.rb +7 -3
- data/bundler/lib/bundler/source/path/installer.rb +10 -10
- data/bundler/lib/bundler/source/rubygems.rb +23 -18
- data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
- data/bundler/lib/bundler/source_list.rb +2 -2
- data/bundler/lib/bundler/spec_set.rb +8 -10
- data/bundler/lib/bundler/stub_specification.rb +17 -7
- data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
- data/bundler/lib/bundler/templates/newgem/Gemfile.tt +9 -1
- data/bundler/lib/bundler/templates/newgem/README.md.tt +1 -2
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +19 -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 +18 -0
- data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
- data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +4 -2
- data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +15 -7
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +13 -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/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -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/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 +5 -5
- data/bundler/lib/bundler/uri_credentials_filter.rb +3 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +34 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +2 -2
- 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 +11 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +49 -47
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +82 -189
- data/bundler/lib/bundler/vendor/thor/lib/thor.rb +0 -7
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/bundler/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
- data/bundler/lib/bundler/vendored_persistent.rb +0 -7
- data/bundler/lib/bundler/vendored_tmpdir.rb +4 -0
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler/worker.rb +1 -1
- data/bundler/lib/bundler/yaml_serializer.rb +1 -1
- data/lib/rubygems.rb +71 -150
- data/lib/rubygems/available_set.rb +4 -6
- data/lib/rubygems/basic_specification.rb +11 -9
- data/lib/rubygems/bundler_version_finder.rb +14 -9
- data/lib/rubygems/command.rb +16 -16
- data/lib/rubygems/command_manager.rb +5 -6
- data/lib/rubygems/commands/build_command.rb +40 -20
- data/lib/rubygems/commands/cert_command.rb +2 -10
- data/lib/rubygems/commands/check_command.rb +0 -2
- data/lib/rubygems/commands/cleanup_command.rb +11 -7
- data/lib/rubygems/commands/contents_command.rb +4 -6
- data/lib/rubygems/commands/dependency_command.rb +6 -8
- data/lib/rubygems/commands/environment_command.rb +1 -3
- data/lib/rubygems/commands/fetch_command.rb +2 -4
- data/lib/rubygems/commands/generate_index_command.rb +0 -2
- data/lib/rubygems/commands/help_command.rb +3 -3
- data/lib/rubygems/commands/info_command.rb +8 -5
- data/lib/rubygems/commands/install_command.rb +3 -5
- data/lib/rubygems/commands/list_command.rb +8 -7
- data/lib/rubygems/commands/lock_command.rb +1 -3
- data/lib/rubygems/commands/mirror_command.rb +0 -2
- data/lib/rubygems/commands/open_command.rb +0 -4
- data/lib/rubygems/commands/outdated_command.rb +0 -2
- data/lib/rubygems/commands/owner_command.rb +9 -4
- data/lib/rubygems/commands/pristine_command.rb +11 -5
- data/lib/rubygems/commands/push_command.rb +10 -47
- data/lib/rubygems/commands/query_command.rb +14 -344
- data/lib/rubygems/commands/rdoc_command.rb +0 -2
- data/lib/rubygems/commands/search_command.rb +7 -7
- data/lib/rubygems/commands/server_command.rb +3 -1
- data/lib/rubygems/commands/setup_command.rb +101 -74
- data/lib/rubygems/commands/signin_command.rb +0 -2
- data/lib/rubygems/commands/signout_command.rb +0 -2
- data/lib/rubygems/commands/sources_command.rb +6 -4
- data/lib/rubygems/commands/specification_command.rb +8 -4
- data/lib/rubygems/commands/stale_command.rb +1 -3
- data/lib/rubygems/commands/uninstall_command.rb +1 -3
- data/lib/rubygems/commands/unpack_command.rb +1 -3
- data/lib/rubygems/commands/update_command.rb +59 -14
- data/lib/rubygems/commands/which_command.rb +0 -2
- data/lib/rubygems/commands/yank_command.rb +4 -7
- data/lib/rubygems/config_file.rb +11 -4
- data/lib/rubygems/core_ext/kernel_require.rb +5 -2
- data/lib/rubygems/core_ext/kernel_warn.rb +12 -13
- data/lib/rubygems/defaults.rb +101 -7
- data/lib/rubygems/dependency.rb +3 -8
- data/lib/rubygems/dependency_installer.rb +6 -78
- data/lib/rubygems/dependency_list.rb +7 -9
- data/lib/rubygems/deprecate.rb +46 -1
- data/lib/rubygems/doctor.rb +4 -4
- data/lib/rubygems/errors.rb +3 -14
- data/lib/rubygems/exceptions.rb +2 -33
- data/lib/rubygems/ext.rb +6 -6
- data/lib/rubygems/ext/build_error.rb +2 -0
- data/lib/rubygems/ext/builder.rb +19 -39
- 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 +21 -19
- data/lib/rubygems/ext/rake_builder.rb +4 -6
- data/lib/rubygems/gem_runner.rb +3 -10
- data/lib/rubygems/gemcutter_utilities.rb +102 -21
- data/lib/rubygems/indexer.rb +1 -22
- data/lib/rubygems/install_update_options.rb +7 -7
- data/lib/rubygems/installer.rb +59 -80
- data/lib/rubygems/installer_test_case.rb +25 -11
- data/lib/rubygems/installer_uninstaller_utils.rb +29 -0
- data/lib/rubygems/local_remote_options.rb +1 -1
- data/lib/rubygems/mock_gem_ui.rb +0 -6
- data/lib/rubygems/name_tuple.rb +3 -7
- data/lib/rubygems/openssl.rb +7 -0
- data/lib/rubygems/package.rb +14 -25
- data/lib/rubygems/package/digest_io.rb +0 -2
- data/lib/rubygems/package/file_source.rb +0 -2
- data/lib/rubygems/package/io_source.rb +0 -2
- data/lib/rubygems/package/old.rb +1 -3
- data/lib/rubygems/package/tar_header.rb +4 -6
- data/lib/rubygems/package/tar_reader.rb +0 -3
- data/lib/rubygems/package/tar_reader/entry.rb +0 -3
- data/lib/rubygems/package/tar_test_case.rb +2 -4
- data/lib/rubygems/package/tar_writer.rb +2 -12
- data/lib/rubygems/package_task.rb +1 -7
- data/lib/rubygems/path_support.rb +1 -3
- data/lib/rubygems/platform.rb +21 -16
- data/lib/rubygems/psych_tree.rb +0 -2
- data/lib/rubygems/query_utils.rb +353 -0
- data/lib/rubygems/rdoc.rb +0 -12
- data/lib/rubygems/remote_fetcher.rb +14 -29
- data/lib/rubygems/request.rb +4 -11
- data/lib/rubygems/request/connection_pools.rb +1 -5
- data/lib/rubygems/request/http_pool.rb +0 -2
- data/lib/rubygems/request/https_pool.rb +0 -2
- data/lib/rubygems/request_set.rb +7 -20
- data/lib/rubygems/request_set/gem_dependency_api.rb +5 -7
- data/lib/rubygems/request_set/lockfile.rb +8 -12
- data/lib/rubygems/request_set/lockfile/parser.rb +0 -2
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -3
- data/lib/rubygems/requirement.rb +21 -22
- data/lib/rubygems/resolver.rb +14 -12
- data/lib/rubygems/resolver/activation_request.rb +9 -3
- data/lib/rubygems/resolver/api_set.rb +30 -23
- data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
- data/lib/rubygems/resolver/api_specification.rb +23 -9
- data/lib/rubygems/resolver/best_set.rb +2 -4
- data/lib/rubygems/resolver/composed_set.rb +3 -5
- data/lib/rubygems/resolver/conflict.rb +2 -4
- data/lib/rubygems/resolver/current_set.rb +0 -2
- data/lib/rubygems/resolver/dependency_request.rb +1 -3
- data/lib/rubygems/resolver/git_set.rb +0 -2
- data/lib/rubygems/resolver/git_specification.rb +0 -2
- data/lib/rubygems/resolver/index_set.rb +1 -3
- data/lib/rubygems/resolver/index_specification.rb +29 -2
- data/lib/rubygems/resolver/installed_specification.rb +0 -2
- data/lib/rubygems/resolver/installer_set.rb +60 -13
- data/lib/rubygems/resolver/local_specification.rb +0 -2
- data/lib/rubygems/resolver/lock_set.rb +2 -4
- data/lib/rubygems/resolver/lock_specification.rb +0 -2
- data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +6 -5
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +1 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +39 -5
- 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 +44 -11
- 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 +1 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +506 -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/requirement_list.rb +0 -2
- data/lib/rubygems/resolver/set.rb +0 -2
- data/lib/rubygems/resolver/source_set.rb +0 -2
- data/lib/rubygems/resolver/spec_specification.rb +14 -2
- data/lib/rubygems/resolver/specification.rb +13 -3
- data/lib/rubygems/resolver/stats.rb +0 -2
- data/lib/rubygems/resolver/vendor_set.rb +0 -2
- data/lib/rubygems/resolver/vendor_specification.rb +0 -2
- data/lib/rubygems/s3_uri_signer.rb +2 -8
- data/lib/rubygems/safe_yaml.rb +4 -4
- data/lib/rubygems/security.rb +27 -34
- data/lib/rubygems/security/policy.rb +4 -8
- data/lib/rubygems/security/signer.rb +5 -7
- data/lib/rubygems/security/trust_dir.rb +1 -3
- data/lib/rubygems/server.rb +15 -12
- data/lib/rubygems/source.rb +23 -12
- data/lib/rubygems/source/git.rb +7 -8
- data/lib/rubygems/source/installed.rb +0 -2
- data/lib/rubygems/source/local.rb +2 -4
- data/lib/rubygems/source/lock.rb +0 -2
- data/lib/rubygems/source/specific_file.rb +0 -2
- data/lib/rubygems/source/vendor.rb +0 -2
- data/lib/rubygems/source_list.rb +4 -7
- data/lib/rubygems/spec_fetcher.rb +19 -18
- data/lib/rubygems/specification.rb +110 -123
- data/lib/rubygems/specification_policy.rb +79 -29
- data/lib/rubygems/stub_specification.rb +1 -5
- data/lib/rubygems/syck_hack.rb +0 -2
- data/lib/rubygems/test_case.rb +93 -124
- data/lib/rubygems/test_utilities.rb +12 -19
- data/lib/rubygems/uninstaller.rb +35 -16
- data/lib/rubygems/uri_formatter.rb +2 -3
- data/lib/rubygems/uri_parser.rb +0 -2
- data/lib/rubygems/user_interaction.rb +1 -26
- data/lib/rubygems/util.rb +8 -2
- data/lib/rubygems/util/licenses.rb +4 -6
- data/lib/rubygems/util/list.rb +0 -2
- data/lib/rubygems/validator.rb +1 -3
- data/lib/rubygems/version.rb +4 -6
- data/lib/rubygems/version_option.rb +6 -0
- data/rubygems-update.gemspec +3 -3
- data/setup.rb +2 -7
- data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
- data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -2
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
- data/test/rubygems/rubygems_plugin.rb +0 -2
- data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
- data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +0 -2
- data/test/rubygems/test_bundled_ca.rb +41 -48
- data/test/rubygems/test_config.rb +0 -2
- data/test/rubygems/test_deprecate.rb +40 -7
- data/test/rubygems/test_gem.rb +87 -79
- data/test/rubygems/test_gem_available_set.rb +3 -5
- data/test/rubygems/test_gem_bundler_version_finder.rb +19 -3
- data/test/rubygems/test_gem_command.rb +24 -7
- data/test/rubygems/test_gem_command_manager.rb +36 -5
- data/test/rubygems/test_gem_commands_build_command.rb +233 -15
- data/test/rubygems/test_gem_commands_cert_command.rb +4 -6
- data/test/rubygems/test_gem_commands_check_command.rb +0 -2
- data/test/rubygems/test_gem_commands_cleanup_command.rb +14 -5
- data/test/rubygems/test_gem_commands_contents_command.rb +50 -19
- data/test/rubygems/test_gem_commands_dependency_command.rb +0 -2
- data/test/rubygems/test_gem_commands_environment_command.rb +21 -23
- data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
- data/test/rubygems/test_gem_commands_generate_index_command.rb +1 -7
- data/test/rubygems/test_gem_commands_help_command.rb +15 -4
- data/test/rubygems/test_gem_commands_info_command.rb +6 -8
- data/test/rubygems/test_gem_commands_install_command.rb +163 -34
- data/test/rubygems/test_gem_commands_list_command.rb +0 -2
- data/test/rubygems/test_gem_commands_lock_command.rb +0 -2
- data/test/rubygems/test_gem_commands_mirror.rb +1 -3
- data/test/rubygems/test_gem_commands_open_command.rb +4 -6
- data/test/rubygems/test_gem_commands_outdated_command.rb +0 -2
- data/test/rubygems/test_gem_commands_owner_command.rb +59 -5
- data/test/rubygems/test_gem_commands_pristine_command.rb +43 -12
- data/test/rubygems/test_gem_commands_push_command.rb +77 -9
- data/test/rubygems/test_gem_commands_query_command.rb +12 -12
- data/test/rubygems/test_gem_commands_search_command.rb +0 -2
- data/test/rubygems/test_gem_commands_server_command.rb +0 -2
- data/test/rubygems/test_gem_commands_setup_command.rb +160 -135
- data/test/rubygems/test_gem_commands_signin_command.rb +33 -9
- data/test/rubygems/test_gem_commands_signout_command.rb +0 -7
- data/test/rubygems/test_gem_commands_sources_command.rb +60 -2
- data/test/rubygems/test_gem_commands_specification_command.rb +46 -20
- data/test/rubygems/test_gem_commands_stale_command.rb +0 -2
- data/test/rubygems/test_gem_commands_uninstall_command.rb +1 -3
- data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
- data/test/rubygems/test_gem_commands_update_command.rb +116 -7
- data/test/rubygems/test_gem_commands_which_command.rb +3 -5
- data/test/rubygems/test_gem_commands_yank_command.rb +44 -8
- data/test/rubygems/test_gem_config_file.rb +7 -12
- data/test/rubygems/test_gem_dependency.rb +0 -2
- data/test/rubygems/test_gem_dependency_installer.rb +116 -239
- data/test/rubygems/test_gem_dependency_list.rb +10 -12
- data/test/rubygems/test_gem_dependency_resolution_error.rb +1 -3
- data/test/rubygems/test_gem_doctor.rb +28 -2
- data/test/rubygems/test_gem_ext_builder.rb +50 -47
- data/test/rubygems/test_gem_ext_cmake_builder.rb +16 -25
- data/test/rubygems/test_gem_ext_configure_builder.rb +6 -22
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +9 -29
- data/test/rubygems/test_gem_ext_rake_builder.rb +39 -24
- data/test/rubygems/test_gem_gem_runner.rb +44 -1
- data/test/rubygems/test_gem_gemcutter_utilities.rb +8 -5
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
- data/test/rubygems/test_gem_indexer.rb +9 -15
- data/test/rubygems/test_gem_install_update_options.rb +14 -4
- data/test/rubygems/test_gem_installer.rb +260 -115
- data/test/rubygems/test_gem_local_remote_options.rb +0 -2
- data/test/rubygems/test_gem_name_tuple.rb +0 -2
- data/test/rubygems/test_gem_package.rb +38 -31
- data/test/rubygems/test_gem_package_old.rb +4 -6
- data/test/rubygems/test_gem_package_tar_header.rb +18 -1
- data/test/rubygems/test_gem_package_tar_reader.rb +0 -2
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -2
- data/test/rubygems/test_gem_package_tar_writer.rb +4 -6
- data/test/rubygems/test_gem_package_task.rb +46 -13
- data/test/rubygems/test_gem_path_support.rb +0 -2
- data/test/rubygems/test_gem_platform.rb +71 -6
- data/test/rubygems/test_gem_rdoc.rb +0 -2
- data/test/rubygems/test_gem_remote_fetcher.rb +169 -212
- data/test/rubygems/test_gem_request.rb +13 -17
- data/test/rubygems/test_gem_request_connection_pools.rb +0 -4
- data/test/rubygems/test_gem_request_set.rb +20 -22
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +3 -5
- data/test/rubygems/test_gem_request_set_lockfile.rb +4 -6
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -11
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -120
- data/test/rubygems/test_gem_requirement.rb +43 -3
- data/test/rubygems/test_gem_resolver.rb +6 -8
- data/test/rubygems/test_gem_resolver_activation_request.rb +0 -2
- data/test/rubygems/test_gem_resolver_api_set.rb +60 -59
- data/test/rubygems/test_gem_resolver_api_specification.rb +3 -5
- data/test/rubygems/test_gem_resolver_best_set.rb +27 -6
- data/test/rubygems/test_gem_resolver_composed_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_conflict.rb +1 -3
- data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -2
- data/test/rubygems/test_gem_resolver_git_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_git_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_index_set.rb +2 -4
- data/test/rubygems/test_gem_resolver_index_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_installer_set.rb +7 -9
- data/test/rubygems/test_gem_resolver_local_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_lock_set.rb +3 -5
- data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -2
- data/test/rubygems/test_gem_resolver_specification.rb +0 -4
- data/test/rubygems/test_gem_resolver_vendor_set.rb +1 -3
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -2
- data/test/rubygems/test_gem_security.rb +22 -24
- data/test/rubygems/test_gem_security_policy.rb +7 -12
- data/test/rubygems/test_gem_security_signer.rb +10 -12
- data/test/rubygems/test_gem_security_trust_dir.rb +4 -6
- data/test/rubygems/test_gem_server.rb +10 -14
- data/test/rubygems/test_gem_silent_ui.rb +0 -2
- data/test/rubygems/test_gem_source.rb +19 -18
- data/test/rubygems/test_gem_source_fetch_problem.rb +0 -2
- data/test/rubygems/test_gem_source_git.rb +12 -13
- data/test/rubygems/test_gem_source_installed.rb +7 -9
- data/test/rubygems/test_gem_source_list.rb +1 -2
- data/test/rubygems/test_gem_source_local.rb +8 -10
- data/test/rubygems/test_gem_source_lock.rb +10 -12
- data/test/rubygems/test_gem_source_specific_file.rb +7 -9
- data/test/rubygems/test_gem_source_subpath_problem.rb +49 -0
- data/test/rubygems/test_gem_source_vendor.rb +7 -9
- data/test/rubygems/test_gem_spec_fetcher.rb +11 -4
- data/test/rubygems/test_gem_specification.rb +162 -125
- data/test/rubygems/test_gem_stream_ui.rb +3 -3
- data/test/rubygems/test_gem_stub_specification.rb +4 -6
- data/test/rubygems/test_gem_text.rb +1 -3
- data/test/rubygems/test_gem_uninstaller.rb +134 -12
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -2
- data/test/rubygems/test_gem_uri_formatter.rb +0 -2
- data/test/rubygems/test_gem_util.rb +7 -7
- data/test/rubygems/test_gem_validator.rb +1 -3
- data/test/rubygems/test_gem_version.rb +1 -3
- data/test/rubygems/test_gem_version_option.rb +1 -3
- data/test/rubygems/test_kernel.rb +10 -14
- data/test/rubygems/test_project_sanity.rb +7 -2
- data/test/rubygems/test_remote_fetch_error.rb +0 -2
- data/test/rubygems/test_require.rb +191 -60
- data/test/test_changelog_generator.rb +17 -0
- metadata +79 -133
- data/.bundle/config +0 -2
- data/.rubocop.yml +0 -91
- data/Gemfile +0 -8
- data/Gemfile.lock +0 -43
- data/bundler/CODE_OF_CONDUCT.md +0 -136
- 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/source_local.rb +0 -7
- data/lib/rubygems/source_specific_file.rb +0 -6
- data/lib/ubygems.rb +0 -14
- 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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c18e3412218b88b1351a2dcd3096240a1b5fa833aa26c58efee7a70e72601d4
|
|
4
|
+
data.tar.gz: 9f8fff96b275641a2fd60220cbfa98343af11c177c8797261f1d99089f4345c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb78b68b419a3ffa8e70a9688c563510c93982c0d3c26969594639bcf41ba6345b3a48cf1c4f756689a202d1b8d9be416d19715d18acea2640dd6dcb53cee2d1
|
|
7
|
+
data.tar.gz: 98fb817e049053336bd47a5525a4247096558eef13efd10e5a7c38ea407569ef62fe29d135142854759874424c624bf51ed292606257a9539e60d991f891abd2
|
|
@@ -1,25 +1,290 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 3.2.7 / 2021-01-26
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Bug fixes:
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
* Generate plugin wrappers with relative requires. Pull request #4317 by
|
|
6
|
+
deivid-rodriguez
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
# 3.2.6 / 2021-01-18
|
|
9
|
+
|
|
10
|
+
## Enhancements:
|
|
11
|
+
|
|
12
|
+
* Fix `Gem::Platform#inspect` showing duplicate information. Pull request
|
|
13
|
+
#4276 by deivid-rodriguez
|
|
14
|
+
|
|
15
|
+
## Bug fixes:
|
|
16
|
+
|
|
17
|
+
* Swallow any system call error in `ensure_gem_subdirs` to support jruby
|
|
18
|
+
embedded paths. Pull request #4291 by kares
|
|
19
|
+
* Restore accepting custom make command with extra options as the `make`
|
|
20
|
+
env variable. Pull request #4271 by terceiro
|
|
21
|
+
|
|
22
|
+
# 3.2.5 / 2021-01-11
|
|
23
|
+
|
|
24
|
+
## Bug fixes:
|
|
25
|
+
|
|
26
|
+
* Don't load more specs after the whole set of specs has been setup. Pull
|
|
27
|
+
request #4262 by deivid-rodriguez
|
|
28
|
+
* Fix broken `bundler` executable after `gem update --system`. Pull
|
|
29
|
+
request #4221 by deivid-rodriguez
|
|
30
|
+
|
|
31
|
+
# 3.2.4 / 2020-12-31
|
|
32
|
+
|
|
33
|
+
## Enhancements:
|
|
34
|
+
|
|
35
|
+
* Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
|
|
36
|
+
deivid-rodriguez
|
|
37
|
+
* Never spawn subshells when building extensions. Pull request #4190 by
|
|
38
|
+
deivid-rodriguez
|
|
39
|
+
|
|
40
|
+
## Bug fixes:
|
|
41
|
+
|
|
42
|
+
* Fix fallback to the old index and installation from it not working. Pull
|
|
43
|
+
request #4213 by deivid-rodriguez
|
|
44
|
+
* Fix installing from source on truffleruby. Pull request #4201 by
|
|
45
|
+
deivid-rodriguez
|
|
46
|
+
|
|
47
|
+
# 3.2.3 / 2020-12-22
|
|
48
|
+
|
|
49
|
+
## Enhancements:
|
|
50
|
+
|
|
51
|
+
* Fix misspellings in default API key name. Pull request #4177 by hsbt
|
|
52
|
+
|
|
53
|
+
## Bug fixes:
|
|
54
|
+
|
|
55
|
+
* Respect `required_ruby_version` and `required_rubygems_version`
|
|
56
|
+
constraints when looking for `gem install` candidates. Pull request #4110
|
|
57
|
+
by deivid-rodriguez
|
|
58
|
+
|
|
59
|
+
# 3.2.2 / 2020-12-17
|
|
60
|
+
|
|
61
|
+
## Bug fixes:
|
|
62
|
+
|
|
63
|
+
* Fix issue where CLI commands making more than one request to
|
|
64
|
+
rubygems.org needing an OTP code would crash or ask for the code twice.
|
|
65
|
+
Pull request #4162 by sonalkr132
|
|
66
|
+
* Fix building rake extensions that require openssl. Pull request #4165 by
|
|
67
|
+
deivid-rodriguez
|
|
68
|
+
* Fix `gem update --system` displaying too many changelog entries. Pull
|
|
69
|
+
request #4145 by deivid-rodriguez
|
|
70
|
+
|
|
71
|
+
# 3.2.1 / 2020-12-14
|
|
72
|
+
|
|
73
|
+
## Enhancements:
|
|
74
|
+
|
|
75
|
+
* Added help message for gem i webrick in gem server command. Pull request
|
|
76
|
+
#4117 by hsbt
|
|
77
|
+
|
|
78
|
+
## Bug fixes:
|
|
79
|
+
|
|
80
|
+
* Added the missing loading of fileutils same as load_specs. Pull request
|
|
81
|
+
#4124 by hsbt
|
|
82
|
+
* Fix Resolver::APISet to always include prereleases when necessary. Pull
|
|
83
|
+
request #4113 by deivid-rodriguez
|
|
84
|
+
|
|
85
|
+
# 3.2.0 / 2020-12-07
|
|
86
|
+
|
|
87
|
+
## Enhancements:
|
|
88
|
+
|
|
89
|
+
* Do not override Kernel#warn when there is no need. Pull request #4075 by
|
|
90
|
+
eregon
|
|
91
|
+
* Update endpoint of gem signin command. Pull request #3840 by sonalkr132
|
|
92
|
+
* Omit deprecated commands from command help output. Pull request #4023 by
|
|
93
|
+
landongrindheim
|
|
94
|
+
* Suggest alternatives in `gem query` deprecation. Pull request #4021 by
|
|
95
|
+
landongrindheim
|
|
96
|
+
* Lazily load `time`, `cgi`, and `zlib`. Pull request #4010 by
|
|
97
|
+
deivid-rodriguez
|
|
98
|
+
* Don't hit the network when installing dependencyless local gemspec. Pull
|
|
99
|
+
request #3968 by deivid-rodriguez
|
|
100
|
+
* Add `--force` option to `gem sources` command. Pull request #3956 by
|
|
101
|
+
andy-smith-msm
|
|
102
|
+
* Lazily load `openssl`. Pull request #3850 by deivid-rodriguez
|
|
103
|
+
* Pass more information when comparing platforms. Pull request #3817 by
|
|
104
|
+
eregon
|
|
105
|
+
|
|
106
|
+
## Bug fixes:
|
|
107
|
+
|
|
108
|
+
* Use better owner & group for files in rubygems package. Pull request
|
|
109
|
+
#4065 by deivid-rodriguez
|
|
110
|
+
* Improve gem build -C flag. Pull request #3983 by bronzdoc
|
|
111
|
+
* Handle unexpected behavior with URI#merge and subpaths missing trailing
|
|
112
|
+
slashes. Pull request #3123 by drcapulet
|
|
113
|
+
* Add missing `fileutils` require in rubygems installer. Pull request
|
|
114
|
+
#4036 by deivid-rodriguez
|
|
115
|
+
* Fix `--platform` option to `gem specification` being ignored. Pull
|
|
116
|
+
request #4043 by deivid-rodriguez
|
|
117
|
+
* Expose `--no-minimal-deps` flag to install the latest version of
|
|
118
|
+
dependencies. Pull request #4030 by deivid-rodriguez
|
|
119
|
+
* Fix "stack level too deep" error when overriding `Warning.warn`. Pull
|
|
120
|
+
request #3987 by eregon
|
|
121
|
+
* Append '.gemspec' extension only when it is not present. Pull request
|
|
122
|
+
#3988 by voxik
|
|
123
|
+
* Install to correct plugins dir when using `--build-root`. Pull request
|
|
124
|
+
#3972 by deivid-rodriguez
|
|
125
|
+
* Fix `--build-root` flag under Windows. Pull request #3975 by
|
|
126
|
+
deivid-rodriguez
|
|
127
|
+
* Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
|
|
128
|
+
request #3951 by andy-smith-msm
|
|
129
|
+
* Make `--default` and `--install-dir` options to `gem install` play nice
|
|
130
|
+
together. Pull request #3906 by deivid-rodriguez
|
|
131
|
+
|
|
132
|
+
## Deprecations:
|
|
133
|
+
|
|
134
|
+
* Deprecate server command. Pull request #3868 by bronzdoc
|
|
135
|
+
|
|
136
|
+
## Performance:
|
|
137
|
+
|
|
138
|
+
* Don't change ruby process CWD when building extensions. Pull request
|
|
139
|
+
#3498 by deivid-rodriguez
|
|
140
|
+
|
|
141
|
+
# 3.2.0.rc.2 / 2020-10-08
|
|
142
|
+
|
|
143
|
+
## Enhancements:
|
|
144
|
+
|
|
145
|
+
* Make --dry-run flag consistent across rubygems commands. Pull request
|
|
146
|
+
#3867 by bronzdoc
|
|
147
|
+
* Disallow downgrades to too old versions. Pull request #3566 by
|
|
148
|
+
deivid-rodriguez
|
|
149
|
+
* Added `--platform` option to `build` command. Pull request #3079 by nobu
|
|
150
|
+
* Have "gem update --system" pass through the `--silent` flag. Pull
|
|
151
|
+
request #3789 by duckinator
|
|
152
|
+
* Add writable check for cache dir. Pull request #3876 by xndcn
|
|
153
|
+
* Warn on duplicate dependency in a specification. Pull request #3864 by
|
|
154
|
+
bronzdoc
|
|
155
|
+
* Fix indentation in `gem env`. Pull request #3861 by colby-swandale
|
|
156
|
+
* Let more exceptions flow. Pull request #3819 by deivid-rodriguez
|
|
157
|
+
* Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
|
|
158
|
+
eregon
|
|
159
|
+
|
|
160
|
+
## Bug fixes:
|
|
161
|
+
|
|
162
|
+
* Add missing fileutils require. Pull request #3911 by deivid-rodriguez
|
|
163
|
+
* Fix false positive warning on Windows when PATH has
|
|
164
|
+
`File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
|
|
165
|
+
* Fix Kernel#warn override to handle backtrace location with nil path.
|
|
166
|
+
Pull request #3852 by jeremyevans
|
|
167
|
+
* Don't format executables on `gem update --system`. Pull request #3811 by
|
|
168
|
+
deivid-rodriguez
|
|
169
|
+
* `gem install --user` fails with `Gem::FilePermissionError` on the system
|
|
170
|
+
plugins directory. Pull request #3804 by nobu
|
|
171
|
+
|
|
172
|
+
## Performance:
|
|
173
|
+
|
|
174
|
+
* Avoid duplicated generation of APISpecification objects. Pull request
|
|
175
|
+
#3940 by mame
|
|
176
|
+
* Eval defaults with frozen_string_literal: true. Pull request #3847 by
|
|
177
|
+
casperisfine
|
|
178
|
+
* Deduplicate the requirement operators in memory. Pull request #3846 by
|
|
179
|
+
casperisfine
|
|
180
|
+
* Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
|
|
181
|
+
|
|
182
|
+
# 3.2.0.rc.1 / 2020-07-04
|
|
183
|
+
|
|
184
|
+
## Enhancements:
|
|
185
|
+
|
|
186
|
+
* Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
|
|
187
|
+
* Rework plugins system and speed up rubygems. Pull request #3108 by David
|
|
188
|
+
Rodríguez.
|
|
189
|
+
* Specify explicit separator not to be affected by $;. Pull request #3424
|
|
190
|
+
by Nobuyoshi Nakada.
|
|
191
|
+
* Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
|
|
192
|
+
* Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
|
|
193
|
+
* Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
|
|
194
|
+
* Log messages to stdout in `rake package`. Pull request #3632 by David
|
|
195
|
+
Rodríguez.
|
|
196
|
+
* Remove explicit `psych` activation. Pull request #3636 by David
|
|
197
|
+
Rodríguez.
|
|
198
|
+
* Delay `fileutils` loading to fix some warnings. Pull request #3637 by
|
|
199
|
+
David Rodríguez.
|
|
200
|
+
* Make sure rubygems/package can be directly required reliably. Pull
|
|
201
|
+
request #3670 by Luis Sagastume.
|
|
202
|
+
* Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
|
|
203
|
+
#3711 by David Rodríguez.
|
|
204
|
+
* Add Gem.disable_system_update_message to disable gem update --system if
|
|
205
|
+
needed. Pull request #3720 by Josef Šimánek.
|
|
206
|
+
* Tweaks to play nice with ruby-core setup. Pull request #3733 by David
|
|
207
|
+
Rodríguez.
|
|
208
|
+
* Remove explicit require for auto-loaded constant. Pull request #3751 by
|
|
209
|
+
Karol Bucek.
|
|
210
|
+
* Test files should not be included in spec.files. Pull request #3758 by
|
|
211
|
+
Marc-André Lafortune.
|
|
212
|
+
* Remove TODO comment about warning on setting instead of pushing. Pull
|
|
213
|
+
request #2823 by Luis Sagastume.
|
|
214
|
+
* Add deprecate command method. Pull request #2935 by Luis Sagastume.
|
|
215
|
+
* Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
|
|
216
|
+
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
|
217
|
+
#2985 by MSP-Greg.
|
|
218
|
+
* Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
|
|
219
|
+
Colby Swandale.
|
|
220
|
+
* Updates to some old gem-signing docs. Pull request #3063 by Tieg
|
|
221
|
+
Zaharia.
|
|
222
|
+
* Update the gem method for Gem::Installer. Pull request #3137 by Daniel
|
|
223
|
+
Berger.
|
|
224
|
+
* Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
|
|
225
|
+
* Resolve latest version via `gem contents`. Pull request #3149 by Dan
|
|
226
|
+
Rice.
|
|
227
|
+
* Install suggestions. Pull request #3151 by Sophia Castellarin.
|
|
228
|
+
* Only rescue the errors we actually want to rescue. Pull request #3156 by
|
|
229
|
+
David Rodríguez.
|
|
230
|
+
|
|
231
|
+
## Bug fixes:
|
|
232
|
+
|
|
233
|
+
* Accept not only /usr/bin/env but also /bin/env in some tests. Pull
|
|
234
|
+
request #3422 by Yusuke Endoh.
|
|
235
|
+
* Skip a test that attempts to remove the current directory on Solaris.
|
|
236
|
+
Pull request #3423 by Yusuke Endoh.
|
|
237
|
+
* Fix race condition on bundler's parallel installer. Pull request #3440
|
|
238
|
+
by David Rodríguez.
|
|
239
|
+
* Fix platform comparison check in #contains_requirable_file?. Pull
|
|
240
|
+
request #3495 by Benoit Daloze.
|
|
241
|
+
* Improve missing spec error. Pull request #3559 by Luis Sagastume.
|
|
242
|
+
* Fix hidden bundler template installation from rubygems updater. Pull
|
|
243
|
+
request #3674 by David Rodríguez.
|
|
244
|
+
* Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
|
|
245
|
+
* Correct conflict list when uninstallation is prevented. Pull request
|
|
246
|
+
#2973 by David Rodríguez.
|
|
247
|
+
* Fix error when trying to find bundler with a deleted "working directo….
|
|
248
|
+
Pull request #3090 by Luis Sagastume.
|
|
249
|
+
* Fix -I require priority. Pull request #3124 by David Rodríguez.
|
|
250
|
+
* Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
|
|
9
251
|
Rodríguez.
|
|
10
|
-
* Fix correctness and performance regression in `require`. Pull request
|
|
11
|
-
#3639 by David Rodríguez.
|
|
12
252
|
|
|
13
|
-
|
|
253
|
+
## Deprecations:
|
|
14
254
|
|
|
15
|
-
|
|
255
|
+
* Set deprecation warning on query command. Pull request #2967 by Luis
|
|
256
|
+
Sagastume.
|
|
16
257
|
|
|
17
|
-
|
|
18
|
-
|
|
258
|
+
## Breaking changes:
|
|
259
|
+
|
|
260
|
+
* Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
|
|
261
|
+
* Minitest cleanup. Pull request #3445 by David Rodríguez.
|
|
262
|
+
* Remove `builder` gem requirement for `gem regenerate_index`. Pull
|
|
263
|
+
request #3552 by David Rodríguez.
|
|
264
|
+
* Remove modelines for consistency. Pull request #3714 by David Rodríguez.
|
|
265
|
+
* Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
|
|
266
|
+
Bart de Water.
|
|
267
|
+
* Remove Gem module deprecated methods. Pull request #3101 by Luis
|
|
268
|
+
Sagastume.
|
|
269
|
+
* Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
|
|
270
|
+
* Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
|
|
271
|
+
Sagastume.
|
|
272
|
+
* Remove dependency installer deprecated methods. Pull request #3106 by
|
|
273
|
+
Luis Sagastume.
|
|
274
|
+
* Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
|
|
275
|
+
Sagastume.
|
|
276
|
+
* Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
|
|
277
|
+
Sagastume.
|
|
278
|
+
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
|
|
279
|
+
Luis Sagastume.
|
|
280
|
+
* Remove source_exception from Gem::Exception. Pull request #3112 by Luis
|
|
281
|
+
Sagastume.
|
|
282
|
+
* Requiring rubygems/source_specific_file is deprecated, remove it. Pull
|
|
283
|
+
request #3114 by Luis Sagastume.
|
|
19
284
|
|
|
20
|
-
|
|
285
|
+
# 3.1.4 / 2020-06-03
|
|
21
286
|
|
|
22
|
-
|
|
287
|
+
## Enhancements:
|
|
23
288
|
|
|
24
289
|
* Deprecate rubyforge_project attribute only during build
|
|
25
290
|
time. Pull request #3609 by Josef Šimánek.
|
|
@@ -28,9 +293,9 @@ Minor enhancements:
|
|
|
28
293
|
* Remove failing ubuntu-rvm CI flow. Pull request #3611 by
|
|
29
294
|
Josef Šimánek.
|
|
30
295
|
|
|
31
|
-
|
|
296
|
+
# 3.1.3 / 2020-05-05
|
|
32
297
|
|
|
33
|
-
|
|
298
|
+
## Enhancements:
|
|
34
299
|
|
|
35
300
|
* Resolver: require NameTuple before use. Pull request #3171 by Olle
|
|
36
301
|
Jonsson.
|
|
@@ -41,7 +306,7 @@ Minor enhancements:
|
|
|
41
306
|
* Add tests to check if Gem.ruby_version works with ruby git master.
|
|
42
307
|
Pull request #3049 by Yusuke Endoh.
|
|
43
308
|
|
|
44
|
-
Bug fixes:
|
|
309
|
+
## Bug fixes:
|
|
45
310
|
|
|
46
311
|
* Fix platform comparison check in #contains_requirable_file?. Pull
|
|
47
312
|
request #3495 by Benoit Daloze.
|
|
@@ -53,9 +318,9 @@ Bug fixes:
|
|
|
53
318
|
* Fix gem install from a gemdeps file with complex dependencies.
|
|
54
319
|
Pull request #3054 by Luis Sagastume.
|
|
55
320
|
|
|
56
|
-
|
|
321
|
+
# 3.1.2 / 2019-12-20
|
|
57
322
|
|
|
58
|
-
|
|
323
|
+
## Enhancements:
|
|
59
324
|
|
|
60
325
|
* Restore non prompting `gem update --system` behavior. Pull request #3040
|
|
61
326
|
by David Rodríguez.
|
|
@@ -65,29 +330,26 @@ Minor enhancements:
|
|
|
65
330
|
Pull request #3042 by David Rodríguez.
|
|
66
331
|
* Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
|
|
67
332
|
|
|
68
|
-
Bug fixes:
|
|
333
|
+
## Bug fixes:
|
|
69
334
|
|
|
70
335
|
* Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
|
|
71
336
|
* Fix `gem update --system --force`. Pull request #3035 by David
|
|
72
337
|
Rodríguez.
|
|
73
338
|
* Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
|
|
74
339
|
|
|
75
|
-
|
|
340
|
+
# 3.1.1 / 2019-12-16
|
|
76
341
|
|
|
77
|
-
Bug fixes:
|
|
342
|
+
## Bug fixes:
|
|
78
343
|
|
|
79
344
|
* Vendor Bundler 2.1.0 again. The version of Bundler with
|
|
80
345
|
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
|
|
81
346
|
SHIBATA Hiroshi.
|
|
82
347
|
|
|
83
|
-
|
|
348
|
+
# 3.1.0 / 2019-12-16
|
|
84
349
|
|
|
85
|
-
|
|
350
|
+
## Enhancements:
|
|
86
351
|
|
|
87
352
|
* Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
|
|
88
|
-
|
|
89
|
-
Minor enhancements:
|
|
90
|
-
|
|
91
353
|
* Check for rubygems.org typo squatting sources. Pull request #2999 by
|
|
92
354
|
Luis Sagastume.
|
|
93
355
|
* Refactor remote fetcher. Pull request #3017 by David Rodríguez.
|
|
@@ -99,22 +361,25 @@ Minor enhancements:
|
|
|
99
361
|
* Use bundler to manage development dependencies. Pull request #3012 by
|
|
100
362
|
David Rodríguez.
|
|
101
363
|
|
|
102
|
-
Bug fixes:
|
|
364
|
+
## Bug fixes:
|
|
103
365
|
|
|
104
366
|
* Remove unnecessary executable flags. Pull request #2982 by David
|
|
105
367
|
Rodríguez.
|
|
106
368
|
* Remove configuration that contained a typo. Pull request #2989 by David
|
|
107
369
|
Rodríguez.
|
|
108
370
|
|
|
109
|
-
|
|
371
|
+
## Deprecations:
|
|
110
372
|
|
|
111
|
-
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
|
112
373
|
* Deprecate `gem generate_index --modern` and `gem generate_index
|
|
113
374
|
--no-modern`. Pull request #2992 by David Rodríguez.
|
|
114
375
|
|
|
115
|
-
|
|
376
|
+
## Breaking changes:
|
|
116
377
|
|
|
117
|
-
|
|
378
|
+
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
|
379
|
+
|
|
380
|
+
# 3.1.0.pre3 / 2019-11-11
|
|
381
|
+
|
|
382
|
+
## Enhancements:
|
|
118
383
|
|
|
119
384
|
* Fix gem pristine not accounting for user installed gems. Pull request
|
|
120
385
|
#2914 by Luis Sagastume.
|
|
@@ -133,18 +398,18 @@ Minor enhancements:
|
|
|
133
398
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
|
134
399
|
#2985 by MSP-Greg.
|
|
135
400
|
|
|
136
|
-
|
|
401
|
+
# 3.1.0.pre2 / 2019-10-15
|
|
137
402
|
|
|
138
|
-
|
|
403
|
+
## Enhancements:
|
|
139
404
|
|
|
140
405
|
* Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
|
|
141
406
|
Boussier.
|
|
142
407
|
* Time comparison around date boundary. Pull request #2944 by Nobuyoshi
|
|
143
408
|
Nakada.
|
|
144
409
|
|
|
145
|
-
|
|
410
|
+
# 3.1.0.pre1 / 2019-10-08
|
|
146
411
|
|
|
147
|
-
|
|
412
|
+
## Enhancements:
|
|
148
413
|
|
|
149
414
|
* Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
|
|
150
415
|
* [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
|
|
@@ -155,9 +420,6 @@ Major enhancements:
|
|
|
155
420
|
Chaofan.
|
|
156
421
|
* Autoswitch to exact bundler version if present. Pull request #2583 by
|
|
157
422
|
David Rodríguez.
|
|
158
|
-
|
|
159
|
-
Minor enhancements:
|
|
160
|
-
|
|
161
423
|
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
|
162
424
|
request #2554 by Grey Baker.
|
|
163
425
|
* Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
|
|
@@ -277,7 +539,7 @@ Minor enhancements:
|
|
|
277
539
|
Berger.
|
|
278
540
|
* Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
|
|
279
541
|
|
|
280
|
-
Bug fixes:
|
|
542
|
+
## Bug fixes:
|
|
281
543
|
|
|
282
544
|
* Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
|
|
283
545
|
* Remove unused empty sources array. Pull request #2598 by Aaron
|
|
@@ -310,29 +572,33 @@ Bug fixes:
|
|
|
310
572
|
* Fix cryptic error on local and ignore-dependencies combination. Pull
|
|
311
573
|
request #2650 by David Rodríguez.
|
|
312
574
|
|
|
313
|
-
|
|
575
|
+
## Deprecations:
|
|
314
576
|
|
|
315
|
-
*
|
|
577
|
+
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
|
578
|
+
#2857 by SHIBATA Hiroshi.
|
|
579
|
+
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
|
580
|
+
Sagastume.
|
|
581
|
+
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
|
582
|
+
Rodríguez.
|
|
583
|
+
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
|
584
|
+
Ondruch.
|
|
585
|
+
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
|
586
|
+
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
|
316
587
|
Sagastume.
|
|
588
|
+
|
|
589
|
+
## Breaking changes:
|
|
590
|
+
|
|
317
591
|
* Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
|
|
318
592
|
* Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
|
|
319
593
|
ITO.
|
|
320
594
|
* 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
595
|
* Remove conflict.rb code that was supposed to be removed in Rubygems 3.
|
|
326
596
|
Pull request #2802 by Luis Sagastume.
|
|
327
|
-
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
|
328
|
-
Rodríguez.
|
|
329
597
|
* Compatibility cleanups. Pull request #2754 by David Rodríguez.
|
|
330
598
|
* Remove `others_possible` activation request param. Pull request #2747 by
|
|
331
599
|
David Rodríguez.
|
|
332
600
|
* Remove dependency installer deprecated code. Pull request #2740 by Luis
|
|
333
601
|
Sagastume.
|
|
334
|
-
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
|
335
|
-
Ondruch.
|
|
336
602
|
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
|
|
337
603
|
by SHIBATA Hiroshi.
|
|
338
604
|
* Skip deprecation warning during specs. Pull request #2718 by David
|
|
@@ -341,34 +607,36 @@ Compatibility changes:
|
|
|
341
607
|
* Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
|
|
342
608
|
* Removed needless environmental variable for Travis CI. Pull request
|
|
343
609
|
#2685 by SHIBATA Hiroshi.
|
|
344
|
-
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
|
345
610
|
* Removing yaml require. Pull request #2538 by Luciano Sousa.
|
|
346
|
-
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
|
347
|
-
Sagastume.
|
|
348
611
|
|
|
349
|
-
|
|
612
|
+
# 3.0.8 / 2020-02-19
|
|
350
613
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
*
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
*
|
|
614
|
+
## Bug fixes:
|
|
615
|
+
|
|
616
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
|
617
|
+
Nobuyoshi Nakada.
|
|
618
|
+
|
|
619
|
+
# 3.0.7 / 2020-02-18
|
|
620
|
+
|
|
621
|
+
## Bug fixes:
|
|
622
|
+
|
|
623
|
+
* Fix underscore version selection for bundler #2908 by David Rodríguez.
|
|
624
|
+
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
|
625
|
+
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
|
626
|
+
Pull request #2782 by Luis Sagastume.
|
|
627
|
+
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
|
628
|
+
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
|
629
|
+
request #2894 by Alexander Pakulov.
|
|
362
630
|
|
|
363
|
-
|
|
631
|
+
# 3.0.6 / 2019-08-17
|
|
364
632
|
|
|
365
|
-
Bug fixes:
|
|
633
|
+
## Bug fixes:
|
|
366
634
|
|
|
367
635
|
* Revert #2813. It broke the compatibility with 3.0.x versions.
|
|
368
636
|
|
|
369
|
-
|
|
637
|
+
# 3.0.5 / 2019-08-16
|
|
370
638
|
|
|
371
|
-
|
|
639
|
+
## Enhancements:
|
|
372
640
|
|
|
373
641
|
* Use env var to configure api key on push. Pull request #2559 by Luis
|
|
374
642
|
Sagastume.
|
|
@@ -403,7 +671,7 @@ Minor enhancements:
|
|
|
403
671
|
by Alexander Pakulov.
|
|
404
672
|
* Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
|
|
405
673
|
|
|
406
|
-
Bug fixes:
|
|
674
|
+
## Bug fixes:
|
|
407
675
|
|
|
408
676
|
* Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
|
|
409
677
|
MSP-Greg.
|
|
@@ -419,9 +687,9 @@ Bug fixes:
|
|
|
419
687
|
* Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
|
|
420
688
|
Hiroshi.
|
|
421
689
|
|
|
422
|
-
|
|
690
|
+
# 3.0.4 / 2019-06-14
|
|
423
691
|
|
|
424
|
-
|
|
692
|
+
## Enhancements:
|
|
425
693
|
|
|
426
694
|
* Add support for TruffleRuby #2612 by Benoit Daloze
|
|
427
695
|
* Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
|
|
@@ -458,7 +726,7 @@ Minor enhancements:
|
|
|
458
726
|
request #2777 by Yusuke Endoh.
|
|
459
727
|
* Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
|
|
460
728
|
|
|
461
|
-
Bug fixes:
|
|
729
|
+
## Bug fixes:
|
|
462
730
|
|
|
463
731
|
* Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
|
|
464
732
|
* Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
|
|
@@ -474,11 +742,10 @@ Bug fixes:
|
|
|
474
742
|
#2732 by Alex Junger.
|
|
475
743
|
* Fix TODOs. Pull request #2748 by David Rodríguez.
|
|
476
744
|
|
|
477
|
-
|
|
745
|
+
# 3.0.3 / 2019-03-05
|
|
478
746
|
|
|
479
747
|
Security fixes:
|
|
480
748
|
|
|
481
|
-
* Fixed following vulnerabilities:
|
|
482
749
|
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
|
483
750
|
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
|
484
751
|
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
|
@@ -486,14 +753,14 @@ Security fixes:
|
|
|
486
753
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
|
487
754
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
|
488
755
|
|
|
489
|
-
|
|
756
|
+
# 3.0.2 / 2019-01-01
|
|
490
757
|
|
|
491
|
-
|
|
758
|
+
## Enhancements:
|
|
492
759
|
|
|
493
760
|
* Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
|
|
494
761
|
* Fix document flag description. Pull request #2555 by Luis Sagastume.
|
|
495
762
|
|
|
496
|
-
Bug fixes:
|
|
763
|
+
## Bug fixes:
|
|
497
764
|
|
|
498
765
|
* Fix tests when ruby --program-suffix is used without rubygems
|
|
499
766
|
--format-executable. Pull request #2549 by Jeremy Evans.
|
|
@@ -503,9 +770,9 @@ Bug fixes:
|
|
|
503
770
|
Fukumori.
|
|
504
771
|
* Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
|
|
505
772
|
|
|
506
|
-
|
|
773
|
+
# 3.0.1 / 2018-12-23
|
|
507
774
|
|
|
508
|
-
Bug fixes:
|
|
775
|
+
## Bug fixes:
|
|
509
776
|
|
|
510
777
|
* Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
|
|
511
778
|
* Dup the Dir.home string before passing it on. Pull request #2545 by
|
|
@@ -514,9 +781,9 @@ Bug fixes:
|
|
|
514
781
|
by SHIBATA Hiroshi.
|
|
515
782
|
* Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
|
|
516
783
|
|
|
517
|
-
|
|
784
|
+
# 3.0.0 / 2018-12-19
|
|
518
785
|
|
|
519
|
-
|
|
786
|
+
## Enhancements:
|
|
520
787
|
|
|
521
788
|
* S3 source. Pull request #1690 by Aditya Prakash.
|
|
522
789
|
* Download gems with threads. Pull request #1898 by André Arko.
|
|
@@ -524,9 +791,6 @@ Major enhancements:
|
|
|
524
791
|
* [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
|
|
525
792
|
Chaofan.
|
|
526
793
|
* Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
|
|
527
|
-
|
|
528
|
-
Minor enhancements:
|
|
529
|
-
|
|
530
794
|
* Don't treat inaccessible working directories as build failures. Pull
|
|
531
795
|
request #1135 by Pete.
|
|
532
796
|
* Remove useless directory parameter from builders .build methods.
|
|
@@ -553,7 +817,7 @@ Minor enhancements:
|
|
|
553
817
|
Swandale.
|
|
554
818
|
* Add Gem.operating_system_defaults to allow packagers to override
|
|
555
819
|
defaults. Pull request #2116 by Vít Ondruch.
|
|
556
|
-
* Update for
|
|
820
|
+
* Update for compatibility with new minitest. Pull request #2118 by
|
|
557
821
|
MSP-Greg.
|
|
558
822
|
* Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
|
|
559
823
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
|
@@ -585,11 +849,11 @@ Minor enhancements:
|
|
|
585
849
|
SHIBATA Hiroshi.
|
|
586
850
|
* Add Rake task to install dev dependencies. Pull request #2173 by Ellen
|
|
587
851
|
Marie Dash.
|
|
588
|
-
* Add new sections to the README and
|
|
852
|
+
* Add new sections to the README and explanation of what RubyGems is.
|
|
589
853
|
Pull request #2174 by Colby Swandale.
|
|
590
854
|
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
|
|
591
855
|
SHIBATA Hiroshi.
|
|
592
|
-
* Ignore
|
|
856
|
+
* Ignore performance test of version regexp pattern. Pull request #2179 by
|
|
593
857
|
SHIBATA Hiroshi.
|
|
594
858
|
* Ignore .DS_Store files in the update_manifest task. Pull request #2199
|
|
595
859
|
by Colby Swandale.
|
|
@@ -684,7 +948,7 @@ Minor enhancements:
|
|
|
684
948
|
* Support the environment without OpenSSL. Pull request #2528 by SHIBATA
|
|
685
949
|
Hiroshi.
|
|
686
950
|
|
|
687
|
-
Bug fixes:
|
|
951
|
+
## Bug fixes:
|
|
688
952
|
|
|
689
953
|
* Fix undefined method error when printing alert. Pull request #1884 by
|
|
690
954
|
Robert Ross.
|
|
@@ -737,7 +1001,7 @@ Bug fixes:
|
|
|
737
1001
|
* Fix tests when --program-suffix and similar ruby configure options are
|
|
738
1002
|
used. Pull request #2529 by Jeremy Evans.
|
|
739
1003
|
|
|
740
|
-
|
|
1004
|
+
## Breaking changes:
|
|
741
1005
|
|
|
742
1006
|
* IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
|
|
743
1007
|
Hiroshi.
|
|
@@ -790,44 +1054,20 @@ Compatibility changes:
|
|
|
790
1054
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
|
791
1055
|
major versions. Pull request #2515 by Colby Swandale.
|
|
792
1056
|
|
|
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
|
|
1057
|
+
# 2.7.10 / 2019-06-14
|
|
817
1058
|
|
|
818
|
-
|
|
1059
|
+
## Enhancements:
|
|
819
1060
|
|
|
820
1061
|
* Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
|
|
821
1062
|
by David Rodríguez.
|
|
822
1063
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
|
|
823
1064
|
Pull request #2515 by Colby Swandale.
|
|
824
|
-
+ Update for
|
|
1065
|
+
+ Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
|
|
825
1066
|
|
|
826
|
-
|
|
1067
|
+
# 2.7.9 / 2019-03-05
|
|
827
1068
|
|
|
828
1069
|
Security fixes:
|
|
829
1070
|
|
|
830
|
-
* Fixed following vulnerabilities:
|
|
831
1071
|
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
|
832
1072
|
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
|
833
1073
|
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
|
@@ -835,9 +1075,9 @@ Security fixes:
|
|
|
835
1075
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
|
836
1076
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
|
837
1077
|
|
|
838
|
-
|
|
1078
|
+
# 2.7.8 / 2018-11-02
|
|
839
1079
|
|
|
840
|
-
|
|
1080
|
+
## Enhancements:
|
|
841
1081
|
|
|
842
1082
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
|
843
1083
|
request #2230 by Samuel Giddins.
|
|
@@ -856,7 +1096,7 @@ Minor enhancements:
|
|
|
856
1096
|
* Improve bindir flag description. Pull request #2383 by Luis Sagastume.
|
|
857
1097
|
* Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
|
|
858
1098
|
|
|
859
|
-
Bug fixes:
|
|
1099
|
+
## Bug fixes:
|
|
860
1100
|
|
|
861
1101
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
|
862
1102
|
request #2229 by Elias Hernandis.
|
|
@@ -869,9 +1109,9 @@ Bug fixes:
|
|
|
869
1109
|
* Gem::Version should handle nil like it used to before. Pull request
|
|
870
1110
|
#2363 by Luis Sagastume.
|
|
871
1111
|
|
|
872
|
-
|
|
1112
|
+
# 2.7.7 / 2018-05-08
|
|
873
1113
|
|
|
874
|
-
|
|
1114
|
+
## Enhancements:
|
|
875
1115
|
|
|
876
1116
|
* [RequestSet] Only suggest a gem version with an installable platform.
|
|
877
1117
|
Pull request #2175 by Samuel Giddins.
|
|
@@ -886,7 +1126,7 @@ Minor enhancements:
|
|
|
886
1126
|
Sagastume.
|
|
887
1127
|
* Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
|
|
888
1128
|
|
|
889
|
-
Bug fixes:
|
|
1129
|
+
## Bug fixes:
|
|
890
1130
|
|
|
891
1131
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
|
892
1132
|
#2115 by MSP-Greg.
|
|
@@ -899,16 +1139,19 @@ Bug fixes:
|
|
|
899
1139
|
* Fix path checks for case insensitive filesystem. Pull request #2211 by
|
|
900
1140
|
Lars Kanis.
|
|
901
1141
|
|
|
902
|
-
|
|
1142
|
+
## Deprecations:
|
|
903
1143
|
|
|
904
1144
|
* Deprecate unused code before removing them at #1524. Pull request #2197
|
|
905
1145
|
by SHIBATA Hiroshi.
|
|
906
1146
|
* Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
|
|
907
1147
|
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
|
|
908
1148
|
SHIBATA Hiroshi.
|
|
1149
|
+
|
|
1150
|
+
## Breaking changes:
|
|
1151
|
+
|
|
909
1152
|
* Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
|
|
910
1153
|
|
|
911
|
-
|
|
1154
|
+
# 2.7.6 / 2018-02-16
|
|
912
1155
|
|
|
913
1156
|
Security fixes:
|
|
914
1157
|
|
|
@@ -917,7 +1160,7 @@ Security fixes:
|
|
|
917
1160
|
* Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
|
|
918
1161
|
Fixed by Jonathan Claudius.
|
|
919
1162
|
* Strictly interpret octal fields in tar headers.
|
|
920
|
-
|
|
1163
|
+
Discovered by plover, fixed by Samuel Giddins.
|
|
921
1164
|
* Raise a security error when there are duplicate files in a package.
|
|
922
1165
|
Discovered by plover, fixed by Samuel Giddins.
|
|
923
1166
|
* Enforce URL validation on spec homepage attribute.
|
|
@@ -927,9 +1170,9 @@ Security fixes:
|
|
|
927
1170
|
* Prevent Path Traversal issue during gem installation.
|
|
928
1171
|
Discovered by nmalkin.
|
|
929
1172
|
|
|
930
|
-
|
|
1173
|
+
# 2.7.5
|
|
931
1174
|
|
|
932
|
-
Bug fixes:
|
|
1175
|
+
## Bug fixes:
|
|
933
1176
|
|
|
934
1177
|
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
|
935
1178
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
|
@@ -941,9 +1184,9 @@ Bug fixes:
|
|
|
941
1184
|
* Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
|
|
942
1185
|
* Fix undefined method error when printing alert #1884 by Robert Ross.
|
|
943
1186
|
|
|
944
|
-
|
|
1187
|
+
# 2.7.4
|
|
945
1188
|
|
|
946
|
-
Bug fixes:
|
|
1189
|
+
## Bug fixes:
|
|
947
1190
|
|
|
948
1191
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
|
949
1192
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
|
@@ -952,9 +1195,9 @@ Bug fixes:
|
|
|
952
1195
|
* Handle environment that does not have `flock` system call. Pull request
|
|
953
1196
|
#2107 by SHIBATA Hiroshi.
|
|
954
1197
|
|
|
955
|
-
|
|
1198
|
+
# 2.7.3
|
|
956
1199
|
|
|
957
|
-
|
|
1200
|
+
## Enhancements:
|
|
958
1201
|
|
|
959
1202
|
* Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
|
|
960
1203
|
* Add --[no-]check-development option to cleanup command. Pull request
|
|
@@ -967,7 +1210,7 @@ Minor enhancements:
|
|
|
967
1210
|
* Remove multi load warning from plugins documentation. Pull request #2103
|
|
968
1211
|
by Thibault Jouan.
|
|
969
1212
|
|
|
970
|
-
Bug fixes:
|
|
1213
|
+
## Bug fixes:
|
|
971
1214
|
|
|
972
1215
|
* Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
|
|
973
1216
|
Dash.
|
|
@@ -986,33 +1229,30 @@ Bug fixes:
|
|
|
986
1229
|
* Use setup command --regenerate-binstubs option flag. Pull request #2099
|
|
987
1230
|
by Thibault Jouan.
|
|
988
1231
|
|
|
989
|
-
|
|
1232
|
+
# 2.7.2
|
|
990
1233
|
|
|
991
|
-
Bug fixes:
|
|
1234
|
+
## Bug fixes:
|
|
992
1235
|
|
|
993
1236
|
* Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
|
|
994
1237
|
Hiroshi.
|
|
995
1238
|
* Added workaround for non-git environment. Pull request #2066 by SHIBATA
|
|
996
1239
|
Hiroshi.
|
|
997
1240
|
|
|
998
|
-
|
|
1241
|
+
# 2.7.1 (2017-11-03)
|
|
999
1242
|
|
|
1000
|
-
Bug fixes:
|
|
1243
|
+
## Bug fixes:
|
|
1001
1244
|
|
|
1002
1245
|
* Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
|
|
1003
1246
|
Samuel Giddins.
|
|
1004
1247
|
|
|
1005
|
-
|
|
1248
|
+
# 2.7.0 (2017-11-02)
|
|
1006
1249
|
|
|
1007
|
-
|
|
1250
|
+
## Enhancements:
|
|
1008
1251
|
|
|
1009
1252
|
* Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
|
|
1010
1253
|
* Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
|
|
1011
1254
|
* Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
|
|
1012
1255
|
* Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
|
|
1013
|
-
|
|
1014
|
-
Minor enhancements:
|
|
1015
|
-
|
|
1016
1256
|
* Added message to uninstall command for gem that is not installed. Pull
|
|
1017
1257
|
request #1979 by anant anil kolvankar.
|
|
1018
1258
|
* Add --trust-policy option to unpack command. Pull request #1718 by
|
|
@@ -1098,11 +1338,8 @@ Minor enhancements:
|
|
|
1098
1338
|
* Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
|
|
1099
1339
|
Dash.
|
|
1100
1340
|
|
|
1101
|
-
|
|
1341
|
+
## Deprecations:
|
|
1102
1342
|
|
|
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
1343
|
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
|
1107
1344
|
Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
|
|
1108
1345
|
* Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
|
|
@@ -1110,10 +1347,16 @@ Compatibility changes:
|
|
|
1110
1347
|
* Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
|
|
1111
1348
|
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
|
1112
1349
|
Pull request #1731 by Jon Moss.
|
|
1350
|
+
|
|
1351
|
+
## Breaking changes:
|
|
1352
|
+
|
|
1353
|
+
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
|
1354
|
+
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
|
1355
|
+
by SHIBATA Hiroshi.
|
|
1113
1356
|
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
|
1114
1357
|
#1796 by Matej.
|
|
1115
1358
|
|
|
1116
|
-
Bug fixes:
|
|
1359
|
+
## Bug fixes:
|
|
1117
1360
|
|
|
1118
1361
|
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
|
|
1119
1362
|
MSP-Greg.
|
|
@@ -1166,7 +1409,7 @@ Bug fixes:
|
|
|
1166
1409
|
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
|
1167
1410
|
Pull request #1738 by Samuel Giddins.
|
|
1168
1411
|
|
|
1169
|
-
|
|
1412
|
+
# 2.6.14 / 2017-10-09
|
|
1170
1413
|
|
|
1171
1414
|
Security fixes:
|
|
1172
1415
|
|
|
@@ -1174,7 +1417,7 @@ Security fixes:
|
|
|
1174
1417
|
See CVE-2017-0903 for full details.
|
|
1175
1418
|
Fix by Aaron Patterson.
|
|
1176
1419
|
|
|
1177
|
-
|
|
1420
|
+
# 2.6.13 / 2017-08-27
|
|
1178
1421
|
|
|
1179
1422
|
Security fixes:
|
|
1180
1423
|
|
|
@@ -1188,9 +1431,9 @@ Security fixes:
|
|
|
1188
1431
|
to overwrite arbitrary files. (CVE-2017-0901)
|
|
1189
1432
|
Discovered by Yusuke Endoh, fix by Samuel Giddins.
|
|
1190
1433
|
|
|
1191
|
-
|
|
1434
|
+
# 2.6.12 / 2017-04-30
|
|
1192
1435
|
|
|
1193
|
-
Bug fixes:
|
|
1436
|
+
## Bug fixes:
|
|
1194
1437
|
|
|
1195
1438
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
|
1196
1439
|
request #1880 by Kazuaki Matsuo.
|
|
@@ -1211,9 +1454,9 @@ Bug fixes:
|
|
|
1211
1454
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
|
1212
1455
|
request #1910 by Samuel Giddins.
|
|
1213
1456
|
|
|
1214
|
-
|
|
1457
|
+
# 2.6.11 / 2017-03-16
|
|
1215
1458
|
|
|
1216
|
-
Bug fixes:
|
|
1459
|
+
## Bug fixes:
|
|
1217
1460
|
|
|
1218
1461
|
* Fixed broken tests on ruby-head. Pull request #1841 by
|
|
1219
1462
|
SHIBATA Hiroshi.
|
|
@@ -1224,16 +1467,16 @@ Bug fixes:
|
|
|
1224
1467
|
* Use improved resolver sorting algorithm. Pull request #1856 by
|
|
1225
1468
|
Samuel Giddins.
|
|
1226
1469
|
|
|
1227
|
-
|
|
1470
|
+
# 2.6.10 / 2017-01-23
|
|
1228
1471
|
|
|
1229
|
-
Bug fixes:
|
|
1472
|
+
## Bug fixes:
|
|
1230
1473
|
|
|
1231
1474
|
* Fix `require` calling the wrong `gem` method when it is overridden.
|
|
1232
1475
|
Pull request #1822 by Samuel Giddins.
|
|
1233
1476
|
|
|
1234
|
-
|
|
1477
|
+
# 2.6.9 / 2017-01-20
|
|
1235
1478
|
|
|
1236
|
-
Bug fixes:
|
|
1479
|
+
## Bug fixes:
|
|
1237
1480
|
|
|
1238
1481
|
* Allow initializing versions with empty strings. Pull request #1767 by
|
|
1239
1482
|
Luis Sagastume.
|
|
@@ -1247,9 +1490,9 @@ Bug fixes:
|
|
|
1247
1490
|
* RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
|
|
1248
1491
|
Jonsson.
|
|
1249
1492
|
|
|
1250
|
-
|
|
1493
|
+
# 2.6.8 / 2016-10-29
|
|
1251
1494
|
|
|
1252
|
-
Bug fixes:
|
|
1495
|
+
## Bug fixes:
|
|
1253
1496
|
|
|
1254
1497
|
* Improve SSL verification failure message. Pull request #1751
|
|
1255
1498
|
by Eric Hodel.
|
|
@@ -1258,9 +1501,9 @@ Bug fixes:
|
|
|
1258
1501
|
* Update vendored Molinillo to 0.5.3. Pull request #1763 by
|
|
1259
1502
|
Samuel Giddins.
|
|
1260
1503
|
|
|
1261
|
-
|
|
1504
|
+
# 2.6.7 / 2016-09-26
|
|
1262
1505
|
|
|
1263
|
-
Bug fixes:
|
|
1506
|
+
## Bug fixes:
|
|
1264
1507
|
|
|
1265
1508
|
* Install native extensions in the correct location when using the
|
|
1266
1509
|
`--user-install` flag. Pull request #1683 by Noah Kantrowitz.
|
|
@@ -1272,24 +1515,24 @@ Bug fixes:
|
|
|
1272
1515
|
* Update vendored Molinillo to 0.5.1. Pull request #1714 by
|
|
1273
1516
|
Samuel Giddins.
|
|
1274
1517
|
|
|
1275
|
-
|
|
1518
|
+
# 2.6.6 / 2016-06-22
|
|
1276
1519
|
|
|
1277
|
-
Bug fixes:
|
|
1520
|
+
## Bug fixes:
|
|
1278
1521
|
|
|
1279
1522
|
* Sort installed versions to make sure we install the latest version when
|
|
1280
1523
|
running `gem update --system`. As a one-time fix, run
|
|
1281
1524
|
`gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
|
|
1282
1525
|
|
|
1283
|
-
|
|
1526
|
+
# 2.6.5 / 2016-06-21
|
|
1284
1527
|
|
|
1285
|
-
|
|
1528
|
+
## Enhancements:
|
|
1286
1529
|
|
|
1287
1530
|
* Support for unified Integer in Ruby 2.4. Pull request #1618
|
|
1288
1531
|
by SHIBATA Hiroshi.
|
|
1289
1532
|
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
|
1290
1533
|
Pull request #1638 by Samuel Giddins.
|
|
1291
1534
|
|
|
1292
|
-
Bug fixes:
|
|
1535
|
+
## Bug fixes:
|
|
1293
1536
|
|
|
1294
1537
|
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
|
1295
1538
|
request #1605 by Daniel Berger.
|
|
@@ -1309,16 +1552,16 @@ Bug fixes:
|
|
|
1309
1552
|
Pull request #1644 by Charles Oliver Nutter.
|
|
1310
1553
|
* Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
|
|
1311
1554
|
|
|
1312
|
-
|
|
1555
|
+
# 2.6.4 / 2016-04-26
|
|
1313
1556
|
|
|
1314
|
-
|
|
1557
|
+
## Enhancements:
|
|
1315
1558
|
|
|
1316
1559
|
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
|
|
1317
1560
|
by Chris Charabaruk.
|
|
1318
1561
|
* Use File.symlink on MS Windows if supported. Pull request #1418
|
|
1319
1562
|
by Nobuyoshi Nakada.
|
|
1320
1563
|
|
|
1321
|
-
Bug fixes:
|
|
1564
|
+
## Bug fixes:
|
|
1322
1565
|
|
|
1323
1566
|
* Redact uri password from error output when gem fetch fails. Pull request
|
|
1324
1567
|
#1565 by Brian Fletcher.
|
|
@@ -1326,9 +1569,9 @@ Bug fixes:
|
|
|
1326
1569
|
* Escape user-supplied content served on web pages by `gem server` to avoid
|
|
1327
1570
|
potential XSS vulnerabilities. Samuel Giddins.
|
|
1328
1571
|
|
|
1329
|
-
|
|
1572
|
+
# 2.6.3 / 2016-04-05
|
|
1330
1573
|
|
|
1331
|
-
|
|
1574
|
+
## Enhancements:
|
|
1332
1575
|
|
|
1333
1576
|
* Lazily calculate Gem::LoadError exception messages. Pull request #1550
|
|
1334
1577
|
by Aaron Patterson.
|
|
@@ -1339,7 +1582,7 @@ Minor enhancements:
|
|
|
1339
1582
|
* Show default gems when using "gem list". Pull request #1570 by Luis
|
|
1340
1583
|
Sagastume.
|
|
1341
1584
|
|
|
1342
|
-
Bug fixes:
|
|
1585
|
+
## Bug fixes:
|
|
1343
1586
|
|
|
1344
1587
|
* Stub ordering should be consistent regardless of how cache is populated.
|
|
1345
1588
|
Pull request #1552 by Aaron Patterson.
|
|
@@ -1355,9 +1598,9 @@ Bug fixes:
|
|
|
1355
1598
|
Giddins.
|
|
1356
1599
|
* Allow two digit version numbers in the tests. Pull request #1575 by unak.
|
|
1357
1600
|
|
|
1358
|
-
|
|
1601
|
+
# 2.6.2 / 2016-03-12
|
|
1359
1602
|
|
|
1360
|
-
Bug fixes:
|
|
1603
|
+
## Bug fixes:
|
|
1361
1604
|
|
|
1362
1605
|
* Fix wrong version of gem activation for bin stub. Pull request #1527 by
|
|
1363
1606
|
Aaron Patterson.
|
|
@@ -1368,9 +1611,9 @@ Bug fixes:
|
|
|
1368
1611
|
#1538 by Charles Oliver Nutter.
|
|
1369
1612
|
|
|
1370
1613
|
|
|
1371
|
-
|
|
1614
|
+
# 2.6.1 / 2016-02-28
|
|
1372
1615
|
|
|
1373
|
-
Bug fixes:
|
|
1616
|
+
## Bug fixes:
|
|
1374
1617
|
|
|
1375
1618
|
* Ensure `default_path` and `home` are set for paths. Pull request #1513
|
|
1376
1619
|
by Aaron Patterson.
|
|
@@ -1379,9 +1622,9 @@ Bug fixes:
|
|
|
1379
1622
|
* Fix invalid gem file preventing gem install from working. Pull request
|
|
1380
1623
|
#1499 by Luis Sagastume.
|
|
1381
1624
|
|
|
1382
|
-
|
|
1625
|
+
# 2.6.0 / 2016-02-26
|
|
1383
1626
|
|
|
1384
|
-
|
|
1627
|
+
## Enhancements:
|
|
1385
1628
|
|
|
1386
1629
|
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
|
1387
1630
|
metadata setting. Pull request #1486 by Josh Lane.
|
|
@@ -1392,7 +1635,7 @@ Minor enhancements:
|
|
|
1392
1635
|
* Allow specifying gem requirements via env variables. Pull request #1472
|
|
1393
1636
|
by Samuel E. Giddins.
|
|
1394
1637
|
|
|
1395
|
-
Bug fixes:
|
|
1638
|
+
## Bug fixes:
|
|
1396
1639
|
|
|
1397
1640
|
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
|
1398
1641
|
Pull request #1485 by Josh Lane.
|
|
@@ -1418,9 +1661,9 @@ Bug fixes:
|
|
|
1418
1661
|
* Find_files only from loaded_gems when using gemdeps. Pull request #1277
|
|
1419
1662
|
by Michal Papis.
|
|
1420
1663
|
|
|
1421
|
-
|
|
1664
|
+
# 2.5.2 / 2016-01-31
|
|
1422
1665
|
|
|
1423
|
-
Bug fixes:
|
|
1666
|
+
## Bug fixes:
|
|
1424
1667
|
|
|
1425
1668
|
* Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
|
|
1426
1669
|
Zuijlen.
|
|
@@ -1436,7 +1679,7 @@ Bug fixes:
|
|
|
1436
1679
|
* Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
|
|
1437
1680
|
Giddins.
|
|
1438
1681
|
|
|
1439
|
-
|
|
1682
|
+
## Enhancements:
|
|
1440
1683
|
|
|
1441
1684
|
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
|
|
1442
1685
|
Sagastume.
|
|
@@ -1461,9 +1704,9 @@ Minor enhancements:
|
|
|
1461
1704
|
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
|
1462
1705
|
#1408 by Samuel E. Giddins.
|
|
1463
1706
|
|
|
1464
|
-
|
|
1707
|
+
# 2.5.1 / 2015-12-10
|
|
1465
1708
|
|
|
1466
|
-
Bug fixes:
|
|
1709
|
+
## Bug fixes:
|
|
1467
1710
|
|
|
1468
1711
|
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
|
1469
1712
|
Issue #1369 reported by Ryan Atball (among others).
|
|
@@ -1492,9 +1735,9 @@ Bug fixes:
|
|
|
1492
1735
|
Kudo.
|
|
1493
1736
|
* Fixed double word typo. Pull request #1411 by Jake Worth.
|
|
1494
1737
|
|
|
1495
|
-
|
|
1738
|
+
# 2.5.0 / 2015-11-03
|
|
1496
1739
|
|
|
1497
|
-
|
|
1740
|
+
## Enhancements:
|
|
1498
1741
|
|
|
1499
1742
|
* Added the Gem::Licenses class which provides a set of standard license
|
|
1500
1743
|
identifiers as set by spdx.org. This is now used by the
|
|
@@ -1503,8 +1746,6 @@ Major enhancements:
|
|
|
1503
1746
|
|
|
1504
1747
|
Pull request #1249 by Kyle Mitchell.
|
|
1505
1748
|
|
|
1506
|
-
Minor enhancements:
|
|
1507
|
-
|
|
1508
1749
|
* Use Molinillo as the resolver library. This is the same resolver as used by
|
|
1509
1750
|
Bundler. Pull request #1189 by Samuel E. Giddins.
|
|
1510
1751
|
* Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
|
|
@@ -1566,7 +1807,7 @@ Minor enhancements:
|
|
|
1566
1807
|
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
|
|
1567
1808
|
Agis Anastasopoulos.
|
|
1568
1809
|
|
|
1569
|
-
Bug fixes:
|
|
1810
|
+
## Bug fixes:
|
|
1570
1811
|
|
|
1571
1812
|
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
|
1572
1813
|
Pull request #1171 by Arthur Nogueira Neves
|
|
@@ -1623,22 +1864,22 @@ Bug fixes:
|
|
|
1623
1864
|
* RubyGems handles invalid config files better. Pull request #1367 by Agis
|
|
1624
1865
|
Anastasopoulos.
|
|
1625
1866
|
|
|
1626
|
-
|
|
1867
|
+
# 2.4.8 / 2015-06-08
|
|
1627
1868
|
|
|
1628
|
-
Bug fixes:
|
|
1869
|
+
## Bug fixes:
|
|
1629
1870
|
|
|
1630
1871
|
* Tightened API endpoint checks for CVE-2015-3900
|
|
1631
1872
|
|
|
1632
|
-
|
|
1873
|
+
# 2.4.7 / 2015-05-14
|
|
1633
1874
|
|
|
1634
|
-
Bug fixes:
|
|
1875
|
+
## Bug fixes:
|
|
1635
1876
|
|
|
1636
1877
|
* Limit API endpoint to original security domain for CVE-2015-3900.
|
|
1637
1878
|
Fix by claudijd
|
|
1638
1879
|
|
|
1639
|
-
|
|
1880
|
+
# 2.4.6 / 2015-02-05
|
|
1640
1881
|
|
|
1641
|
-
Bug fixes:
|
|
1882
|
+
## Bug fixes:
|
|
1642
1883
|
|
|
1643
1884
|
* Fixed resolving gems with both upper and lower requirement boundaries.
|
|
1644
1885
|
Issue #1141 by Jakub Jirutka.
|
|
@@ -1663,9 +1904,9 @@ Bug fixes:
|
|
|
1663
1904
|
Ondruch.
|
|
1664
1905
|
* Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
|
|
1665
1906
|
|
|
1666
|
-
|
|
1907
|
+
# 2.4.5 / 2014-12-03
|
|
1667
1908
|
|
|
1668
|
-
Bug fixes:
|
|
1909
|
+
## Bug fixes:
|
|
1669
1910
|
|
|
1670
1911
|
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
|
1671
1912
|
request #1060 by unak.
|
|
@@ -1705,27 +1946,27 @@ Bug fixes:
|
|
|
1705
1946
|
* Fixed grouped expression warning. Pull request #1081 by André Arko.
|
|
1706
1947
|
* Fixed handling of platforms when writing lockfiles.
|
|
1707
1948
|
|
|
1708
|
-
|
|
1949
|
+
# 2.4.4 / 2014-11-12
|
|
1709
1950
|
|
|
1710
|
-
Bug fixes:
|
|
1951
|
+
## Bug fixes:
|
|
1711
1952
|
|
|
1712
1953
|
* Add alternate Root CA for upcoming certificate change. Fixes #1050 by
|
|
1713
1954
|
Protosac
|
|
1714
1955
|
|
|
1715
|
-
|
|
1956
|
+
# 2.4.3 / 2014-11-10
|
|
1716
1957
|
|
|
1717
|
-
Bug fixes:
|
|
1958
|
+
## Bug fixes:
|
|
1718
1959
|
|
|
1719
1960
|
* Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
|
|
1720
1961
|
* Fix typo in platform= docs. Pull request #1048 by @jasonrclark
|
|
1721
1962
|
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
|
1722
1963
|
Protosac
|
|
1723
1964
|
|
|
1724
|
-
|
|
1965
|
+
# 2.4.2 / 2014-10-01
|
|
1725
1966
|
|
|
1726
1967
|
This release was sponsored by Ruby Central.
|
|
1727
1968
|
|
|
1728
|
-
Bug fixes:
|
|
1969
|
+
## Bug fixes:
|
|
1729
1970
|
|
|
1730
1971
|
* RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
|
|
1731
1972
|
voelzemo.
|
|
@@ -1759,16 +2000,16 @@ Bug fixes:
|
|
|
1759
2000
|
* RubyGems now fails immediately when a git reference cannot be found instead
|
|
1760
2001
|
of spewing git errors. Issue #1031 by Michal Papis
|
|
1761
2002
|
|
|
1762
|
-
|
|
2003
|
+
# 2.4.1 / 2014-07-17
|
|
1763
2004
|
|
|
1764
|
-
Bug fixes:
|
|
2005
|
+
## Bug fixes:
|
|
1765
2006
|
|
|
1766
2007
|
* RubyGems can now be updated on Ruby implementations that do not support
|
|
1767
2008
|
vendordir in RbConfig::CONFIG. Issue #974 by net1957.
|
|
1768
2009
|
|
|
1769
|
-
|
|
2010
|
+
# 2.4.0 / 2014-07-16
|
|
1770
2011
|
|
|
1771
|
-
|
|
2012
|
+
## Enhancements:
|
|
1772
2013
|
|
|
1773
2014
|
* The contents command now supports a --show-install-dir option that shows
|
|
1774
2015
|
only the directory the gem is installed in. Feature request #966 by Akinori
|
|
@@ -1779,7 +2020,7 @@ Minor enhancements:
|
|
|
1779
2020
|
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
|
1780
2021
|
Marcus Rückert.
|
|
1781
2022
|
|
|
1782
|
-
Bug fixes:
|
|
2023
|
+
## Bug fixes:
|
|
1783
2024
|
|
|
1784
2025
|
* Kernel#gem now respects the prerelease flag when activating gems.
|
|
1785
2026
|
Previously this behavior was undefined which could lead to bugs when a
|
|
@@ -1829,9 +2070,9 @@ Bug fixes:
|
|
|
1829
2070
|
during gem resolution.
|
|
1830
2071
|
|
|
1831
2072
|
|
|
1832
|
-
|
|
2073
|
+
# 2.3.0 / 2014-06-10
|
|
1833
2074
|
|
|
1834
|
-
|
|
2075
|
+
## Enhancements:
|
|
1835
2076
|
|
|
1836
2077
|
* Added the `open` command which allows you to inspect the source of a gem
|
|
1837
2078
|
using your editor.
|
|
@@ -1872,7 +2113,7 @@ Minor enhancements:
|
|
|
1872
2113
|
* RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
|
|
1873
2114
|
Benjamin Fleischer.
|
|
1874
2115
|
|
|
1875
|
-
Bug fixes:
|
|
2116
|
+
## Bug fixes:
|
|
1876
2117
|
|
|
1877
2118
|
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
|
1878
2119
|
up gem suggestions. Pull request #808 by Aaron Patterson.
|
|
@@ -1952,29 +2193,29 @@ Bug fixes:
|
|
|
1952
2193
|
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
|
1953
2194
|
#852 by Vít Ondruch.
|
|
1954
2195
|
|
|
1955
|
-
|
|
2196
|
+
# 2.2.5 / 2015-06-08
|
|
1956
2197
|
|
|
1957
|
-
Bug fixes:
|
|
2198
|
+
## Bug fixes:
|
|
1958
2199
|
|
|
1959
2200
|
* Tightened API endpoint checks for CVE-2015-3900
|
|
1960
2201
|
|
|
1961
|
-
|
|
2202
|
+
# 2.2.4 / 2015-05-14
|
|
1962
2203
|
|
|
1963
|
-
Bug fixes:
|
|
2204
|
+
## Bug fixes:
|
|
1964
2205
|
|
|
1965
2206
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
|
1966
2207
|
Fix by claudijd
|
|
1967
2208
|
|
|
1968
|
-
|
|
2209
|
+
# 2.2.3 / 2014-12-21
|
|
1969
2210
|
|
|
1970
|
-
Bug fixes:
|
|
2211
|
+
## Bug fixes:
|
|
1971
2212
|
|
|
1972
2213
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
|
1973
2214
|
Fixes #1050 by Protosac
|
|
1974
2215
|
|
|
1975
|
-
|
|
2216
|
+
# 2.2.2 / 2014-02-05
|
|
1976
2217
|
|
|
1977
|
-
Bug fixes:
|
|
2218
|
+
## Bug fixes:
|
|
1978
2219
|
|
|
1979
2220
|
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
|
1980
2221
|
Nakada.
|
|
@@ -1999,9 +2240,9 @@ Bug fixes:
|
|
|
1999
2240
|
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
|
2000
2241
|
Sergio Rubio.
|
|
2001
2242
|
|
|
2002
|
-
|
|
2243
|
+
# 2.2.1 / 2014-01-06
|
|
2003
2244
|
|
|
2004
|
-
Bug fixes:
|
|
2245
|
+
## Bug fixes:
|
|
2005
2246
|
|
|
2006
2247
|
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
|
2007
2248
|
#767 by Diego Viola.
|
|
@@ -2027,12 +2268,12 @@ Bug fixes:
|
|
|
2027
2268
|
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
|
2028
2269
|
request #763 by James Mead
|
|
2029
2270
|
|
|
2030
|
-
|
|
2271
|
+
# 2.2.0 / 2013-12-26
|
|
2031
2272
|
|
|
2032
2273
|
Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
|
|
2033
2274
|
RubyGems as it was prepared for the 2.2.0 release.
|
|
2034
2275
|
|
|
2035
|
-
|
|
2276
|
+
## Enhancements:
|
|
2036
2277
|
|
|
2037
2278
|
* RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
|
|
2038
2279
|
rubygems executables are started and uses the found dependencies. This
|
|
@@ -2055,8 +2296,6 @@ Major enhancements:
|
|
|
2055
2296
|
The default sharing location may be configured by RubyGems packagers through
|
|
2056
2297
|
Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
|
|
2057
2298
|
|
|
2058
|
-
Minor enhancements:
|
|
2059
|
-
|
|
2060
2299
|
* RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
|
|
2061
2300
|
prevent an accidental push to a public repository (such as rubygems.org).
|
|
2062
2301
|
If you have private gems you should set this value in your gem specification
|
|
@@ -2102,7 +2341,7 @@ Minor enhancements:
|
|
|
2102
2341
|
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
|
2103
2342
|
Request #755 by strzibny.
|
|
2104
2343
|
|
|
2105
|
-
Bug fixes:
|
|
2344
|
+
## Bug fixes:
|
|
2106
2345
|
|
|
2107
2346
|
* RubyGems now returns an error status when any file given to `gem which`
|
|
2108
2347
|
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
|
@@ -2119,9 +2358,9 @@ Bug fixes:
|
|
|
2119
2358
|
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
|
2120
2359
|
Lee.
|
|
2121
2360
|
|
|
2122
|
-
|
|
2361
|
+
# 2.1.11 / 2013-11-12
|
|
2123
2362
|
|
|
2124
|
-
Bug fixes:
|
|
2363
|
+
## Bug fixes:
|
|
2125
2364
|
|
|
2126
2365
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
|
2127
2366
|
to be removed. Issue #698 by Tiago Macedo.
|
|
@@ -2131,9 +2370,9 @@ Bug fixes:
|
|
|
2131
2370
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
|
2132
2371
|
Pull Request #706 by akr.
|
|
2133
2372
|
|
|
2134
|
-
|
|
2373
|
+
# 2.1.10 / 2013-10-24
|
|
2135
2374
|
|
|
2136
|
-
Bug fixes:
|
|
2375
|
+
## Bug fixes:
|
|
2137
2376
|
|
|
2138
2377
|
* Use class check instead of :version method check when creating Gem::Version
|
|
2139
2378
|
objects. Fixes #674 by jkanywhere.
|
|
@@ -2152,18 +2391,18 @@ Bug fixes:
|
|
|
2152
2391
|
* The --ignore-dependencies option for gem installation works again. Issue
|
|
2153
2392
|
#695
|
|
2154
2393
|
|
|
2155
|
-
|
|
2394
|
+
# 2.1.9 / 2013-10-14
|
|
2156
2395
|
|
|
2157
|
-
Bug fixes:
|
|
2396
|
+
## Bug fixes:
|
|
2158
2397
|
|
|
2159
2398
|
* Reduce sorting when fetching specifications. This speeds up the update and
|
|
2160
2399
|
outdated commands, and others. Issue #657 by windwiny.
|
|
2161
2400
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
|
2162
2401
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
|
2163
2402
|
|
|
2164
|
-
|
|
2403
|
+
# 2.1.8 / 2013-10-10
|
|
2165
2404
|
|
|
2166
|
-
Bug fixes:
|
|
2405
|
+
## Bug fixes:
|
|
2167
2406
|
|
|
2168
2407
|
* Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
|
|
2169
2408
|
* Files starting with "." in the root directory are installed again. Issue
|
|
@@ -2171,9 +2410,9 @@ Bug fixes:
|
|
|
2171
2410
|
* The index generator no longer indexes default gems. Issue #661 by
|
|
2172
2411
|
Jeremy Hinegardner.
|
|
2173
2412
|
|
|
2174
|
-
|
|
2413
|
+
# 2.1.7 / 2013-10-09
|
|
2175
2414
|
|
|
2176
|
-
Bug fixes:
|
|
2415
|
+
## Bug fixes:
|
|
2177
2416
|
|
|
2178
2417
|
* `gem sources --list` now displays a list of sources. Pull request #672 by
|
|
2179
2418
|
Nathan Marley.
|
|
@@ -2186,9 +2425,9 @@ Bug fixes:
|
|
|
2186
2425
|
* Expand unpack destination directory. This fixes problems when File.realpath
|
|
2187
2426
|
is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
|
|
2188
2427
|
|
|
2189
|
-
|
|
2428
|
+
# 2.1.6 / 2013-10-08
|
|
2190
2429
|
|
|
2191
|
-
Bug fixes:
|
|
2430
|
+
## Bug fixes:
|
|
2192
2431
|
|
|
2193
2432
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
|
2194
2433
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
|
@@ -2203,7 +2442,7 @@ Bug fixes:
|
|
|
2203
2442
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
|
2204
2443
|
Thomas Sänger.
|
|
2205
2444
|
|
|
2206
|
-
|
|
2445
|
+
# 2.1.5 / 2013-09-24
|
|
2207
2446
|
|
|
2208
2447
|
Security fixes:
|
|
2209
2448
|
|
|
@@ -2212,25 +2451,25 @@ Security fixes:
|
|
|
2212
2451
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
|
2213
2452
|
1.8.23.2 (for Ruby 1.9.3).
|
|
2214
2453
|
|
|
2215
|
-
|
|
2454
|
+
# 2.1.4 / 2013-09-17
|
|
2216
2455
|
|
|
2217
|
-
Bug fixes:
|
|
2456
|
+
## Bug fixes:
|
|
2218
2457
|
|
|
2219
2458
|
* `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
|
|
2220
2459
|
#650 by Kyle (remkade).
|
|
2221
2460
|
* Fixed uninstalling gems installed in the home directory (as in
|
|
2222
2461
|
`--user-install`). Issue #653 by Lin Jen-Shin.
|
|
2223
2462
|
|
|
2224
|
-
|
|
2463
|
+
# 2.1.3 / 2013-09-12
|
|
2225
2464
|
|
|
2226
|
-
Bug fixes:
|
|
2465
|
+
## Bug fixes:
|
|
2227
2466
|
|
|
2228
2467
|
* Gems with files entries starting with "./" no longer install 0 files. Issue
|
|
2229
2468
|
#644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
|
|
2230
2469
|
|
|
2231
|
-
|
|
2470
|
+
# 2.1.2 / 2013-09-11
|
|
2232
2471
|
|
|
2233
|
-
Bug fixes:
|
|
2472
|
+
## Bug fixes:
|
|
2234
2473
|
|
|
2235
2474
|
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
|
2236
2475
|
request #637 and issue #640 by Charles Nutter.
|
|
@@ -2239,14 +2478,14 @@ Bug fixes:
|
|
|
2239
2478
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
|
2240
2479
|
Issue #643 by Brian Shirai.
|
|
2241
2480
|
|
|
2242
|
-
|
|
2481
|
+
# 2.1.1 / 2013-09-10
|
|
2243
2482
|
|
|
2244
|
-
Bug fixes:
|
|
2483
|
+
## Bug fixes:
|
|
2245
2484
|
|
|
2246
2485
|
* Only matching gems matching your local platform are considered for
|
|
2247
2486
|
installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
|
|
2248
2487
|
|
|
2249
|
-
|
|
2488
|
+
# 2.1.0 / 2013-09-09
|
|
2250
2489
|
|
|
2251
2490
|
Security fixes:
|
|
2252
2491
|
|
|
@@ -2255,15 +2494,13 @@ Security fixes:
|
|
|
2255
2494
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
|
2256
2495
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
|
2257
2496
|
|
|
2258
|
-
|
|
2497
|
+
## Enhancements:
|
|
2259
2498
|
|
|
2260
2499
|
* RubyGems uses a new dependency resolver for gem installation which works
|
|
2261
2500
|
similar to the bundler resolver. The new resolver can resolve conflicts the
|
|
2262
2501
|
previous resolver could not and offers improved diagnostics when conflicts
|
|
2263
2502
|
are discovered.
|
|
2264
2503
|
|
|
2265
|
-
Minor enhancements:
|
|
2266
|
-
|
|
2267
2504
|
* RubyGems now has improved platform matching for the ARM architecture. Gems
|
|
2268
2505
|
built with a CPU of "arm" will match any specific ARM CPU. See `gem help
|
|
2269
2506
|
platform` for further details. Fixes #532 by Kim Burgestrand.
|
|
@@ -2333,7 +2570,7 @@ Minor enhancements:
|
|
|
2333
2570
|
still slow, but I see a near 50% improvement for 250 gems on a fast
|
|
2334
2571
|
connection). See also Gem::Specification::outdated_and_latest_version
|
|
2335
2572
|
|
|
2336
|
-
Bug fixes:
|
|
2573
|
+
## Bug fixes:
|
|
2337
2574
|
|
|
2338
2575
|
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
|
2339
2576
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
|
@@ -2341,29 +2578,29 @@ Bug fixes:
|
|
|
2341
2578
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
|
2342
2579
|
request #622 by Arthur Nogueira Neves
|
|
2343
2580
|
|
|
2344
|
-
|
|
2581
|
+
# 2.0.17 / 2015-06-08
|
|
2345
2582
|
|
|
2346
|
-
Bug fixes:
|
|
2583
|
+
## Bug fixes:
|
|
2347
2584
|
|
|
2348
2585
|
* Tightened API endpoint checks for CVE-2015-3900
|
|
2349
2586
|
|
|
2350
|
-
|
|
2587
|
+
# 2.0.16 / 2015-05-14
|
|
2351
2588
|
|
|
2352
|
-
Bug fixes:
|
|
2589
|
+
## Bug fixes:
|
|
2353
2590
|
|
|
2354
2591
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
|
2355
2592
|
Fix by claudijd
|
|
2356
2593
|
|
|
2357
|
-
|
|
2594
|
+
# 2.0.15 / 2014-12-21
|
|
2358
2595
|
|
|
2359
|
-
Bug fixes:
|
|
2596
|
+
## Bug fixes:
|
|
2360
2597
|
|
|
2361
2598
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
|
2362
2599
|
Fixes #1050 by Protosac
|
|
2363
2600
|
|
|
2364
|
-
|
|
2601
|
+
# 2.0.14 / 2013-11-12
|
|
2365
2602
|
|
|
2366
|
-
Bug fixes:
|
|
2603
|
+
## Bug fixes:
|
|
2367
2604
|
|
|
2368
2605
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
|
2369
2606
|
to be removed. Issue #698 by Tiago Macedo.
|
|
@@ -2373,9 +2610,9 @@ Bug fixes:
|
|
|
2373
2610
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
|
2374
2611
|
Pull Request #706 by akr.
|
|
2375
2612
|
|
|
2376
|
-
|
|
2613
|
+
# 2.0.13 / 2013-10-24
|
|
2377
2614
|
|
|
2378
|
-
Bug fixes:
|
|
2615
|
+
## Bug fixes:
|
|
2379
2616
|
|
|
2380
2617
|
* Use class check instead of :version method check when creating Gem::Version
|
|
2381
2618
|
objects. Fixes #674 by jkanywhere.
|
|
@@ -2384,16 +2621,16 @@ Bug fixes:
|
|
|
2384
2621
|
* Fix updating gems which have multiple platforms. Issue #693 by Ookami
|
|
2385
2622
|
Kenrou.
|
|
2386
2623
|
|
|
2387
|
-
|
|
2624
|
+
# 2.0.12 / 2013-10-14
|
|
2388
2625
|
|
|
2389
|
-
Bug fixes:
|
|
2626
|
+
## Bug fixes:
|
|
2390
2627
|
|
|
2391
2628
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
|
2392
2629
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
|
2393
2630
|
|
|
2394
|
-
|
|
2631
|
+
# 2.0.11 / 2013-10-08
|
|
2395
2632
|
|
|
2396
|
-
Bug fixes:
|
|
2633
|
+
## Bug fixes:
|
|
2397
2634
|
|
|
2398
2635
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
|
2399
2636
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
|
@@ -2408,7 +2645,7 @@ Bug fixes:
|
|
|
2408
2645
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
|
2409
2646
|
Thomas Sänger.
|
|
2410
2647
|
|
|
2411
|
-
|
|
2648
|
+
# 2.0.10 / 2013-09-24
|
|
2412
2649
|
|
|
2413
2650
|
Security fixes:
|
|
2414
2651
|
|
|
@@ -2417,16 +2654,16 @@ Security fixes:
|
|
|
2417
2654
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
|
2418
2655
|
1.8.23.2 (for Ruby 1.9.3).
|
|
2419
2656
|
|
|
2420
|
-
|
|
2657
|
+
# 2.0.9 / 2013-09-13
|
|
2421
2658
|
|
|
2422
|
-
Bug fixes:
|
|
2659
|
+
## Bug fixes:
|
|
2423
2660
|
|
|
2424
2661
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
|
2425
2662
|
Issue #643 by Brian Shirai.
|
|
2426
2663
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
|
2427
2664
|
request #622 by Arthur Nogueira Neves
|
|
2428
2665
|
|
|
2429
|
-
|
|
2666
|
+
# 2.0.8 / 2013-09-09
|
|
2430
2667
|
|
|
2431
2668
|
Security fixes:
|
|
2432
2669
|
|
|
@@ -2435,14 +2672,14 @@ Security fixes:
|
|
|
2435
2672
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
|
2436
2673
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
|
2437
2674
|
|
|
2438
|
-
Bug fixes:
|
|
2675
|
+
## Bug fixes:
|
|
2439
2676
|
|
|
2440
2677
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
|
2441
2678
|
#625 by elarkin
|
|
2442
2679
|
|
|
2443
|
-
|
|
2680
|
+
# 2.0.7 / 2013-08-15
|
|
2444
2681
|
|
|
2445
|
-
Bug fixes:
|
|
2682
|
+
## Bug fixes:
|
|
2446
2683
|
|
|
2447
2684
|
* Extensions may now be built in parallel (therefore gems may be installed in
|
|
2448
2685
|
parallel). Bug #607 by Hemant Kumar.
|
|
@@ -2452,9 +2689,9 @@ Bug fixes:
|
|
|
2452
2689
|
Patches by Yui Naruse and Koichi Sasada.
|
|
2453
2690
|
* Fixed documentation for Kernel#require.
|
|
2454
2691
|
|
|
2455
|
-
|
|
2692
|
+
# 2.0.6 / 2013-07-24
|
|
2456
2693
|
|
|
2457
|
-
Bug fixes:
|
|
2694
|
+
## Bug fixes:
|
|
2458
2695
|
|
|
2459
2696
|
* Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
|
|
2460
2697
|
#593 by Blargel.
|
|
@@ -2466,14 +2703,14 @@ Bug fixes:
|
|
|
2466
2703
|
Bug #599 by Chris Riesbeck
|
|
2467
2704
|
* Restored default of remote search to `gem search`.
|
|
2468
2705
|
|
|
2469
|
-
|
|
2706
|
+
# 2.0.5 / 2013-07-11
|
|
2470
2707
|
|
|
2471
2708
|
* Fixed building of extensions that run ruby in their makefiles. Bug #589 by
|
|
2472
2709
|
Zachary Salzbank.
|
|
2473
2710
|
|
|
2474
|
-
|
|
2711
|
+
# 2.0.4 / 2013-07-09
|
|
2475
2712
|
|
|
2476
|
-
Bug fixes:
|
|
2713
|
+
## Bug fixes:
|
|
2477
2714
|
|
|
2478
2715
|
* Fixed error caused by gem install not finding the right platform for your
|
|
2479
2716
|
platform. Bug #576 by John Anderson
|
|
@@ -2512,9 +2749,9 @@ Bug fixes:
|
|
|
2512
2749
|
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
|
2513
2750
|
r41148 by Yui Naruse
|
|
2514
2751
|
|
|
2515
|
-
|
|
2752
|
+
# 2.0.3 / 2013-03-11
|
|
2516
2753
|
|
|
2517
|
-
|
|
2754
|
+
## Bug fixes:
|
|
2518
2755
|
* Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
|
|
2519
2756
|
#506 by André Arko
|
|
2520
2757
|
* Use File.realpath to remove extra / while checking if files are
|
|
@@ -2529,17 +2766,17 @@ Bug fixes:
|
|
|
2529
2766
|
* Fixed default gem key and cert locations. Pull request #511 by Samuel
|
|
2530
2767
|
Cochran.
|
|
2531
2768
|
|
|
2532
|
-
|
|
2769
|
+
# 2.0.2 / 2013-03-06
|
|
2533
2770
|
|
|
2534
|
-
|
|
2771
|
+
## Bug fixes:
|
|
2535
2772
|
* HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
|
|
2536
2773
|
upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
|
|
2537
2774
|
* SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
|
|
2538
2775
|
* Fixed HTTP to HTTPS upgrade for rubygems.org.
|
|
2539
2776
|
|
|
2540
|
-
|
|
2777
|
+
# 2.0.1 / 2013-03-05
|
|
2541
2778
|
|
|
2542
|
-
|
|
2779
|
+
## Bug fixes:
|
|
2543
2780
|
* Lazily load RubyGems.org API credentials to avoid failure during
|
|
2544
2781
|
RubyGems installation. Bug #465 by Isaac Sanders.
|
|
2545
2782
|
* RubyGems now picks the latest prerelease to install. Fixes bug #468 by
|
|
@@ -2561,7 +2798,7 @@ Bug fixes:
|
|
|
2561
2798
|
Ruby bug #7713 by nobu
|
|
2562
2799
|
* Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
|
|
2563
2800
|
|
|
2564
|
-
|
|
2801
|
+
# 2.0.0 / 2013-02-24
|
|
2565
2802
|
|
|
2566
2803
|
RubyGems 2.0 includes several new features and many breaking changes. Some of
|
|
2567
2804
|
these changes will cause existing software to break. These changes are a
|
|
@@ -2573,7 +2810,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
|
|
|
2573
2810
|
|
|
2574
2811
|
Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2575
2812
|
|
|
2576
|
-
|
|
2813
|
+
## Breaking changes:
|
|
2577
2814
|
|
|
2578
2815
|
* Deprecated Gem.unresolved_deps in favor of
|
|
2579
2816
|
Gem::Specification.unresolved_deps
|
|
@@ -2595,7 +2832,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
|
2595
2832
|
* Removed support for Ruby 1.9.1
|
|
2596
2833
|
* Removed many deprecated methods
|
|
2597
2834
|
|
|
2598
|
-
|
|
2835
|
+
## Enhancements:
|
|
2599
2836
|
|
|
2600
2837
|
* Improved support for default gems shipping with ruby 2.0.0+
|
|
2601
2838
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
|
@@ -2613,8 +2850,6 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
|
2613
2850
|
file (Gemfile, Isolate, gem.deps.rb).
|
|
2614
2851
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
|
2615
2852
|
to autodetect (current and parent directories are searched).
|
|
2616
|
-
|
|
2617
|
-
* Minor enhancements:
|
|
2618
2853
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
|
2619
2854
|
#419 by Erik Hollensbe
|
|
2620
2855
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
|
@@ -2657,7 +2892,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
|
2657
2892
|
GEM_HOME
|
|
2658
2893
|
* When building gems with non-world-readable files a warning is shown.
|
|
2659
2894
|
|
|
2660
|
-
|
|
2895
|
+
## Bug fixes:
|
|
2661
2896
|
* Gem.refresh now maintains the active gem list. Clearing the list would
|
|
2662
2897
|
cause double-loads which would cause other bugs. Pull Request #427 by
|
|
2663
2898
|
Jeremy Evans
|
|
@@ -2714,7 +2949,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
|
2714
2949
|
|
|
2715
2950
|
Changes since RubyGems 2.0.0.rc.2:
|
|
2716
2951
|
|
|
2717
|
-
|
|
2952
|
+
## Bug fixes:
|
|
2718
2953
|
* Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
|
|
2719
2954
|
#450 by Jeremy Kemper
|
|
2720
2955
|
* Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
|
|
@@ -2727,48 +2962,48 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
|
2727
2962
|
* Fixed verification of gems at LowSecurity due to missing signature.
|
|
2728
2963
|
Thanks to André Arko.
|
|
2729
2964
|
|
|
2730
|
-
|
|
2965
|
+
# 2.0.0.rc.2 / 2013-02-08
|
|
2731
2966
|
|
|
2732
|
-
|
|
2967
|
+
## Bug fixes:
|
|
2733
2968
|
* Fixed signature verification of gems which was broken only on master.
|
|
2734
2969
|
Thanks to Brian Buchanan.
|
|
2735
2970
|
* Proper exceptions are raised when verifying an unsigned gem. Thanks to
|
|
2736
2971
|
André Arko.
|
|
2737
2972
|
|
|
2738
|
-
|
|
2973
|
+
# 2.0.0.rc.1 / 2013-01-08
|
|
2739
2974
|
|
|
2740
|
-
|
|
2975
|
+
## Enhancements:
|
|
2741
2976
|
* This release of RubyGems can push gems to rubygems.org. Ordinarily
|
|
2742
2977
|
prerelease versions of RubyGems cannot push gems.
|
|
2743
2978
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
|
2744
2979
|
#419 by Erik Hollensbe
|
|
2745
2980
|
|
|
2746
|
-
|
|
2981
|
+
## Bug fixes:
|
|
2747
2982
|
* Fixed exception raised when attempting to push gems to rubygems.org. Bug
|
|
2748
2983
|
#418 by André Arko
|
|
2749
2984
|
* Gem installation will fail if RubyGems cannot load the specification from
|
|
2750
2985
|
the gem. Bug #419 by Erik Hollensbe
|
|
2751
2986
|
|
|
2752
|
-
|
|
2987
|
+
# 2.0.0.preview2.2 / 2012-12-14
|
|
2753
2988
|
|
|
2754
|
-
|
|
2989
|
+
## Enhancements:
|
|
2755
2990
|
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
|
2756
2991
|
* Removed rubyforge page from gem list output
|
|
2757
2992
|
|
|
2758
|
-
|
|
2993
|
+
## Bug fixes:
|
|
2759
2994
|
* Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
|
|
2760
2995
|
#413 by Jeremy Kemper.
|
|
2761
2996
|
|
|
2762
|
-
|
|
2997
|
+
# 2.0.0.preview2.1 / 2012-12-08
|
|
2763
2998
|
|
|
2764
|
-
|
|
2999
|
+
## Enhancements:
|
|
2765
3000
|
* Gem::DependencyInstaller now passes build_args down to the installer.
|
|
2766
3001
|
Pull Request #412 by Sam Rawlins.
|
|
2767
3002
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
|
2768
3003
|
broken. Now you must manually say "yes". Pull Request #406 by Shannon
|
|
2769
3004
|
Skipper.
|
|
2770
3005
|
|
|
2771
|
-
|
|
3006
|
+
## Bug fixes:
|
|
2772
3007
|
* RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
|
|
2773
3008
|
* Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
|
|
2774
3009
|
* Only update the spec cache when we have permission. Ruby Bug #7509
|
|
@@ -2780,13 +3015,13 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
|
2780
3015
|
* gem install now ignores directories that match the gem to install. Bug
|
|
2781
3016
|
#407 by Santiago Pastorino.
|
|
2782
3017
|
|
|
2783
|
-
|
|
3018
|
+
# 2.0.0.preview2 / 2012-12-01
|
|
2784
3019
|
|
|
2785
3020
|
This release contains two commits not present in Ruby 2.0.0.preview2. One
|
|
2786
3021
|
commit is for ruby 1.8.7 support, the second allows RubyGems to work under
|
|
2787
3022
|
$SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2788
3023
|
|
|
2789
|
-
|
|
3024
|
+
## Breaking changes:
|
|
2790
3025
|
|
|
2791
3026
|
* Deprecated Gem.unresolved_deps in favor of
|
|
2792
3027
|
Gem::Specification.unresolved_deps
|
|
@@ -2808,7 +3043,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
|
2808
3043
|
* Removed support for Ruby 1.9.1
|
|
2809
3044
|
* Removed many deprecated methods
|
|
2810
3045
|
|
|
2811
|
-
|
|
3046
|
+
## Enhancements:
|
|
2812
3047
|
|
|
2813
3048
|
* Improved support for default gems shipping with ruby 2.0.0+
|
|
2814
3049
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
|
@@ -2826,9 +3061,6 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
|
2826
3061
|
file (Gemfile, Isolate, gem.deps.rb).
|
|
2827
3062
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
|
2828
3063
|
to autodetect (current and parent directories are searched).
|
|
2829
|
-
|
|
2830
|
-
* Minor enhancements:
|
|
2831
|
-
|
|
2832
3064
|
* Added --only-executables option to `gem pristine`. Fixes #326
|
|
2833
3065
|
* Added -I flag for 'gem query' to exclude installed items
|
|
2834
3066
|
* Added Gem.install(name, version=default) for interactive sessions
|
|
@@ -2862,7 +3094,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
|
2862
3094
|
GEM_HOME
|
|
2863
3095
|
* When building gems with non-world-readable files a warning is shown.
|
|
2864
3096
|
|
|
2865
|
-
|
|
3097
|
+
## Bug fixes:
|
|
2866
3098
|
|
|
2867
3099
|
* Added PID to setup bin_file while installing RubyGems to protect against
|
|
2868
3100
|
errors. Fixes #328 by ConradIrwin
|
|
@@ -2903,17 +3135,17 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
|
2903
3135
|
* URI scheme matching is no longer case-sensitive. Fixes #322
|
|
2904
3136
|
* ext/builder now checks $MAKE as well as $make (okkez)
|
|
2905
3137
|
|
|
2906
|
-
|
|
3138
|
+
# 1.8.29 / 2013-11-23
|
|
2907
3139
|
|
|
2908
|
-
Bug fixes:
|
|
3140
|
+
## Bug fixes:
|
|
2909
3141
|
|
|
2910
3142
|
* Fixed installation when the LANG environment variable is empty.
|
|
2911
3143
|
* Added DigiCert High Assurance EV Root CA to the default SSL certificates for
|
|
2912
3144
|
cloudfront.
|
|
2913
3145
|
|
|
2914
|
-
|
|
3146
|
+
# 1.8.28 / 2013-10-08
|
|
2915
3147
|
|
|
2916
|
-
Bug fixes:
|
|
3148
|
+
## Bug fixes:
|
|
2917
3149
|
|
|
2918
3150
|
* Added the Verisign Class 3 Public Primary Certification Authority G5
|
|
2919
3151
|
certificate and its intermediary to follow the s3.amazonaws.com certificate
|
|
@@ -2923,7 +3155,7 @@ Bug fixes:
|
|
|
2923
3155
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
|
2924
3156
|
https://rubygems.org. Pull request #673 by Hannes Georg.
|
|
2925
3157
|
|
|
2926
|
-
|
|
3158
|
+
# 1.8.27 / 2013-09-24
|
|
2927
3159
|
|
|
2928
3160
|
Security fixes:
|
|
2929
3161
|
|
|
@@ -2932,7 +3164,7 @@ Security fixes:
|
|
|
2932
3164
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
|
2933
3165
|
1.8.23.2 (for Ruby 1.9.3).
|
|
2934
3166
|
|
|
2935
|
-
|
|
3167
|
+
# 1.8.26 / 2013-09-09
|
|
2936
3168
|
|
|
2937
3169
|
Security fixes:
|
|
2938
3170
|
|
|
@@ -2941,13 +3173,13 @@ Security fixes:
|
|
|
2941
3173
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
|
2942
3174
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
|
2943
3175
|
|
|
2944
|
-
Bug fixes:
|
|
3176
|
+
## Bug fixes:
|
|
2945
3177
|
|
|
2946
3178
|
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
|
2947
3179
|
|
|
2948
|
-
|
|
3180
|
+
# 1.8.25 / 2013-01-24
|
|
2949
3181
|
|
|
2950
|
-
|
|
3182
|
+
## Bug fixes:
|
|
2951
3183
|
* Added 11627 to setup bin_file location to protect against errors. Fixes
|
|
2952
3184
|
#328 by ConradIrwin
|
|
2953
3185
|
* Specification#ruby_code didn't handle Requirement with multiple
|
|
@@ -2956,14 +3188,14 @@ Bug fixes:
|
|
|
2956
3188
|
* Fix missing load_yaml in YAML-related requirement.rb code.
|
|
2957
3189
|
* Manually backport encoding-aware YAML gemspec
|
|
2958
3190
|
|
|
2959
|
-
|
|
3191
|
+
# 1.8.24 / 2012-04-27
|
|
2960
3192
|
|
|
2961
|
-
|
|
3193
|
+
## Bug fixes:
|
|
2962
3194
|
|
|
2963
3195
|
* Install the .pem files properly. Fixes #320
|
|
2964
3196
|
* Remove OpenSSL dependency from the http code path
|
|
2965
3197
|
|
|
2966
|
-
|
|
3198
|
+
# 1.8.23.2 / 2013-09-24
|
|
2967
3199
|
|
|
2968
3200
|
Security fixes:
|
|
2969
3201
|
|
|
@@ -2972,7 +3204,7 @@ Security fixes:
|
|
|
2972
3204
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
|
2973
3205
|
1.8.23.2 (for Ruby 1.9.3).
|
|
2974
3206
|
|
|
2975
|
-
|
|
3207
|
+
# 1.8.23.1 / 2013-09-09
|
|
2976
3208
|
|
|
2977
3209
|
Security fixes:
|
|
2978
3210
|
|
|
@@ -2981,7 +3213,7 @@ Security fixes:
|
|
|
2981
3213
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
|
2982
3214
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
|
2983
3215
|
|
|
2984
|
-
|
|
3216
|
+
# 1.8.23 / 2012-04-19
|
|
2985
3217
|
|
|
2986
3218
|
This release increases the security used when RubyGems is talking to
|
|
2987
3219
|
an https server. If you use a custom RubyGems server over SSL, this
|
|
@@ -2997,53 +3229,53 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
|
|
|
2997
3229
|
certificate checks, but this is not recommended.
|
|
2998
3230
|
|
|
2999
3231
|
|
|
3000
|
-
|
|
3232
|
+
Security fixes:
|
|
3001
3233
|
* Disallow redirects from https to http
|
|
3002
3234
|
* Turn on verification of server SSL certs
|
|
3003
3235
|
|
|
3004
|
-
|
|
3236
|
+
## Enhancements:
|
|
3005
3237
|
* Add --clear-sources to fetch
|
|
3006
3238
|
|
|
3007
|
-
|
|
3239
|
+
## Bug fixes:
|
|
3008
3240
|
* Use File.identical? to check if two files are the same.
|
|
3009
3241
|
* Fixed init_with warning when using psych
|
|
3010
3242
|
|
|
3011
|
-
|
|
3243
|
+
# 1.8.22 / 2012-04-13
|
|
3012
3244
|
|
|
3013
|
-
|
|
3245
|
+
## Bug fixes:
|
|
3014
3246
|
|
|
3015
3247
|
* Workaround for psych/syck YAML date parsing issue
|
|
3016
3248
|
* Don't trust the encoding of ARGV. Fixes #307
|
|
3017
3249
|
* Quiet default warnings about missing spec variables
|
|
3018
3250
|
* Read a binary file properly (windows fix)
|
|
3019
3251
|
|
|
3020
|
-
|
|
3252
|
+
# 1.8.21 / 2012-03-22
|
|
3021
3253
|
|
|
3022
|
-
|
|
3254
|
+
## Bug fixes:
|
|
3023
3255
|
|
|
3024
3256
|
* Add workaround for buggy yaml output from 1.9.2
|
|
3025
3257
|
* Force 1.9.1 to remove it's prelude code. Fixes #305
|
|
3026
3258
|
|
|
3027
|
-
|
|
3259
|
+
# 1.8.20 / 2012-03-21
|
|
3028
3260
|
|
|
3029
|
-
|
|
3261
|
+
## Bug fixes:
|
|
3030
3262
|
|
|
3031
3263
|
* Add --force to `gem build` to skip validation. Fixes #297
|
|
3032
3264
|
* Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
|
|
3033
3265
|
* Treat the source as a proper url base. Fixes #304
|
|
3034
3266
|
* Warn when updating the specs cache fails. Fixes #300
|
|
3035
3267
|
|
|
3036
|
-
|
|
3268
|
+
# 1.8.19 / 2012-03-14
|
|
3037
3269
|
|
|
3038
|
-
|
|
3270
|
+
## Bug fixes:
|
|
3039
3271
|
|
|
3040
3272
|
* Handle loading psych vs syck properly. Fixes #298
|
|
3041
3273
|
* Make sure Date objects don't leak in via Marshal
|
|
3042
3274
|
* Perform Date => Time coercion on yaml loading. Fixes #266
|
|
3043
3275
|
|
|
3044
|
-
|
|
3276
|
+
# 1.8.18 / 2012-03-11
|
|
3045
3277
|
|
|
3046
|
-
|
|
3278
|
+
## Bug fixes:
|
|
3047
3279
|
|
|
3048
3280
|
* Use Psych API to emit more compatible YAML
|
|
3049
3281
|
* Download and write inside `gem fetch` directly. Fixes #289
|
|
@@ -3051,14 +3283,14 @@ certificate checks, but this is not recommended.
|
|
|
3051
3283
|
* Search everywhere for a spec for `gem spec`. Fixes #288
|
|
3052
3284
|
* Fix Gem.all_load_path. Fixes #171
|
|
3053
3285
|
|
|
3054
|
-
|
|
3286
|
+
# 1.8.17 / 2012-02-17
|
|
3055
3287
|
|
|
3056
|
-
|
|
3288
|
+
## Enhancements:
|
|
3057
3289
|
|
|
3058
3290
|
* Add MacRuby to the list of special cases for platforms (ferrous26)
|
|
3059
3291
|
* Add a default for where to install rubygems itself
|
|
3060
3292
|
|
|
3061
|
-
|
|
3293
|
+
## Bug fixes:
|
|
3062
3294
|
|
|
3063
3295
|
* Fixed gem loading issue caused by dependencies not resolving.
|
|
3064
3296
|
* Fixed umask error when stdlib is required and unresolved dependencies exist.
|
|
@@ -3066,57 +3298,59 @@ certificate checks, but this is not recommended.
|
|
|
3066
3298
|
* Define SUCKAGE better, ie only MRI 1.9.2
|
|
3067
3299
|
* Propagate env-shebang to the pristine command if set for install.
|
|
3068
3300
|
|
|
3069
|
-
|
|
3301
|
+
# 1.8.16 / 2012-02-12
|
|
3070
3302
|
|
|
3071
|
-
|
|
3303
|
+
## Bug fixes:
|
|
3072
3304
|
|
|
3073
3305
|
* Fix gem specification loading when encoding is not UTF-8. #146
|
|
3074
3306
|
* Allow group writable if umask allows it already.
|
|
3075
3307
|
* Uniquify the spec list based on directory order priority
|
|
3076
3308
|
|
|
3077
|
-
|
|
3309
|
+
# 1.8.15 / 2012-01-06
|
|
3078
3310
|
|
|
3079
|
-
|
|
3311
|
+
## Bug fixes:
|
|
3080
3312
|
|
|
3081
3313
|
* Don't eager load yaml, it creates a bad loop. Fixes #256
|
|
3082
3314
|
|
|
3083
|
-
|
|
3315
|
+
# 1.8.14 / 2012-01-05
|
|
3084
3316
|
|
|
3085
|
-
|
|
3317
|
+
## Bug fixes:
|
|
3086
3318
|
|
|
3087
3319
|
* Ignore old/bad cache data in Version
|
|
3088
3320
|
* Make sure our YAML workarounds are loaded properly. Fixes #250.
|
|
3089
3321
|
|
|
3090
|
-
|
|
3322
|
+
# 1.8.13 / 2011-12-21
|
|
3091
3323
|
|
|
3092
|
-
|
|
3324
|
+
## Bug fixes:
|
|
3093
3325
|
|
|
3094
3326
|
* Check loaded_specs properly when trying to satisfy a dep
|
|
3095
3327
|
|
|
3096
|
-
|
|
3328
|
+
## Enhancements:
|
|
3097
3329
|
|
|
3098
3330
|
* Remove using #loaded_path? for performance
|
|
3099
3331
|
* Remove Zlib workaround for Windows build.
|
|
3100
3332
|
|
|
3101
|
-
|
|
3333
|
+
# 1.8.12 / 2011-12-02
|
|
3334
|
+
|
|
3335
|
+
## Bug fixes:
|
|
3102
3336
|
|
|
3103
|
-
* Bug fix:
|
|
3104
3337
|
* Handle more cases where Syck's DefaultKey showed up in requirements
|
|
3105
3338
|
and wasn't cleaned out.
|
|
3106
3339
|
|
|
3107
|
-
|
|
3340
|
+
# 1.8.11 / 2011-10-03
|
|
3341
|
+
|
|
3342
|
+
## Bug fixes:
|
|
3108
3343
|
|
|
3109
|
-
* Bug fix:
|
|
3110
3344
|
* Deprecate was moved to Gem::Deprecate to stop polluting the top-level
|
|
3111
3345
|
namespace.
|
|
3112
3346
|
|
|
3113
|
-
|
|
3347
|
+
# 1.8.10 / 2011-08-25
|
|
3114
3348
|
|
|
3115
3349
|
RubyGems 1.8.10 contains a security fix that prevents malicious gems from
|
|
3116
3350
|
executing code when their specification is loaded. See
|
|
3117
3351
|
https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3118
3352
|
|
|
3119
|
-
|
|
3353
|
+
## Bug fixes:
|
|
3120
3354
|
|
|
3121
3355
|
* RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
|
|
3122
3356
|
and %q to prevent code injection. Issue #165 by Postmodern
|
|
@@ -3127,21 +3361,21 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
|
3127
3361
|
* Fixed Syck DefaultKey infecting ruby-format specifications.
|
|
3128
3362
|
* `gem uninstall a b` no longer stops if gem "a" is not installed.
|
|
3129
3363
|
|
|
3130
|
-
|
|
3364
|
+
# 1.8.9 / 2011-08-23
|
|
3131
3365
|
|
|
3132
|
-
|
|
3366
|
+
## Bug fixes:
|
|
3133
3367
|
|
|
3134
3368
|
* Fixed uninstalling multiple gems using `gem uninstall`
|
|
3135
3369
|
* Gem.use_paths splatted to take multiple paths! Issue #148
|
|
3136
3370
|
|
|
3137
|
-
|
|
3371
|
+
# 1.8.8 / 2011-08-11
|
|
3138
3372
|
|
|
3139
|
-
|
|
3373
|
+
## Bug fixes:
|
|
3140
3374
|
* The encoding of a gem's YAML spec is now UTF-8. Issue #149
|
|
3141
3375
|
|
|
3142
|
-
|
|
3376
|
+
# 1.8.7 / 2011-08-04
|
|
3143
3377
|
|
|
3144
|
-
|
|
3378
|
+
## Bug fixes:
|
|
3145
3379
|
* Added missing require for `gem uninstall --format-executable`
|
|
3146
3380
|
* The correct name of the executable being uninstalled is now displayed with
|
|
3147
3381
|
--format-executable
|
|
@@ -3153,14 +3387,14 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
|
3153
3387
|
* Gem repository directories are no longer created world-writable. Patch by
|
|
3154
3388
|
Sakuro OZAWA. Ruby Bug #4930
|
|
3155
3389
|
|
|
3156
|
-
|
|
3390
|
+
# 1.8.6 / 2011-07-25
|
|
3157
3391
|
|
|
3158
|
-
|
|
3392
|
+
## Enhancements:
|
|
3159
3393
|
|
|
3160
3394
|
* Add autorequires and delay startup of RubyGems until require is called.
|
|
3161
3395
|
See Ruby bug #4962
|
|
3162
3396
|
|
|
3163
|
-
|
|
3397
|
+
## Bug fixes:
|
|
3164
3398
|
|
|
3165
3399
|
* Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
|
|
3166
3400
|
* Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
|
|
@@ -3172,27 +3406,27 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
|
3172
3406
|
* Handle the Syck DefaultKey problem once and for all.
|
|
3173
3407
|
* Fix SystemStackError occurring with "gem list -r -a" on 1.9.
|
|
3174
3408
|
|
|
3175
|
-
|
|
3409
|
+
# 1.8.5 / 2011-05-31
|
|
3176
3410
|
|
|
3177
|
-
|
|
3411
|
+
## Enhancements:
|
|
3178
3412
|
|
|
3179
3413
|
* The -u option to 'update local source cache' is official deprecated.
|
|
3180
3414
|
* Remove has_rdoc deprecations from Specification.
|
|
3181
3415
|
|
|
3182
|
-
|
|
3416
|
+
## Bug fixes:
|
|
3183
3417
|
|
|
3184
3418
|
* Handle bad specs more gracefully.
|
|
3185
3419
|
* Reset any Gem paths changed in the installer.
|
|
3186
3420
|
|
|
3187
|
-
|
|
3421
|
+
# 1.8.4 / 2011-05-25
|
|
3188
3422
|
|
|
3189
|
-
|
|
3423
|
+
## Enhancements:
|
|
3190
3424
|
|
|
3191
3425
|
* Removed default_executable deprecations from Specification.
|
|
3192
3426
|
|
|
3193
|
-
|
|
3427
|
+
# 1.8.3 / 2011-05-19
|
|
3194
3428
|
|
|
3195
|
-
|
|
3429
|
+
## Bug fixes:
|
|
3196
3430
|
|
|
3197
3431
|
* Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
|
|
3198
3432
|
Shota Fukumori
|
|
@@ -3201,33 +3435,33 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
|
3201
3435
|
* Fixed some bad calls left behind after rolling out some refactorings.
|
|
3202
3436
|
* Syck has a parse error on (good) times output from Psych. (dazuma, et al)
|
|
3203
3437
|
|
|
3204
|
-
|
|
3438
|
+
# 1.8.2 / 2011-05-11
|
|
3205
3439
|
|
|
3206
|
-
|
|
3440
|
+
## Enhancements:
|
|
3207
3441
|
|
|
3208
3442
|
* Moved #outdated from OutdatedCommand to Specification (for Isolate).
|
|
3209
3443
|
* Print out a warning about missing executables.
|
|
3210
3444
|
|
|
3211
|
-
|
|
3445
|
+
## Bug fixes:
|
|
3212
3446
|
|
|
3213
3447
|
* Added missing requires to fix various upgrade issues.
|
|
3214
3448
|
* `gem pristine` respects multiple gem repositories.
|
|
3215
3449
|
* setup.rb now execs with --disable-gems when possible
|
|
3216
3450
|
|
|
3217
|
-
|
|
3451
|
+
# 1.8.1 / 2011-05-05
|
|
3218
3452
|
|
|
3219
|
-
|
|
3453
|
+
## Enhancements:
|
|
3220
3454
|
|
|
3221
3455
|
* Added Gem::Requirement#specific? and Gem::Dependency#specific?
|
|
3222
3456
|
|
|
3223
|
-
|
|
3457
|
+
## Bug fixes:
|
|
3224
3458
|
|
|
3225
3459
|
* Typo on Indexer rendered it useless on Windows
|
|
3226
3460
|
* gem dep can fetch remote dependencies for non-latest gems again.
|
|
3227
3461
|
* gem uninstall with multiple versions no longer crashes with ArgumentError
|
|
3228
3462
|
* Always use binary mode for File.open to keep Windows happy
|
|
3229
3463
|
|
|
3230
|
-
|
|
3464
|
+
# 1.8.0 / 2011-04-34
|
|
3231
3465
|
|
|
3232
3466
|
This release focused on properly encapsulating functionality. Most of this
|
|
3233
3467
|
work focused on moving functionality out of Gem::SourceIndex and
|
|
@@ -3242,7 +3476,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
|
|
|
3242
3476
|
--build-arg` to regenerate a gem with an extension where it requires special
|
|
3243
3477
|
build arguments.
|
|
3244
3478
|
|
|
3245
|
-
|
|
3479
|
+
## Deprecations:
|
|
3246
3480
|
|
|
3247
3481
|
* DependencyList.from_source_index deprecated the source_index argument.
|
|
3248
3482
|
* Deprecated Dependency.new(/regex/).
|
|
@@ -3263,14 +3497,11 @@ build arguments.
|
|
|
3263
3497
|
* Deprecated all of Gem::GemPathSearcher.
|
|
3264
3498
|
* Deprecated Gem::Specification#default_executable.
|
|
3265
3499
|
|
|
3266
|
-
|
|
3500
|
+
## Enhancements:
|
|
3267
3501
|
|
|
3268
3502
|
* Gem::SourceIndex functionality has been moved to Gem::Specification.
|
|
3269
3503
|
Gem::SourceIndex is completely disconnected from Gem::Specification
|
|
3270
3504
|
* Refactored GemPathSearcher entirely out. RIPMF
|
|
3271
|
-
|
|
3272
|
-
* 41 minor enhancements:
|
|
3273
|
-
|
|
3274
3505
|
* Added CommandManager#unregister_command
|
|
3275
3506
|
* Added Dependency#matching_specs + to_specs.
|
|
3276
3507
|
* Added Dependency#to_spec
|
|
@@ -3318,7 +3549,7 @@ build arguments.
|
|
|
3318
3549
|
extensions.
|
|
3319
3550
|
* `gem pristine` can now restore multiple gems.
|
|
3320
3551
|
|
|
3321
|
-
|
|
3552
|
+
## Bug fixes:
|
|
3322
3553
|
|
|
3323
3554
|
* DependencyInstaller passed around a source_index instance but used
|
|
3324
3555
|
Gem.source_index.
|
|
@@ -3330,15 +3561,15 @@ build arguments.
|
|
|
3330
3561
|
* `gem pristine` can now restore non-latest gems where the cached gem was
|
|
3331
3562
|
removed.
|
|
3332
3563
|
|
|
3333
|
-
|
|
3564
|
+
# 1.7.1 / 2011-03-32
|
|
3334
3565
|
|
|
3335
|
-
|
|
3566
|
+
## Bug fixes:
|
|
3336
3567
|
* Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
|
|
3337
3568
|
`rake check_manifest` showing a diff would not exit with an error.)
|
|
3338
3569
|
|
|
3339
|
-
|
|
3570
|
+
# 1.7.0 / 2011-03-32
|
|
3340
3571
|
|
|
3341
|
-
|
|
3572
|
+
## Deprecations:
|
|
3342
3573
|
* Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
|
|
3343
3574
|
cache.
|
|
3344
3575
|
* Deprecated RemoteFetcher#open_uri_or_path.
|
|
@@ -3350,7 +3581,7 @@ build arguments.
|
|
|
3350
3581
|
test_suite_file(=).
|
|
3351
3582
|
* Deprecated Specification#has_rdoc= and default_executable=
|
|
3352
3583
|
|
|
3353
|
-
|
|
3584
|
+
## Enhancements:
|
|
3354
3585
|
* Added stupid simple deprecation module.
|
|
3355
3586
|
* Added --spec option to `gem unpack` to output a gem's original metadata
|
|
3356
3587
|
* Added packaging option to Specification#validate
|
|
@@ -3382,7 +3613,7 @@ build arguments.
|
|
|
3382
3613
|
* UpdateCommand#gems_to_update now returns (name, version) pairs.
|
|
3383
3614
|
* UpdateCommand#which_to_update now takes an optional system argument.
|
|
3384
3615
|
|
|
3385
|
-
|
|
3616
|
+
## Bug fixes:
|
|
3386
3617
|
* Added missing remote fetcher require to pristine command (aarnell)
|
|
3387
3618
|
* Building gems now checks to ensure all required fields are non-nil
|
|
3388
3619
|
* Fix option parser when summary is nil.
|
|
@@ -3398,17 +3629,17 @@ build arguments.
|
|
|
3398
3629
|
Elias Baixas
|
|
3399
3630
|
* `gem update` now uniq's command line arguments.
|
|
3400
3631
|
|
|
3401
|
-
|
|
3632
|
+
# 1.6.2 / 2011-03-08
|
|
3402
3633
|
|
|
3403
|
-
Bug
|
|
3634
|
+
## Bug fixes:
|
|
3404
3635
|
|
|
3405
3636
|
* require of an activated gem could cause activation conflicts. Fixes
|
|
3406
3637
|
Bug #29056 by Dave Verwer.
|
|
3407
3638
|
* `gem outdated` now works with up-to-date prerelease gems.
|
|
3408
3639
|
|
|
3409
|
-
|
|
3640
|
+
# 1.6.1 / 2011-03-03
|
|
3410
3641
|
|
|
3411
|
-
Bug
|
|
3642
|
+
## Bug fixes:
|
|
3412
3643
|
|
|
3413
3644
|
* Installation no longer fails when a dependency from a version that won't be
|
|
3414
3645
|
installed is unsatisfied.
|
|
@@ -3417,9 +3648,9 @@ Bug Fixes:
|
|
|
3417
3648
|
* Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
|
|
3418
3649
|
* Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
|
|
3419
3650
|
|
|
3420
|
-
|
|
3651
|
+
# 1.6.0 / 2011-02-29
|
|
3421
3652
|
|
|
3422
|
-
|
|
3653
|
+
## Deprecations:
|
|
3423
3654
|
|
|
3424
3655
|
* RubyGems no longer requires 'thread'. Rails < 3 will need to add require
|
|
3425
3656
|
'thread' to their applications.
|
|
@@ -3428,14 +3659,11 @@ Bug Fixes:
|
|
|
3428
3659
|
* Gem::LoadError#version_requirements has been removed. Use
|
|
3429
3660
|
Gem::LoadError#requirement.
|
|
3430
3661
|
|
|
3431
|
-
|
|
3662
|
+
## Enhancements:
|
|
3432
3663
|
|
|
3433
3664
|
* Rewrote how Gem::activate (gem and require) resolves dependencies.
|
|
3434
3665
|
* Gem::LoadError#version_requirement has been removed. Use
|
|
3435
3666
|
Gem::LoadError#requirement.
|
|
3436
|
-
|
|
3437
|
-
17 Minor Enhancments:
|
|
3438
|
-
|
|
3439
3667
|
* Added --key to `gem push` for setting alternate API keys.
|
|
3440
3668
|
* Added --format-executable support to gem uninstall.
|
|
3441
3669
|
* Added Gem::DependencyList#clear.
|
|
@@ -3459,7 +3687,7 @@ Bug Fixes:
|
|
|
3459
3687
|
locally cached gem specifications.
|
|
3460
3688
|
* SpecFetcher.fetch_spec can now take a string source_uri.
|
|
3461
3689
|
|
|
3462
|
-
|
|
3690
|
+
## Bug fixes:
|
|
3463
3691
|
|
|
3464
3692
|
* Added missing require of Gem::RemoteFetcher to the unpack command.
|
|
3465
3693
|
* RubyGems now completely removes a previous install when reinstalling.
|
|
@@ -3472,28 +3700,28 @@ Bug Fixes:
|
|
|
3472
3700
|
* Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
|
|
3473
3701
|
* Gem::Uninstaller now respects --format-executable.
|
|
3474
3702
|
|
|
3475
|
-
|
|
3703
|
+
# 1.5.3 / 2011-02-26
|
|
3476
3704
|
|
|
3477
|
-
Bug
|
|
3705
|
+
## Bug fixes:
|
|
3478
3706
|
|
|
3479
3707
|
* Fix for a bug in Syck which causes install failures for gems packaged with
|
|
3480
3708
|
Psych. Bug #28965 by Aaron Patterson.
|
|
3481
3709
|
|
|
3482
|
-
|
|
3710
|
+
# 1.5.2 / 2011-02-10
|
|
3483
3711
|
|
|
3484
|
-
Bug
|
|
3712
|
+
## Bug fixes:
|
|
3485
3713
|
|
|
3486
3714
|
* Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
|
|
3487
3715
|
|
|
3488
|
-
|
|
3716
|
+
# 1.5.1 / 2011-02-09
|
|
3489
3717
|
|
|
3490
|
-
|
|
3718
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
|
3491
3719
|
|
|
3492
|
-
|
|
3720
|
+
## Enhancements:
|
|
3493
3721
|
|
|
3494
3722
|
* Added ability to do gem update --system X.Y.Z.
|
|
3495
3723
|
|
|
3496
|
-
Bug
|
|
3724
|
+
## Bug fixes:
|
|
3497
3725
|
|
|
3498
3726
|
* Scrub !!null YAML from 1.9.2 (install and build).
|
|
3499
3727
|
* Added missing requires for user_interaction.
|
|
@@ -3502,17 +3730,14 @@ Bug Fixes:
|
|
|
3502
3730
|
* Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
|
|
3503
3731
|
* RubyGems now enforces ruby 1.8.7 or newer.
|
|
3504
3732
|
|
|
3505
|
-
|
|
3733
|
+
# 1.5.0 / 2011-01-31
|
|
3506
3734
|
|
|
3507
|
-
|
|
3735
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
|
3508
3736
|
|
|
3509
|
-
|
|
3737
|
+
## Enhancements:
|
|
3510
3738
|
|
|
3511
3739
|
* Finally fixed all known 1.9.x issues. Upgrading is now possible!
|
|
3512
3740
|
* Merged huge 1.3.7/ruby-core changes to master.
|
|
3513
|
-
|
|
3514
|
-
Minor Enhancements:
|
|
3515
|
-
|
|
3516
3741
|
* Added UPGRADING.rdoc to help deal with 1.9 issues.
|
|
3517
3742
|
* Gem::Format now gives better errors for corrupt gem files and includes paths
|
|
3518
3743
|
* Pre-install hooks can now abort gem installation by returning false
|
|
@@ -3524,7 +3749,7 @@ Minor Enhancements:
|
|
|
3524
3749
|
* Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
|
|
3525
3750
|
Erik Hollensbe.
|
|
3526
3751
|
|
|
3527
|
-
Bug
|
|
3752
|
+
## Bug fixes:
|
|
3528
3753
|
|
|
3529
3754
|
* `gem update` was implicitly doing --system.
|
|
3530
3755
|
* 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
|
|
@@ -3536,25 +3761,25 @@ Bug Fixes:
|
|
|
3536
3761
|
Erik Hollensbe.
|
|
3537
3762
|
* rubygems-update lists its development dependencies again
|
|
3538
3763
|
|
|
3539
|
-
|
|
3764
|
+
# 1.4.2 / 2011-01-06
|
|
3540
3765
|
|
|
3541
|
-
Bug fixes:
|
|
3766
|
+
## Bug fixes:
|
|
3542
3767
|
|
|
3543
3768
|
* Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
|
|
3544
3769
|
* Fixed Gem.find_files.
|
|
3545
3770
|
* Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
|
|
3546
3771
|
|
|
3547
|
-
|
|
3772
|
+
# 1.4.1 / 2010-12-31
|
|
3548
3773
|
|
|
3549
3774
|
Since apparently nobody reads my emails, blog posts or the README:
|
|
3550
3775
|
|
|
3551
3776
|
DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
|
|
3552
3777
|
|
|
3553
|
-
Bug
|
|
3778
|
+
## Bug fixes:
|
|
3554
3779
|
|
|
3555
3780
|
* Specification#load was untainting a frozen string (via `gem build *.spec`)
|
|
3556
3781
|
|
|
3557
|
-
|
|
3782
|
+
# 1.4.0 / 2010-12-30
|
|
3558
3783
|
|
|
3559
3784
|
NOTE: In order to better maintain rubygems and to get it in sync with
|
|
3560
3785
|
the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
|
|
@@ -3564,7 +3789,7 @@ You have been warned!
|
|
|
3564
3789
|
|
|
3565
3790
|
NOTE: We've switched to git/github. See README.rdoc for details.
|
|
3566
3791
|
|
|
3567
|
-
|
|
3792
|
+
## Features:
|
|
3568
3793
|
|
|
3569
3794
|
* Added --launch option to `gem server`. (gthiesfeld)
|
|
3570
3795
|
* Added fuzzy name matching on install failures. (gstark/presidentbeef)
|
|
@@ -3574,7 +3799,7 @@ New features:
|
|
|
3574
3799
|
* --source is now additive with your current sources.
|
|
3575
3800
|
Use --clear-sources first to maintain previous behavior.
|
|
3576
3801
|
|
|
3577
|
-
Bug fixes:
|
|
3802
|
+
## Bug fixes:
|
|
3578
3803
|
|
|
3579
3804
|
* Dependency "~>"s now respect lower-bound prerelease versions.
|
|
3580
3805
|
* Ensure the gem directories exist on download.
|
|
@@ -3585,7 +3810,7 @@ Bug fixes:
|
|
|
3585
3810
|
Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
|
|
3586
3811
|
* Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
|
|
3587
3812
|
|
|
3588
|
-
|
|
3813
|
+
# 1.3.7 / 2010-05-13
|
|
3589
3814
|
|
|
3590
3815
|
NOTE:
|
|
3591
3816
|
|
|
@@ -3596,7 +3821,7 @@ http://gems.rubyforge.org with https://rubygems.org/
|
|
|
3596
3821
|
|
|
3597
3822
|
http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
3598
3823
|
|
|
3599
|
-
|
|
3824
|
+
## Features:
|
|
3600
3825
|
|
|
3601
3826
|
* `gem` commands
|
|
3602
3827
|
* `gem install` and `gem fetch` now report alternate platforms when a
|
|
@@ -3615,7 +3840,7 @@ New features:
|
|
|
3615
3840
|
in 1.3.6)
|
|
3616
3841
|
* RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
|
|
3617
3842
|
|
|
3618
|
-
Bug fixes:
|
|
3843
|
+
## Bug fixes:
|
|
3619
3844
|
|
|
3620
3845
|
* Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
|
|
3621
3846
|
Roger Pack.
|
|
@@ -3627,9 +3852,9 @@ Bug fixes:
|
|
|
3627
3852
|
* Gem::PackageTask depends on the package dir like the other rake package
|
|
3628
3853
|
tasks so dependencies can be hooked up correctly.
|
|
3629
3854
|
|
|
3630
|
-
|
|
3855
|
+
# 1.3.6 / 2010-02-17
|
|
3631
3856
|
|
|
3632
|
-
|
|
3857
|
+
## Features:
|
|
3633
3858
|
|
|
3634
3859
|
* `gem` commands
|
|
3635
3860
|
* Added `gem push` and `gem owner` for interacting with modern/Gemcutter
|
|
@@ -3641,7 +3866,7 @@ New features:
|
|
|
3641
3866
|
force rebuilding. Patch #25982 by Akinori MUSHA.
|
|
3642
3867
|
* Capital letters are now allowed in prerelease versions.
|
|
3643
3868
|
|
|
3644
|
-
Bug fixes:
|
|
3869
|
+
## Bug fixes:
|
|
3645
3870
|
|
|
3646
3871
|
* Development deps are no longer added to rubygems-update gem so older
|
|
3647
3872
|
versions can update successfully.
|
|
@@ -3660,7 +3885,7 @@ Bug fixes:
|
|
|
3660
3885
|
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
|
|
3661
3886
|
Patch #27409 by Jakub Šťastný.
|
|
3662
3887
|
|
|
3663
|
-
|
|
3888
|
+
## Deprecations:
|
|
3664
3889
|
|
|
3665
3890
|
* lib/rubygems/timer.rb has been removed.
|
|
3666
3891
|
* Gem::Dependency#version_requirements is deprecated and will be removed on or
|
|
@@ -3669,23 +3894,23 @@ Deprecation Notices:
|
|
|
3669
3894
|
* Gem::manage_gems was removed in 1.3.3.
|
|
3670
3895
|
* Time::today was removed in 1.3.3.
|
|
3671
3896
|
|
|
3672
|
-
|
|
3897
|
+
# 1.3.5 / 2009-07-21
|
|
3673
3898
|
|
|
3674
|
-
Bug fixes:
|
|
3899
|
+
## Bug fixes:
|
|
3675
3900
|
|
|
3676
3901
|
* Fix use of prerelease gems.
|
|
3677
3902
|
* Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
|
|
3678
3903
|
|
|
3679
|
-
|
|
3904
|
+
## Deprecations:
|
|
3680
3905
|
|
|
3681
3906
|
* Bulk index update is no longer supported (the code currently remains, but not
|
|
3682
3907
|
the tests)
|
|
3683
3908
|
* Gem::manage_gems was removed in 1.3.3.
|
|
3684
3909
|
* Time::today was removed in 1.3.3.
|
|
3685
3910
|
|
|
3686
|
-
|
|
3911
|
+
# 1.3.4 / 2009-05-03
|
|
3687
3912
|
|
|
3688
|
-
Bug
|
|
3913
|
+
## Bug fixes:
|
|
3689
3914
|
|
|
3690
3915
|
* Fixed various warnings
|
|
3691
3916
|
* Gem::ruby_version works correctly for 1.8 branch and trunk
|
|
@@ -3696,16 +3921,16 @@ Bug Fixes:
|
|
|
3696
3921
|
drives. Bug #25882 by Lars Christensen
|
|
3697
3922
|
* Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
|
|
3698
3923
|
|
|
3699
|
-
|
|
3924
|
+
## Deprecations:
|
|
3700
3925
|
|
|
3701
3926
|
* Bulk index update is no longer supported (the code currently remains, but not
|
|
3702
3927
|
the tests)
|
|
3703
3928
|
* Gem::manage_gems was removed in 1.3.3.
|
|
3704
3929
|
* Time::today was removed in 1.3.3.
|
|
3705
3930
|
|
|
3706
|
-
|
|
3931
|
+
# 1.3.3 / 2009-05-04
|
|
3707
3932
|
|
|
3708
|
-
|
|
3933
|
+
## Features:
|
|
3709
3934
|
|
|
3710
3935
|
* `gem server` allows port names (from /etc/services) with --port.
|
|
3711
3936
|
* `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
|
|
@@ -3715,7 +3940,7 @@ New Features:
|
|
|
3715
3940
|
* Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
|
|
3716
3941
|
* RDoc is now generated regardless of Gem::Specification#has_rdoc?
|
|
3717
3942
|
|
|
3718
|
-
Bug
|
|
3943
|
+
## Bug fixes:
|
|
3719
3944
|
|
|
3720
3945
|
* `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
|
|
3721
3946
|
Eisenberg.
|
|
@@ -3737,15 +3962,15 @@ Bug Fixes:
|
|
|
3737
3962
|
* Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
|
|
3738
3963
|
reported by Alf Mikula.
|
|
3739
3964
|
|
|
3740
|
-
|
|
3965
|
+
## Deprecations:
|
|
3741
3966
|
|
|
3742
3967
|
* Gem::manage_gems has been removed.
|
|
3743
3968
|
* Time::today has been removed early. There was no way to make it warn and be
|
|
3744
3969
|
easy to override with user code.
|
|
3745
3970
|
|
|
3746
|
-
|
|
3971
|
+
# 1.3.2 / 2009-04-15
|
|
3747
3972
|
|
|
3748
|
-
|
|
3973
|
+
## Features:
|
|
3749
3974
|
|
|
3750
3975
|
* RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
|
|
3751
3976
|
This can be used to add commands (See Gem::CommandManager) or add
|
|
@@ -3773,7 +3998,7 @@ Select New Features:
|
|
|
3773
3998
|
* Modern indicies can now be updated incrementally.
|
|
3774
3999
|
* Legacy indicies can be updated separately from modern.
|
|
3775
4000
|
|
|
3776
|
-
|
|
4001
|
+
## Bug fixes:
|
|
3777
4002
|
|
|
3778
4003
|
* Better gem activation error message. Patch #23082.
|
|
3779
4004
|
* Kernel methods are now private. Patch #20801 by James M. Lawrence.
|
|
@@ -3799,7 +4024,7 @@ Select Bugs Fixed:
|
|
|
3799
4024
|
* Deal with extraneous quotation mark when autogenerating .bat file on MS
|
|
3800
4025
|
Windows. Bug #22712.
|
|
3801
4026
|
|
|
3802
|
-
|
|
4027
|
+
## Deprecations:
|
|
3803
4028
|
|
|
3804
4029
|
* Gem::manage_gems has been removed.
|
|
3805
4030
|
* Time::today will be removed in RubyGems 1.4.
|
|
@@ -3807,9 +4032,9 @@ Deprecation Notices:
|
|
|
3807
4032
|
Special thanks to Chad Wooley for backwards compatibility testing and Luis
|
|
3808
4033
|
Lavena and Daniel Berger for continuing windows support.
|
|
3809
4034
|
|
|
3810
|
-
|
|
4035
|
+
# 1.3.1 / 2008-10-28
|
|
3811
4036
|
|
|
3812
|
-
|
|
4037
|
+
## Bug fixes:
|
|
3813
4038
|
|
|
3814
4039
|
* Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
|
|
3815
4040
|
issues related to no uid support under Windows.
|
|
@@ -3820,13 +4045,13 @@ Bugs fixed:
|
|
|
3820
4045
|
* Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
|
|
3821
4046
|
* Silence PATH warning.
|
|
3822
4047
|
|
|
3823
|
-
|
|
4048
|
+
## Deprecations:
|
|
3824
4049
|
|
|
3825
4050
|
* Gem::manage_gems will be removed on or after March 2009.
|
|
3826
4051
|
|
|
3827
|
-
|
|
4052
|
+
# 1.3.0 / 2008-09-25
|
|
3828
4053
|
|
|
3829
|
-
|
|
4054
|
+
## Features:
|
|
3830
4055
|
|
|
3831
4056
|
* RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
|
|
3832
4057
|
stdout is not a TTY, except with --both.
|
|
@@ -3840,12 +4065,12 @@ New features:
|
|
|
3840
4065
|
* RubyGems now updates the ri cache when the rdoc gem is installed and
|
|
3841
4066
|
documentation is generated.
|
|
3842
4067
|
|
|
3843
|
-
|
|
4068
|
+
## Deprecations:
|
|
3844
4069
|
|
|
3845
4070
|
* Gem::manage_gems now warns when called. It will be removed on or after March
|
|
3846
4071
|
2009.
|
|
3847
4072
|
|
|
3848
|
-
|
|
4073
|
+
## Bug fixes:
|
|
3849
4074
|
|
|
3850
4075
|
* RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
|
|
3851
4076
|
Bug #20775 by Hemant Kumar.
|
|
@@ -3869,7 +4094,7 @@ Bugs Fixed:
|
|
|
3869
4094
|
* `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
|
|
3870
4095
|
* Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
|
|
3871
4096
|
|
|
3872
|
-
|
|
4097
|
+
## Enhancements:
|
|
3873
4098
|
|
|
3874
4099
|
* `gem help install` now describes _version_ argument to executable stubs
|
|
3875
4100
|
* `gem help environment` describes environment variables and ~/.gemrc and
|
|
@@ -3895,9 +4120,9 @@ Other Changes Include:
|
|
|
3895
4120
|
* test/test_ext_configure_builder.rb
|
|
3896
4121
|
* Locale-free patch by Yusuke Endoh [ruby-core:17444].
|
|
3897
4122
|
|
|
3898
|
-
|
|
4123
|
+
# 1.2.0 / 2008-06-21
|
|
3899
4124
|
|
|
3900
|
-
|
|
4125
|
+
## Features:
|
|
3901
4126
|
|
|
3902
4127
|
* RubyGems no longer performs bulk updates and instead only fetches the gemspec
|
|
3903
4128
|
files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
|
|
@@ -3916,7 +4141,7 @@ New features:
|
|
|
3916
4141
|
* setup.rb now handles --vendor and --destdir for packagers
|
|
3917
4142
|
* `gem stale` command that lists gems by last access time
|
|
3918
4143
|
|
|
3919
|
-
|
|
4144
|
+
## Bug fixes:
|
|
3920
4145
|
|
|
3921
4146
|
* File modes from gems are now honored, patch #19737
|
|
3922
4147
|
* Marshal Gem::Specification objects from the future can now be loaded.
|
|
@@ -3931,7 +4156,7 @@ Bugs Fixed:
|
|
|
3931
4156
|
* Gem::DependencyInstaller resets installed gems every install, bug #19444
|
|
3932
4157
|
* Gem.default_path is now honored if GEM_PATH is not set, patch #19502
|
|
3933
4158
|
|
|
3934
|
-
|
|
4159
|
+
## Enhancements:
|
|
3935
4160
|
|
|
3936
4161
|
* setup.rb
|
|
3937
4162
|
* stub files created by RubyGems 0.7.x and older are no longer removed. When
|
|
@@ -3950,9 +4175,9 @@ Other Changes Include:
|
|
|
3950
4175
|
* Gem::RemoteFetcher now performs persistent connections for HEAD requests,
|
|
3951
4176
|
bug #7973
|
|
3952
4177
|
|
|
3953
|
-
|
|
4178
|
+
# 1.1.1 / 2008-04-11
|
|
3954
4179
|
|
|
3955
|
-
|
|
4180
|
+
## Bug fixes:
|
|
3956
4181
|
|
|
3957
4182
|
* Gem.prefix now returns non-nil only when RubyGems was installed outside
|
|
3958
4183
|
sitelibdir or libdir.
|
|
@@ -3967,9 +4192,9 @@ Bugs Fixed:
|
|
|
3967
4192
|
* Gem::RemoteFetcher handles Errno::ECONNABORTED.
|
|
3968
4193
|
* Printing of release notes fixed.
|
|
3969
4194
|
|
|
3970
|
-
|
|
4195
|
+
# 1.1.0 / 2008-03-29
|
|
3971
4196
|
|
|
3972
|
-
|
|
4197
|
+
## Features:
|
|
3973
4198
|
|
|
3974
4199
|
* RubyGems now uses persistent connections on index updates. Index updates are
|
|
3975
4200
|
much faster now.
|
|
@@ -3981,7 +4206,7 @@ New features:
|
|
|
3981
4206
|
* `gem spec` now extracts specifications from .gem files.
|
|
3982
4207
|
* `gem query --installed` to aid automation of checking for gems.
|
|
3983
4208
|
|
|
3984
|
-
|
|
4209
|
+
## Bug fixes:
|
|
3985
4210
|
|
|
3986
4211
|
* RubyGems works with both Config and RbConfig now.
|
|
3987
4212
|
* Executables are now cleaned upon uninstall.
|
|
@@ -3997,7 +4222,7 @@ Bugs Fixed:
|
|
|
3997
4222
|
* Gem stub scripts on windows now work outside Gem.bindir.
|
|
3998
4223
|
* `gem sources -r` now works without network access.
|
|
3999
4224
|
|
|
4000
|
-
|
|
4225
|
+
## Enhancements:
|
|
4001
4226
|
|
|
4002
4227
|
* RubyGems now requires Ruby > 1.8.3.
|
|
4003
4228
|
* Release notes are now printed upon installation.
|
|
@@ -4008,26 +4233,26 @@ Other Changes Include:
|
|
|
4008
4233
|
|
|
4009
4234
|
For a full list of changes to RubyGems, see the ChangeLog file.
|
|
4010
4235
|
|
|
4011
|
-
|
|
4236
|
+
# 1.0.1 / 2007-12-20
|
|
4012
4237
|
|
|
4013
|
-
|
|
4238
|
+
## Bug fixes:
|
|
4014
4239
|
|
|
4015
4240
|
* Installation on Ruby 1.8.3 through 1.8.5 fixed
|
|
4016
4241
|
* `gem build` on 1.8.3 fixed
|
|
4017
4242
|
|
|
4018
|
-
|
|
4243
|
+
## Enhancements:
|
|
4019
4244
|
|
|
4020
4245
|
* Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
|
|
4021
4246
|
this is official in RubyGems 1.0.1.
|
|
4022
4247
|
|
|
4023
|
-
|
|
4248
|
+
# 1.0.0 / 2007-12-20
|
|
4024
4249
|
|
|
4025
|
-
|
|
4250
|
+
## Features:
|
|
4026
4251
|
|
|
4027
4252
|
* RubyGems warns about various problems with gemspecs during gem building
|
|
4028
4253
|
* More-consistent versioning for the RubyGems software
|
|
4029
4254
|
|
|
4030
|
-
|
|
4255
|
+
## Enhancements:
|
|
4031
4256
|
|
|
4032
4257
|
* Fixed various bugs and problems with installing gems on Windows
|
|
4033
4258
|
* Fixed using `gem server` for installing gems
|
|
@@ -4041,7 +4266,7 @@ Other Changes Include:
|
|
|
4041
4266
|
* `gem unpack` can now unpack into a specific directory with --target
|
|
4042
4267
|
* OpenSSL is no longer required by default
|
|
4043
4268
|
|
|
4044
|
-
|
|
4269
|
+
## Breaking changes:
|
|
4045
4270
|
|
|
4046
4271
|
* Kernel#require_gem has been removed
|
|
4047
4272
|
* Executables without a shebang will not be wrapped in a future version, this
|
|
@@ -4053,9 +4278,9 @@ Deprecations and Deletions:
|
|
|
4053
4278
|
* Gem::Specification#autorequire= has been deprecated
|
|
4054
4279
|
* Time::today will be removed in a future version
|
|
4055
4280
|
|
|
4056
|
-
|
|
4281
|
+
# 0.9.5 / 2007-11-19
|
|
4057
4282
|
|
|
4058
|
-
|
|
4283
|
+
## Features:
|
|
4059
4284
|
|
|
4060
4285
|
* Platform support
|
|
4061
4286
|
* Automatic installation of platform gems
|
|
@@ -4067,7 +4292,7 @@ Major New Features Include:
|
|
|
4067
4292
|
* Improved stubs and `gem.bat` on mswin, including better compatibility
|
|
4068
4293
|
with the One-Click Installer.
|
|
4069
4294
|
|
|
4070
|
-
|
|
4295
|
+
## Enhancements:
|
|
4071
4296
|
|
|
4072
4297
|
* Time::today is deprecated and will be removed at a future date
|
|
4073
4298
|
* Gem::manage_gems is deprecated and will be removed at a future date
|
|
@@ -4112,13 +4337,13 @@ Special thanks to:
|
|
|
4112
4337
|
* Tom Copeland
|
|
4113
4338
|
* Wilson Bilkovich
|
|
4114
4339
|
|
|
4115
|
-
|
|
4340
|
+
# 0.9.4 / 2007-05-23
|
|
4116
4341
|
|
|
4117
4342
|
If you are experiencing problems with the source index (e.g. strange
|
|
4118
4343
|
"No Method" errors), or problems with zlib (e.g. "Buffer Error"
|
|
4119
4344
|
messsage), we recommend upgrading to RubyGems 0.9.4.
|
|
4120
4345
|
|
|
4121
|
-
Bug
|
|
4346
|
+
## Bug fixes:
|
|
4122
4347
|
|
|
4123
4348
|
* Several people have been experiencing problems with no method errors
|
|
4124
4349
|
on the source index cache. The source index cache is now a bit more
|
|
@@ -4130,9 +4355,9 @@ Bug Fixes Include:
|
|
|
4130
4355
|
* Several sub-commands were accidentally dropped from the "gem" command.
|
|
4131
4356
|
These commands have been restored.
|
|
4132
4357
|
|
|
4133
|
-
|
|
4358
|
+
# 0.9.3 / 2007-05-10
|
|
4134
4359
|
|
|
4135
|
-
Bug
|
|
4360
|
+
## Bug fixes:
|
|
4136
4361
|
|
|
4137
4362
|
The ZLib library on Windows will occasionally complains about a buffer error
|
|
4138
4363
|
when unpacking gems. The Gems software has a workaround for that problem, but
|
|
@@ -4140,19 +4365,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
|
|
|
4140
4365
|
have received several reports of the error occurring with ZLib 1.2.3, so we
|
|
4141
4366
|
have permanently enabled the work around on all versions.
|
|
4142
4367
|
|
|
4143
|
-
|
|
4368
|
+
# 0.9.2 / 2007-02-05
|
|
4144
4369
|
|
|
4145
|
-
Bug
|
|
4370
|
+
## Bug fixes:
|
|
4146
4371
|
|
|
4147
4372
|
* The "unpack" command now works properly.
|
|
4148
4373
|
* User name and password are now passed properly to the authenticating
|
|
4149
4374
|
proxy when downloading gems.
|
|
4150
4375
|
|
|
4151
|
-
|
|
4376
|
+
# 0.9.1 / 2007-01-16
|
|
4152
4377
|
|
|
4153
4378
|
See ChangeLog
|
|
4154
4379
|
|
|
4155
|
-
|
|
4380
|
+
# 0.9.0 / 2006-06-28
|
|
4156
4381
|
|
|
4157
4382
|
Finally, the much anticipated RubyGems version 0.9.0 is now available.
|
|
4158
4383
|
This release includes a number of new features and bug fixes. The
|
|
@@ -4160,7 +4385,7 @@ number one change is that we can now download the gem index
|
|
|
4160
4385
|
incrementally. This will greatly speed up the gem command when only a
|
|
4161
4386
|
few gems are out of date.
|
|
4162
4387
|
|
|
4163
|
-
|
|
4388
|
+
## Enhancements:
|
|
4164
4389
|
|
|
4165
4390
|
* The gem index is now downloaded incrementally, only updating entries
|
|
4166
4391
|
that are out of date. If more than 50 entries are out of date, we
|
|
@@ -4175,9 +4400,6 @@ Major Enhancments include:
|
|
|
4175
4400
|
* Both RI and RDOC documents are now generated by default.
|
|
4176
4401
|
* A gemri command is included to read gem RI docs (only needed for
|
|
4177
4402
|
Ruby 1.8.4 or earlier).
|
|
4178
|
-
|
|
4179
|
-
Minor enhancements include:
|
|
4180
|
-
|
|
4181
4403
|
* Version 0.0.0 is now a valid gem version.
|
|
4182
4404
|
* Better detection of missing SSL functionality.
|
|
4183
4405
|
* SSL is not required if the security policy does not require
|
|
@@ -4190,7 +4412,7 @@ Minor enhancements include:
|
|
|
4190
4412
|
* .rbw is now a supported suffix for RubyGem's custom require.
|
|
4191
4413
|
* Several Ruby 1.9 compatibility fixes (Eric Hodel).
|
|
4192
4414
|
|
|
4193
|
-
Bug
|
|
4415
|
+
## Bug fixes:
|
|
4194
4416
|
|
|
4195
4417
|
* Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
|
|
4196
4418
|
cross-Ruby version compatibility issues.
|
|
@@ -4202,7 +4424,7 @@ Bug Fixes:
|
|
|
4202
4424
|
* Fixed prefix handling for native expressions (patch by Aaron Patterson).
|
|
4203
4425
|
* Fixed several Upgrade => Update typos.
|
|
4204
4426
|
|
|
4205
|
-
|
|
4427
|
+
# 0.8.11 / 2005-07-13
|
|
4206
4428
|
|
|
4207
4429
|
* -y is a synonym for --include-dependencies.
|
|
4208
4430
|
* Better handling of errors in the top level rescue clause.
|
|
@@ -4221,7 +4443,7 @@ Bug Fixes:
|
|
|
4221
4443
|
* Added David Glasser's install-from-mirror patch.
|
|
4222
4444
|
* Additional internal structural cleanup and test reorganization.
|
|
4223
4445
|
|
|
4224
|
-
|
|
4446
|
+
# 0.8.10 / 2005-03-27
|
|
4225
4447
|
|
|
4226
4448
|
* In multi-user environments, it is common to supply multiple versions of gems
|
|
4227
4449
|
(for example Rails), allowing individual users to select the version of the
|
|
@@ -4232,16 +4454,16 @@ Bug Fixes:
|
|
|
4232
4454
|
installed, then the "gem update --system" command will download a new
|
|
4233
4455
|
update, but install the latest update prior to the download.
|
|
4234
4456
|
|
|
4235
|
-
|
|
4457
|
+
# 0.8.9
|
|
4236
4458
|
|
|
4237
4459
|
Never released
|
|
4238
4460
|
|
|
4239
|
-
|
|
4461
|
+
# 0.8.8 / 2005-03-14
|
|
4240
4462
|
|
|
4241
4463
|
* Moved the master definition of class Requirement back under version.
|
|
4242
4464
|
Kept the body of Requirement under Gem.
|
|
4243
4465
|
|
|
4244
|
-
|
|
4466
|
+
# 0.8.7 / 2005-03-14
|
|
4245
4467
|
|
|
4246
4468
|
Even though it has only been a few weeks since that last release,
|
|
4247
4469
|
there are quite a number of new features in 0.8.7. A complete list of
|
|
@@ -4294,11 +4516,11 @@ file system. You can read more about them here:
|
|
|
4294
4516
|
* gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
|
|
4295
4517
|
* gemwhich: http://docs.rubygems.org/read/chapter/17
|
|
4296
4518
|
|
|
4297
|
-
|
|
4519
|
+
# 0.8.6 / 2005-02-27
|
|
4298
4520
|
|
|
4299
4521
|
* Fixed a small bug with shebang construction
|
|
4300
4522
|
|
|
4301
|
-
|
|
4523
|
+
# 0.8.5 / 2005-02-26
|
|
4302
4524
|
|
|
4303
4525
|
Do you know how you used to dread getting the following message while
|
|
4304
4526
|
installing gems?
|
|
@@ -4320,7 +4542,7 @@ us. No RDoc generation was included in the following times.
|
|
|
4320
4542
|
The new caching code is at least 3x faster than previous versions. Woo
|
|
4321
4543
|
Hoo!
|
|
4322
4544
|
|
|
4323
|
-
|
|
4545
|
+
# 0.8.4 / 2005-01-01
|
|
4324
4546
|
|
|
4325
4547
|
* Rubygems 0.8.3's installer was broken unless you already had an older
|
|
4326
4548
|
version of RubyGems installed. That's fixed.
|
|
@@ -4330,7 +4552,7 @@ Hoo!
|
|
|
4330
4552
|
* Support for lower-cased Gem file names (for you, Paul Duncan :)
|
|
4331
4553
|
* Erik Veenstra's patch for making Gem versions sortable.
|
|
4332
4554
|
|
|
4333
|
-
|
|
4555
|
+
# 0.8.3 / 2004-12-07
|
|
4334
4556
|
|
|
4335
4557
|
No real earth shattering news here, but there were a number of really
|
|
4336
4558
|
annoying issues involving other libraries that RubyGems depends upon.
|
|
@@ -4372,11 +4594,11 @@ There has been some minor usability enhancements and changes ...
|
|
|
4372
4594
|
names. This was useful for him while testing libs that he had in
|
|
4373
4595
|
development.
|
|
4374
4596
|
|
|
4375
|
-
|
|
4597
|
+
# 0.8.1 / 2004-09-17
|
|
4376
4598
|
|
|
4377
4599
|
* Quick release to capture some bug fixes.
|
|
4378
4600
|
|
|
4379
|
-
|
|
4601
|
+
# 0.8.0 / 2004-09-15
|
|
4380
4602
|
|
|
4381
4603
|
* Remove need for library stubs. Set the RUBYOPT environment variable to
|
|
4382
4604
|
include "rrubygems", and a normal require will find gem files. Continue to
|
|
@@ -4399,15 +4621,15 @@ There has been some minor usability enhancements and changes ...
|
|
|
4399
4621
|
to pick.
|
|
4400
4622
|
* Added "gem unpack" for "unpacking" a gem to the current directory
|
|
4401
4623
|
|
|
4402
|
-
|
|
4624
|
+
# 0.7.0 / 2004-07-09
|
|
4403
4625
|
|
|
4404
4626
|
See ChangeLog
|
|
4405
4627
|
|
|
4406
|
-
|
|
4628
|
+
# 0.6.1 / 2004-06-08
|
|
4407
4629
|
|
|
4408
4630
|
See ChangeLog
|
|
4409
4631
|
|
|
4410
|
-
|
|
4632
|
+
# 0.6.0 / 2004-06-08
|
|
4411
4633
|
|
|
4412
4634
|
* Collapse output of --search and --list (and gem_server) operations so that
|
|
4413
4635
|
each gem is listed only once, with each of its versions listed on the same
|
|
@@ -4420,7 +4642,7 @@ See ChangeLog
|
|
|
4420
4642
|
spec.required_ruby_version = "> 1.8.0"
|
|
4421
4643
|
* --install-stub defaults to true, so library stubs are created
|
|
4422
4644
|
|
|
4423
|
-
|
|
4645
|
+
# 0.5.0 / 2004-06-06
|
|
4424
4646
|
|
|
4425
4647
|
* Jim added the ability to specify version constraints to avoid API
|
|
4426
4648
|
incompatibilities. This has been the subject of much debate for the past
|
|
@@ -4443,11 +4665,11 @@ See ChangeLog
|
|
|
4443
4665
|
automatically included.
|
|
4444
4666
|
* Some small bug fixes
|
|
4445
4667
|
|
|
4446
|
-
|
|
4668
|
+
# 0.4.0 / 2004-05-30
|
|
4447
4669
|
|
|
4448
4670
|
* Minor bug fixes including Windows compatibility issues
|
|
4449
4671
|
|
|
4450
|
-
|
|
4672
|
+
# 0.3.0 / 2004-04-30
|
|
4451
4673
|
|
|
4452
4674
|
* Cleanup of command-line arguments and handling. Most commands accept a
|
|
4453
4675
|
--local or --remote modifier.
|
|
@@ -4468,6 +4690,6 @@ See ChangeLog
|
|
|
4468
4690
|
* Generally improved error messages (still more work to do)
|
|
4469
4691
|
* Rearranged gem directory structure for cleanliness.
|
|
4470
4692
|
|
|
4471
|
-
|
|
4693
|
+
# 0.2.0 / 2004-03-14
|
|
4472
4694
|
|
|
4473
4695
|
* Initial public release
|