rubygems-update 3.1.2 → 3.2.6
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} +756 -489
- data/CODE_OF_CONDUCT.md +55 -19
- data/CONTRIBUTING.md +25 -11
- data/Manifest.txt +75 -104
- data/POLICIES.md +6 -12
- data/README.md +5 -5
- data/Rakefile +64 -92
- data/bin/update_rubygems +1 -1
- data/bundler/CHANGELOG.md +1636 -1422
- 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 +1 -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 +16 -13
- 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 +66 -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 -3
- data/bundler/lib/bundler/fetcher.rb +4 -3
- 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 +33 -19
- 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 +2 -2
- data/bundler/lib/bundler/installer.rb +35 -32
- 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 +2 -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 +16 -25
- data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +19 -30
- 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 +43 -19
- data/bundler/lib/bundler/resolver/spec_group.rb +39 -24
- 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 +26 -61
- data/bundler/lib/bundler/runtime.rb +4 -14
- data/bundler/lib/bundler/settings.rb +49 -46
- 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 +23 -21
- 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 -17
- 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/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 +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +48 -46
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +79 -208
- 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 +138 -187
- data/lib/rubygems/available_set.rb +4 -6
- data/lib/rubygems/basic_specification.rb +12 -10
- data/lib/rubygems/bundler_version_finder.rb +14 -9
- data/lib/rubygems/command.rb +17 -17
- 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 +4 -4
- 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 +9 -7
- 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 +2 -4
- 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 +29 -36
- 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 +21 -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 +24 -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 +6 -8
- 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 +31 -24
- data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
- data/lib/rubygems/resolver/api_specification.rb +24 -10
- 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 +43 -10
- data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +75 -7
- 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 +16 -13
- 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 +122 -131
- data/lib/rubygems/specification_policy.rb +88 -30
- data/lib/rubygems/ssl_certs/{index.rubygems.org → rubygems.org}/GlobalSignRootCA.pem +0 -0
- data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +21 -0
- data/lib/rubygems/stub_specification.rb +1 -5
- data/lib/rubygems/syck_hack.rb +0 -2
- data/lib/rubygems/test_case.rb +120 -134
- 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 +15 -3
- 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 +5 -7
- 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 +12 -0
- data/test/rubygems/test_bundled_ca.rb +42 -45
- data/test/rubygems/test_config.rb +0 -2
- data/test/rubygems/test_deprecate.rb +40 -7
- data/test/rubygems/test_gem.rb +156 -99
- 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 +250 -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 +99 -3
- 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 +2 -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 +258 -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 +41 -39
- 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 +9 -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 +72 -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 +188 -131
- data/test/rubygems/test_gem_stream_ui.rb +3 -3
- data/test/rubygems/test_gem_stub_specification.rb +4 -7
- 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 +25 -10
- 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 +291 -56
- 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/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
- data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
- 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 -139
- data/util/update_changelog.rb +0 -67
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '093385346fd2dadfc857a5fcbea99a97af3067867975c40fc7221369cc2bae20'
|
4
|
+
data.tar.gz: 42de60d07aeefb67549285a2d76c01aabe903747affcc348bd8ec1d3ad079469
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3db9aa4bd25ce7f35219c7c3a56c0937f02c31c1d40ff0b51cc4077a7624a44036e01ae31beecac396146021e1063603675956d136670517bdb285d927e2879e
|
7
|
+
data.tar.gz: 7a0be9453ed03fc389f4a31e5a39907b1c4295cdffb979f91c9ac77acb3ec66950424992a3da187bfde4ec5a5f1d7d9797ad9c58404039aaf8e5db98f02685cb
|
@@ -1,9 +1,319 @@
|
|
1
|
-
#
|
1
|
+
# 3.2.6 / 2021-01-18
|
2
2
|
|
3
|
+
## Enhancements:
|
3
4
|
|
4
|
-
|
5
|
+
* Fix `Gem::Platform#inspect` showing duplicate information. Pull request
|
6
|
+
#4276 by deivid-rodriguez
|
5
7
|
|
6
|
-
|
8
|
+
## Bug fixes:
|
9
|
+
|
10
|
+
* Swallow any system call error in `ensure_gem_subdirs` to support jruby
|
11
|
+
embedded paths. Pull request #4291 by kares
|
12
|
+
* Restore accepting custom make command with extra options as the `make`
|
13
|
+
env variable. Pull request #4271 by terceiro
|
14
|
+
|
15
|
+
# 3.2.5 / 2021-01-11
|
16
|
+
|
17
|
+
## Bug fixes:
|
18
|
+
|
19
|
+
* Don't load more specs after the whole set of specs has been setup. Pull
|
20
|
+
request #4262 by deivid-rodriguez
|
21
|
+
* Fix broken `bundler` executable after `gem update --system`. Pull
|
22
|
+
request #4221 by deivid-rodriguez
|
23
|
+
|
24
|
+
# 3.2.4 / 2020-12-31
|
25
|
+
|
26
|
+
## Enhancements:
|
27
|
+
|
28
|
+
* Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
|
29
|
+
deivid-rodriguez
|
30
|
+
* Never spawn subshells when building extensions. Pull request #4190 by
|
31
|
+
deivid-rodriguez
|
32
|
+
|
33
|
+
## Bug fixes:
|
34
|
+
|
35
|
+
* Fix fallback to the old index and installation from it not working. Pull
|
36
|
+
request #4213 by deivid-rodriguez
|
37
|
+
* Fix installing from source on truffleruby. Pull request #4201 by
|
38
|
+
deivid-rodriguez
|
39
|
+
|
40
|
+
# 3.2.3 / 2020-12-22
|
41
|
+
|
42
|
+
## Enhancements:
|
43
|
+
|
44
|
+
* Fix misspellings in default API key name. Pull request #4177 by hsbt
|
45
|
+
|
46
|
+
## Bug fixes:
|
47
|
+
|
48
|
+
* Respect `required_ruby_version` and `required_rubygems_version`
|
49
|
+
constraints when looking for `gem install` candidates. Pull request #4110
|
50
|
+
by deivid-rodriguez
|
51
|
+
|
52
|
+
# 3.2.2 / 2020-12-17
|
53
|
+
|
54
|
+
## Bug fixes:
|
55
|
+
|
56
|
+
* Fix issue where CLI commands making more than one request to
|
57
|
+
rubygems.org needing an OTP code would crash or ask for the code twice.
|
58
|
+
Pull request #4162 by sonalkr132
|
59
|
+
* Fix building rake extensions that require openssl. Pull request #4165 by
|
60
|
+
deivid-rodriguez
|
61
|
+
* Fix `gem update --system` displaying too many changelog entries. Pull
|
62
|
+
request #4145 by deivid-rodriguez
|
63
|
+
|
64
|
+
# 3.2.1 / 2020-12-14
|
65
|
+
|
66
|
+
## Enhancements:
|
67
|
+
|
68
|
+
* Added help message for gem i webrick in gem server command. Pull request
|
69
|
+
#4117 by hsbt
|
70
|
+
|
71
|
+
## Bug fixes:
|
72
|
+
|
73
|
+
* Added the missing loading of fileutils same as load_specs. Pull request
|
74
|
+
#4124 by hsbt
|
75
|
+
* Fix Resolver::APISet to always include prereleases when necessary. Pull
|
76
|
+
request #4113 by deivid-rodriguez
|
77
|
+
|
78
|
+
# 3.2.0 / 2020-12-07
|
79
|
+
|
80
|
+
## Enhancements:
|
81
|
+
|
82
|
+
* Do not override Kernel#warn when there is no need. Pull request #4075 by
|
83
|
+
eregon
|
84
|
+
* Update endpoint of gem signin command. Pull request #3840 by sonalkr132
|
85
|
+
* Omit deprecated commands from command help output. Pull request #4023 by
|
86
|
+
landongrindheim
|
87
|
+
* Suggest alternatives in `gem query` deprecation. Pull request #4021 by
|
88
|
+
landongrindheim
|
89
|
+
* Lazily load `time`, `cgi`, and `zlib`. Pull request #4010 by
|
90
|
+
deivid-rodriguez
|
91
|
+
* Don't hit the network when installing dependencyless local gemspec. Pull
|
92
|
+
request #3968 by deivid-rodriguez
|
93
|
+
* Add `--force` option to `gem sources` command. Pull request #3956 by
|
94
|
+
andy-smith-msm
|
95
|
+
* Lazily load `openssl`. Pull request #3850 by deivid-rodriguez
|
96
|
+
* Pass more information when comparing platforms. Pull request #3817 by
|
97
|
+
eregon
|
98
|
+
|
99
|
+
## Bug fixes:
|
100
|
+
|
101
|
+
* Use better owner & group for files in rubygems package. Pull request
|
102
|
+
#4065 by deivid-rodriguez
|
103
|
+
* Improve gem build -C flag. Pull request #3983 by bronzdoc
|
104
|
+
* Handle unexpected behavior with URI#merge and subpaths missing trailing
|
105
|
+
slashes. Pull request #3123 by drcapulet
|
106
|
+
* Add missing `fileutils` require in rubygems installer. Pull request
|
107
|
+
#4036 by deivid-rodriguez
|
108
|
+
* Fix `--platform` option to `gem specification` being ignored. Pull
|
109
|
+
request #4043 by deivid-rodriguez
|
110
|
+
* Expose `--no-minimal-deps` flag to install the latest version of
|
111
|
+
dependencies. Pull request #4030 by deivid-rodriguez
|
112
|
+
* Fix "stack level too deep" error when overriding `Warning.warn`. Pull
|
113
|
+
request #3987 by eregon
|
114
|
+
* Append '.gemspec' extension only when it is not present. Pull request
|
115
|
+
#3988 by voxik
|
116
|
+
* Install to correct plugins dir when using `--build-root`. Pull request
|
117
|
+
#3972 by deivid-rodriguez
|
118
|
+
* Fix `--build-root` flag under Windows. Pull request #3975 by
|
119
|
+
deivid-rodriguez
|
120
|
+
* Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
|
121
|
+
request #3951 by andy-smith-msm
|
122
|
+
* Make `--default` and `--install-dir` options to `gem install` play nice
|
123
|
+
together. Pull request #3906 by deivid-rodriguez
|
124
|
+
|
125
|
+
## Deprecations:
|
126
|
+
|
127
|
+
* Deprecate server command. Pull request #3868 by bronzdoc
|
128
|
+
|
129
|
+
## Performance:
|
130
|
+
|
131
|
+
* Don't change ruby process CWD when building extensions. Pull request
|
132
|
+
#3498 by deivid-rodriguez
|
133
|
+
|
134
|
+
# 3.2.0.rc.2 / 2020-10-08
|
135
|
+
|
136
|
+
## Enhancements:
|
137
|
+
|
138
|
+
* Make --dry-run flag consistent across rubygems commands. Pull request
|
139
|
+
#3867 by bronzdoc
|
140
|
+
* Disallow downgrades to too old versions. Pull request #3566 by
|
141
|
+
deivid-rodriguez
|
142
|
+
* Added `--platform` option to `build` command. Pull request #3079 by nobu
|
143
|
+
* Have "gem update --system" pass through the `--silent` flag. Pull
|
144
|
+
request #3789 by duckinator
|
145
|
+
* Add writable check for cache dir. Pull request #3876 by xndcn
|
146
|
+
* Warn on duplicate dependency in a specification. Pull request #3864 by
|
147
|
+
bronzdoc
|
148
|
+
* Fix indentation in `gem env`. Pull request #3861 by colby-swandale
|
149
|
+
* Let more exceptions flow. Pull request #3819 by deivid-rodriguez
|
150
|
+
* Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
|
151
|
+
eregon
|
152
|
+
|
153
|
+
## Bug fixes:
|
154
|
+
|
155
|
+
* Add missing fileutils require. Pull request #3911 by deivid-rodriguez
|
156
|
+
* Fix false positive warning on Windows when PATH has
|
157
|
+
`File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
|
158
|
+
* Fix Kernel#warn override to handle backtrace location with nil path.
|
159
|
+
Pull request #3852 by jeremyevans
|
160
|
+
* Don't format executables on `gem update --system`. Pull request #3811 by
|
161
|
+
deivid-rodriguez
|
162
|
+
* `gem install --user` fails with `Gem::FilePermissionError` on the system
|
163
|
+
plugins directory. Pull request #3804 by nobu
|
164
|
+
|
165
|
+
## Performance:
|
166
|
+
|
167
|
+
* Avoid duplicated generation of APISpecification objects. Pull request
|
168
|
+
#3940 by mame
|
169
|
+
* Eval defaults with frozen_string_literal: true. Pull request #3847 by
|
170
|
+
casperisfine
|
171
|
+
* Deduplicate the requirement operators in memory. Pull request #3846 by
|
172
|
+
casperisfine
|
173
|
+
* Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
|
174
|
+
|
175
|
+
# 3.2.0.rc.1 / 2020-07-04
|
176
|
+
|
177
|
+
## Enhancements:
|
178
|
+
|
179
|
+
* Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
|
180
|
+
* Rework plugins system and speed up rubygems. Pull request #3108 by David
|
181
|
+
Rodríguez.
|
182
|
+
* Specify explicit separator not to be affected by $;. Pull request #3424
|
183
|
+
by Nobuyoshi Nakada.
|
184
|
+
* Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
|
185
|
+
* Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
|
186
|
+
* Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
|
187
|
+
* Log messages to stdout in `rake package`. Pull request #3632 by David
|
188
|
+
Rodríguez.
|
189
|
+
* Remove explicit `psych` activation. Pull request #3636 by David
|
190
|
+
Rodríguez.
|
191
|
+
* Delay `fileutils` loading to fix some warnings. Pull request #3637 by
|
192
|
+
David Rodríguez.
|
193
|
+
* Make sure rubygems/package can be directly required reliably. Pull
|
194
|
+
request #3670 by Luis Sagastume.
|
195
|
+
* Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
|
196
|
+
#3711 by David Rodríguez.
|
197
|
+
* Add Gem.disable_system_update_message to disable gem update --system if
|
198
|
+
needed. Pull request #3720 by Josef Šimánek.
|
199
|
+
* Tweaks to play nice with ruby-core setup. Pull request #3733 by David
|
200
|
+
Rodríguez.
|
201
|
+
* Remove explicit require for auto-loaded constant. Pull request #3751 by
|
202
|
+
Karol Bucek.
|
203
|
+
* Test files should not be included in spec.files. Pull request #3758 by
|
204
|
+
Marc-André Lafortune.
|
205
|
+
* Remove TODO comment about warning on setting instead of pushing. Pull
|
206
|
+
request #2823 by Luis Sagastume.
|
207
|
+
* Add deprecate command method. Pull request #2935 by Luis Sagastume.
|
208
|
+
* Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
|
209
|
+
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
210
|
+
#2985 by MSP-Greg.
|
211
|
+
* Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
|
212
|
+
Colby Swandale.
|
213
|
+
* Updates to some old gem-signing docs. Pull request #3063 by Tieg
|
214
|
+
Zaharia.
|
215
|
+
* Update the gem method for Gem::Installer. Pull request #3137 by Daniel
|
216
|
+
Berger.
|
217
|
+
* Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
|
218
|
+
* Resolve latest version via `gem contents`. Pull request #3149 by Dan
|
219
|
+
Rice.
|
220
|
+
* Install suggestions. Pull request #3151 by Sophia Castellarin.
|
221
|
+
* Only rescue the errors we actually want to rescue. Pull request #3156 by
|
222
|
+
David Rodríguez.
|
223
|
+
|
224
|
+
## Bug fixes:
|
225
|
+
|
226
|
+
* Accept not only /usr/bin/env but also /bin/env in some tests. Pull
|
227
|
+
request #3422 by Yusuke Endoh.
|
228
|
+
* Skip a test that attempts to remove the current directory on Solaris.
|
229
|
+
Pull request #3423 by Yusuke Endoh.
|
230
|
+
* Fix race condition on bundler's parallel installer. Pull request #3440
|
231
|
+
by David Rodríguez.
|
232
|
+
* Fix platform comparison check in #contains_requirable_file?. Pull
|
233
|
+
request #3495 by Benoit Daloze.
|
234
|
+
* Improve missing spec error. Pull request #3559 by Luis Sagastume.
|
235
|
+
* Fix hidden bundler template installation from rubygems updater. Pull
|
236
|
+
request #3674 by David Rodríguez.
|
237
|
+
* Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
|
238
|
+
* Correct conflict list when uninstallation is prevented. Pull request
|
239
|
+
#2973 by David Rodríguez.
|
240
|
+
* Fix error when trying to find bundler with a deleted "working directo….
|
241
|
+
Pull request #3090 by Luis Sagastume.
|
242
|
+
* Fix -I require priority. Pull request #3124 by David Rodríguez.
|
243
|
+
* Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
|
244
|
+
Rodríguez.
|
245
|
+
|
246
|
+
## Deprecations:
|
247
|
+
|
248
|
+
* Set deprecation warning on query command. Pull request #2967 by Luis
|
249
|
+
Sagastume.
|
250
|
+
|
251
|
+
## Breaking changes:
|
252
|
+
|
253
|
+
* Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
|
254
|
+
* Minitest cleanup. Pull request #3445 by David Rodríguez.
|
255
|
+
* Remove `builder` gem requirement for `gem regenerate_index`. Pull
|
256
|
+
request #3552 by David Rodríguez.
|
257
|
+
* Remove modelines for consistency. Pull request #3714 by David Rodríguez.
|
258
|
+
* Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
|
259
|
+
Bart de Water.
|
260
|
+
* Remove Gem module deprecated methods. Pull request #3101 by Luis
|
261
|
+
Sagastume.
|
262
|
+
* Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
|
263
|
+
* Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
|
264
|
+
Sagastume.
|
265
|
+
* Remove dependency installer deprecated methods. Pull request #3106 by
|
266
|
+
Luis Sagastume.
|
267
|
+
* Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
|
268
|
+
Sagastume.
|
269
|
+
* Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
|
270
|
+
Sagastume.
|
271
|
+
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
|
272
|
+
Luis Sagastume.
|
273
|
+
* Remove source_exception from Gem::Exception. Pull request #3112 by Luis
|
274
|
+
Sagastume.
|
275
|
+
* Requiring rubygems/source_specific_file is deprecated, remove it. Pull
|
276
|
+
request #3114 by Luis Sagastume.
|
277
|
+
|
278
|
+
# 3.1.4 / 2020-06-03
|
279
|
+
|
280
|
+
## Enhancements:
|
281
|
+
|
282
|
+
* Deprecate rubyforge_project attribute only during build
|
283
|
+
time. Pull request #3609 by Josef Šimánek.
|
284
|
+
* Update links. Pull request #3610 by Josef Šimánek.
|
285
|
+
* Run CI at 3.1 branch head as well. Pull request #3677 by Josef Šimánek.
|
286
|
+
* Remove failing ubuntu-rvm CI flow. Pull request #3611 by
|
287
|
+
Josef Šimánek.
|
288
|
+
|
289
|
+
# 3.1.3 / 2020-05-05
|
290
|
+
|
291
|
+
## Enhancements:
|
292
|
+
|
293
|
+
* Resolver: require NameTuple before use. Pull request #3171 by Olle
|
294
|
+
Jonsson.
|
295
|
+
* Use absolute paths with autoload. Pull request #3100 by David Rodríguez.
|
296
|
+
* Avoid changing $SOURCE_DATE_EPOCH. Pull request #3088 by Ellen Marie
|
297
|
+
Dash.
|
298
|
+
* Use Bundler 2.1.4. Pull request #3072 by Hiroshi SHIBATA.
|
299
|
+
* Add tests to check if Gem.ruby_version works with ruby git master.
|
300
|
+
Pull request #3049 by Yusuke Endoh.
|
301
|
+
|
302
|
+
## Bug fixes:
|
303
|
+
|
304
|
+
* Fix platform comparison check in #contains_requirable_file?. Pull
|
305
|
+
request #3495 by Benoit Daloze.
|
306
|
+
* Improve gzip errors logging. Pull request #3485 by David Rodríguez.
|
307
|
+
* Fix incorrect `gem uninstall --all` message. Pull request #3483 by David
|
308
|
+
Rodríguez.
|
309
|
+
* Fix incorrect bundler version being required. Pull request #3458 by
|
310
|
+
David Rodríguez.
|
311
|
+
* Fix gem install from a gemdeps file with complex dependencies.
|
312
|
+
Pull request #3054 by Luis Sagastume.
|
313
|
+
|
314
|
+
# 3.1.2 / 2019-12-20
|
315
|
+
|
316
|
+
## Enhancements:
|
7
317
|
|
8
318
|
* Restore non prompting `gem update --system` behavior. Pull request #3040
|
9
319
|
by David Rodríguez.
|
@@ -13,29 +323,26 @@ Minor enhancements:
|
|
13
323
|
Pull request #3042 by David Rodríguez.
|
14
324
|
* Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
|
15
325
|
|
16
|
-
Bug fixes:
|
326
|
+
## Bug fixes:
|
17
327
|
|
18
328
|
* Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
|
19
329
|
* Fix `gem update --system --force`. Pull request #3035 by David
|
20
330
|
Rodríguez.
|
21
331
|
* Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
|
22
332
|
|
23
|
-
|
333
|
+
# 3.1.1 / 2019-12-16
|
24
334
|
|
25
|
-
Bug fixes:
|
335
|
+
## Bug fixes:
|
26
336
|
|
27
337
|
* Vendor Bundler 2.1.0 again. The version of Bundler with
|
28
338
|
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
|
29
339
|
SHIBATA Hiroshi.
|
30
340
|
|
31
|
-
|
341
|
+
# 3.1.0 / 2019-12-16
|
32
342
|
|
33
|
-
|
343
|
+
## Enhancements:
|
34
344
|
|
35
345
|
* Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
|
36
|
-
|
37
|
-
Minor enhancements:
|
38
|
-
|
39
346
|
* Check for rubygems.org typo squatting sources. Pull request #2999 by
|
40
347
|
Luis Sagastume.
|
41
348
|
* Refactor remote fetcher. Pull request #3017 by David Rodríguez.
|
@@ -47,22 +354,25 @@ Minor enhancements:
|
|
47
354
|
* Use bundler to manage development dependencies. Pull request #3012 by
|
48
355
|
David Rodríguez.
|
49
356
|
|
50
|
-
Bug fixes:
|
357
|
+
## Bug fixes:
|
51
358
|
|
52
359
|
* Remove unnecessary executable flags. Pull request #2982 by David
|
53
360
|
Rodríguez.
|
54
361
|
* Remove configuration that contained a typo. Pull request #2989 by David
|
55
362
|
Rodríguez.
|
56
363
|
|
57
|
-
|
364
|
+
## Deprecations:
|
58
365
|
|
59
|
-
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
60
366
|
* Deprecate `gem generate_index --modern` and `gem generate_index
|
61
367
|
--no-modern`. Pull request #2992 by David Rodríguez.
|
62
368
|
|
63
|
-
|
369
|
+
## Breaking changes:
|
370
|
+
|
371
|
+
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
372
|
+
|
373
|
+
# 3.1.0.pre3 / 2019-11-11
|
64
374
|
|
65
|
-
|
375
|
+
## Enhancements:
|
66
376
|
|
67
377
|
* Fix gem pristine not accounting for user installed gems. Pull request
|
68
378
|
#2914 by Luis Sagastume.
|
@@ -81,18 +391,18 @@ Minor enhancements:
|
|
81
391
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
82
392
|
#2985 by MSP-Greg.
|
83
393
|
|
84
|
-
|
394
|
+
# 3.1.0.pre2 / 2019-10-15
|
85
395
|
|
86
|
-
|
396
|
+
## Enhancements:
|
87
397
|
|
88
398
|
* Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
|
89
399
|
Boussier.
|
90
400
|
* Time comparison around date boundary. Pull request #2944 by Nobuyoshi
|
91
401
|
Nakada.
|
92
402
|
|
93
|
-
|
403
|
+
# 3.1.0.pre1 / 2019-10-08
|
94
404
|
|
95
|
-
|
405
|
+
## Enhancements:
|
96
406
|
|
97
407
|
* Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
|
98
408
|
* [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
|
@@ -103,9 +413,6 @@ Major enhancements:
|
|
103
413
|
Chaofan.
|
104
414
|
* Autoswitch to exact bundler version if present. Pull request #2583 by
|
105
415
|
David Rodríguez.
|
106
|
-
|
107
|
-
Minor enhancements:
|
108
|
-
|
109
416
|
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
110
417
|
request #2554 by Grey Baker.
|
111
418
|
* Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
|
@@ -225,7 +532,7 @@ Minor enhancements:
|
|
225
532
|
Berger.
|
226
533
|
* Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
|
227
534
|
|
228
|
-
Bug fixes:
|
535
|
+
## Bug fixes:
|
229
536
|
|
230
537
|
* Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
|
231
538
|
* Remove unused empty sources array. Pull request #2598 by Aaron
|
@@ -258,29 +565,33 @@ Bug fixes:
|
|
258
565
|
* Fix cryptic error on local and ignore-dependencies combination. Pull
|
259
566
|
request #2650 by David Rodríguez.
|
260
567
|
|
261
|
-
|
568
|
+
## Deprecations:
|
262
569
|
|
263
|
-
*
|
570
|
+
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
571
|
+
#2857 by SHIBATA Hiroshi.
|
572
|
+
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
573
|
+
Sagastume.
|
574
|
+
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
575
|
+
Rodríguez.
|
576
|
+
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
577
|
+
Ondruch.
|
578
|
+
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
579
|
+
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
264
580
|
Sagastume.
|
581
|
+
|
582
|
+
## Breaking changes:
|
583
|
+
|
265
584
|
* Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
|
266
585
|
* Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
|
267
586
|
ITO.
|
268
587
|
* Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
|
269
|
-
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
270
|
-
#2857 by SHIBATA Hiroshi.
|
271
|
-
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
272
|
-
Sagastume.
|
273
588
|
* Remove conflict.rb code that was supposed to be removed in Rubygems 3.
|
274
589
|
Pull request #2802 by Luis Sagastume.
|
275
|
-
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
276
|
-
Rodríguez.
|
277
590
|
* Compatibility cleanups. Pull request #2754 by David Rodríguez.
|
278
591
|
* Remove `others_possible` activation request param. Pull request #2747 by
|
279
592
|
David Rodríguez.
|
280
593
|
* Remove dependency installer deprecated code. Pull request #2740 by Luis
|
281
594
|
Sagastume.
|
282
|
-
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
283
|
-
Ondruch.
|
284
595
|
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
|
285
596
|
by SHIBATA Hiroshi.
|
286
597
|
* Skip deprecation warning during specs. Pull request #2718 by David
|
@@ -289,34 +600,36 @@ Compatibility changes:
|
|
289
600
|
* Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
|
290
601
|
* Removed needless environmental variable for Travis CI. Pull request
|
291
602
|
#2685 by SHIBATA Hiroshi.
|
292
|
-
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
293
603
|
* Removing yaml require. Pull request #2538 by Luciano Sousa.
|
294
|
-
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
295
|
-
Sagastume.
|
296
604
|
|
297
|
-
|
605
|
+
# 3.0.8 / 2020-02-19
|
298
606
|
|
299
|
-
|
300
|
-
|
301
|
-
*
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
*
|
607
|
+
## Bug fixes:
|
608
|
+
|
609
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
610
|
+
Nobuyoshi Nakada.
|
611
|
+
|
612
|
+
# 3.0.7 / 2020-02-18
|
613
|
+
|
614
|
+
## Bug fixes:
|
615
|
+
|
616
|
+
* Fix underscore version selection for bundler #2908 by David Rodríguez.
|
617
|
+
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
618
|
+
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
619
|
+
Pull request #2782 by Luis Sagastume.
|
620
|
+
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
621
|
+
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
622
|
+
request #2894 by Alexander Pakulov.
|
310
623
|
|
311
|
-
|
624
|
+
# 3.0.6 / 2019-08-17
|
312
625
|
|
313
|
-
Bug fixes:
|
626
|
+
## Bug fixes:
|
314
627
|
|
315
628
|
* Revert #2813. It broke the compatibility with 3.0.x versions.
|
316
629
|
|
317
|
-
|
630
|
+
# 3.0.5 / 2019-08-16
|
318
631
|
|
319
|
-
|
632
|
+
## Enhancements:
|
320
633
|
|
321
634
|
* Use env var to configure api key on push. Pull request #2559 by Luis
|
322
635
|
Sagastume.
|
@@ -351,7 +664,7 @@ Minor enhancements:
|
|
351
664
|
by Alexander Pakulov.
|
352
665
|
* Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
|
353
666
|
|
354
|
-
Bug fixes:
|
667
|
+
## Bug fixes:
|
355
668
|
|
356
669
|
* Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
|
357
670
|
MSP-Greg.
|
@@ -367,9 +680,9 @@ Bug fixes:
|
|
367
680
|
* Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
|
368
681
|
Hiroshi.
|
369
682
|
|
370
|
-
|
683
|
+
# 3.0.4 / 2019-06-14
|
371
684
|
|
372
|
-
|
685
|
+
## Enhancements:
|
373
686
|
|
374
687
|
* Add support for TruffleRuby #2612 by Benoit Daloze
|
375
688
|
* Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
|
@@ -406,7 +719,7 @@ Minor enhancements:
|
|
406
719
|
request #2777 by Yusuke Endoh.
|
407
720
|
* Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
|
408
721
|
|
409
|
-
Bug fixes:
|
722
|
+
## Bug fixes:
|
410
723
|
|
411
724
|
* Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
|
412
725
|
* Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
|
@@ -422,11 +735,10 @@ Bug fixes:
|
|
422
735
|
#2732 by Alex Junger.
|
423
736
|
* Fix TODOs. Pull request #2748 by David Rodríguez.
|
424
737
|
|
425
|
-
|
738
|
+
# 3.0.3 / 2019-03-05
|
426
739
|
|
427
740
|
Security fixes:
|
428
741
|
|
429
|
-
* Fixed following vulnerabilities:
|
430
742
|
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
431
743
|
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
432
744
|
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
@@ -434,14 +746,14 @@ Security fixes:
|
|
434
746
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
435
747
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
436
748
|
|
437
|
-
|
749
|
+
# 3.0.2 / 2019-01-01
|
438
750
|
|
439
|
-
|
751
|
+
## Enhancements:
|
440
752
|
|
441
753
|
* Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
|
442
754
|
* Fix document flag description. Pull request #2555 by Luis Sagastume.
|
443
755
|
|
444
|
-
Bug fixes:
|
756
|
+
## Bug fixes:
|
445
757
|
|
446
758
|
* Fix tests when ruby --program-suffix is used without rubygems
|
447
759
|
--format-executable. Pull request #2549 by Jeremy Evans.
|
@@ -451,9 +763,9 @@ Bug fixes:
|
|
451
763
|
Fukumori.
|
452
764
|
* Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
|
453
765
|
|
454
|
-
|
766
|
+
# 3.0.1 / 2018-12-23
|
455
767
|
|
456
|
-
Bug fixes:
|
768
|
+
## Bug fixes:
|
457
769
|
|
458
770
|
* Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
|
459
771
|
* Dup the Dir.home string before passing it on. Pull request #2545 by
|
@@ -462,9 +774,9 @@ Bug fixes:
|
|
462
774
|
by SHIBATA Hiroshi.
|
463
775
|
* Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
|
464
776
|
|
465
|
-
|
777
|
+
# 3.0.0 / 2018-12-19
|
466
778
|
|
467
|
-
|
779
|
+
## Enhancements:
|
468
780
|
|
469
781
|
* S3 source. Pull request #1690 by Aditya Prakash.
|
470
782
|
* Download gems with threads. Pull request #1898 by André Arko.
|
@@ -472,9 +784,6 @@ Major enhancements:
|
|
472
784
|
* [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
|
473
785
|
Chaofan.
|
474
786
|
* Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
|
475
|
-
|
476
|
-
Minor enhancements:
|
477
|
-
|
478
787
|
* Don't treat inaccessible working directories as build failures. Pull
|
479
788
|
request #1135 by Pete.
|
480
789
|
* Remove useless directory parameter from builders .build methods.
|
@@ -501,7 +810,7 @@ Minor enhancements:
|
|
501
810
|
Swandale.
|
502
811
|
* Add Gem.operating_system_defaults to allow packagers to override
|
503
812
|
defaults. Pull request #2116 by Vít Ondruch.
|
504
|
-
* Update for
|
813
|
+
* Update for compatibility with new minitest. Pull request #2118 by
|
505
814
|
MSP-Greg.
|
506
815
|
* Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
|
507
816
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
@@ -533,11 +842,11 @@ Minor enhancements:
|
|
533
842
|
SHIBATA Hiroshi.
|
534
843
|
* Add Rake task to install dev dependencies. Pull request #2173 by Ellen
|
535
844
|
Marie Dash.
|
536
|
-
* Add new sections to the README and
|
845
|
+
* Add new sections to the README and explanation of what RubyGems is.
|
537
846
|
Pull request #2174 by Colby Swandale.
|
538
847
|
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
|
539
848
|
SHIBATA Hiroshi.
|
540
|
-
* Ignore
|
849
|
+
* Ignore performance test of version regexp pattern. Pull request #2179 by
|
541
850
|
SHIBATA Hiroshi.
|
542
851
|
* Ignore .DS_Store files in the update_manifest task. Pull request #2199
|
543
852
|
by Colby Swandale.
|
@@ -632,7 +941,7 @@ Minor enhancements:
|
|
632
941
|
* Support the environment without OpenSSL. Pull request #2528 by SHIBATA
|
633
942
|
Hiroshi.
|
634
943
|
|
635
|
-
Bug fixes:
|
944
|
+
## Bug fixes:
|
636
945
|
|
637
946
|
* Fix undefined method error when printing alert. Pull request #1884 by
|
638
947
|
Robert Ross.
|
@@ -685,7 +994,7 @@ Bug fixes:
|
|
685
994
|
* Fix tests when --program-suffix and similar ruby configure options are
|
686
995
|
used. Pull request #2529 by Jeremy Evans.
|
687
996
|
|
688
|
-
|
997
|
+
## Breaking changes:
|
689
998
|
|
690
999
|
* IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
|
691
1000
|
Hiroshi.
|
@@ -738,44 +1047,20 @@ Compatibility changes:
|
|
738
1047
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
739
1048
|
major versions. Pull request #2515 by Colby Swandale.
|
740
1049
|
|
741
|
-
|
742
|
-
|
743
|
-
* Add Rubocop. Pull request #2250 by Colby Swandale.
|
744
|
-
* Removed explicitly declaration of thread library. Pull request #2324 by
|
745
|
-
SHIBATA Hiroshi.
|
746
|
-
* Remove Trailing whitespace with rubocop. Pull request #2394 by SHIBATA
|
747
|
-
Hiroshi.
|
748
|
-
* Update rubocop and also use correct pessimistic version. Pull request
|
749
|
-
#2404 by Colby Swandale.
|
750
|
-
* Enable more rubocop rules. Pull request #2435 by Ellen Marie Dash.
|
751
|
-
* Fix and lock rubocop. Pull request #2465 by David Rodríguez.
|
752
|
-
* Add a rubocop binstub. Pull request #2468 by David Rodríguez.
|
753
|
-
* Restore the `rubocop` task. Pull request #2470 by David Rodríguez.
|
754
|
-
* Remove trailing blank lines. Pull request #2471 by David Rodríguez.
|
755
|
-
* Remove empty lines around method bodies. Pull request #2473 by David
|
756
|
-
Rodríguez.
|
757
|
-
* Enable Style/MethodDefParentheses in Rubocop. Pull request #2478 by
|
758
|
-
Colby Swandale.
|
759
|
-
* Enable Style/MultilineIfThen in Rubocop. Pull request #2479 by Luis
|
760
|
-
Sagastume.
|
761
|
-
* Remove trailing 'then' from generated code. Pull request #2480 by Luis
|
762
|
-
Sagastume.
|
763
|
-
|
764
|
-
=== 2.7.10 / 2019-06-14
|
1050
|
+
# 2.7.10 / 2019-06-14
|
765
1051
|
|
766
|
-
|
1052
|
+
## Enhancements:
|
767
1053
|
|
768
1054
|
* Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
|
769
1055
|
by David Rodríguez.
|
770
1056
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
|
771
1057
|
Pull request #2515 by Colby Swandale.
|
772
|
-
+ Update for
|
1058
|
+
+ Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
|
773
1059
|
|
774
|
-
|
1060
|
+
# 2.7.9 / 2019-03-05
|
775
1061
|
|
776
1062
|
Security fixes:
|
777
1063
|
|
778
|
-
* Fixed following vulnerabilities:
|
779
1064
|
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
780
1065
|
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
781
1066
|
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
@@ -783,9 +1068,9 @@ Security fixes:
|
|
783
1068
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
784
1069
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
785
1070
|
|
786
|
-
|
1071
|
+
# 2.7.8 / 2018-11-02
|
787
1072
|
|
788
|
-
|
1073
|
+
## Enhancements:
|
789
1074
|
|
790
1075
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
791
1076
|
request #2230 by Samuel Giddins.
|
@@ -804,7 +1089,7 @@ Minor enhancements:
|
|
804
1089
|
* Improve bindir flag description. Pull request #2383 by Luis Sagastume.
|
805
1090
|
* Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
|
806
1091
|
|
807
|
-
Bug fixes:
|
1092
|
+
## Bug fixes:
|
808
1093
|
|
809
1094
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
810
1095
|
request #2229 by Elias Hernandis.
|
@@ -817,9 +1102,9 @@ Bug fixes:
|
|
817
1102
|
* Gem::Version should handle nil like it used to before. Pull request
|
818
1103
|
#2363 by Luis Sagastume.
|
819
1104
|
|
820
|
-
|
1105
|
+
# 2.7.7 / 2018-05-08
|
821
1106
|
|
822
|
-
|
1107
|
+
## Enhancements:
|
823
1108
|
|
824
1109
|
* [RequestSet] Only suggest a gem version with an installable platform.
|
825
1110
|
Pull request #2175 by Samuel Giddins.
|
@@ -834,7 +1119,7 @@ Minor enhancements:
|
|
834
1119
|
Sagastume.
|
835
1120
|
* Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
|
836
1121
|
|
837
|
-
Bug fixes:
|
1122
|
+
## Bug fixes:
|
838
1123
|
|
839
1124
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
840
1125
|
#2115 by MSP-Greg.
|
@@ -847,16 +1132,19 @@ Bug fixes:
|
|
847
1132
|
* Fix path checks for case insensitive filesystem. Pull request #2211 by
|
848
1133
|
Lars Kanis.
|
849
1134
|
|
850
|
-
|
1135
|
+
## Deprecations:
|
851
1136
|
|
852
1137
|
* Deprecate unused code before removing them at #1524. Pull request #2197
|
853
1138
|
by SHIBATA Hiroshi.
|
854
1139
|
* Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
|
855
1140
|
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
|
856
1141
|
SHIBATA Hiroshi.
|
1142
|
+
|
1143
|
+
## Breaking changes:
|
1144
|
+
|
857
1145
|
* Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
|
858
1146
|
|
859
|
-
|
1147
|
+
# 2.7.6 / 2018-02-16
|
860
1148
|
|
861
1149
|
Security fixes:
|
862
1150
|
|
@@ -865,7 +1153,7 @@ Security fixes:
|
|
865
1153
|
* Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
|
866
1154
|
Fixed by Jonathan Claudius.
|
867
1155
|
* Strictly interpret octal fields in tar headers.
|
868
|
-
|
1156
|
+
Discovered by plover, fixed by Samuel Giddins.
|
869
1157
|
* Raise a security error when there are duplicate files in a package.
|
870
1158
|
Discovered by plover, fixed by Samuel Giddins.
|
871
1159
|
* Enforce URL validation on spec homepage attribute.
|
@@ -875,9 +1163,9 @@ Security fixes:
|
|
875
1163
|
* Prevent Path Traversal issue during gem installation.
|
876
1164
|
Discovered by nmalkin.
|
877
1165
|
|
878
|
-
|
1166
|
+
# 2.7.5
|
879
1167
|
|
880
|
-
Bug fixes:
|
1168
|
+
## Bug fixes:
|
881
1169
|
|
882
1170
|
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
883
1171
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
@@ -889,9 +1177,9 @@ Bug fixes:
|
|
889
1177
|
* Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
|
890
1178
|
* Fix undefined method error when printing alert #1884 by Robert Ross.
|
891
1179
|
|
892
|
-
|
1180
|
+
# 2.7.4
|
893
1181
|
|
894
|
-
Bug fixes:
|
1182
|
+
## Bug fixes:
|
895
1183
|
|
896
1184
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
897
1185
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
@@ -900,9 +1188,9 @@ Bug fixes:
|
|
900
1188
|
* Handle environment that does not have `flock` system call. Pull request
|
901
1189
|
#2107 by SHIBATA Hiroshi.
|
902
1190
|
|
903
|
-
|
1191
|
+
# 2.7.3
|
904
1192
|
|
905
|
-
|
1193
|
+
## Enhancements:
|
906
1194
|
|
907
1195
|
* Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
|
908
1196
|
* Add --[no-]check-development option to cleanup command. Pull request
|
@@ -915,7 +1203,7 @@ Minor enhancements:
|
|
915
1203
|
* Remove multi load warning from plugins documentation. Pull request #2103
|
916
1204
|
by Thibault Jouan.
|
917
1205
|
|
918
|
-
Bug fixes:
|
1206
|
+
## Bug fixes:
|
919
1207
|
|
920
1208
|
* Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
|
921
1209
|
Dash.
|
@@ -934,33 +1222,30 @@ Bug fixes:
|
|
934
1222
|
* Use setup command --regenerate-binstubs option flag. Pull request #2099
|
935
1223
|
by Thibault Jouan.
|
936
1224
|
|
937
|
-
|
1225
|
+
# 2.7.2
|
938
1226
|
|
939
|
-
Bug fixes:
|
1227
|
+
## Bug fixes:
|
940
1228
|
|
941
1229
|
* Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
|
942
1230
|
Hiroshi.
|
943
1231
|
* Added workaround for non-git environment. Pull request #2066 by SHIBATA
|
944
1232
|
Hiroshi.
|
945
1233
|
|
946
|
-
|
1234
|
+
# 2.7.1 (2017-11-03)
|
947
1235
|
|
948
|
-
Bug fixes:
|
1236
|
+
## Bug fixes:
|
949
1237
|
|
950
1238
|
* Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
|
951
1239
|
Samuel Giddins.
|
952
1240
|
|
953
|
-
|
1241
|
+
# 2.7.0 (2017-11-02)
|
954
1242
|
|
955
|
-
|
1243
|
+
## Enhancements:
|
956
1244
|
|
957
1245
|
* Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
|
958
1246
|
* Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
|
959
1247
|
* Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
|
960
1248
|
* Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
|
961
|
-
|
962
|
-
Minor enhancements:
|
963
|
-
|
964
1249
|
* Added message to uninstall command for gem that is not installed. Pull
|
965
1250
|
request #1979 by anant anil kolvankar.
|
966
1251
|
* Add --trust-policy option to unpack command. Pull request #1718 by
|
@@ -1046,11 +1331,8 @@ Minor enhancements:
|
|
1046
1331
|
* Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
|
1047
1332
|
Dash.
|
1048
1333
|
|
1049
|
-
|
1334
|
+
## Deprecations:
|
1050
1335
|
|
1051
|
-
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
1052
|
-
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
1053
|
-
by SHIBATA Hiroshi.
|
1054
1336
|
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
1055
1337
|
Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
|
1056
1338
|
* Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
|
@@ -1058,10 +1340,16 @@ Compatibility changes:
|
|
1058
1340
|
* Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
|
1059
1341
|
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
1060
1342
|
Pull request #1731 by Jon Moss.
|
1343
|
+
|
1344
|
+
## Breaking changes:
|
1345
|
+
|
1346
|
+
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
1347
|
+
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
1348
|
+
by SHIBATA Hiroshi.
|
1061
1349
|
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
1062
1350
|
#1796 by Matej.
|
1063
1351
|
|
1064
|
-
Bug fixes:
|
1352
|
+
## Bug fixes:
|
1065
1353
|
|
1066
1354
|
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
|
1067
1355
|
MSP-Greg.
|
@@ -1114,7 +1402,7 @@ Bug fixes:
|
|
1114
1402
|
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
1115
1403
|
Pull request #1738 by Samuel Giddins.
|
1116
1404
|
|
1117
|
-
|
1405
|
+
# 2.6.14 / 2017-10-09
|
1118
1406
|
|
1119
1407
|
Security fixes:
|
1120
1408
|
|
@@ -1122,7 +1410,7 @@ Security fixes:
|
|
1122
1410
|
See CVE-2017-0903 for full details.
|
1123
1411
|
Fix by Aaron Patterson.
|
1124
1412
|
|
1125
|
-
|
1413
|
+
# 2.6.13 / 2017-08-27
|
1126
1414
|
|
1127
1415
|
Security fixes:
|
1128
1416
|
|
@@ -1136,9 +1424,9 @@ Security fixes:
|
|
1136
1424
|
to overwrite arbitrary files. (CVE-2017-0901)
|
1137
1425
|
Discovered by Yusuke Endoh, fix by Samuel Giddins.
|
1138
1426
|
|
1139
|
-
|
1427
|
+
# 2.6.12 / 2017-04-30
|
1140
1428
|
|
1141
|
-
Bug fixes:
|
1429
|
+
## Bug fixes:
|
1142
1430
|
|
1143
1431
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
1144
1432
|
request #1880 by Kazuaki Matsuo.
|
@@ -1159,9 +1447,9 @@ Bug fixes:
|
|
1159
1447
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
1160
1448
|
request #1910 by Samuel Giddins.
|
1161
1449
|
|
1162
|
-
|
1450
|
+
# 2.6.11 / 2017-03-16
|
1163
1451
|
|
1164
|
-
Bug fixes:
|
1452
|
+
## Bug fixes:
|
1165
1453
|
|
1166
1454
|
* Fixed broken tests on ruby-head. Pull request #1841 by
|
1167
1455
|
SHIBATA Hiroshi.
|
@@ -1172,16 +1460,16 @@ Bug fixes:
|
|
1172
1460
|
* Use improved resolver sorting algorithm. Pull request #1856 by
|
1173
1461
|
Samuel Giddins.
|
1174
1462
|
|
1175
|
-
|
1463
|
+
# 2.6.10 / 2017-01-23
|
1176
1464
|
|
1177
|
-
Bug fixes:
|
1465
|
+
## Bug fixes:
|
1178
1466
|
|
1179
1467
|
* Fix `require` calling the wrong `gem` method when it is overridden.
|
1180
1468
|
Pull request #1822 by Samuel Giddins.
|
1181
1469
|
|
1182
|
-
|
1470
|
+
# 2.6.9 / 2017-01-20
|
1183
1471
|
|
1184
|
-
Bug fixes:
|
1472
|
+
## Bug fixes:
|
1185
1473
|
|
1186
1474
|
* Allow initializing versions with empty strings. Pull request #1767 by
|
1187
1475
|
Luis Sagastume.
|
@@ -1195,9 +1483,9 @@ Bug fixes:
|
|
1195
1483
|
* RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
|
1196
1484
|
Jonsson.
|
1197
1485
|
|
1198
|
-
|
1486
|
+
# 2.6.8 / 2016-10-29
|
1199
1487
|
|
1200
|
-
Bug fixes:
|
1488
|
+
## Bug fixes:
|
1201
1489
|
|
1202
1490
|
* Improve SSL verification failure message. Pull request #1751
|
1203
1491
|
by Eric Hodel.
|
@@ -1206,9 +1494,9 @@ Bug fixes:
|
|
1206
1494
|
* Update vendored Molinillo to 0.5.3. Pull request #1763 by
|
1207
1495
|
Samuel Giddins.
|
1208
1496
|
|
1209
|
-
|
1497
|
+
# 2.6.7 / 2016-09-26
|
1210
1498
|
|
1211
|
-
Bug fixes:
|
1499
|
+
## Bug fixes:
|
1212
1500
|
|
1213
1501
|
* Install native extensions in the correct location when using the
|
1214
1502
|
`--user-install` flag. Pull request #1683 by Noah Kantrowitz.
|
@@ -1220,24 +1508,24 @@ Bug fixes:
|
|
1220
1508
|
* Update vendored Molinillo to 0.5.1. Pull request #1714 by
|
1221
1509
|
Samuel Giddins.
|
1222
1510
|
|
1223
|
-
|
1511
|
+
# 2.6.6 / 2016-06-22
|
1224
1512
|
|
1225
|
-
Bug fixes:
|
1513
|
+
## Bug fixes:
|
1226
1514
|
|
1227
1515
|
* Sort installed versions to make sure we install the latest version when
|
1228
1516
|
running `gem update --system`. As a one-time fix, run
|
1229
1517
|
`gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
|
1230
1518
|
|
1231
|
-
|
1519
|
+
# 2.6.5 / 2016-06-21
|
1232
1520
|
|
1233
|
-
|
1521
|
+
## Enhancements:
|
1234
1522
|
|
1235
1523
|
* Support for unified Integer in Ruby 2.4. Pull request #1618
|
1236
1524
|
by SHIBATA Hiroshi.
|
1237
1525
|
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
1238
1526
|
Pull request #1638 by Samuel Giddins.
|
1239
1527
|
|
1240
|
-
Bug fixes:
|
1528
|
+
## Bug fixes:
|
1241
1529
|
|
1242
1530
|
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
1243
1531
|
request #1605 by Daniel Berger.
|
@@ -1257,16 +1545,16 @@ Bug fixes:
|
|
1257
1545
|
Pull request #1644 by Charles Oliver Nutter.
|
1258
1546
|
* Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
|
1259
1547
|
|
1260
|
-
|
1548
|
+
# 2.6.4 / 2016-04-26
|
1261
1549
|
|
1262
|
-
|
1550
|
+
## Enhancements:
|
1263
1551
|
|
1264
1552
|
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
|
1265
1553
|
by Chris Charabaruk.
|
1266
1554
|
* Use File.symlink on MS Windows if supported. Pull request #1418
|
1267
1555
|
by Nobuyoshi Nakada.
|
1268
1556
|
|
1269
|
-
Bug fixes:
|
1557
|
+
## Bug fixes:
|
1270
1558
|
|
1271
1559
|
* Redact uri password from error output when gem fetch fails. Pull request
|
1272
1560
|
#1565 by Brian Fletcher.
|
@@ -1274,9 +1562,9 @@ Bug fixes:
|
|
1274
1562
|
* Escape user-supplied content served on web pages by `gem server` to avoid
|
1275
1563
|
potential XSS vulnerabilities. Samuel Giddins.
|
1276
1564
|
|
1277
|
-
|
1565
|
+
# 2.6.3 / 2016-04-05
|
1278
1566
|
|
1279
|
-
|
1567
|
+
## Enhancements:
|
1280
1568
|
|
1281
1569
|
* Lazily calculate Gem::LoadError exception messages. Pull request #1550
|
1282
1570
|
by Aaron Patterson.
|
@@ -1287,7 +1575,7 @@ Minor enhancements:
|
|
1287
1575
|
* Show default gems when using "gem list". Pull request #1570 by Luis
|
1288
1576
|
Sagastume.
|
1289
1577
|
|
1290
|
-
Bug fixes:
|
1578
|
+
## Bug fixes:
|
1291
1579
|
|
1292
1580
|
* Stub ordering should be consistent regardless of how cache is populated.
|
1293
1581
|
Pull request #1552 by Aaron Patterson.
|
@@ -1303,9 +1591,9 @@ Bug fixes:
|
|
1303
1591
|
Giddins.
|
1304
1592
|
* Allow two digit version numbers in the tests. Pull request #1575 by unak.
|
1305
1593
|
|
1306
|
-
|
1594
|
+
# 2.6.2 / 2016-03-12
|
1307
1595
|
|
1308
|
-
Bug fixes:
|
1596
|
+
## Bug fixes:
|
1309
1597
|
|
1310
1598
|
* Fix wrong version of gem activation for bin stub. Pull request #1527 by
|
1311
1599
|
Aaron Patterson.
|
@@ -1316,9 +1604,9 @@ Bug fixes:
|
|
1316
1604
|
#1538 by Charles Oliver Nutter.
|
1317
1605
|
|
1318
1606
|
|
1319
|
-
|
1607
|
+
# 2.6.1 / 2016-02-28
|
1320
1608
|
|
1321
|
-
Bug fixes:
|
1609
|
+
## Bug fixes:
|
1322
1610
|
|
1323
1611
|
* Ensure `default_path` and `home` are set for paths. Pull request #1513
|
1324
1612
|
by Aaron Patterson.
|
@@ -1327,9 +1615,9 @@ Bug fixes:
|
|
1327
1615
|
* Fix invalid gem file preventing gem install from working. Pull request
|
1328
1616
|
#1499 by Luis Sagastume.
|
1329
1617
|
|
1330
|
-
|
1618
|
+
# 2.6.0 / 2016-02-26
|
1331
1619
|
|
1332
|
-
|
1620
|
+
## Enhancements:
|
1333
1621
|
|
1334
1622
|
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
1335
1623
|
metadata setting. Pull request #1486 by Josh Lane.
|
@@ -1340,7 +1628,7 @@ Minor enhancements:
|
|
1340
1628
|
* Allow specifying gem requirements via env variables. Pull request #1472
|
1341
1629
|
by Samuel E. Giddins.
|
1342
1630
|
|
1343
|
-
Bug fixes:
|
1631
|
+
## Bug fixes:
|
1344
1632
|
|
1345
1633
|
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
1346
1634
|
Pull request #1485 by Josh Lane.
|
@@ -1366,9 +1654,9 @@ Bug fixes:
|
|
1366
1654
|
* Find_files only from loaded_gems when using gemdeps. Pull request #1277
|
1367
1655
|
by Michal Papis.
|
1368
1656
|
|
1369
|
-
|
1657
|
+
# 2.5.2 / 2016-01-31
|
1370
1658
|
|
1371
|
-
Bug fixes:
|
1659
|
+
## Bug fixes:
|
1372
1660
|
|
1373
1661
|
* Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
|
1374
1662
|
Zuijlen.
|
@@ -1384,7 +1672,7 @@ Bug fixes:
|
|
1384
1672
|
* Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
|
1385
1673
|
Giddins.
|
1386
1674
|
|
1387
|
-
|
1675
|
+
## Enhancements:
|
1388
1676
|
|
1389
1677
|
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
|
1390
1678
|
Sagastume.
|
@@ -1409,9 +1697,9 @@ Minor enhancements:
|
|
1409
1697
|
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
1410
1698
|
#1408 by Samuel E. Giddins.
|
1411
1699
|
|
1412
|
-
|
1700
|
+
# 2.5.1 / 2015-12-10
|
1413
1701
|
|
1414
|
-
Bug fixes:
|
1702
|
+
## Bug fixes:
|
1415
1703
|
|
1416
1704
|
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
1417
1705
|
Issue #1369 reported by Ryan Atball (among others).
|
@@ -1440,9 +1728,9 @@ Bug fixes:
|
|
1440
1728
|
Kudo.
|
1441
1729
|
* Fixed double word typo. Pull request #1411 by Jake Worth.
|
1442
1730
|
|
1443
|
-
|
1731
|
+
# 2.5.0 / 2015-11-03
|
1444
1732
|
|
1445
|
-
|
1733
|
+
## Enhancements:
|
1446
1734
|
|
1447
1735
|
* Added the Gem::Licenses class which provides a set of standard license
|
1448
1736
|
identifiers as set by spdx.org. This is now used by the
|
@@ -1451,8 +1739,6 @@ Major enhancements:
|
|
1451
1739
|
|
1452
1740
|
Pull request #1249 by Kyle Mitchell.
|
1453
1741
|
|
1454
|
-
Minor enhancements:
|
1455
|
-
|
1456
1742
|
* Use Molinillo as the resolver library. This is the same resolver as used by
|
1457
1743
|
Bundler. Pull request #1189 by Samuel E. Giddins.
|
1458
1744
|
* Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
|
@@ -1514,7 +1800,7 @@ Minor enhancements:
|
|
1514
1800
|
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
|
1515
1801
|
Agis Anastasopoulos.
|
1516
1802
|
|
1517
|
-
Bug fixes:
|
1803
|
+
## Bug fixes:
|
1518
1804
|
|
1519
1805
|
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
1520
1806
|
Pull request #1171 by Arthur Nogueira Neves
|
@@ -1571,22 +1857,22 @@ Bug fixes:
|
|
1571
1857
|
* RubyGems handles invalid config files better. Pull request #1367 by Agis
|
1572
1858
|
Anastasopoulos.
|
1573
1859
|
|
1574
|
-
|
1860
|
+
# 2.4.8 / 2015-06-08
|
1575
1861
|
|
1576
|
-
Bug fixes:
|
1862
|
+
## Bug fixes:
|
1577
1863
|
|
1578
1864
|
* Tightened API endpoint checks for CVE-2015-3900
|
1579
1865
|
|
1580
|
-
|
1866
|
+
# 2.4.7 / 2015-05-14
|
1581
1867
|
|
1582
|
-
Bug fixes:
|
1868
|
+
## Bug fixes:
|
1583
1869
|
|
1584
1870
|
* Limit API endpoint to original security domain for CVE-2015-3900.
|
1585
1871
|
Fix by claudijd
|
1586
1872
|
|
1587
|
-
|
1873
|
+
# 2.4.6 / 2015-02-05
|
1588
1874
|
|
1589
|
-
Bug fixes:
|
1875
|
+
## Bug fixes:
|
1590
1876
|
|
1591
1877
|
* Fixed resolving gems with both upper and lower requirement boundaries.
|
1592
1878
|
Issue #1141 by Jakub Jirutka.
|
@@ -1611,9 +1897,9 @@ Bug fixes:
|
|
1611
1897
|
Ondruch.
|
1612
1898
|
* Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
|
1613
1899
|
|
1614
|
-
|
1900
|
+
# 2.4.5 / 2014-12-03
|
1615
1901
|
|
1616
|
-
Bug fixes:
|
1902
|
+
## Bug fixes:
|
1617
1903
|
|
1618
1904
|
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
1619
1905
|
request #1060 by unak.
|
@@ -1653,27 +1939,27 @@ Bug fixes:
|
|
1653
1939
|
* Fixed grouped expression warning. Pull request #1081 by André Arko.
|
1654
1940
|
* Fixed handling of platforms when writing lockfiles.
|
1655
1941
|
|
1656
|
-
|
1942
|
+
# 2.4.4 / 2014-11-12
|
1657
1943
|
|
1658
|
-
Bug fixes:
|
1944
|
+
## Bug fixes:
|
1659
1945
|
|
1660
1946
|
* Add alternate Root CA for upcoming certificate change. Fixes #1050 by
|
1661
1947
|
Protosac
|
1662
1948
|
|
1663
|
-
|
1949
|
+
# 2.4.3 / 2014-11-10
|
1664
1950
|
|
1665
|
-
Bug fixes:
|
1951
|
+
## Bug fixes:
|
1666
1952
|
|
1667
1953
|
* Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
|
1668
1954
|
* Fix typo in platform= docs. Pull request #1048 by @jasonrclark
|
1669
1955
|
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
1670
1956
|
Protosac
|
1671
1957
|
|
1672
|
-
|
1958
|
+
# 2.4.2 / 2014-10-01
|
1673
1959
|
|
1674
1960
|
This release was sponsored by Ruby Central.
|
1675
1961
|
|
1676
|
-
Bug fixes:
|
1962
|
+
## Bug fixes:
|
1677
1963
|
|
1678
1964
|
* RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
|
1679
1965
|
voelzemo.
|
@@ -1707,16 +1993,16 @@ Bug fixes:
|
|
1707
1993
|
* RubyGems now fails immediately when a git reference cannot be found instead
|
1708
1994
|
of spewing git errors. Issue #1031 by Michal Papis
|
1709
1995
|
|
1710
|
-
|
1996
|
+
# 2.4.1 / 2014-07-17
|
1711
1997
|
|
1712
|
-
Bug fixes:
|
1998
|
+
## Bug fixes:
|
1713
1999
|
|
1714
2000
|
* RubyGems can now be updated on Ruby implementations that do not support
|
1715
2001
|
vendordir in RbConfig::CONFIG. Issue #974 by net1957.
|
1716
2002
|
|
1717
|
-
|
2003
|
+
# 2.4.0 / 2014-07-16
|
1718
2004
|
|
1719
|
-
|
2005
|
+
## Enhancements:
|
1720
2006
|
|
1721
2007
|
* The contents command now supports a --show-install-dir option that shows
|
1722
2008
|
only the directory the gem is installed in. Feature request #966 by Akinori
|
@@ -1727,7 +2013,7 @@ Minor enhancements:
|
|
1727
2013
|
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
1728
2014
|
Marcus Rückert.
|
1729
2015
|
|
1730
|
-
Bug fixes:
|
2016
|
+
## Bug fixes:
|
1731
2017
|
|
1732
2018
|
* Kernel#gem now respects the prerelease flag when activating gems.
|
1733
2019
|
Previously this behavior was undefined which could lead to bugs when a
|
@@ -1777,9 +2063,9 @@ Bug fixes:
|
|
1777
2063
|
during gem resolution.
|
1778
2064
|
|
1779
2065
|
|
1780
|
-
|
2066
|
+
# 2.3.0 / 2014-06-10
|
1781
2067
|
|
1782
|
-
|
2068
|
+
## Enhancements:
|
1783
2069
|
|
1784
2070
|
* Added the `open` command which allows you to inspect the source of a gem
|
1785
2071
|
using your editor.
|
@@ -1820,7 +2106,7 @@ Minor enhancements:
|
|
1820
2106
|
* RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
|
1821
2107
|
Benjamin Fleischer.
|
1822
2108
|
|
1823
|
-
Bug fixes:
|
2109
|
+
## Bug fixes:
|
1824
2110
|
|
1825
2111
|
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
1826
2112
|
up gem suggestions. Pull request #808 by Aaron Patterson.
|
@@ -1900,29 +2186,29 @@ Bug fixes:
|
|
1900
2186
|
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
1901
2187
|
#852 by Vít Ondruch.
|
1902
2188
|
|
1903
|
-
|
2189
|
+
# 2.2.5 / 2015-06-08
|
1904
2190
|
|
1905
|
-
Bug fixes:
|
2191
|
+
## Bug fixes:
|
1906
2192
|
|
1907
2193
|
* Tightened API endpoint checks for CVE-2015-3900
|
1908
2194
|
|
1909
|
-
|
2195
|
+
# 2.2.4 / 2015-05-14
|
1910
2196
|
|
1911
|
-
Bug fixes:
|
2197
|
+
## Bug fixes:
|
1912
2198
|
|
1913
2199
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
1914
2200
|
Fix by claudijd
|
1915
2201
|
|
1916
|
-
|
2202
|
+
# 2.2.3 / 2014-12-21
|
1917
2203
|
|
1918
|
-
Bug fixes:
|
2204
|
+
## Bug fixes:
|
1919
2205
|
|
1920
2206
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
1921
2207
|
Fixes #1050 by Protosac
|
1922
2208
|
|
1923
|
-
|
2209
|
+
# 2.2.2 / 2014-02-05
|
1924
2210
|
|
1925
|
-
Bug fixes:
|
2211
|
+
## Bug fixes:
|
1926
2212
|
|
1927
2213
|
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
1928
2214
|
Nakada.
|
@@ -1947,9 +2233,9 @@ Bug fixes:
|
|
1947
2233
|
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
1948
2234
|
Sergio Rubio.
|
1949
2235
|
|
1950
|
-
|
2236
|
+
# 2.2.1 / 2014-01-06
|
1951
2237
|
|
1952
|
-
Bug fixes:
|
2238
|
+
## Bug fixes:
|
1953
2239
|
|
1954
2240
|
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
1955
2241
|
#767 by Diego Viola.
|
@@ -1975,12 +2261,12 @@ Bug fixes:
|
|
1975
2261
|
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
1976
2262
|
request #763 by James Mead
|
1977
2263
|
|
1978
|
-
|
2264
|
+
# 2.2.0 / 2013-12-26
|
1979
2265
|
|
1980
2266
|
Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
|
1981
2267
|
RubyGems as it was prepared for the 2.2.0 release.
|
1982
2268
|
|
1983
|
-
|
2269
|
+
## Enhancements:
|
1984
2270
|
|
1985
2271
|
* RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
|
1986
2272
|
rubygems executables are started and uses the found dependencies. This
|
@@ -2003,8 +2289,6 @@ Major enhancements:
|
|
2003
2289
|
The default sharing location may be configured by RubyGems packagers through
|
2004
2290
|
Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
|
2005
2291
|
|
2006
|
-
Minor enhancements:
|
2007
|
-
|
2008
2292
|
* RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
|
2009
2293
|
prevent an accidental push to a public repository (such as rubygems.org).
|
2010
2294
|
If you have private gems you should set this value in your gem specification
|
@@ -2050,7 +2334,7 @@ Minor enhancements:
|
|
2050
2334
|
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
2051
2335
|
Request #755 by strzibny.
|
2052
2336
|
|
2053
|
-
Bug fixes:
|
2337
|
+
## Bug fixes:
|
2054
2338
|
|
2055
2339
|
* RubyGems now returns an error status when any file given to `gem which`
|
2056
2340
|
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
@@ -2067,9 +2351,9 @@ Bug fixes:
|
|
2067
2351
|
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
2068
2352
|
Lee.
|
2069
2353
|
|
2070
|
-
|
2354
|
+
# 2.1.11 / 2013-11-12
|
2071
2355
|
|
2072
|
-
Bug fixes:
|
2356
|
+
## Bug fixes:
|
2073
2357
|
|
2074
2358
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
2075
2359
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -2079,9 +2363,9 @@ Bug fixes:
|
|
2079
2363
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
2080
2364
|
Pull Request #706 by akr.
|
2081
2365
|
|
2082
|
-
|
2366
|
+
# 2.1.10 / 2013-10-24
|
2083
2367
|
|
2084
|
-
Bug fixes:
|
2368
|
+
## Bug fixes:
|
2085
2369
|
|
2086
2370
|
* Use class check instead of :version method check when creating Gem::Version
|
2087
2371
|
objects. Fixes #674 by jkanywhere.
|
@@ -2100,18 +2384,18 @@ Bug fixes:
|
|
2100
2384
|
* The --ignore-dependencies option for gem installation works again. Issue
|
2101
2385
|
#695
|
2102
2386
|
|
2103
|
-
|
2387
|
+
# 2.1.9 / 2013-10-14
|
2104
2388
|
|
2105
|
-
Bug fixes:
|
2389
|
+
## Bug fixes:
|
2106
2390
|
|
2107
2391
|
* Reduce sorting when fetching specifications. This speeds up the update and
|
2108
2392
|
outdated commands, and others. Issue #657 by windwiny.
|
2109
2393
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
2110
2394
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
2111
2395
|
|
2112
|
-
|
2396
|
+
# 2.1.8 / 2013-10-10
|
2113
2397
|
|
2114
|
-
Bug fixes:
|
2398
|
+
## Bug fixes:
|
2115
2399
|
|
2116
2400
|
* Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
|
2117
2401
|
* Files starting with "." in the root directory are installed again. Issue
|
@@ -2119,9 +2403,9 @@ Bug fixes:
|
|
2119
2403
|
* The index generator no longer indexes default gems. Issue #661 by
|
2120
2404
|
Jeremy Hinegardner.
|
2121
2405
|
|
2122
|
-
|
2406
|
+
# 2.1.7 / 2013-10-09
|
2123
2407
|
|
2124
|
-
Bug fixes:
|
2408
|
+
## Bug fixes:
|
2125
2409
|
|
2126
2410
|
* `gem sources --list` now displays a list of sources. Pull request #672 by
|
2127
2411
|
Nathan Marley.
|
@@ -2134,9 +2418,9 @@ Bug fixes:
|
|
2134
2418
|
* Expand unpack destination directory. This fixes problems when File.realpath
|
2135
2419
|
is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
|
2136
2420
|
|
2137
|
-
|
2421
|
+
# 2.1.6 / 2013-10-08
|
2138
2422
|
|
2139
|
-
Bug fixes:
|
2423
|
+
## Bug fixes:
|
2140
2424
|
|
2141
2425
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
2142
2426
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -2151,7 +2435,7 @@ Bug fixes:
|
|
2151
2435
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
2152
2436
|
Thomas Sänger.
|
2153
2437
|
|
2154
|
-
|
2438
|
+
# 2.1.5 / 2013-09-24
|
2155
2439
|
|
2156
2440
|
Security fixes:
|
2157
2441
|
|
@@ -2160,25 +2444,25 @@ Security fixes:
|
|
2160
2444
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2161
2445
|
1.8.23.2 (for Ruby 1.9.3).
|
2162
2446
|
|
2163
|
-
|
2447
|
+
# 2.1.4 / 2013-09-17
|
2164
2448
|
|
2165
|
-
Bug fixes:
|
2449
|
+
## Bug fixes:
|
2166
2450
|
|
2167
2451
|
* `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
|
2168
2452
|
#650 by Kyle (remkade).
|
2169
2453
|
* Fixed uninstalling gems installed in the home directory (as in
|
2170
2454
|
`--user-install`). Issue #653 by Lin Jen-Shin.
|
2171
2455
|
|
2172
|
-
|
2456
|
+
# 2.1.3 / 2013-09-12
|
2173
2457
|
|
2174
|
-
Bug fixes:
|
2458
|
+
## Bug fixes:
|
2175
2459
|
|
2176
2460
|
* Gems with files entries starting with "./" no longer install 0 files. Issue
|
2177
2461
|
#644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
|
2178
2462
|
|
2179
|
-
|
2463
|
+
# 2.1.2 / 2013-09-11
|
2180
2464
|
|
2181
|
-
Bug fixes:
|
2465
|
+
## Bug fixes:
|
2182
2466
|
|
2183
2467
|
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
2184
2468
|
request #637 and issue #640 by Charles Nutter.
|
@@ -2187,14 +2471,14 @@ Bug fixes:
|
|
2187
2471
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
2188
2472
|
Issue #643 by Brian Shirai.
|
2189
2473
|
|
2190
|
-
|
2474
|
+
# 2.1.1 / 2013-09-10
|
2191
2475
|
|
2192
|
-
Bug fixes:
|
2476
|
+
## Bug fixes:
|
2193
2477
|
|
2194
2478
|
* Only matching gems matching your local platform are considered for
|
2195
2479
|
installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
|
2196
2480
|
|
2197
|
-
|
2481
|
+
# 2.1.0 / 2013-09-09
|
2198
2482
|
|
2199
2483
|
Security fixes:
|
2200
2484
|
|
@@ -2203,15 +2487,13 @@ Security fixes:
|
|
2203
2487
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2204
2488
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2205
2489
|
|
2206
|
-
|
2490
|
+
## Enhancements:
|
2207
2491
|
|
2208
2492
|
* RubyGems uses a new dependency resolver for gem installation which works
|
2209
2493
|
similar to the bundler resolver. The new resolver can resolve conflicts the
|
2210
2494
|
previous resolver could not and offers improved diagnostics when conflicts
|
2211
2495
|
are discovered.
|
2212
2496
|
|
2213
|
-
Minor enhancements:
|
2214
|
-
|
2215
2497
|
* RubyGems now has improved platform matching for the ARM architecture. Gems
|
2216
2498
|
built with a CPU of "arm" will match any specific ARM CPU. See `gem help
|
2217
2499
|
platform` for further details. Fixes #532 by Kim Burgestrand.
|
@@ -2281,7 +2563,7 @@ Minor enhancements:
|
|
2281
2563
|
still slow, but I see a near 50% improvement for 250 gems on a fast
|
2282
2564
|
connection). See also Gem::Specification::outdated_and_latest_version
|
2283
2565
|
|
2284
|
-
Bug fixes:
|
2566
|
+
## Bug fixes:
|
2285
2567
|
|
2286
2568
|
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
2287
2569
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
@@ -2289,29 +2571,29 @@ Bug fixes:
|
|
2289
2571
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
2290
2572
|
request #622 by Arthur Nogueira Neves
|
2291
2573
|
|
2292
|
-
|
2574
|
+
# 2.0.17 / 2015-06-08
|
2293
2575
|
|
2294
|
-
Bug fixes:
|
2576
|
+
## Bug fixes:
|
2295
2577
|
|
2296
2578
|
* Tightened API endpoint checks for CVE-2015-3900
|
2297
2579
|
|
2298
|
-
|
2580
|
+
# 2.0.16 / 2015-05-14
|
2299
2581
|
|
2300
|
-
Bug fixes:
|
2582
|
+
## Bug fixes:
|
2301
2583
|
|
2302
2584
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
2303
2585
|
Fix by claudijd
|
2304
2586
|
|
2305
|
-
|
2587
|
+
# 2.0.15 / 2014-12-21
|
2306
2588
|
|
2307
|
-
Bug fixes:
|
2589
|
+
## Bug fixes:
|
2308
2590
|
|
2309
2591
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
2310
2592
|
Fixes #1050 by Protosac
|
2311
2593
|
|
2312
|
-
|
2594
|
+
# 2.0.14 / 2013-11-12
|
2313
2595
|
|
2314
|
-
Bug fixes:
|
2596
|
+
## Bug fixes:
|
2315
2597
|
|
2316
2598
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
2317
2599
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -2321,9 +2603,9 @@ Bug fixes:
|
|
2321
2603
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
2322
2604
|
Pull Request #706 by akr.
|
2323
2605
|
|
2324
|
-
|
2606
|
+
# 2.0.13 / 2013-10-24
|
2325
2607
|
|
2326
|
-
Bug fixes:
|
2608
|
+
## Bug fixes:
|
2327
2609
|
|
2328
2610
|
* Use class check instead of :version method check when creating Gem::Version
|
2329
2611
|
objects. Fixes #674 by jkanywhere.
|
@@ -2332,16 +2614,16 @@ Bug fixes:
|
|
2332
2614
|
* Fix updating gems which have multiple platforms. Issue #693 by Ookami
|
2333
2615
|
Kenrou.
|
2334
2616
|
|
2335
|
-
|
2617
|
+
# 2.0.12 / 2013-10-14
|
2336
2618
|
|
2337
|
-
Bug fixes:
|
2619
|
+
## Bug fixes:
|
2338
2620
|
|
2339
2621
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
2340
2622
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
2341
2623
|
|
2342
|
-
|
2624
|
+
# 2.0.11 / 2013-10-08
|
2343
2625
|
|
2344
|
-
Bug fixes:
|
2626
|
+
## Bug fixes:
|
2345
2627
|
|
2346
2628
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
2347
2629
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -2356,7 +2638,7 @@ Bug fixes:
|
|
2356
2638
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
2357
2639
|
Thomas Sänger.
|
2358
2640
|
|
2359
|
-
|
2641
|
+
# 2.0.10 / 2013-09-24
|
2360
2642
|
|
2361
2643
|
Security fixes:
|
2362
2644
|
|
@@ -2365,16 +2647,16 @@ Security fixes:
|
|
2365
2647
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2366
2648
|
1.8.23.2 (for Ruby 1.9.3).
|
2367
2649
|
|
2368
|
-
|
2650
|
+
# 2.0.9 / 2013-09-13
|
2369
2651
|
|
2370
|
-
Bug fixes:
|
2652
|
+
## Bug fixes:
|
2371
2653
|
|
2372
2654
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
2373
2655
|
Issue #643 by Brian Shirai.
|
2374
2656
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
2375
2657
|
request #622 by Arthur Nogueira Neves
|
2376
2658
|
|
2377
|
-
|
2659
|
+
# 2.0.8 / 2013-09-09
|
2378
2660
|
|
2379
2661
|
Security fixes:
|
2380
2662
|
|
@@ -2383,14 +2665,14 @@ Security fixes:
|
|
2383
2665
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2384
2666
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2385
2667
|
|
2386
|
-
Bug fixes:
|
2668
|
+
## Bug fixes:
|
2387
2669
|
|
2388
2670
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
2389
2671
|
#625 by elarkin
|
2390
2672
|
|
2391
|
-
|
2673
|
+
# 2.0.7 / 2013-08-15
|
2392
2674
|
|
2393
|
-
Bug fixes:
|
2675
|
+
## Bug fixes:
|
2394
2676
|
|
2395
2677
|
* Extensions may now be built in parallel (therefore gems may be installed in
|
2396
2678
|
parallel). Bug #607 by Hemant Kumar.
|
@@ -2400,9 +2682,9 @@ Bug fixes:
|
|
2400
2682
|
Patches by Yui Naruse and Koichi Sasada.
|
2401
2683
|
* Fixed documentation for Kernel#require.
|
2402
2684
|
|
2403
|
-
|
2685
|
+
# 2.0.6 / 2013-07-24
|
2404
2686
|
|
2405
|
-
Bug fixes:
|
2687
|
+
## Bug fixes:
|
2406
2688
|
|
2407
2689
|
* Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
|
2408
2690
|
#593 by Blargel.
|
@@ -2414,14 +2696,14 @@ Bug fixes:
|
|
2414
2696
|
Bug #599 by Chris Riesbeck
|
2415
2697
|
* Restored default of remote search to `gem search`.
|
2416
2698
|
|
2417
|
-
|
2699
|
+
# 2.0.5 / 2013-07-11
|
2418
2700
|
|
2419
2701
|
* Fixed building of extensions that run ruby in their makefiles. Bug #589 by
|
2420
2702
|
Zachary Salzbank.
|
2421
2703
|
|
2422
|
-
|
2704
|
+
# 2.0.4 / 2013-07-09
|
2423
2705
|
|
2424
|
-
Bug fixes:
|
2706
|
+
## Bug fixes:
|
2425
2707
|
|
2426
2708
|
* Fixed error caused by gem install not finding the right platform for your
|
2427
2709
|
platform. Bug #576 by John Anderson
|
@@ -2460,9 +2742,9 @@ Bug fixes:
|
|
2460
2742
|
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
2461
2743
|
r41148 by Yui Naruse
|
2462
2744
|
|
2463
|
-
|
2745
|
+
# 2.0.3 / 2013-03-11
|
2464
2746
|
|
2465
|
-
|
2747
|
+
## Bug fixes:
|
2466
2748
|
* Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
|
2467
2749
|
#506 by André Arko
|
2468
2750
|
* Use File.realpath to remove extra / while checking if files are
|
@@ -2477,17 +2759,17 @@ Bug fixes:
|
|
2477
2759
|
* Fixed default gem key and cert locations. Pull request #511 by Samuel
|
2478
2760
|
Cochran.
|
2479
2761
|
|
2480
|
-
|
2762
|
+
# 2.0.2 / 2013-03-06
|
2481
2763
|
|
2482
|
-
|
2764
|
+
## Bug fixes:
|
2483
2765
|
* HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
|
2484
2766
|
upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
|
2485
2767
|
* SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
|
2486
2768
|
* Fixed HTTP to HTTPS upgrade for rubygems.org.
|
2487
2769
|
|
2488
|
-
|
2770
|
+
# 2.0.1 / 2013-03-05
|
2489
2771
|
|
2490
|
-
|
2772
|
+
## Bug fixes:
|
2491
2773
|
* Lazily load RubyGems.org API credentials to avoid failure during
|
2492
2774
|
RubyGems installation. Bug #465 by Isaac Sanders.
|
2493
2775
|
* RubyGems now picks the latest prerelease to install. Fixes bug #468 by
|
@@ -2509,7 +2791,7 @@ Bug fixes:
|
|
2509
2791
|
Ruby bug #7713 by nobu
|
2510
2792
|
* Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
|
2511
2793
|
|
2512
|
-
|
2794
|
+
# 2.0.0 / 2013-02-24
|
2513
2795
|
|
2514
2796
|
RubyGems 2.0 includes several new features and many breaking changes. Some of
|
2515
2797
|
these changes will cause existing software to break. These changes are a
|
@@ -2521,7 +2803,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
|
|
2521
2803
|
|
2522
2804
|
Changes since RubyGems 1.8.25 (including past pre-releases):
|
2523
2805
|
|
2524
|
-
|
2806
|
+
## Breaking changes:
|
2525
2807
|
|
2526
2808
|
* Deprecated Gem.unresolved_deps in favor of
|
2527
2809
|
Gem::Specification.unresolved_deps
|
@@ -2543,7 +2825,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2543
2825
|
* Removed support for Ruby 1.9.1
|
2544
2826
|
* Removed many deprecated methods
|
2545
2827
|
|
2546
|
-
|
2828
|
+
## Enhancements:
|
2547
2829
|
|
2548
2830
|
* Improved support for default gems shipping with ruby 2.0.0+
|
2549
2831
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -2561,8 +2843,6 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2561
2843
|
file (Gemfile, Isolate, gem.deps.rb).
|
2562
2844
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2563
2845
|
to autodetect (current and parent directories are searched).
|
2564
|
-
|
2565
|
-
* Minor enhancements:
|
2566
2846
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2567
2847
|
#419 by Erik Hollensbe
|
2568
2848
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
@@ -2605,7 +2885,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2605
2885
|
GEM_HOME
|
2606
2886
|
* When building gems with non-world-readable files a warning is shown.
|
2607
2887
|
|
2608
|
-
|
2888
|
+
## Bug fixes:
|
2609
2889
|
* Gem.refresh now maintains the active gem list. Clearing the list would
|
2610
2890
|
cause double-loads which would cause other bugs. Pull Request #427 by
|
2611
2891
|
Jeremy Evans
|
@@ -2662,7 +2942,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2662
2942
|
|
2663
2943
|
Changes since RubyGems 2.0.0.rc.2:
|
2664
2944
|
|
2665
|
-
|
2945
|
+
## Bug fixes:
|
2666
2946
|
* Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
|
2667
2947
|
#450 by Jeremy Kemper
|
2668
2948
|
* Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
|
@@ -2675,48 +2955,48 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
2675
2955
|
* Fixed verification of gems at LowSecurity due to missing signature.
|
2676
2956
|
Thanks to André Arko.
|
2677
2957
|
|
2678
|
-
|
2958
|
+
# 2.0.0.rc.2 / 2013-02-08
|
2679
2959
|
|
2680
|
-
|
2960
|
+
## Bug fixes:
|
2681
2961
|
* Fixed signature verification of gems which was broken only on master.
|
2682
2962
|
Thanks to Brian Buchanan.
|
2683
2963
|
* Proper exceptions are raised when verifying an unsigned gem. Thanks to
|
2684
2964
|
André Arko.
|
2685
2965
|
|
2686
|
-
|
2966
|
+
# 2.0.0.rc.1 / 2013-01-08
|
2687
2967
|
|
2688
|
-
|
2968
|
+
## Enhancements:
|
2689
2969
|
* This release of RubyGems can push gems to rubygems.org. Ordinarily
|
2690
2970
|
prerelease versions of RubyGems cannot push gems.
|
2691
2971
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2692
2972
|
#419 by Erik Hollensbe
|
2693
2973
|
|
2694
|
-
|
2974
|
+
## Bug fixes:
|
2695
2975
|
* Fixed exception raised when attempting to push gems to rubygems.org. Bug
|
2696
2976
|
#418 by André Arko
|
2697
2977
|
* Gem installation will fail if RubyGems cannot load the specification from
|
2698
2978
|
the gem. Bug #419 by Erik Hollensbe
|
2699
2979
|
|
2700
|
-
|
2980
|
+
# 2.0.0.preview2.2 / 2012-12-14
|
2701
2981
|
|
2702
|
-
|
2982
|
+
## Enhancements:
|
2703
2983
|
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
2704
2984
|
* Removed rubyforge page from gem list output
|
2705
2985
|
|
2706
|
-
|
2986
|
+
## Bug fixes:
|
2707
2987
|
* Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
|
2708
2988
|
#413 by Jeremy Kemper.
|
2709
2989
|
|
2710
|
-
|
2990
|
+
# 2.0.0.preview2.1 / 2012-12-08
|
2711
2991
|
|
2712
|
-
|
2992
|
+
## Enhancements:
|
2713
2993
|
* Gem::DependencyInstaller now passes build_args down to the installer.
|
2714
2994
|
Pull Request #412 by Sam Rawlins.
|
2715
2995
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
2716
2996
|
broken. Now you must manually say "yes". Pull Request #406 by Shannon
|
2717
2997
|
Skipper.
|
2718
2998
|
|
2719
|
-
|
2999
|
+
## Bug fixes:
|
2720
3000
|
* RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
|
2721
3001
|
* Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
|
2722
3002
|
* Only update the spec cache when we have permission. Ruby Bug #7509
|
@@ -2728,13 +3008,13 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
2728
3008
|
* gem install now ignores directories that match the gem to install. Bug
|
2729
3009
|
#407 by Santiago Pastorino.
|
2730
3010
|
|
2731
|
-
|
3011
|
+
# 2.0.0.preview2 / 2012-12-01
|
2732
3012
|
|
2733
3013
|
This release contains two commits not present in Ruby 2.0.0.preview2. One
|
2734
3014
|
commit is for ruby 1.8.7 support, the second allows RubyGems to work under
|
2735
3015
|
$SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
2736
3016
|
|
2737
|
-
|
3017
|
+
## Breaking changes:
|
2738
3018
|
|
2739
3019
|
* Deprecated Gem.unresolved_deps in favor of
|
2740
3020
|
Gem::Specification.unresolved_deps
|
@@ -2756,7 +3036,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2756
3036
|
* Removed support for Ruby 1.9.1
|
2757
3037
|
* Removed many deprecated methods
|
2758
3038
|
|
2759
|
-
|
3039
|
+
## Enhancements:
|
2760
3040
|
|
2761
3041
|
* Improved support for default gems shipping with ruby 2.0.0+
|
2762
3042
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -2774,9 +3054,6 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2774
3054
|
file (Gemfile, Isolate, gem.deps.rb).
|
2775
3055
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2776
3056
|
to autodetect (current and parent directories are searched).
|
2777
|
-
|
2778
|
-
* Minor enhancements:
|
2779
|
-
|
2780
3057
|
* Added --only-executables option to `gem pristine`. Fixes #326
|
2781
3058
|
* Added -I flag for 'gem query' to exclude installed items
|
2782
3059
|
* Added Gem.install(name, version=default) for interactive sessions
|
@@ -2810,7 +3087,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2810
3087
|
GEM_HOME
|
2811
3088
|
* When building gems with non-world-readable files a warning is shown.
|
2812
3089
|
|
2813
|
-
|
3090
|
+
## Bug fixes:
|
2814
3091
|
|
2815
3092
|
* Added PID to setup bin_file while installing RubyGems to protect against
|
2816
3093
|
errors. Fixes #328 by ConradIrwin
|
@@ -2851,17 +3128,17 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2851
3128
|
* URI scheme matching is no longer case-sensitive. Fixes #322
|
2852
3129
|
* ext/builder now checks $MAKE as well as $make (okkez)
|
2853
3130
|
|
2854
|
-
|
3131
|
+
# 1.8.29 / 2013-11-23
|
2855
3132
|
|
2856
|
-
Bug fixes:
|
3133
|
+
## Bug fixes:
|
2857
3134
|
|
2858
3135
|
* Fixed installation when the LANG environment variable is empty.
|
2859
3136
|
* Added DigiCert High Assurance EV Root CA to the default SSL certificates for
|
2860
3137
|
cloudfront.
|
2861
3138
|
|
2862
|
-
|
3139
|
+
# 1.8.28 / 2013-10-08
|
2863
3140
|
|
2864
|
-
Bug fixes:
|
3141
|
+
## Bug fixes:
|
2865
3142
|
|
2866
3143
|
* Added the Verisign Class 3 Public Primary Certification Authority G5
|
2867
3144
|
certificate and its intermediary to follow the s3.amazonaws.com certificate
|
@@ -2871,7 +3148,7 @@ Bug fixes:
|
|
2871
3148
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
2872
3149
|
https://rubygems.org. Pull request #673 by Hannes Georg.
|
2873
3150
|
|
2874
|
-
|
3151
|
+
# 1.8.27 / 2013-09-24
|
2875
3152
|
|
2876
3153
|
Security fixes:
|
2877
3154
|
|
@@ -2880,7 +3157,7 @@ Security fixes:
|
|
2880
3157
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2881
3158
|
1.8.23.2 (for Ruby 1.9.3).
|
2882
3159
|
|
2883
|
-
|
3160
|
+
# 1.8.26 / 2013-09-09
|
2884
3161
|
|
2885
3162
|
Security fixes:
|
2886
3163
|
|
@@ -2889,13 +3166,13 @@ Security fixes:
|
|
2889
3166
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2890
3167
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2891
3168
|
|
2892
|
-
Bug fixes:
|
3169
|
+
## Bug fixes:
|
2893
3170
|
|
2894
3171
|
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
2895
3172
|
|
2896
|
-
|
3173
|
+
# 1.8.25 / 2013-01-24
|
2897
3174
|
|
2898
|
-
|
3175
|
+
## Bug fixes:
|
2899
3176
|
* Added 11627 to setup bin_file location to protect against errors. Fixes
|
2900
3177
|
#328 by ConradIrwin
|
2901
3178
|
* Specification#ruby_code didn't handle Requirement with multiple
|
@@ -2904,14 +3181,14 @@ Bug fixes:
|
|
2904
3181
|
* Fix missing load_yaml in YAML-related requirement.rb code.
|
2905
3182
|
* Manually backport encoding-aware YAML gemspec
|
2906
3183
|
|
2907
|
-
|
3184
|
+
# 1.8.24 / 2012-04-27
|
2908
3185
|
|
2909
|
-
|
3186
|
+
## Bug fixes:
|
2910
3187
|
|
2911
3188
|
* Install the .pem files properly. Fixes #320
|
2912
3189
|
* Remove OpenSSL dependency from the http code path
|
2913
3190
|
|
2914
|
-
|
3191
|
+
# 1.8.23.2 / 2013-09-24
|
2915
3192
|
|
2916
3193
|
Security fixes:
|
2917
3194
|
|
@@ -2920,7 +3197,7 @@ Security fixes:
|
|
2920
3197
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2921
3198
|
1.8.23.2 (for Ruby 1.9.3).
|
2922
3199
|
|
2923
|
-
|
3200
|
+
# 1.8.23.1 / 2013-09-09
|
2924
3201
|
|
2925
3202
|
Security fixes:
|
2926
3203
|
|
@@ -2929,7 +3206,7 @@ Security fixes:
|
|
2929
3206
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2930
3207
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2931
3208
|
|
2932
|
-
|
3209
|
+
# 1.8.23 / 2012-04-19
|
2933
3210
|
|
2934
3211
|
This release increases the security used when RubyGems is talking to
|
2935
3212
|
an https server. If you use a custom RubyGems server over SSL, this
|
@@ -2945,53 +3222,53 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
|
|
2945
3222
|
certificate checks, but this is not recommended.
|
2946
3223
|
|
2947
3224
|
|
2948
|
-
|
3225
|
+
Security fixes:
|
2949
3226
|
* Disallow redirects from https to http
|
2950
3227
|
* Turn on verification of server SSL certs
|
2951
3228
|
|
2952
|
-
|
3229
|
+
## Enhancements:
|
2953
3230
|
* Add --clear-sources to fetch
|
2954
3231
|
|
2955
|
-
|
3232
|
+
## Bug fixes:
|
2956
3233
|
* Use File.identical? to check if two files are the same.
|
2957
3234
|
* Fixed init_with warning when using psych
|
2958
3235
|
|
2959
|
-
|
3236
|
+
# 1.8.22 / 2012-04-13
|
2960
3237
|
|
2961
|
-
|
3238
|
+
## Bug fixes:
|
2962
3239
|
|
2963
3240
|
* Workaround for psych/syck YAML date parsing issue
|
2964
3241
|
* Don't trust the encoding of ARGV. Fixes #307
|
2965
3242
|
* Quiet default warnings about missing spec variables
|
2966
3243
|
* Read a binary file properly (windows fix)
|
2967
3244
|
|
2968
|
-
|
3245
|
+
# 1.8.21 / 2012-03-22
|
2969
3246
|
|
2970
|
-
|
3247
|
+
## Bug fixes:
|
2971
3248
|
|
2972
3249
|
* Add workaround for buggy yaml output from 1.9.2
|
2973
3250
|
* Force 1.9.1 to remove it's prelude code. Fixes #305
|
2974
3251
|
|
2975
|
-
|
3252
|
+
# 1.8.20 / 2012-03-21
|
2976
3253
|
|
2977
|
-
|
3254
|
+
## Bug fixes:
|
2978
3255
|
|
2979
3256
|
* Add --force to `gem build` to skip validation. Fixes #297
|
2980
3257
|
* Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
|
2981
3258
|
* Treat the source as a proper url base. Fixes #304
|
2982
3259
|
* Warn when updating the specs cache fails. Fixes #300
|
2983
3260
|
|
2984
|
-
|
3261
|
+
# 1.8.19 / 2012-03-14
|
2985
3262
|
|
2986
|
-
|
3263
|
+
## Bug fixes:
|
2987
3264
|
|
2988
3265
|
* Handle loading psych vs syck properly. Fixes #298
|
2989
3266
|
* Make sure Date objects don't leak in via Marshal
|
2990
3267
|
* Perform Date => Time coercion on yaml loading. Fixes #266
|
2991
3268
|
|
2992
|
-
|
3269
|
+
# 1.8.18 / 2012-03-11
|
2993
3270
|
|
2994
|
-
|
3271
|
+
## Bug fixes:
|
2995
3272
|
|
2996
3273
|
* Use Psych API to emit more compatible YAML
|
2997
3274
|
* Download and write inside `gem fetch` directly. Fixes #289
|
@@ -2999,14 +3276,14 @@ certificate checks, but this is not recommended.
|
|
2999
3276
|
* Search everywhere for a spec for `gem spec`. Fixes #288
|
3000
3277
|
* Fix Gem.all_load_path. Fixes #171
|
3001
3278
|
|
3002
|
-
|
3279
|
+
# 1.8.17 / 2012-02-17
|
3003
3280
|
|
3004
|
-
|
3281
|
+
## Enhancements:
|
3005
3282
|
|
3006
3283
|
* Add MacRuby to the list of special cases for platforms (ferrous26)
|
3007
3284
|
* Add a default for where to install rubygems itself
|
3008
3285
|
|
3009
|
-
|
3286
|
+
## Bug fixes:
|
3010
3287
|
|
3011
3288
|
* Fixed gem loading issue caused by dependencies not resolving.
|
3012
3289
|
* Fixed umask error when stdlib is required and unresolved dependencies exist.
|
@@ -3014,57 +3291,59 @@ certificate checks, but this is not recommended.
|
|
3014
3291
|
* Define SUCKAGE better, ie only MRI 1.9.2
|
3015
3292
|
* Propagate env-shebang to the pristine command if set for install.
|
3016
3293
|
|
3017
|
-
|
3294
|
+
# 1.8.16 / 2012-02-12
|
3018
3295
|
|
3019
|
-
|
3296
|
+
## Bug fixes:
|
3020
3297
|
|
3021
3298
|
* Fix gem specification loading when encoding is not UTF-8. #146
|
3022
3299
|
* Allow group writable if umask allows it already.
|
3023
3300
|
* Uniquify the spec list based on directory order priority
|
3024
3301
|
|
3025
|
-
|
3302
|
+
# 1.8.15 / 2012-01-06
|
3026
3303
|
|
3027
|
-
|
3304
|
+
## Bug fixes:
|
3028
3305
|
|
3029
3306
|
* Don't eager load yaml, it creates a bad loop. Fixes #256
|
3030
3307
|
|
3031
|
-
|
3308
|
+
# 1.8.14 / 2012-01-05
|
3032
3309
|
|
3033
|
-
|
3310
|
+
## Bug fixes:
|
3034
3311
|
|
3035
3312
|
* Ignore old/bad cache data in Version
|
3036
3313
|
* Make sure our YAML workarounds are loaded properly. Fixes #250.
|
3037
3314
|
|
3038
|
-
|
3315
|
+
# 1.8.13 / 2011-12-21
|
3039
3316
|
|
3040
|
-
|
3317
|
+
## Bug fixes:
|
3041
3318
|
|
3042
3319
|
* Check loaded_specs properly when trying to satisfy a dep
|
3043
3320
|
|
3044
|
-
|
3321
|
+
## Enhancements:
|
3045
3322
|
|
3046
3323
|
* Remove using #loaded_path? for performance
|
3047
3324
|
* Remove Zlib workaround for Windows build.
|
3048
3325
|
|
3049
|
-
|
3326
|
+
# 1.8.12 / 2011-12-02
|
3327
|
+
|
3328
|
+
## Bug fixes:
|
3050
3329
|
|
3051
|
-
* Bug fix:
|
3052
3330
|
* Handle more cases where Syck's DefaultKey showed up in requirements
|
3053
3331
|
and wasn't cleaned out.
|
3054
3332
|
|
3055
|
-
|
3333
|
+
# 1.8.11 / 2011-10-03
|
3334
|
+
|
3335
|
+
## Bug fixes:
|
3056
3336
|
|
3057
|
-
* Bug fix:
|
3058
3337
|
* Deprecate was moved to Gem::Deprecate to stop polluting the top-level
|
3059
3338
|
namespace.
|
3060
3339
|
|
3061
|
-
|
3340
|
+
# 1.8.10 / 2011-08-25
|
3062
3341
|
|
3063
3342
|
RubyGems 1.8.10 contains a security fix that prevents malicious gems from
|
3064
3343
|
executing code when their specification is loaded. See
|
3065
3344
|
https://github.com/rubygems/rubygems/pull/165 for details.
|
3066
3345
|
|
3067
|
-
|
3346
|
+
## Bug fixes:
|
3068
3347
|
|
3069
3348
|
* RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
|
3070
3349
|
and %q to prevent code injection. Issue #165 by Postmodern
|
@@ -3075,21 +3354,21 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3075
3354
|
* Fixed Syck DefaultKey infecting ruby-format specifications.
|
3076
3355
|
* `gem uninstall a b` no longer stops if gem "a" is not installed.
|
3077
3356
|
|
3078
|
-
|
3357
|
+
# 1.8.9 / 2011-08-23
|
3079
3358
|
|
3080
|
-
|
3359
|
+
## Bug fixes:
|
3081
3360
|
|
3082
3361
|
* Fixed uninstalling multiple gems using `gem uninstall`
|
3083
3362
|
* Gem.use_paths splatted to take multiple paths! Issue #148
|
3084
3363
|
|
3085
|
-
|
3364
|
+
# 1.8.8 / 2011-08-11
|
3086
3365
|
|
3087
|
-
|
3366
|
+
## Bug fixes:
|
3088
3367
|
* The encoding of a gem's YAML spec is now UTF-8. Issue #149
|
3089
3368
|
|
3090
|
-
|
3369
|
+
# 1.8.7 / 2011-08-04
|
3091
3370
|
|
3092
|
-
|
3371
|
+
## Bug fixes:
|
3093
3372
|
* Added missing require for `gem uninstall --format-executable`
|
3094
3373
|
* The correct name of the executable being uninstalled is now displayed with
|
3095
3374
|
--format-executable
|
@@ -3101,14 +3380,14 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3101
3380
|
* Gem repository directories are no longer created world-writable. Patch by
|
3102
3381
|
Sakuro OZAWA. Ruby Bug #4930
|
3103
3382
|
|
3104
|
-
|
3383
|
+
# 1.8.6 / 2011-07-25
|
3105
3384
|
|
3106
|
-
|
3385
|
+
## Enhancements:
|
3107
3386
|
|
3108
3387
|
* Add autorequires and delay startup of RubyGems until require is called.
|
3109
3388
|
See Ruby bug #4962
|
3110
3389
|
|
3111
|
-
|
3390
|
+
## Bug fixes:
|
3112
3391
|
|
3113
3392
|
* Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
|
3114
3393
|
* Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
|
@@ -3120,27 +3399,27 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3120
3399
|
* Handle the Syck DefaultKey problem once and for all.
|
3121
3400
|
* Fix SystemStackError occurring with "gem list -r -a" on 1.9.
|
3122
3401
|
|
3123
|
-
|
3402
|
+
# 1.8.5 / 2011-05-31
|
3124
3403
|
|
3125
|
-
|
3404
|
+
## Enhancements:
|
3126
3405
|
|
3127
3406
|
* The -u option to 'update local source cache' is official deprecated.
|
3128
3407
|
* Remove has_rdoc deprecations from Specification.
|
3129
3408
|
|
3130
|
-
|
3409
|
+
## Bug fixes:
|
3131
3410
|
|
3132
3411
|
* Handle bad specs more gracefully.
|
3133
3412
|
* Reset any Gem paths changed in the installer.
|
3134
3413
|
|
3135
|
-
|
3414
|
+
# 1.8.4 / 2011-05-25
|
3136
3415
|
|
3137
|
-
|
3416
|
+
## Enhancements:
|
3138
3417
|
|
3139
3418
|
* Removed default_executable deprecations from Specification.
|
3140
3419
|
|
3141
|
-
|
3420
|
+
# 1.8.3 / 2011-05-19
|
3142
3421
|
|
3143
|
-
|
3422
|
+
## Bug fixes:
|
3144
3423
|
|
3145
3424
|
* Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
|
3146
3425
|
Shota Fukumori
|
@@ -3149,33 +3428,33 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
3149
3428
|
* Fixed some bad calls left behind after rolling out some refactorings.
|
3150
3429
|
* Syck has a parse error on (good) times output from Psych. (dazuma, et al)
|
3151
3430
|
|
3152
|
-
|
3431
|
+
# 1.8.2 / 2011-05-11
|
3153
3432
|
|
3154
|
-
|
3433
|
+
## Enhancements:
|
3155
3434
|
|
3156
3435
|
* Moved #outdated from OutdatedCommand to Specification (for Isolate).
|
3157
3436
|
* Print out a warning about missing executables.
|
3158
3437
|
|
3159
|
-
|
3438
|
+
## Bug fixes:
|
3160
3439
|
|
3161
3440
|
* Added missing requires to fix various upgrade issues.
|
3162
3441
|
* `gem pristine` respects multiple gem repositories.
|
3163
3442
|
* setup.rb now execs with --disable-gems when possible
|
3164
3443
|
|
3165
|
-
|
3444
|
+
# 1.8.1 / 2011-05-05
|
3166
3445
|
|
3167
|
-
|
3446
|
+
## Enhancements:
|
3168
3447
|
|
3169
3448
|
* Added Gem::Requirement#specific? and Gem::Dependency#specific?
|
3170
3449
|
|
3171
|
-
|
3450
|
+
## Bug fixes:
|
3172
3451
|
|
3173
3452
|
* Typo on Indexer rendered it useless on Windows
|
3174
3453
|
* gem dep can fetch remote dependencies for non-latest gems again.
|
3175
3454
|
* gem uninstall with multiple versions no longer crashes with ArgumentError
|
3176
3455
|
* Always use binary mode for File.open to keep Windows happy
|
3177
3456
|
|
3178
|
-
|
3457
|
+
# 1.8.0 / 2011-04-34
|
3179
3458
|
|
3180
3459
|
This release focused on properly encapsulating functionality. Most of this
|
3181
3460
|
work focused on moving functionality out of Gem::SourceIndex and
|
@@ -3190,7 +3469,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
|
|
3190
3469
|
--build-arg` to regenerate a gem with an extension where it requires special
|
3191
3470
|
build arguments.
|
3192
3471
|
|
3193
|
-
|
3472
|
+
## Deprecations:
|
3194
3473
|
|
3195
3474
|
* DependencyList.from_source_index deprecated the source_index argument.
|
3196
3475
|
* Deprecated Dependency.new(/regex/).
|
@@ -3211,14 +3490,11 @@ build arguments.
|
|
3211
3490
|
* Deprecated all of Gem::GemPathSearcher.
|
3212
3491
|
* Deprecated Gem::Specification#default_executable.
|
3213
3492
|
|
3214
|
-
|
3493
|
+
## Enhancements:
|
3215
3494
|
|
3216
3495
|
* Gem::SourceIndex functionality has been moved to Gem::Specification.
|
3217
3496
|
Gem::SourceIndex is completely disconnected from Gem::Specification
|
3218
3497
|
* Refactored GemPathSearcher entirely out. RIPMF
|
3219
|
-
|
3220
|
-
* 41 minor enhancements:
|
3221
|
-
|
3222
3498
|
* Added CommandManager#unregister_command
|
3223
3499
|
* Added Dependency#matching_specs + to_specs.
|
3224
3500
|
* Added Dependency#to_spec
|
@@ -3266,7 +3542,7 @@ build arguments.
|
|
3266
3542
|
extensions.
|
3267
3543
|
* `gem pristine` can now restore multiple gems.
|
3268
3544
|
|
3269
|
-
|
3545
|
+
## Bug fixes:
|
3270
3546
|
|
3271
3547
|
* DependencyInstaller passed around a source_index instance but used
|
3272
3548
|
Gem.source_index.
|
@@ -3278,15 +3554,15 @@ build arguments.
|
|
3278
3554
|
* `gem pristine` can now restore non-latest gems where the cached gem was
|
3279
3555
|
removed.
|
3280
3556
|
|
3281
|
-
|
3557
|
+
# 1.7.1 / 2011-03-32
|
3282
3558
|
|
3283
|
-
|
3559
|
+
## Bug fixes:
|
3284
3560
|
* Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
|
3285
3561
|
`rake check_manifest` showing a diff would not exit with an error.)
|
3286
3562
|
|
3287
|
-
|
3563
|
+
# 1.7.0 / 2011-03-32
|
3288
3564
|
|
3289
|
-
|
3565
|
+
## Deprecations:
|
3290
3566
|
* Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
|
3291
3567
|
cache.
|
3292
3568
|
* Deprecated RemoteFetcher#open_uri_or_path.
|
@@ -3298,7 +3574,7 @@ build arguments.
|
|
3298
3574
|
test_suite_file(=).
|
3299
3575
|
* Deprecated Specification#has_rdoc= and default_executable=
|
3300
3576
|
|
3301
|
-
|
3577
|
+
## Enhancements:
|
3302
3578
|
* Added stupid simple deprecation module.
|
3303
3579
|
* Added --spec option to `gem unpack` to output a gem's original metadata
|
3304
3580
|
* Added packaging option to Specification#validate
|
@@ -3330,7 +3606,7 @@ build arguments.
|
|
3330
3606
|
* UpdateCommand#gems_to_update now returns (name, version) pairs.
|
3331
3607
|
* UpdateCommand#which_to_update now takes an optional system argument.
|
3332
3608
|
|
3333
|
-
|
3609
|
+
## Bug fixes:
|
3334
3610
|
* Added missing remote fetcher require to pristine command (aarnell)
|
3335
3611
|
* Building gems now checks to ensure all required fields are non-nil
|
3336
3612
|
* Fix option parser when summary is nil.
|
@@ -3346,17 +3622,17 @@ build arguments.
|
|
3346
3622
|
Elias Baixas
|
3347
3623
|
* `gem update` now uniq's command line arguments.
|
3348
3624
|
|
3349
|
-
|
3625
|
+
# 1.6.2 / 2011-03-08
|
3350
3626
|
|
3351
|
-
Bug
|
3627
|
+
## Bug fixes:
|
3352
3628
|
|
3353
3629
|
* require of an activated gem could cause activation conflicts. Fixes
|
3354
3630
|
Bug #29056 by Dave Verwer.
|
3355
3631
|
* `gem outdated` now works with up-to-date prerelease gems.
|
3356
3632
|
|
3357
|
-
|
3633
|
+
# 1.6.1 / 2011-03-03
|
3358
3634
|
|
3359
|
-
Bug
|
3635
|
+
## Bug fixes:
|
3360
3636
|
|
3361
3637
|
* Installation no longer fails when a dependency from a version that won't be
|
3362
3638
|
installed is unsatisfied.
|
@@ -3365,9 +3641,9 @@ Bug Fixes:
|
|
3365
3641
|
* Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
|
3366
3642
|
* Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
|
3367
3643
|
|
3368
|
-
|
3644
|
+
# 1.6.0 / 2011-02-29
|
3369
3645
|
|
3370
|
-
|
3646
|
+
## Deprecations:
|
3371
3647
|
|
3372
3648
|
* RubyGems no longer requires 'thread'. Rails < 3 will need to add require
|
3373
3649
|
'thread' to their applications.
|
@@ -3376,14 +3652,11 @@ Bug Fixes:
|
|
3376
3652
|
* Gem::LoadError#version_requirements has been removed. Use
|
3377
3653
|
Gem::LoadError#requirement.
|
3378
3654
|
|
3379
|
-
|
3655
|
+
## Enhancements:
|
3380
3656
|
|
3381
3657
|
* Rewrote how Gem::activate (gem and require) resolves dependencies.
|
3382
3658
|
* Gem::LoadError#version_requirement has been removed. Use
|
3383
3659
|
Gem::LoadError#requirement.
|
3384
|
-
|
3385
|
-
17 Minor Enhancments:
|
3386
|
-
|
3387
3660
|
* Added --key to `gem push` for setting alternate API keys.
|
3388
3661
|
* Added --format-executable support to gem uninstall.
|
3389
3662
|
* Added Gem::DependencyList#clear.
|
@@ -3407,7 +3680,7 @@ Bug Fixes:
|
|
3407
3680
|
locally cached gem specifications.
|
3408
3681
|
* SpecFetcher.fetch_spec can now take a string source_uri.
|
3409
3682
|
|
3410
|
-
|
3683
|
+
## Bug fixes:
|
3411
3684
|
|
3412
3685
|
* Added missing require of Gem::RemoteFetcher to the unpack command.
|
3413
3686
|
* RubyGems now completely removes a previous install when reinstalling.
|
@@ -3420,28 +3693,28 @@ Bug Fixes:
|
|
3420
3693
|
* Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
|
3421
3694
|
* Gem::Uninstaller now respects --format-executable.
|
3422
3695
|
|
3423
|
-
|
3696
|
+
# 1.5.3 / 2011-02-26
|
3424
3697
|
|
3425
|
-
Bug
|
3698
|
+
## Bug fixes:
|
3426
3699
|
|
3427
3700
|
* Fix for a bug in Syck which causes install failures for gems packaged with
|
3428
3701
|
Psych. Bug #28965 by Aaron Patterson.
|
3429
3702
|
|
3430
|
-
|
3703
|
+
# 1.5.2 / 2011-02-10
|
3431
3704
|
|
3432
|
-
Bug
|
3705
|
+
## Bug fixes:
|
3433
3706
|
|
3434
3707
|
* Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
|
3435
3708
|
|
3436
|
-
|
3709
|
+
# 1.5.1 / 2011-02-09
|
3437
3710
|
|
3438
|
-
|
3711
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
3439
3712
|
|
3440
|
-
|
3713
|
+
## Enhancements:
|
3441
3714
|
|
3442
3715
|
* Added ability to do gem update --system X.Y.Z.
|
3443
3716
|
|
3444
|
-
Bug
|
3717
|
+
## Bug fixes:
|
3445
3718
|
|
3446
3719
|
* Scrub !!null YAML from 1.9.2 (install and build).
|
3447
3720
|
* Added missing requires for user_interaction.
|
@@ -3450,17 +3723,14 @@ Bug Fixes:
|
|
3450
3723
|
* Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
|
3451
3724
|
* RubyGems now enforces ruby 1.8.7 or newer.
|
3452
3725
|
|
3453
|
-
|
3726
|
+
# 1.5.0 / 2011-01-31
|
3454
3727
|
|
3455
|
-
|
3728
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
3456
3729
|
|
3457
|
-
|
3730
|
+
## Enhancements:
|
3458
3731
|
|
3459
3732
|
* Finally fixed all known 1.9.x issues. Upgrading is now possible!
|
3460
3733
|
* Merged huge 1.3.7/ruby-core changes to master.
|
3461
|
-
|
3462
|
-
Minor Enhancements:
|
3463
|
-
|
3464
3734
|
* Added UPGRADING.rdoc to help deal with 1.9 issues.
|
3465
3735
|
* Gem::Format now gives better errors for corrupt gem files and includes paths
|
3466
3736
|
* Pre-install hooks can now abort gem installation by returning false
|
@@ -3472,7 +3742,7 @@ Minor Enhancements:
|
|
3472
3742
|
* Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
|
3473
3743
|
Erik Hollensbe.
|
3474
3744
|
|
3475
|
-
Bug
|
3745
|
+
## Bug fixes:
|
3476
3746
|
|
3477
3747
|
* `gem update` was implicitly doing --system.
|
3478
3748
|
* 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
|
@@ -3484,25 +3754,25 @@ Bug Fixes:
|
|
3484
3754
|
Erik Hollensbe.
|
3485
3755
|
* rubygems-update lists its development dependencies again
|
3486
3756
|
|
3487
|
-
|
3757
|
+
# 1.4.2 / 2011-01-06
|
3488
3758
|
|
3489
|
-
Bug fixes:
|
3759
|
+
## Bug fixes:
|
3490
3760
|
|
3491
3761
|
* Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
|
3492
3762
|
* Fixed Gem.find_files.
|
3493
3763
|
* Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
|
3494
3764
|
|
3495
|
-
|
3765
|
+
# 1.4.1 / 2010-12-31
|
3496
3766
|
|
3497
3767
|
Since apparently nobody reads my emails, blog posts or the README:
|
3498
3768
|
|
3499
3769
|
DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
|
3500
3770
|
|
3501
|
-
Bug
|
3771
|
+
## Bug fixes:
|
3502
3772
|
|
3503
3773
|
* Specification#load was untainting a frozen string (via `gem build *.spec`)
|
3504
3774
|
|
3505
|
-
|
3775
|
+
# 1.4.0 / 2010-12-30
|
3506
3776
|
|
3507
3777
|
NOTE: In order to better maintain rubygems and to get it in sync with
|
3508
3778
|
the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
|
@@ -3512,7 +3782,7 @@ You have been warned!
|
|
3512
3782
|
|
3513
3783
|
NOTE: We've switched to git/github. See README.rdoc for details.
|
3514
3784
|
|
3515
|
-
|
3785
|
+
## Features:
|
3516
3786
|
|
3517
3787
|
* Added --launch option to `gem server`. (gthiesfeld)
|
3518
3788
|
* Added fuzzy name matching on install failures. (gstark/presidentbeef)
|
@@ -3522,7 +3792,7 @@ New features:
|
|
3522
3792
|
* --source is now additive with your current sources.
|
3523
3793
|
Use --clear-sources first to maintain previous behavior.
|
3524
3794
|
|
3525
|
-
Bug fixes:
|
3795
|
+
## Bug fixes:
|
3526
3796
|
|
3527
3797
|
* Dependency "~>"s now respect lower-bound prerelease versions.
|
3528
3798
|
* Ensure the gem directories exist on download.
|
@@ -3533,18 +3803,18 @@ Bug fixes:
|
|
3533
3803
|
Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
|
3534
3804
|
* Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
|
3535
3805
|
|
3536
|
-
|
3806
|
+
# 1.3.7 / 2010-05-13
|
3537
3807
|
|
3538
3808
|
NOTE:
|
3539
3809
|
|
3540
|
-
|
3810
|
+
https://rubygems.org/ is now the default source for downloading gems.
|
3541
3811
|
|
3542
3812
|
You may have sources set via ~/.gemrc, so you should replace
|
3543
|
-
http://gems.rubyforge.org with
|
3813
|
+
http://gems.rubyforge.org with https://rubygems.org/
|
3544
3814
|
|
3545
3815
|
http://gems.rubyforge.org will continue to work for the foreseeable future.
|
3546
3816
|
|
3547
|
-
|
3817
|
+
## Features:
|
3548
3818
|
|
3549
3819
|
* `gem` commands
|
3550
3820
|
* `gem install` and `gem fetch` now report alternate platforms when a
|
@@ -3563,7 +3833,7 @@ New features:
|
|
3563
3833
|
in 1.3.6)
|
3564
3834
|
* RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
|
3565
3835
|
|
3566
|
-
Bug fixes:
|
3836
|
+
## Bug fixes:
|
3567
3837
|
|
3568
3838
|
* Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
|
3569
3839
|
Roger Pack.
|
@@ -3575,9 +3845,9 @@ Bug fixes:
|
|
3575
3845
|
* Gem::PackageTask depends on the package dir like the other rake package
|
3576
3846
|
tasks so dependencies can be hooked up correctly.
|
3577
3847
|
|
3578
|
-
|
3848
|
+
# 1.3.6 / 2010-02-17
|
3579
3849
|
|
3580
|
-
|
3850
|
+
## Features:
|
3581
3851
|
|
3582
3852
|
* `gem` commands
|
3583
3853
|
* Added `gem push` and `gem owner` for interacting with modern/Gemcutter
|
@@ -3589,7 +3859,7 @@ New features:
|
|
3589
3859
|
force rebuilding. Patch #25982 by Akinori MUSHA.
|
3590
3860
|
* Capital letters are now allowed in prerelease versions.
|
3591
3861
|
|
3592
|
-
Bug fixes:
|
3862
|
+
## Bug fixes:
|
3593
3863
|
|
3594
3864
|
* Development deps are no longer added to rubygems-update gem so older
|
3595
3865
|
versions can update successfully.
|
@@ -3608,7 +3878,7 @@ Bug fixes:
|
|
3608
3878
|
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
|
3609
3879
|
Patch #27409 by Jakub Šťastný.
|
3610
3880
|
|
3611
|
-
|
3881
|
+
## Deprecations:
|
3612
3882
|
|
3613
3883
|
* lib/rubygems/timer.rb has been removed.
|
3614
3884
|
* Gem::Dependency#version_requirements is deprecated and will be removed on or
|
@@ -3617,23 +3887,23 @@ Deprecation Notices:
|
|
3617
3887
|
* Gem::manage_gems was removed in 1.3.3.
|
3618
3888
|
* Time::today was removed in 1.3.3.
|
3619
3889
|
|
3620
|
-
|
3890
|
+
# 1.3.5 / 2009-07-21
|
3621
3891
|
|
3622
|
-
Bug fixes:
|
3892
|
+
## Bug fixes:
|
3623
3893
|
|
3624
3894
|
* Fix use of prerelease gems.
|
3625
3895
|
* Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
|
3626
3896
|
|
3627
|
-
|
3897
|
+
## Deprecations:
|
3628
3898
|
|
3629
3899
|
* Bulk index update is no longer supported (the code currently remains, but not
|
3630
3900
|
the tests)
|
3631
3901
|
* Gem::manage_gems was removed in 1.3.3.
|
3632
3902
|
* Time::today was removed in 1.3.3.
|
3633
3903
|
|
3634
|
-
|
3904
|
+
# 1.3.4 / 2009-05-03
|
3635
3905
|
|
3636
|
-
Bug
|
3906
|
+
## Bug fixes:
|
3637
3907
|
|
3638
3908
|
* Fixed various warnings
|
3639
3909
|
* Gem::ruby_version works correctly for 1.8 branch and trunk
|
@@ -3644,16 +3914,16 @@ Bug Fixes:
|
|
3644
3914
|
drives. Bug #25882 by Lars Christensen
|
3645
3915
|
* Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
|
3646
3916
|
|
3647
|
-
|
3917
|
+
## Deprecations:
|
3648
3918
|
|
3649
3919
|
* Bulk index update is no longer supported (the code currently remains, but not
|
3650
3920
|
the tests)
|
3651
3921
|
* Gem::manage_gems was removed in 1.3.3.
|
3652
3922
|
* Time::today was removed in 1.3.3.
|
3653
3923
|
|
3654
|
-
|
3924
|
+
# 1.3.3 / 2009-05-04
|
3655
3925
|
|
3656
|
-
|
3926
|
+
## Features:
|
3657
3927
|
|
3658
3928
|
* `gem server` allows port names (from /etc/services) with --port.
|
3659
3929
|
* `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
|
@@ -3663,7 +3933,7 @@ New Features:
|
|
3663
3933
|
* Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
|
3664
3934
|
* RDoc is now generated regardless of Gem::Specification#has_rdoc?
|
3665
3935
|
|
3666
|
-
Bug
|
3936
|
+
## Bug fixes:
|
3667
3937
|
|
3668
3938
|
* `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
|
3669
3939
|
Eisenberg.
|
@@ -3685,15 +3955,15 @@ Bug Fixes:
|
|
3685
3955
|
* Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
|
3686
3956
|
reported by Alf Mikula.
|
3687
3957
|
|
3688
|
-
|
3958
|
+
## Deprecations:
|
3689
3959
|
|
3690
3960
|
* Gem::manage_gems has been removed.
|
3691
3961
|
* Time::today has been removed early. There was no way to make it warn and be
|
3692
3962
|
easy to override with user code.
|
3693
3963
|
|
3694
|
-
|
3964
|
+
# 1.3.2 / 2009-04-15
|
3695
3965
|
|
3696
|
-
|
3966
|
+
## Features:
|
3697
3967
|
|
3698
3968
|
* RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
|
3699
3969
|
This can be used to add commands (See Gem::CommandManager) or add
|
@@ -3721,7 +3991,7 @@ Select New Features:
|
|
3721
3991
|
* Modern indicies can now be updated incrementally.
|
3722
3992
|
* Legacy indicies can be updated separately from modern.
|
3723
3993
|
|
3724
|
-
|
3994
|
+
## Bug fixes:
|
3725
3995
|
|
3726
3996
|
* Better gem activation error message. Patch #23082.
|
3727
3997
|
* Kernel methods are now private. Patch #20801 by James M. Lawrence.
|
@@ -3747,7 +4017,7 @@ Select Bugs Fixed:
|
|
3747
4017
|
* Deal with extraneous quotation mark when autogenerating .bat file on MS
|
3748
4018
|
Windows. Bug #22712.
|
3749
4019
|
|
3750
|
-
|
4020
|
+
## Deprecations:
|
3751
4021
|
|
3752
4022
|
* Gem::manage_gems has been removed.
|
3753
4023
|
* Time::today will be removed in RubyGems 1.4.
|
@@ -3755,9 +4025,9 @@ Deprecation Notices:
|
|
3755
4025
|
Special thanks to Chad Wooley for backwards compatibility testing and Luis
|
3756
4026
|
Lavena and Daniel Berger for continuing windows support.
|
3757
4027
|
|
3758
|
-
|
4028
|
+
# 1.3.1 / 2008-10-28
|
3759
4029
|
|
3760
|
-
|
4030
|
+
## Bug fixes:
|
3761
4031
|
|
3762
4032
|
* Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
|
3763
4033
|
issues related to no uid support under Windows.
|
@@ -3768,13 +4038,13 @@ Bugs fixed:
|
|
3768
4038
|
* Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
|
3769
4039
|
* Silence PATH warning.
|
3770
4040
|
|
3771
|
-
|
4041
|
+
## Deprecations:
|
3772
4042
|
|
3773
4043
|
* Gem::manage_gems will be removed on or after March 2009.
|
3774
4044
|
|
3775
|
-
|
4045
|
+
# 1.3.0 / 2008-09-25
|
3776
4046
|
|
3777
|
-
|
4047
|
+
## Features:
|
3778
4048
|
|
3779
4049
|
* RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
|
3780
4050
|
stdout is not a TTY, except with --both.
|
@@ -3788,12 +4058,12 @@ New features:
|
|
3788
4058
|
* RubyGems now updates the ri cache when the rdoc gem is installed and
|
3789
4059
|
documentation is generated.
|
3790
4060
|
|
3791
|
-
|
4061
|
+
## Deprecations:
|
3792
4062
|
|
3793
4063
|
* Gem::manage_gems now warns when called. It will be removed on or after March
|
3794
4064
|
2009.
|
3795
4065
|
|
3796
|
-
|
4066
|
+
## Bug fixes:
|
3797
4067
|
|
3798
4068
|
* RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
|
3799
4069
|
Bug #20775 by Hemant Kumar.
|
@@ -3817,7 +4087,7 @@ Bugs Fixed:
|
|
3817
4087
|
* `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
|
3818
4088
|
* Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
|
3819
4089
|
|
3820
|
-
|
4090
|
+
## Enhancements:
|
3821
4091
|
|
3822
4092
|
* `gem help install` now describes _version_ argument to executable stubs
|
3823
4093
|
* `gem help environment` describes environment variables and ~/.gemrc and
|
@@ -3843,9 +4113,9 @@ Other Changes Include:
|
|
3843
4113
|
* test/test_ext_configure_builder.rb
|
3844
4114
|
* Locale-free patch by Yusuke Endoh [ruby-core:17444].
|
3845
4115
|
|
3846
|
-
|
4116
|
+
# 1.2.0 / 2008-06-21
|
3847
4117
|
|
3848
|
-
|
4118
|
+
## Features:
|
3849
4119
|
|
3850
4120
|
* RubyGems no longer performs bulk updates and instead only fetches the gemspec
|
3851
4121
|
files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
|
@@ -3864,7 +4134,7 @@ New features:
|
|
3864
4134
|
* setup.rb now handles --vendor and --destdir for packagers
|
3865
4135
|
* `gem stale` command that lists gems by last access time
|
3866
4136
|
|
3867
|
-
|
4137
|
+
## Bug fixes:
|
3868
4138
|
|
3869
4139
|
* File modes from gems are now honored, patch #19737
|
3870
4140
|
* Marshal Gem::Specification objects from the future can now be loaded.
|
@@ -3879,7 +4149,7 @@ Bugs Fixed:
|
|
3879
4149
|
* Gem::DependencyInstaller resets installed gems every install, bug #19444
|
3880
4150
|
* Gem.default_path is now honored if GEM_PATH is not set, patch #19502
|
3881
4151
|
|
3882
|
-
|
4152
|
+
## Enhancements:
|
3883
4153
|
|
3884
4154
|
* setup.rb
|
3885
4155
|
* stub files created by RubyGems 0.7.x and older are no longer removed. When
|
@@ -3898,9 +4168,9 @@ Other Changes Include:
|
|
3898
4168
|
* Gem::RemoteFetcher now performs persistent connections for HEAD requests,
|
3899
4169
|
bug #7973
|
3900
4170
|
|
3901
|
-
|
4171
|
+
# 1.1.1 / 2008-04-11
|
3902
4172
|
|
3903
|
-
|
4173
|
+
## Bug fixes:
|
3904
4174
|
|
3905
4175
|
* Gem.prefix now returns non-nil only when RubyGems was installed outside
|
3906
4176
|
sitelibdir or libdir.
|
@@ -3915,9 +4185,9 @@ Bugs Fixed:
|
|
3915
4185
|
* Gem::RemoteFetcher handles Errno::ECONNABORTED.
|
3916
4186
|
* Printing of release notes fixed.
|
3917
4187
|
|
3918
|
-
|
4188
|
+
# 1.1.0 / 2008-03-29
|
3919
4189
|
|
3920
|
-
|
4190
|
+
## Features:
|
3921
4191
|
|
3922
4192
|
* RubyGems now uses persistent connections on index updates. Index updates are
|
3923
4193
|
much faster now.
|
@@ -3929,7 +4199,7 @@ New features:
|
|
3929
4199
|
* `gem spec` now extracts specifications from .gem files.
|
3930
4200
|
* `gem query --installed` to aid automation of checking for gems.
|
3931
4201
|
|
3932
|
-
|
4202
|
+
## Bug fixes:
|
3933
4203
|
|
3934
4204
|
* RubyGems works with both Config and RbConfig now.
|
3935
4205
|
* Executables are now cleaned upon uninstall.
|
@@ -3945,7 +4215,7 @@ Bugs Fixed:
|
|
3945
4215
|
* Gem stub scripts on windows now work outside Gem.bindir.
|
3946
4216
|
* `gem sources -r` now works without network access.
|
3947
4217
|
|
3948
|
-
|
4218
|
+
## Enhancements:
|
3949
4219
|
|
3950
4220
|
* RubyGems now requires Ruby > 1.8.3.
|
3951
4221
|
* Release notes are now printed upon installation.
|
@@ -3956,26 +4226,26 @@ Other Changes Include:
|
|
3956
4226
|
|
3957
4227
|
For a full list of changes to RubyGems, see the ChangeLog file.
|
3958
4228
|
|
3959
|
-
|
4229
|
+
# 1.0.1 / 2007-12-20
|
3960
4230
|
|
3961
|
-
|
4231
|
+
## Bug fixes:
|
3962
4232
|
|
3963
4233
|
* Installation on Ruby 1.8.3 through 1.8.5 fixed
|
3964
4234
|
* `gem build` on 1.8.3 fixed
|
3965
4235
|
|
3966
|
-
|
4236
|
+
## Enhancements:
|
3967
4237
|
|
3968
4238
|
* Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
|
3969
4239
|
this is official in RubyGems 1.0.1.
|
3970
4240
|
|
3971
|
-
|
4241
|
+
# 1.0.0 / 2007-12-20
|
3972
4242
|
|
3973
|
-
|
4243
|
+
## Features:
|
3974
4244
|
|
3975
4245
|
* RubyGems warns about various problems with gemspecs during gem building
|
3976
4246
|
* More-consistent versioning for the RubyGems software
|
3977
4247
|
|
3978
|
-
|
4248
|
+
## Enhancements:
|
3979
4249
|
|
3980
4250
|
* Fixed various bugs and problems with installing gems on Windows
|
3981
4251
|
* Fixed using `gem server` for installing gems
|
@@ -3989,7 +4259,7 @@ Other Changes Include:
|
|
3989
4259
|
* `gem unpack` can now unpack into a specific directory with --target
|
3990
4260
|
* OpenSSL is no longer required by default
|
3991
4261
|
|
3992
|
-
|
4262
|
+
## Breaking changes:
|
3993
4263
|
|
3994
4264
|
* Kernel#require_gem has been removed
|
3995
4265
|
* Executables without a shebang will not be wrapped in a future version, this
|
@@ -4001,9 +4271,9 @@ Deprecations and Deletions:
|
|
4001
4271
|
* Gem::Specification#autorequire= has been deprecated
|
4002
4272
|
* Time::today will be removed in a future version
|
4003
4273
|
|
4004
|
-
|
4274
|
+
# 0.9.5 / 2007-11-19
|
4005
4275
|
|
4006
|
-
|
4276
|
+
## Features:
|
4007
4277
|
|
4008
4278
|
* Platform support
|
4009
4279
|
* Automatic installation of platform gems
|
@@ -4015,7 +4285,7 @@ Major New Features Include:
|
|
4015
4285
|
* Improved stubs and `gem.bat` on mswin, including better compatibility
|
4016
4286
|
with the One-Click Installer.
|
4017
4287
|
|
4018
|
-
|
4288
|
+
## Enhancements:
|
4019
4289
|
|
4020
4290
|
* Time::today is deprecated and will be removed at a future date
|
4021
4291
|
* Gem::manage_gems is deprecated and will be removed at a future date
|
@@ -4060,13 +4330,13 @@ Special thanks to:
|
|
4060
4330
|
* Tom Copeland
|
4061
4331
|
* Wilson Bilkovich
|
4062
4332
|
|
4063
|
-
|
4333
|
+
# 0.9.4 / 2007-05-23
|
4064
4334
|
|
4065
4335
|
If you are experiencing problems with the source index (e.g. strange
|
4066
4336
|
"No Method" errors), or problems with zlib (e.g. "Buffer Error"
|
4067
4337
|
messsage), we recommend upgrading to RubyGems 0.9.4.
|
4068
4338
|
|
4069
|
-
Bug
|
4339
|
+
## Bug fixes:
|
4070
4340
|
|
4071
4341
|
* Several people have been experiencing problems with no method errors
|
4072
4342
|
on the source index cache. The source index cache is now a bit more
|
@@ -4078,9 +4348,9 @@ Bug Fixes Include:
|
|
4078
4348
|
* Several sub-commands were accidentally dropped from the "gem" command.
|
4079
4349
|
These commands have been restored.
|
4080
4350
|
|
4081
|
-
|
4351
|
+
# 0.9.3 / 2007-05-10
|
4082
4352
|
|
4083
|
-
Bug
|
4353
|
+
## Bug fixes:
|
4084
4354
|
|
4085
4355
|
The ZLib library on Windows will occasionally complains about a buffer error
|
4086
4356
|
when unpacking gems. The Gems software has a workaround for that problem, but
|
@@ -4088,19 +4358,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
|
|
4088
4358
|
have received several reports of the error occurring with ZLib 1.2.3, so we
|
4089
4359
|
have permanently enabled the work around on all versions.
|
4090
4360
|
|
4091
|
-
|
4361
|
+
# 0.9.2 / 2007-02-05
|
4092
4362
|
|
4093
|
-
Bug
|
4363
|
+
## Bug fixes:
|
4094
4364
|
|
4095
4365
|
* The "unpack" command now works properly.
|
4096
4366
|
* User name and password are now passed properly to the authenticating
|
4097
4367
|
proxy when downloading gems.
|
4098
4368
|
|
4099
|
-
|
4369
|
+
# 0.9.1 / 2007-01-16
|
4100
4370
|
|
4101
4371
|
See ChangeLog
|
4102
4372
|
|
4103
|
-
|
4373
|
+
# 0.9.0 / 2006-06-28
|
4104
4374
|
|
4105
4375
|
Finally, the much anticipated RubyGems version 0.9.0 is now available.
|
4106
4376
|
This release includes a number of new features and bug fixes. The
|
@@ -4108,7 +4378,7 @@ number one change is that we can now download the gem index
|
|
4108
4378
|
incrementally. This will greatly speed up the gem command when only a
|
4109
4379
|
few gems are out of date.
|
4110
4380
|
|
4111
|
-
|
4381
|
+
## Enhancements:
|
4112
4382
|
|
4113
4383
|
* The gem index is now downloaded incrementally, only updating entries
|
4114
4384
|
that are out of date. If more than 50 entries are out of date, we
|
@@ -4123,9 +4393,6 @@ Major Enhancments include:
|
|
4123
4393
|
* Both RI and RDOC documents are now generated by default.
|
4124
4394
|
* A gemri command is included to read gem RI docs (only needed for
|
4125
4395
|
Ruby 1.8.4 or earlier).
|
4126
|
-
|
4127
|
-
Minor enhancements include:
|
4128
|
-
|
4129
4396
|
* Version 0.0.0 is now a valid gem version.
|
4130
4397
|
* Better detection of missing SSL functionality.
|
4131
4398
|
* SSL is not required if the security policy does not require
|
@@ -4138,7 +4405,7 @@ Minor enhancements include:
|
|
4138
4405
|
* .rbw is now a supported suffix for RubyGem's custom require.
|
4139
4406
|
* Several Ruby 1.9 compatibility fixes (Eric Hodel).
|
4140
4407
|
|
4141
|
-
Bug
|
4408
|
+
## Bug fixes:
|
4142
4409
|
|
4143
4410
|
* Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
|
4144
4411
|
cross-Ruby version compatibility issues.
|
@@ -4150,7 +4417,7 @@ Bug Fixes:
|
|
4150
4417
|
* Fixed prefix handling for native expressions (patch by Aaron Patterson).
|
4151
4418
|
* Fixed several Upgrade => Update typos.
|
4152
4419
|
|
4153
|
-
|
4420
|
+
# 0.8.11 / 2005-07-13
|
4154
4421
|
|
4155
4422
|
* -y is a synonym for --include-dependencies.
|
4156
4423
|
* Better handling of errors in the top level rescue clause.
|
@@ -4169,7 +4436,7 @@ Bug Fixes:
|
|
4169
4436
|
* Added David Glasser's install-from-mirror patch.
|
4170
4437
|
* Additional internal structural cleanup and test reorganization.
|
4171
4438
|
|
4172
|
-
|
4439
|
+
# 0.8.10 / 2005-03-27
|
4173
4440
|
|
4174
4441
|
* In multi-user environments, it is common to supply multiple versions of gems
|
4175
4442
|
(for example Rails), allowing individual users to select the version of the
|
@@ -4180,16 +4447,16 @@ Bug Fixes:
|
|
4180
4447
|
installed, then the "gem update --system" command will download a new
|
4181
4448
|
update, but install the latest update prior to the download.
|
4182
4449
|
|
4183
|
-
|
4450
|
+
# 0.8.9
|
4184
4451
|
|
4185
4452
|
Never released
|
4186
4453
|
|
4187
|
-
|
4454
|
+
# 0.8.8 / 2005-03-14
|
4188
4455
|
|
4189
4456
|
* Moved the master definition of class Requirement back under version.
|
4190
4457
|
Kept the body of Requirement under Gem.
|
4191
4458
|
|
4192
|
-
|
4459
|
+
# 0.8.7 / 2005-03-14
|
4193
4460
|
|
4194
4461
|
Even though it has only been a few weeks since that last release,
|
4195
4462
|
there are quite a number of new features in 0.8.7. A complete list of
|
@@ -4242,11 +4509,11 @@ file system. You can read more about them here:
|
|
4242
4509
|
* gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
|
4243
4510
|
* gemwhich: http://docs.rubygems.org/read/chapter/17
|
4244
4511
|
|
4245
|
-
|
4512
|
+
# 0.8.6 / 2005-02-27
|
4246
4513
|
|
4247
4514
|
* Fixed a small bug with shebang construction
|
4248
4515
|
|
4249
|
-
|
4516
|
+
# 0.8.5 / 2005-02-26
|
4250
4517
|
|
4251
4518
|
Do you know how you used to dread getting the following message while
|
4252
4519
|
installing gems?
|
@@ -4268,7 +4535,7 @@ us. No RDoc generation was included in the following times.
|
|
4268
4535
|
The new caching code is at least 3x faster than previous versions. Woo
|
4269
4536
|
Hoo!
|
4270
4537
|
|
4271
|
-
|
4538
|
+
# 0.8.4 / 2005-01-01
|
4272
4539
|
|
4273
4540
|
* Rubygems 0.8.3's installer was broken unless you already had an older
|
4274
4541
|
version of RubyGems installed. That's fixed.
|
@@ -4278,7 +4545,7 @@ Hoo!
|
|
4278
4545
|
* Support for lower-cased Gem file names (for you, Paul Duncan :)
|
4279
4546
|
* Erik Veenstra's patch for making Gem versions sortable.
|
4280
4547
|
|
4281
|
-
|
4548
|
+
# 0.8.3 / 2004-12-07
|
4282
4549
|
|
4283
4550
|
No real earth shattering news here, but there were a number of really
|
4284
4551
|
annoying issues involving other libraries that RubyGems depends upon.
|
@@ -4320,11 +4587,11 @@ There has been some minor usability enhancements and changes ...
|
|
4320
4587
|
names. This was useful for him while testing libs that he had in
|
4321
4588
|
development.
|
4322
4589
|
|
4323
|
-
|
4590
|
+
# 0.8.1 / 2004-09-17
|
4324
4591
|
|
4325
4592
|
* Quick release to capture some bug fixes.
|
4326
4593
|
|
4327
|
-
|
4594
|
+
# 0.8.0 / 2004-09-15
|
4328
4595
|
|
4329
4596
|
* Remove need for library stubs. Set the RUBYOPT environment variable to
|
4330
4597
|
include "rrubygems", and a normal require will find gem files. Continue to
|
@@ -4347,15 +4614,15 @@ There has been some minor usability enhancements and changes ...
|
|
4347
4614
|
to pick.
|
4348
4615
|
* Added "gem unpack" for "unpacking" a gem to the current directory
|
4349
4616
|
|
4350
|
-
|
4617
|
+
# 0.7.0 / 2004-07-09
|
4351
4618
|
|
4352
4619
|
See ChangeLog
|
4353
4620
|
|
4354
|
-
|
4621
|
+
# 0.6.1 / 2004-06-08
|
4355
4622
|
|
4356
4623
|
See ChangeLog
|
4357
4624
|
|
4358
|
-
|
4625
|
+
# 0.6.0 / 2004-06-08
|
4359
4626
|
|
4360
4627
|
* Collapse output of --search and --list (and gem_server) operations so that
|
4361
4628
|
each gem is listed only once, with each of its versions listed on the same
|
@@ -4368,7 +4635,7 @@ See ChangeLog
|
|
4368
4635
|
spec.required_ruby_version = "> 1.8.0"
|
4369
4636
|
* --install-stub defaults to true, so library stubs are created
|
4370
4637
|
|
4371
|
-
|
4638
|
+
# 0.5.0 / 2004-06-06
|
4372
4639
|
|
4373
4640
|
* Jim added the ability to specify version constraints to avoid API
|
4374
4641
|
incompatibilities. This has been the subject of much debate for the past
|
@@ -4391,11 +4658,11 @@ See ChangeLog
|
|
4391
4658
|
automatically included.
|
4392
4659
|
* Some small bug fixes
|
4393
4660
|
|
4394
|
-
|
4661
|
+
# 0.4.0 / 2004-05-30
|
4395
4662
|
|
4396
4663
|
* Minor bug fixes including Windows compatibility issues
|
4397
4664
|
|
4398
|
-
|
4665
|
+
# 0.3.0 / 2004-04-30
|
4399
4666
|
|
4400
4667
|
* Cleanup of command-line arguments and handling. Most commands accept a
|
4401
4668
|
--local or --remote modifier.
|
@@ -4416,6 +4683,6 @@ See ChangeLog
|
|
4416
4683
|
* Generally improved error messages (still more work to do)
|
4417
4684
|
* Rearranged gem directory structure for cleanliness.
|
4418
4685
|
|
4419
|
-
|
4686
|
+
# 0.2.0 / 2004-03-14
|
4420
4687
|
|
4421
4688
|
* Initial public release
|