rubygems-update 3.0.6 → 3.2.14
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} +1100 -436
- data/CODE_OF_CONDUCT.md +55 -19
- data/CONTRIBUTING.md +37 -10
- data/MAINTAINERS.txt +1 -6
- data/Manifest.txt +104 -64
- data/POLICIES.md +6 -12
- data/README.md +6 -6
- data/Rakefile +121 -111
- data/bin/gem +0 -6
- data/bin/update_rubygems +2 -2
- data/bundler/CHANGELOG.md +1788 -1251
- data/bundler/LICENSE.md +18 -19
- data/bundler/README.md +9 -10
- data/bundler/UPGRADING.md +215 -0
- data/bundler/bundler.gemspec +9 -26
- data/bundler/exe/bundle +22 -3
- data/bundler/lib/bundler.rb +233 -94
- data/bundler/lib/bundler/build_metadata.rb +5 -13
- data/bundler/lib/bundler/capistrano.rb +4 -4
- data/bundler/lib/bundler/cli.rb +221 -148
- data/bundler/lib/bundler/cli/add.rb +28 -16
- data/bundler/lib/bundler/cli/binstubs.rb +6 -2
- data/bundler/lib/bundler/cli/cache.rb +24 -17
- data/bundler/lib/bundler/cli/clean.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +25 -12
- data/bundler/lib/bundler/cli/config.rb +161 -86
- data/bundler/lib/bundler/cli/console.rb +1 -1
- data/bundler/lib/bundler/cli/doctor.rb +5 -5
- data/bundler/lib/bundler/cli/exec.rb +8 -20
- data/bundler/lib/bundler/cli/fund.rb +36 -0
- data/bundler/lib/bundler/cli/gem.rb +125 -32
- data/bundler/lib/bundler/cli/info.rb +29 -6
- 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 +27 -23
- data/bundler/lib/bundler/cli/issue.rb +5 -5
- data/bundler/lib/bundler/cli/list.rb +12 -10
- data/bundler/lib/bundler/cli/open.rb +10 -6
- data/bundler/lib/bundler/cli/outdated.rb +134 -109
- data/bundler/lib/bundler/cli/plugin.rb +19 -2
- data/bundler/lib/bundler/cli/pristine.rb +6 -1
- data/bundler/lib/bundler/cli/show.rb +2 -2
- data/bundler/lib/bundler/cli/update.rb +34 -12
- data/bundler/lib/bundler/compact_index_client.rb +26 -10
- 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 +8 -20
- data/bundler/lib/bundler/current_ruby.rb +9 -7
- data/bundler/lib/bundler/definition.rb +133 -132
- data/bundler/lib/bundler/dep_proxy.rb +16 -9
- data/bundler/lib/bundler/dependency.rb +19 -14
- data/bundler/lib/bundler/deployment.rb +1 -1
- data/bundler/lib/bundler/dsl.rb +54 -71
- data/bundler/lib/bundler/endpoint_specification.rb +1 -1
- data/bundler/lib/bundler/env.rb +9 -14
- data/bundler/lib/bundler/environment_preserver.rb +26 -3
- data/bundler/lib/bundler/errors.rb +1 -0
- data/bundler/lib/bundler/feature_flag.rb +19 -34
- data/bundler/lib/bundler/fetcher.rb +19 -16
- data/bundler/lib/bundler/fetcher/base.rb +1 -1
- data/bundler/lib/bundler/fetcher/compact_index.rb +27 -13
- data/bundler/lib/bundler/fetcher/dependency.rb +1 -1
- data/bundler/lib/bundler/fetcher/downloader.rb +6 -3
- data/bundler/lib/bundler/fetcher/index.rb +8 -7
- data/bundler/lib/bundler/friendly_errors.rb +27 -19
- data/bundler/lib/bundler/gem_helper.rb +68 -37
- data/bundler/lib/bundler/gem_helpers.rb +38 -29
- data/bundler/lib/bundler/gem_tasks.rb +1 -1
- data/bundler/lib/bundler/gem_version_promoter.rb +5 -5
- data/bundler/lib/bundler/graph.rb +3 -3
- data/bundler/lib/bundler/index.rb +12 -7
- data/bundler/lib/bundler/injector.rb +32 -12
- data/bundler/lib/bundler/inline.rb +41 -30
- data/bundler/lib/bundler/installer.rb +41 -60
- data/bundler/lib/bundler/installer/gem_installer.rb +8 -4
- data/bundler/lib/bundler/installer/parallel_installer.rb +20 -26
- data/bundler/lib/bundler/installer/standalone.rb +18 -4
- data/bundler/lib/bundler/lazy_specification.rb +41 -27
- data/bundler/lib/bundler/lockfile_generator.rb +1 -1
- data/bundler/lib/bundler/lockfile_parser.rb +16 -33
- data/bundler/lib/bundler/{ssl_certs → man}/.document +0 -0
- data/bundler/lib/bundler/man/bundle-add.1 +66 -0
- data/bundler/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +7 -1
- data/bundler/lib/bundler/man/bundle-binstubs.1 +42 -0
- data/bundler/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +3 -5
- data/bundler/lib/bundler/man/bundle-cache.1 +55 -0
- data/bundler/{man/bundle-package.ronn → lib/bundler/man/bundle-cache.1.ronn} +15 -15
- data/bundler/lib/bundler/man/bundle-check.1 +31 -0
- data/bundler/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-clean.1 +24 -0
- data/bundler/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-config.1 +488 -0
- data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +59 -67
- data/bundler/lib/bundler/man/bundle-doctor.1 +44 -0
- data/bundler/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-exec.1 +165 -0
- data/bundler/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +1 -1
- data/bundler/lib/bundler/man/bundle-gem.1 +102 -0
- data/bundler/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +30 -7
- data/bundler/lib/bundler/man/bundle-info.1 +20 -0
- data/bundler/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-init.1 +25 -0
- data/bundler/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +1 -1
- data/bundler/lib/bundler/man/bundle-inject.1 +33 -0
- data/bundler/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-install.1 +338 -0
- data/bundler/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +34 -7
- data/bundler/lib/bundler/man/bundle-list.1 +50 -0
- data/bundler/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +6 -6
- data/bundler/lib/bundler/man/bundle-lock.1 +84 -0
- data/bundler/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-open.1 +32 -0
- data/bundler/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-outdated.1 +155 -0
- data/bundler/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-platform.1 +61 -0
- data/bundler/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-pristine.1 +34 -0
- data/bundler/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-remove.1 +31 -0
- data/bundler/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-show.1 +23 -0
- data/bundler/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-update.1 +394 -0
- data/bundler/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +3 -3
- data/bundler/lib/bundler/man/bundle-viz.1 +39 -0
- data/bundler/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle.1 +136 -0
- data/bundler/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +2 -2
- data/bundler/lib/bundler/man/gemfile.5 +686 -0
- data/bundler/{man → lib/bundler/man}/gemfile.5.ronn +16 -20
- data/bundler/lib/bundler/man/index.txt +25 -0
- data/bundler/lib/bundler/match_platform.rb +1 -1
- data/bundler/lib/bundler/mirror.rb +5 -5
- data/bundler/lib/bundler/plugin.rb +75 -36
- data/bundler/lib/bundler/plugin/api.rb +1 -1
- data/bundler/lib/bundler/plugin/api/source.rb +12 -7
- data/bundler/lib/bundler/plugin/dsl.rb +1 -1
- data/bundler/lib/bundler/plugin/index.rb +24 -4
- data/bundler/lib/bundler/plugin/installer.rb +33 -22
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
- data/bundler/lib/bundler/plugin/source_list.rb +5 -1
- data/bundler/lib/bundler/psyched_yaml.rb +0 -15
- data/bundler/lib/bundler/remote_specification.rb +5 -4
- data/bundler/lib/bundler/resolver.rb +191 -87
- data/bundler/lib/bundler/resolver/spec_group.rb +76 -48
- data/bundler/lib/bundler/retry.rb +3 -3
- data/bundler/lib/bundler/ruby_version.rb +5 -20
- data/bundler/lib/bundler/rubygems_ext.rb +76 -72
- data/bundler/lib/bundler/rubygems_gem_installer.rb +47 -13
- data/bundler/lib/bundler/rubygems_integration.rb +159 -444
- data/bundler/lib/bundler/runtime.rb +6 -23
- data/bundler/lib/bundler/settings.rb +67 -93
- data/bundler/lib/bundler/setup.rb +11 -12
- data/bundler/lib/bundler/shared_helpers.rb +54 -80
- data/bundler/lib/bundler/similarity_detector.rb +3 -3
- data/bundler/lib/bundler/source.rb +12 -6
- data/bundler/lib/bundler/source/git.rb +47 -38
- data/bundler/lib/bundler/source/git/git_proxy.rb +101 -102
- data/bundler/lib/bundler/source/metadata.rb +7 -6
- data/bundler/lib/bundler/source/path.rb +20 -11
- data/bundler/lib/bundler/source/path/installer.rb +10 -10
- data/bundler/lib/bundler/source/rubygems.rb +56 -29
- data/bundler/lib/bundler/source/rubygems/remote.rb +3 -4
- data/bundler/lib/bundler/source_list.rb +32 -30
- data/bundler/lib/bundler/spec_set.rb +37 -25
- data/bundler/lib/bundler/stub_specification.rb +40 -34
- data/bundler/lib/bundler/templates/Executable.bundler +23 -14
- data/bundler/lib/bundler/templates/newgem/CHANGELOG.md.tt +5 -0
- data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
- data/bundler/lib/bundler/templates/newgem/Gemfile.tt +16 -2
- data/bundler/lib/bundler/templates/newgem/README.md.tt +7 -5
- 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 +18 -31
- 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/minitest/test_helper.rb.tt +6 -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/templates/newgem/travis.yml.tt +0 -1
- data/bundler/lib/bundler/ui.rb +3 -3
- data/bundler/lib/bundler/ui/rg_proxy.rb +1 -1
- data/bundler/lib/bundler/ui/shell.rb +7 -11
- data/bundler/lib/bundler/uri_credentials_filter.rb +10 -4
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +161 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb +66 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +176 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +3 -0
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +273 -147
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +5 -6
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +36 -4
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +6 -6
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +3 -3
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +39 -11
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +4 -4
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +11 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +53 -51
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +2 -2
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +302 -462
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +40 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +53 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +79 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor.rb +16 -9
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +28 -13
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +3 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +7 -17
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +20 -9
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +19 -8
- data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +63 -43
- data/bundler/lib/bundler/vendor/thor/lib/thor/command.rb +21 -14
- data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +78 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +3 -3
- data/bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb +1 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +6 -6
- data/bundler/lib/bundler/vendor/thor/lib/thor/nested_context.rb +29 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +7 -3
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +20 -7
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +21 -5
- data/bundler/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +1 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +15 -14
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +4 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +65 -8
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +10 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +3 -3
- data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +18 -2
- 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/vendor/uri/lib/uri.rb +104 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +744 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +94 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +267 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +1568 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +88 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/https.rb +23 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb +261 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb +21 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +294 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +546 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +125 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +6 -0
- data/bundler/lib/bundler/vendored_fileutils.rb +1 -6
- data/bundler/lib/bundler/vendored_molinillo.rb +1 -1
- data/bundler/lib/bundler/vendored_persistent.rb +7 -12
- data/bundler/lib/bundler/vendored_thor.rb +2 -2
- data/bundler/lib/bundler/vendored_tmpdir.rb +4 -0
- data/bundler/lib/bundler/vendored_uri.rb +4 -0
- data/bundler/lib/bundler/version.rb +1 -20
- data/bundler/lib/bundler/version_ranges.rb +51 -5
- data/bundler/lib/bundler/vlad.rb +2 -2
- data/bundler/lib/bundler/worker.rb +2 -4
- data/bundler/lib/bundler/yaml_serializer.rb +3 -4
- data/lib/rubygems.rb +198 -222
- data/lib/rubygems/available_set.rb +4 -5
- data/lib/rubygems/basic_specification.rb +32 -19
- data/lib/rubygems/bundler_version_finder.rb +19 -9
- data/lib/rubygems/command.rb +73 -21
- data/lib/rubygems/command_manager.rb +5 -12
- data/lib/rubygems/commands/build_command.rb +51 -18
- data/lib/rubygems/commands/cert_command.rb +2 -11
- data/lib/rubygems/commands/check_command.rb +0 -2
- data/lib/rubygems/commands/cleanup_command.rb +17 -13
- data/lib/rubygems/commands/contents_command.rb +7 -9
- data/lib/rubygems/commands/dependency_command.rb +9 -10
- data/lib/rubygems/commands/environment_command.rb +1 -6
- data/lib/rubygems/commands/fetch_command.rb +2 -4
- data/lib/rubygems/commands/generate_index_command.rb +3 -2
- data/lib/rubygems/commands/help_command.rb +4 -4
- data/lib/rubygems/commands/info_command.rb +9 -4
- data/lib/rubygems/commands/install_command.rb +12 -54
- data/lib/rubygems/commands/list_command.rb +8 -7
- data/lib/rubygems/commands/lock_command.rb +3 -5
- data/lib/rubygems/commands/mirror_command.rb +0 -1
- data/lib/rubygems/commands/open_command.rb +1 -4
- data/lib/rubygems/commands/outdated_command.rb +0 -1
- data/lib/rubygems/commands/owner_command.rb +10 -10
- data/lib/rubygems/commands/pristine_command.rb +13 -9
- data/lib/rubygems/commands/push_command.rb +12 -51
- data/lib/rubygems/commands/query_command.rb +14 -330
- data/lib/rubygems/commands/rdoc_command.rb +0 -1
- 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 +143 -101
- data/lib/rubygems/commands/signin_command.rb +0 -1
- data/lib/rubygems/commands/signout_command.rb +0 -2
- data/lib/rubygems/commands/sources_command.rb +22 -6
- data/lib/rubygems/commands/specification_command.rb +8 -3
- data/lib/rubygems/commands/stale_command.rb +1 -1
- data/lib/rubygems/commands/uninstall_command.rb +2 -3
- data/lib/rubygems/commands/unpack_command.rb +3 -32
- data/lib/rubygems/commands/update_command.rb +73 -28
- data/lib/rubygems/commands/which_command.rb +0 -1
- data/lib/rubygems/commands/yank_command.rb +10 -7
- data/lib/rubygems/compatibility.rb +4 -4
- data/lib/rubygems/config_file.rb +48 -27
- data/lib/rubygems/core_ext/kernel_gem.rb +7 -6
- data/lib/rubygems/core_ext/kernel_require.rb +44 -6
- data/lib/rubygems/core_ext/kernel_warn.rb +22 -13
- data/lib/rubygems/core_ext/tcpsocket_init.rb +52 -0
- data/lib/rubygems/defaults.rb +110 -23
- data/lib/rubygems/dependency.rb +28 -14
- data/lib/rubygems/dependency_installer.rb +11 -166
- data/lib/rubygems/dependency_list.rb +17 -18
- data/lib/rubygems/deprecate.rb +51 -6
- data/lib/rubygems/doctor.rb +4 -4
- data/lib/rubygems/errors.rb +5 -7
- data/lib/rubygems/exceptions.rb +2 -24
- data/lib/rubygems/ext.rb +6 -6
- data/lib/rubygems/ext/build_error.rb +2 -0
- data/lib/rubygems/ext/builder.rb +45 -82
- data/lib/rubygems/ext/cmake_builder.rb +6 -7
- data/lib/rubygems/ext/configure_builder.rb +5 -8
- data/lib/rubygems/ext/ext_conf_builder.rb +27 -23
- data/lib/rubygems/ext/rake_builder.rb +4 -6
- data/lib/rubygems/gem_runner.rb +3 -10
- data/lib/rubygems/gemcutter_utilities.rb +111 -37
- data/lib/rubygems/indexer.rb +9 -26
- data/lib/rubygems/install_update_options.rb +7 -7
- data/lib/rubygems/installer.rb +91 -98
- data/lib/rubygems/installer_test_case.rb +104 -42
- data/lib/rubygems/installer_uninstaller_utils.rb +29 -0
- data/lib/rubygems/local_remote_options.rb +1 -1
- data/lib/rubygems/mock_gem_ui.rb +1 -4
- data/lib/rubygems/name_tuple.rb +4 -7
- data/lib/rubygems/openssl.rb +7 -0
- data/lib/rubygems/package.rb +49 -32
- 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 +15 -12
- 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 +6 -16
- data/lib/rubygems/package_task.rb +1 -7
- data/lib/rubygems/path_support.rb +2 -2
- data/lib/rubygems/platform.rb +22 -16
- data/lib/rubygems/query_utils.rb +353 -0
- data/lib/rubygems/rdoc.rb +0 -12
- data/lib/rubygems/remote_fetcher.rb +33 -59
- data/lib/rubygems/request.rb +11 -14
- data/lib/rubygems/request/connection_pools.rb +3 -7
- data/lib/rubygems/request/http_pool.rb +0 -1
- data/lib/rubygems/request_set.rb +10 -23
- data/lib/rubygems/request_set/gem_dependency_api.rb +9 -11
- data/lib/rubygems/request_set/lockfile.rb +13 -12
- data/lib/rubygems/request_set/lockfile/parser.rb +2 -2
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -1
- data/lib/rubygems/requirement.rb +36 -35
- data/lib/rubygems/resolver.rb +20 -16
- data/lib/rubygems/resolver/activation_request.rb +27 -51
- 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 +4 -6
- data/lib/rubygems/resolver/composed_set.rb +3 -5
- data/lib/rubygems/resolver/conflict.rb +2 -9
- 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 +32 -2
- data/lib/rubygems/resolver/installed_specification.rb +0 -2
- data/lib/rubygems/resolver/installer_set.rb +63 -16
- data/lib/rubygems/resolver/local_specification.rb +0 -2
- data/lib/rubygems/resolver/lock_set.rb +3 -5
- data/lib/rubygems/resolver/lock_specification.rb +2 -4
- 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 +8 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +39 -6
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +7 -6
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +4 -3
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +51 -12
- data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +76 -8
- data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +12 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +510 -165
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +3 -2
- data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +8 -4
- data/lib/rubygems/resolver/requirement_list.rb +0 -1
- 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 -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 +15 -13
- 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 +8 -9
- data/lib/rubygems/security/trust_dir.rb +1 -3
- data/lib/rubygems/server.rb +20 -16
- data/lib/rubygems/source.rb +30 -13
- 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 +6 -6
- data/lib/rubygems/spec_fetcher.rb +22 -34
- data/lib/rubygems/specification.rb +207 -278
- data/lib/rubygems/specification_policy.rb +135 -57
- data/{bundler/lib/bundler/ssl_certs/index.rubygems.org → lib/rubygems/ssl_certs/rubygems.org}/GlobalSignRootCA.pem +0 -0
- data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +21 -0
- data/lib/rubygems/stub_specification.rb +4 -5
- data/lib/rubygems/test_case.rb +221 -341
- data/lib/rubygems/test_utilities.rb +22 -18
- data/lib/rubygems/text.rb +2 -3
- data/lib/rubygems/uninstaller.rb +49 -30
- data/lib/rubygems/uri_formatter.rb +2 -4
- data/lib/rubygems/uri_parser.rb +34 -0
- data/lib/rubygems/uri_parsing.rb +23 -0
- data/lib/rubygems/user_interaction.rb +3 -20
- data/lib/rubygems/util.rb +20 -44
- data/lib/rubygems/util/licenses.rb +400 -400
- data/lib/rubygems/validator.rb +9 -31
- data/lib/rubygems/version.rb +29 -21
- data/lib/rubygems/version_option.rb +6 -0
- data/rubygems-update.gemspec +4 -11
- data/setup.rb +2 -7
- data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
- data/test/rubygems/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 +41 -5
- data/test/rubygems/test_gem.rb +405 -236
- data/test/rubygems/test_gem_available_set.rb +5 -6
- data/test/rubygems/test_gem_bundler_version_finder.rb +20 -2
- data/test/rubygems/test_gem_command.rb +144 -9
- data/test/rubygems/test_gem_command_manager.rb +40 -17
- data/test/rubygems/test_gem_commands_build_command.rb +386 -13
- data/test/rubygems/test_gem_commands_cert_command.rb +18 -6
- data/test/rubygems/test_gem_commands_check_command.rb +0 -2
- data/test/rubygems/test_gem_commands_cleanup_command.rb +35 -10
- data/test/rubygems/test_gem_commands_contents_command.rb +50 -19
- data/test/rubygems/test_gem_commands_dependency_command.rb +1 -3
- data/test/rubygems/test_gem_commands_environment_command.rb +21 -33
- data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
- data/test/rubygems/test_gem_commands_generate_index_command.rb +32 -2
- data/test/rubygems/test_gem_commands_help_command.rb +16 -8
- data/test/rubygems/test_gem_commands_info_command.rb +6 -7
- data/test/rubygems/test_gem_commands_install_command.rb +368 -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 -2
- data/test/rubygems/test_gem_commands_open_command.rb +4 -6
- data/test/rubygems/test_gem_commands_outdated_command.rb +18 -1
- data/test/rubygems/test_gem_commands_owner_command.rb +62 -9
- data/test/rubygems/test_gem_commands_pristine_command.rb +148 -16
- data/test/rubygems/test_gem_commands_push_command.rb +94 -21
- data/test/rubygems/test_gem_commands_query_command.rb +35 -10
- data/test/rubygems/test_gem_commands_search_command.rb +0 -2
- data/test/rubygems/test_gem_commands_server_command.rb +6 -4
- data/test/rubygems/test_gem_commands_setup_command.rb +228 -128
- data/test/rubygems/test_gem_commands_signin_command.rb +36 -11
- data/test/rubygems/test_gem_commands_signout_command.rb +0 -7
- data/test/rubygems/test_gem_commands_sources_command.rb +193 -9
- 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 +108 -52
- data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
- data/test/rubygems/test_gem_commands_update_command.rb +201 -29
- data/test/rubygems/test_gem_commands_which_command.rb +3 -5
- data/test/rubygems/test_gem_commands_yank_command.rb +86 -5
- data/test/rubygems/test_gem_config_file.rb +25 -13
- data/test/rubygems/test_gem_dependency.rb +6 -2
- data/test/rubygems/test_gem_dependency_installer.rb +169 -252
- data/test/rubygems/test_gem_dependency_list.rb +31 -26
- 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 +51 -44
- data/test/rubygems/test_gem_ext_cmake_builder.rb +16 -23
- data/test/rubygems/test_gem_ext_configure_builder.rb +6 -14
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +21 -29
- data/test/rubygems/test_gem_ext_rake_builder.rb +39 -22
- data/test/rubygems/test_gem_gem_runner.rb +47 -2
- data/test/rubygems/test_gem_gemcutter_utilities.rb +16 -13
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
- data/test/rubygems/test_gem_indexer.rb +40 -55
- data/test/rubygems/test_gem_install_update_options.rb +45 -21
- data/test/rubygems/test_gem_installer.rb +661 -338
- 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 +132 -45
- data/test/rubygems/test_gem_package_old.rb +56 -55
- 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 +6 -7
- data/test/rubygems/test_gem_package_tar_writer.rb +20 -12
- data/test/rubygems/test_gem_package_task.rb +46 -13
- data/test/rubygems/test_gem_path_support.rb +17 -13
- data/test/rubygems/test_gem_platform.rb +74 -7
- data/test/rubygems/test_gem_rdoc.rb +0 -1
- data/test/rubygems/test_gem_remote_fetcher.rb +223 -209
- data/test/rubygems/test_gem_request.rb +30 -19
- data/test/rubygems/test_gem_request_connection_pools.rb +2 -2
- data/test/rubygems/test_gem_request_set.rb +104 -29
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +4 -6
- data/test/rubygems/test_gem_request_set_lockfile.rb +4 -5
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -10
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -118
- data/test/rubygems/test_gem_requirement.rb +50 -4
- data/test/rubygems/test_gem_resolver.rb +73 -31
- data/test/rubygems/test_gem_resolver_activation_request.rb +3 -34
- 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 -7
- 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 +1 -2
- data/test/rubygems/test_gem_resolver_index_set.rb +2 -4
- data/test/rubygems/test_gem_resolver_index_specification.rb +7 -4
- data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -3
- data/test/rubygems/test_gem_resolver_installer_set.rb +10 -10
- 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 -2
- 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 +27 -25
- data/test/rubygems/test_gem_security_policy.rb +7 -12
- data/test/rubygems/test_gem_security_signer.rb +11 -12
- data/test/rubygems/test_gem_security_trust_dir.rb +4 -6
- data/test/rubygems/test_gem_server.rb +13 -12
- data/test/rubygems/test_gem_silent_ui.rb +0 -1
- data/test/rubygems/test_gem_source.rb +32 -17
- data/test/rubygems/test_gem_source_fetch_problem.rb +0 -1
- data/test/rubygems/test_gem_source_git.rb +12 -18
- data/test/rubygems/test_gem_source_installed.rb +11 -13
- data/test/rubygems/test_gem_source_list.rb +1 -1
- data/test/rubygems/test_gem_source_local.rb +8 -9
- data/test/rubygems/test_gem_source_lock.rb +17 -19
- data/test/rubygems/test_gem_source_specific_file.rb +9 -10
- 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 +363 -245
- data/test/rubygems/test_gem_stream_ui.rb +3 -1
- data/test/rubygems/test_gem_stub_specification.rb +6 -7
- data/test/rubygems/test_gem_text.rb +1 -2
- data/test/rubygems/test_gem_uninstaller.rb +165 -22
- 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 +17 -15
- data/test/rubygems/test_gem_validator.rb +4 -7
- data/test/rubygems/test_gem_version.rb +23 -10
- data/test/rubygems/test_gem_version_option.rb +1 -3
- data/test/rubygems/test_kernel.rb +25 -9
- data/test/rubygems/test_project_sanity.rb +20 -0
- data/test/rubygems/test_remote_fetch_error.rb +1 -2
- data/test/rubygems/test_require.rb +394 -56
- data/test/test_changelog_generator.rb +17 -0
- metadata +109 -155
- data/.rubocop.yml +0 -67
- data/.travis.yml +0 -38
- data/appveyor.yml +0 -43
- data/bundler/CODE_OF_CONDUCT.md +0 -42
- data/bundler/CONTRIBUTING.md +0 -17
- data/bundler/exe/bundle_ruby +0 -60
- data/bundler/lib/bundler/cli/package.rb +0 -49
- data/bundler/lib/bundler/compatibility_guard.rb +0 -14
- data/bundler/lib/bundler/gem_remote_fetcher.rb +0 -43
- data/bundler/lib/bundler/ssl_certs/certificate_manager.rb +0 -66
- data/bundler/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
- data/bundler/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
- data/bundler/lib/bundler/templates/newgem/test/test_helper.rb.tt +0 -4
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +0 -27
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +0 -129
- data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +0 -12
- data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +0 -129
- data/lib/rubygems/source_local.rb +0 -7
- data/lib/rubygems/source_specific_file.rb +0 -6
- data/lib/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +0 -21
- 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/util/CL2notes +0 -55
- data/util/ci +0 -82
- 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 -61
- 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: 183f3b2ffdc6ae6ff74b07aa4fb847ce8dad2346d34053258d1f4a1dae58ee75
|
4
|
+
data.tar.gz: 65ebe08bd47e237947d6292a1d8bd8eacfdb02ba2ca0c49abbb46dfb5d4508ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bab93bbd24b3fb753b6a2818cecaad7dffff505937f4a3a0625c9c6f8ccfcb1742d642fc74ab7e8aed5bc505aa18651aed3ced2e794efa0b0a758ac5fab50a8
|
7
|
+
data.tar.gz: 1a5c4126510e7dfb037e52f3da7a2cc815d14b925089ebf3aed4c120c95580a6e1e119fc3cc205bf320baf02cd140e3a2cd17499dd4b6c9b2747004654ae82bb
|
@@ -1,14 +1,702 @@
|
|
1
|
-
#
|
1
|
+
# 3.2.14 / 2021-03-08
|
2
2
|
|
3
|
-
|
3
|
+
## Enhancements:
|
4
4
|
|
5
|
-
|
5
|
+
* Less wrapping of network errors. Pull request #4064 by deivid-rodriguez
|
6
|
+
|
7
|
+
## Bug fixes:
|
8
|
+
|
9
|
+
* Revert addition of support for `musl` variants to restore graceful
|
10
|
+
fallback on Alpine. Pull request #4434 by deivid-rodriguez
|
11
|
+
|
12
|
+
# 3.2.13 / 2021-03-03
|
13
|
+
|
14
|
+
## Bug fixes:
|
15
|
+
|
16
|
+
* Support non-gnu libc linux platforms. Pull request #4082 by lloeki
|
17
|
+
|
18
|
+
# 3.2.12 / 2021-03-01
|
19
|
+
|
20
|
+
## Bug fixes:
|
21
|
+
|
22
|
+
* Restore the ability to manually install extension gems. Pull request
|
23
|
+
#4384 by cfis
|
24
|
+
|
25
|
+
# 3.2.11 / 2021-02-17
|
26
|
+
|
27
|
+
## Enhancements:
|
28
|
+
|
29
|
+
* Optionally fallback to IPv4 when IPv6 is unreachable. Pull request #2662
|
30
|
+
by sonalkr132
|
31
|
+
|
32
|
+
# 3.2.10 / 2021-02-15
|
33
|
+
|
34
|
+
## Documentation:
|
35
|
+
|
36
|
+
* Add a `gem push` example to `gem help`. Pull request #4373 by
|
37
|
+
deivid-rodriguez
|
38
|
+
* Improve documentation for `required_ruby_version`. Pull request #4343 by
|
39
|
+
AlexWayfer
|
40
|
+
|
41
|
+
# 3.2.9 / 2021-02-08
|
42
|
+
|
43
|
+
## Bug fixes:
|
44
|
+
|
45
|
+
* Fix error message when underscore selection can't find bundler. Pull
|
46
|
+
request #4363 by deivid-rodriguez
|
47
|
+
* Fix `Gem::Specification.stubs_for` returning wrong named specs. Pull
|
48
|
+
request #4356 by tompng
|
49
|
+
* Don't error out when activating a binstub unless necessary. Pull request
|
50
|
+
#4351 by deivid-rodriguez
|
51
|
+
* Fix `gem outdated` incorrectly handling platform specific gems. Pull
|
52
|
+
request #4248 by deivid-rodriguez
|
53
|
+
|
54
|
+
# 3.2.8 / 2021-02-02
|
55
|
+
|
56
|
+
## Bug fixes:
|
57
|
+
|
58
|
+
* Fix `gem install` crashing on gemspec with nil required_ruby_version.
|
59
|
+
Pull request #4334 by pbernays
|
60
|
+
|
61
|
+
# 3.2.7 / 2021-01-26
|
62
|
+
|
63
|
+
## Bug fixes:
|
64
|
+
|
65
|
+
* Generate plugin wrappers with relative requires. Pull request #4317 by
|
66
|
+
deivid-rodriguez
|
67
|
+
|
68
|
+
# 3.2.6 / 2021-01-18
|
69
|
+
|
70
|
+
## Enhancements:
|
71
|
+
|
72
|
+
* Fix `Gem::Platform#inspect` showing duplicate information. Pull request
|
73
|
+
#4276 by deivid-rodriguez
|
74
|
+
|
75
|
+
## Bug fixes:
|
76
|
+
|
77
|
+
* Swallow any system call error in `ensure_gem_subdirs` to support jruby
|
78
|
+
embedded paths. Pull request #4291 by kares
|
79
|
+
* Restore accepting custom make command with extra options as the `make`
|
80
|
+
env variable. Pull request #4271 by terceiro
|
81
|
+
|
82
|
+
# 3.2.5 / 2021-01-11
|
83
|
+
|
84
|
+
## Bug fixes:
|
85
|
+
|
86
|
+
* Don't load more specs after the whole set of specs has been setup. Pull
|
87
|
+
request #4262 by deivid-rodriguez
|
88
|
+
* Fix broken `bundler` executable after `gem update --system`. Pull
|
89
|
+
request #4221 by deivid-rodriguez
|
90
|
+
|
91
|
+
# 3.2.4 / 2020-12-31
|
92
|
+
|
93
|
+
## Enhancements:
|
94
|
+
|
95
|
+
* Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
|
96
|
+
deivid-rodriguez
|
97
|
+
* Never spawn subshells when building extensions. Pull request #4190 by
|
98
|
+
deivid-rodriguez
|
99
|
+
|
100
|
+
## Bug fixes:
|
101
|
+
|
102
|
+
* Fix fallback to the old index and installation from it not working. Pull
|
103
|
+
request #4213 by deivid-rodriguez
|
104
|
+
* Fix installing from source on truffleruby. Pull request #4201 by
|
105
|
+
deivid-rodriguez
|
106
|
+
|
107
|
+
# 3.2.3 / 2020-12-22
|
108
|
+
|
109
|
+
## Enhancements:
|
110
|
+
|
111
|
+
* Fix misspellings in default API key name. Pull request #4177 by hsbt
|
112
|
+
|
113
|
+
## Bug fixes:
|
114
|
+
|
115
|
+
* Respect `required_ruby_version` and `required_rubygems_version`
|
116
|
+
constraints when looking for `gem install` candidates. Pull request #4110
|
117
|
+
by deivid-rodriguez
|
118
|
+
|
119
|
+
# 3.2.2 / 2020-12-17
|
120
|
+
|
121
|
+
## Bug fixes:
|
122
|
+
|
123
|
+
* Fix issue where CLI commands making more than one request to
|
124
|
+
rubygems.org needing an OTP code would crash or ask for the code twice.
|
125
|
+
Pull request #4162 by sonalkr132
|
126
|
+
* Fix building rake extensions that require openssl. Pull request #4165 by
|
127
|
+
deivid-rodriguez
|
128
|
+
* Fix `gem update --system` displaying too many changelog entries. Pull
|
129
|
+
request #4145 by deivid-rodriguez
|
130
|
+
|
131
|
+
# 3.2.1 / 2020-12-14
|
132
|
+
|
133
|
+
## Enhancements:
|
134
|
+
|
135
|
+
* Added help message for gem i webrick in gem server command. Pull request
|
136
|
+
#4117 by hsbt
|
137
|
+
|
138
|
+
## Bug fixes:
|
139
|
+
|
140
|
+
* Added the missing loading of fileutils same as load_specs. Pull request
|
141
|
+
#4124 by hsbt
|
142
|
+
* Fix Resolver::APISet to always include prereleases when necessary. Pull
|
143
|
+
request #4113 by deivid-rodriguez
|
144
|
+
|
145
|
+
# 3.2.0 / 2020-12-07
|
146
|
+
|
147
|
+
## Enhancements:
|
148
|
+
|
149
|
+
* Do not override Kernel#warn when there is no need. Pull request #4075 by
|
150
|
+
eregon
|
151
|
+
* Update endpoint of gem signin command. Pull request #3840 by sonalkr132
|
152
|
+
* Omit deprecated commands from command help output. Pull request #4023 by
|
153
|
+
landongrindheim
|
154
|
+
* Suggest alternatives in `gem query` deprecation. Pull request #4021 by
|
155
|
+
landongrindheim
|
156
|
+
* Lazily load `time`, `cgi`, and `zlib`. Pull request #4010 by
|
157
|
+
deivid-rodriguez
|
158
|
+
* Don't hit the network when installing dependencyless local gemspec. Pull
|
159
|
+
request #3968 by deivid-rodriguez
|
160
|
+
* Add `--force` option to `gem sources` command. Pull request #3956 by
|
161
|
+
andy-smith-msm
|
162
|
+
* Lazily load `openssl`. Pull request #3850 by deivid-rodriguez
|
163
|
+
* Pass more information when comparing platforms. Pull request #3817 by
|
164
|
+
eregon
|
165
|
+
|
166
|
+
## Bug fixes:
|
167
|
+
|
168
|
+
* Use better owner & group for files in rubygems package. Pull request
|
169
|
+
#4065 by deivid-rodriguez
|
170
|
+
* Improve gem build -C flag. Pull request #3983 by bronzdoc
|
171
|
+
* Handle unexpected behavior with URI#merge and subpaths missing trailing
|
172
|
+
slashes. Pull request #3123 by drcapulet
|
173
|
+
* Add missing `fileutils` require in rubygems installer. Pull request
|
174
|
+
#4036 by deivid-rodriguez
|
175
|
+
* Fix `--platform` option to `gem specification` being ignored. Pull
|
176
|
+
request #4043 by deivid-rodriguez
|
177
|
+
* Expose `--no-minimal-deps` flag to install the latest version of
|
178
|
+
dependencies. Pull request #4030 by deivid-rodriguez
|
179
|
+
* Fix "stack level too deep" error when overriding `Warning.warn`. Pull
|
180
|
+
request #3987 by eregon
|
181
|
+
* Append '.gemspec' extension only when it is not present. Pull request
|
182
|
+
#3988 by voxik
|
183
|
+
* Install to correct plugins dir when using `--build-root`. Pull request
|
184
|
+
#3972 by deivid-rodriguez
|
185
|
+
* Fix `--build-root` flag under Windows. Pull request #3975 by
|
186
|
+
deivid-rodriguez
|
187
|
+
* Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
|
188
|
+
request #3951 by andy-smith-msm
|
189
|
+
* Make `--default` and `--install-dir` options to `gem install` play nice
|
190
|
+
together. Pull request #3906 by deivid-rodriguez
|
191
|
+
|
192
|
+
## Deprecations:
|
193
|
+
|
194
|
+
* Deprecate server command. Pull request #3868 by bronzdoc
|
195
|
+
|
196
|
+
## Performance:
|
197
|
+
|
198
|
+
* Don't change ruby process CWD when building extensions. Pull request
|
199
|
+
#3498 by deivid-rodriguez
|
200
|
+
|
201
|
+
# 3.2.0.rc.2 / 2020-10-08
|
202
|
+
|
203
|
+
## Enhancements:
|
204
|
+
|
205
|
+
* Make --dry-run flag consistent across rubygems commands. Pull request
|
206
|
+
#3867 by bronzdoc
|
207
|
+
* Disallow downgrades to too old versions. Pull request #3566 by
|
208
|
+
deivid-rodriguez
|
209
|
+
* Added `--platform` option to `build` command. Pull request #3079 by nobu
|
210
|
+
* Have "gem update --system" pass through the `--silent` flag. Pull
|
211
|
+
request #3789 by duckinator
|
212
|
+
* Add writable check for cache dir. Pull request #3876 by xndcn
|
213
|
+
* Warn on duplicate dependency in a specification. Pull request #3864 by
|
214
|
+
bronzdoc
|
215
|
+
* Fix indentation in `gem env`. Pull request #3861 by colby-swandale
|
216
|
+
* Let more exceptions flow. Pull request #3819 by deivid-rodriguez
|
217
|
+
* Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
|
218
|
+
eregon
|
219
|
+
|
220
|
+
## Bug fixes:
|
221
|
+
|
222
|
+
* Add missing fileutils require. Pull request #3911 by deivid-rodriguez
|
223
|
+
* Fix false positive warning on Windows when PATH has
|
224
|
+
`File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
|
225
|
+
* Fix Kernel#warn override to handle backtrace location with nil path.
|
226
|
+
Pull request #3852 by jeremyevans
|
227
|
+
* Don't format executables on `gem update --system`. Pull request #3811 by
|
228
|
+
deivid-rodriguez
|
229
|
+
* `gem install --user` fails with `Gem::FilePermissionError` on the system
|
230
|
+
plugins directory. Pull request #3804 by nobu
|
231
|
+
|
232
|
+
## Performance:
|
233
|
+
|
234
|
+
* Avoid duplicated generation of APISpecification objects. Pull request
|
235
|
+
#3940 by mame
|
236
|
+
* Eval defaults with frozen_string_literal: true. Pull request #3847 by
|
237
|
+
casperisfine
|
238
|
+
* Deduplicate the requirement operators in memory. Pull request #3846 by
|
239
|
+
casperisfine
|
240
|
+
* Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
|
241
|
+
|
242
|
+
# 3.2.0.rc.1 / 2020-07-04
|
243
|
+
|
244
|
+
## Enhancements:
|
245
|
+
|
246
|
+
* Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
|
247
|
+
* Rework plugins system and speed up rubygems. Pull request #3108 by David
|
248
|
+
Rodríguez.
|
249
|
+
* Specify explicit separator not to be affected by $;. Pull request #3424
|
250
|
+
by Nobuyoshi Nakada.
|
251
|
+
* Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
|
252
|
+
* Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
|
253
|
+
* Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
|
254
|
+
* Log messages to stdout in `rake package`. Pull request #3632 by David
|
255
|
+
Rodríguez.
|
256
|
+
* Remove explicit `psych` activation. Pull request #3636 by David
|
257
|
+
Rodríguez.
|
258
|
+
* Delay `fileutils` loading to fix some warnings. Pull request #3637 by
|
259
|
+
David Rodríguez.
|
260
|
+
* Make sure rubygems/package can be directly required reliably. Pull
|
261
|
+
request #3670 by Luis Sagastume.
|
262
|
+
* Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
|
263
|
+
#3711 by David Rodríguez.
|
264
|
+
* Add Gem.disable_system_update_message to disable gem update --system if
|
265
|
+
needed. Pull request #3720 by Josef Šimánek.
|
266
|
+
* Tweaks to play nice with ruby-core setup. Pull request #3733 by David
|
267
|
+
Rodríguez.
|
268
|
+
* Remove explicit require for auto-loaded constant. Pull request #3751 by
|
269
|
+
Karol Bucek.
|
270
|
+
* Test files should not be included in spec.files. Pull request #3758 by
|
271
|
+
Marc-André Lafortune.
|
272
|
+
* Remove TODO comment about warning on setting instead of pushing. Pull
|
273
|
+
request #2823 by Luis Sagastume.
|
274
|
+
* Add deprecate command method. Pull request #2935 by Luis Sagastume.
|
275
|
+
* Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
|
276
|
+
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
277
|
+
#2985 by MSP-Greg.
|
278
|
+
* Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
|
279
|
+
Colby Swandale.
|
280
|
+
* Updates to some old gem-signing docs. Pull request #3063 by Tieg
|
281
|
+
Zaharia.
|
282
|
+
* Update the gem method for Gem::Installer. Pull request #3137 by Daniel
|
283
|
+
Berger.
|
284
|
+
* Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
|
285
|
+
* Resolve latest version via `gem contents`. Pull request #3149 by Dan
|
286
|
+
Rice.
|
287
|
+
* Install suggestions. Pull request #3151 by Sophia Castellarin.
|
288
|
+
* Only rescue the errors we actually want to rescue. Pull request #3156 by
|
289
|
+
David Rodríguez.
|
290
|
+
|
291
|
+
## Bug fixes:
|
292
|
+
|
293
|
+
* Accept not only /usr/bin/env but also /bin/env in some tests. Pull
|
294
|
+
request #3422 by Yusuke Endoh.
|
295
|
+
* Skip a test that attempts to remove the current directory on Solaris.
|
296
|
+
Pull request #3423 by Yusuke Endoh.
|
297
|
+
* Fix race condition on bundler's parallel installer. Pull request #3440
|
298
|
+
by David Rodríguez.
|
299
|
+
* Fix platform comparison check in #contains_requirable_file?. Pull
|
300
|
+
request #3495 by Benoit Daloze.
|
301
|
+
* Improve missing spec error. Pull request #3559 by Luis Sagastume.
|
302
|
+
* Fix hidden bundler template installation from rubygems updater. Pull
|
303
|
+
request #3674 by David Rodríguez.
|
304
|
+
* Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
|
305
|
+
* Correct conflict list when uninstallation is prevented. Pull request
|
306
|
+
#2973 by David Rodríguez.
|
307
|
+
* Fix error when trying to find bundler with a deleted "working directo….
|
308
|
+
Pull request #3090 by Luis Sagastume.
|
309
|
+
* Fix -I require priority. Pull request #3124 by David Rodríguez.
|
310
|
+
* Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
|
311
|
+
Rodríguez.
|
312
|
+
|
313
|
+
## Deprecations:
|
314
|
+
|
315
|
+
* Set deprecation warning on query command. Pull request #2967 by Luis
|
316
|
+
Sagastume.
|
317
|
+
|
318
|
+
## Breaking changes:
|
319
|
+
|
320
|
+
* Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
|
321
|
+
* Minitest cleanup. Pull request #3445 by David Rodríguez.
|
322
|
+
* Remove `builder` gem requirement for `gem regenerate_index`. Pull
|
323
|
+
request #3552 by David Rodríguez.
|
324
|
+
* Remove modelines for consistency. Pull request #3714 by David Rodríguez.
|
325
|
+
* Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
|
326
|
+
Bart de Water.
|
327
|
+
* Remove Gem module deprecated methods. Pull request #3101 by Luis
|
328
|
+
Sagastume.
|
329
|
+
* Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
|
330
|
+
* Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
|
331
|
+
Sagastume.
|
332
|
+
* Remove dependency installer deprecated methods. Pull request #3106 by
|
333
|
+
Luis Sagastume.
|
334
|
+
* Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
|
335
|
+
Sagastume.
|
336
|
+
* Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
|
337
|
+
Sagastume.
|
338
|
+
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
|
339
|
+
Luis Sagastume.
|
340
|
+
* Remove source_exception from Gem::Exception. Pull request #3112 by Luis
|
341
|
+
Sagastume.
|
342
|
+
* Requiring rubygems/source_specific_file is deprecated, remove it. Pull
|
343
|
+
request #3114 by Luis Sagastume.
|
344
|
+
|
345
|
+
# 3.1.4 / 2020-06-03
|
346
|
+
|
347
|
+
## Enhancements:
|
348
|
+
|
349
|
+
* Deprecate rubyforge_project attribute only during build
|
350
|
+
time. Pull request #3609 by Josef Šimánek.
|
351
|
+
* Update links. Pull request #3610 by Josef Šimánek.
|
352
|
+
* Run CI at 3.1 branch head as well. Pull request #3677 by Josef Šimánek.
|
353
|
+
* Remove failing ubuntu-rvm CI flow. Pull request #3611 by
|
354
|
+
Josef Šimánek.
|
355
|
+
|
356
|
+
# 3.1.3 / 2020-05-05
|
357
|
+
|
358
|
+
## Enhancements:
|
359
|
+
|
360
|
+
* Resolver: require NameTuple before use. Pull request #3171 by Olle
|
361
|
+
Jonsson.
|
362
|
+
* Use absolute paths with autoload. Pull request #3100 by David Rodríguez.
|
363
|
+
* Avoid changing $SOURCE_DATE_EPOCH. Pull request #3088 by Ellen Marie
|
364
|
+
Dash.
|
365
|
+
* Use Bundler 2.1.4. Pull request #3072 by Hiroshi SHIBATA.
|
366
|
+
* Add tests to check if Gem.ruby_version works with ruby git master.
|
367
|
+
Pull request #3049 by Yusuke Endoh.
|
368
|
+
|
369
|
+
## Bug fixes:
|
370
|
+
|
371
|
+
* Fix platform comparison check in #contains_requirable_file?. Pull
|
372
|
+
request #3495 by Benoit Daloze.
|
373
|
+
* Improve gzip errors logging. Pull request #3485 by David Rodríguez.
|
374
|
+
* Fix incorrect `gem uninstall --all` message. Pull request #3483 by David
|
375
|
+
Rodríguez.
|
376
|
+
* Fix incorrect bundler version being required. Pull request #3458 by
|
377
|
+
David Rodríguez.
|
378
|
+
* Fix gem install from a gemdeps file with complex dependencies.
|
379
|
+
Pull request #3054 by Luis Sagastume.
|
380
|
+
|
381
|
+
# 3.1.2 / 2019-12-20
|
382
|
+
|
383
|
+
## Enhancements:
|
384
|
+
|
385
|
+
* Restore non prompting `gem update --system` behavior. Pull request #3040
|
386
|
+
by David Rodríguez.
|
387
|
+
* Show only release notes for new code installed. Pull request #3041 by
|
388
|
+
David Rodríguez.
|
389
|
+
* Inform about installed `bundle` executable after `gem update --system`.
|
390
|
+
Pull request #3042 by David Rodríguez.
|
391
|
+
* Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
|
392
|
+
|
393
|
+
## Bug fixes:
|
394
|
+
|
395
|
+
* Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
|
396
|
+
* Fix `gem update --system --force`. Pull request #3035 by David
|
397
|
+
Rodríguez.
|
398
|
+
* Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
|
399
|
+
|
400
|
+
# 3.1.1 / 2019-12-16
|
401
|
+
|
402
|
+
## Bug fixes:
|
403
|
+
|
404
|
+
* Vendor Bundler 2.1.0 again. The version of Bundler with
|
405
|
+
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
|
406
|
+
SHIBATA Hiroshi.
|
407
|
+
|
408
|
+
# 3.1.0 / 2019-12-16
|
409
|
+
|
410
|
+
## Enhancements:
|
411
|
+
|
412
|
+
* Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
|
413
|
+
* Check for rubygems.org typo squatting sources. Pull request #2999 by
|
414
|
+
Luis Sagastume.
|
415
|
+
* Refactor remote fetcher. Pull request #3017 by David Rodríguez.
|
416
|
+
* Lazily load `open3`. Pull request #3001 by David Rodríguez.
|
417
|
+
* Remove `delegate` dependency. Pull request #3002 by David Rodríguez.
|
418
|
+
* Lazily load `uri`. Pull request #3005 by David Rodríguez.
|
419
|
+
* Lazily load `rubygems/gem_runner` during tests. Pull request #3009 by
|
420
|
+
David Rodríguez.
|
421
|
+
* Use bundler to manage development dependencies. Pull request #3012 by
|
422
|
+
David Rodríguez.
|
423
|
+
|
424
|
+
## Bug fixes:
|
425
|
+
|
426
|
+
* Remove unnecessary executable flags. Pull request #2982 by David
|
427
|
+
Rodríguez.
|
428
|
+
* Remove configuration that contained a typo. Pull request #2989 by David
|
429
|
+
Rodríguez.
|
430
|
+
|
431
|
+
## Deprecations:
|
432
|
+
|
433
|
+
* Deprecate `gem generate_index --modern` and `gem generate_index
|
434
|
+
--no-modern`. Pull request #2992 by David Rodríguez.
|
435
|
+
|
436
|
+
## Breaking changes:
|
437
|
+
|
438
|
+
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
439
|
+
|
440
|
+
# 3.1.0.pre3 / 2019-11-11
|
441
|
+
|
442
|
+
## Enhancements:
|
443
|
+
|
444
|
+
* Fix gem pristine not accounting for user installed gems. Pull request
|
445
|
+
#2914 by Luis Sagastume.
|
446
|
+
* Refactor keyword argument test for Ruby 2.7. Pull request #2947 by
|
447
|
+
SHIBATA Hiroshi.
|
448
|
+
* Fix errors at frozen Gem::Version. Pull request #2949 by Nobuyoshi
|
449
|
+
Nakada.
|
450
|
+
* Remove taint usage on Ruby 2.7+. Pull request #2951 by Jeremy Evans.
|
451
|
+
* Check Manifest.txt is up to date. Pull request #2953 by David Rodríguez.
|
452
|
+
* Clarify symlink conditionals in tests. Pull request #2962 by David
|
453
|
+
Rodríguez.
|
454
|
+
* Update command line parsing to work under ps. Pull request #2966 by
|
455
|
+
David Rodríguez.
|
456
|
+
* Properly test `Gem::Specifications.stub_for`. Pull request #2970 by
|
457
|
+
David Rodríguez.
|
458
|
+
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
459
|
+
#2985 by MSP-Greg.
|
460
|
+
|
461
|
+
# 3.1.0.pre2 / 2019-10-15
|
462
|
+
|
463
|
+
## Enhancements:
|
464
|
+
|
465
|
+
* Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
|
466
|
+
Boussier.
|
467
|
+
* Time comparison around date boundary. Pull request #2944 by Nobuyoshi
|
468
|
+
Nakada.
|
469
|
+
|
470
|
+
# 3.1.0.pre1 / 2019-10-08
|
471
|
+
|
472
|
+
## Enhancements:
|
473
|
+
|
474
|
+
* Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
|
475
|
+
* [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
|
476
|
+
Giddins.
|
477
|
+
* [Specification] Prefer user-installed gems to default gems. Pull request
|
478
|
+
#2112 by Samuel Giddins.
|
479
|
+
* Multifactor authentication for yank command. Pull request #2514 by Qiu
|
480
|
+
Chaofan.
|
481
|
+
* Autoswitch to exact bundler version if present. Pull request #2583 by
|
482
|
+
David Rodríguez.
|
483
|
+
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
484
|
+
request #2554 by Grey Baker.
|
485
|
+
* Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
|
486
|
+
Luis Sagastume.
|
487
|
+
* Fix typo in specs warning. Pull request #2585 by Rui.
|
488
|
+
* Bin/gem: remove initial empty line. Pull request #2602 by Kenyon Ralph.
|
489
|
+
* Avoid rdoc hook when it's failed to load rdoc library. Pull request
|
490
|
+
#2604 by SHIBATA Hiroshi.
|
491
|
+
* Refactor get_proxy_from_env logic. Pull request #2611 by Luis Sagastume.
|
492
|
+
* Allow to easily bisect flaky failures. Pull request #2626 by David
|
493
|
+
Rodríguez.
|
494
|
+
* Fix `--ignore-dependencies` flag not installing platform specific gems.
|
495
|
+
Pull request #2631 by David Rodríguez.
|
496
|
+
* Make `gem install --explain` list platforms. Pull request #2634 by David
|
497
|
+
Rodríguez.
|
498
|
+
* Make `gem update --explain` list platforms. Pull request #2635 by David
|
499
|
+
Rodríguez.
|
500
|
+
* Refactoring install and update explanations. Pull request #2643 by David
|
501
|
+
Rodríguez.
|
502
|
+
* Restore transitiveness of version comparison. Pull request #2651 by
|
503
|
+
David Rodríguez.
|
504
|
+
* Undo requirement sorting. Pull request #2652 by David Rodríguez.
|
505
|
+
* Update dummy version of Bundler for #2581. Pull request #2584 by SHIBATA
|
506
|
+
Hiroshi.
|
507
|
+
* Ignore to handle the different platform. Pull request #2672 by SHIBATA
|
508
|
+
Hiroshi.
|
509
|
+
* Make Gem::Specification.default_stubs to public methods. Pull request
|
510
|
+
#2675 by SHIBATA Hiroshi.
|
511
|
+
* Sort files and test_files in specifications. Pull request #2524 by
|
512
|
+
Christopher Baines.
|
513
|
+
* Fix comment of Gem::Specification#required_ruby_version=. Pull request
|
514
|
+
#2732 by Alex Junger.
|
515
|
+
* Config_file.rb - update path separator in ENV['GEMRC'] logic. Pull
|
516
|
+
request #2735 by MSP-Greg.
|
517
|
+
* Fix `ruby setup.rb` warnings. Pull request #2737 by David Rodríguez.
|
518
|
+
* Don't use regex delimiters when searching for a dependency. Pull request
|
519
|
+
#2738 by Luis Sagastume.
|
520
|
+
* Refactor query command. Pull request #2739 by Luis Sagastume.
|
521
|
+
* Don't remove default spec files from mapping after require. Pull request
|
522
|
+
#2741 by David Rodríguez.
|
523
|
+
* Cleanup base test case. Pull request #2742 by David Rodríguez.
|
524
|
+
* Simplify Specification#gems_dir. Pull request #2745 by David Rodríguez.
|
525
|
+
* Fix test warning. Pull request #2746 by David Rodríguez.
|
526
|
+
* Extract an `add_to_load_path` method. Pull request #2749 by David
|
527
|
+
Rodríguez.
|
528
|
+
* Fix setup command if format_executable is true by default. Pull request
|
529
|
+
#2766 by Jeremy Evans.
|
530
|
+
* Update the certificate files to make the test pass on Debian 10. Pull
|
531
|
+
request #2777 by Yusuke Endoh.
|
532
|
+
* Write to the correct config file(.gemrc). Pull request #2779 by Luis
|
533
|
+
Sagastume.
|
534
|
+
* Fix for large values in UID/GID fields in tar archives. Pull request
|
535
|
+
#2780 by Alexey Shein.
|
536
|
+
* Lazy require stringio. Pull request #2781 by Luis Sagastume.
|
537
|
+
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
538
|
+
Pull request #2782 by Luis Sagastume.
|
539
|
+
* Fix setup command test for bundler with program_suffix. Pull request
|
540
|
+
#2783 by Sorah Fukumori.
|
541
|
+
* Make sure `rake package` works. Pull request #2787 by David Rodríguez.
|
542
|
+
* Synchronize access to the Gem::Specification::LOAD_CACHE Hash. Pull
|
543
|
+
request #2789 by Benoit Daloze.
|
544
|
+
* Task to install rubygems to local system. Pull request #2795 by David
|
545
|
+
Rodríguez.
|
546
|
+
* Add an attr_reader to Gem::Installer for the package instance variable.
|
547
|
+
Pull request #2796 by Daniel Berger.
|
548
|
+
* Switch CI script to bash. Pull request #2799 by David Rodríguez.
|
549
|
+
* Move gemcutter utilities code to Gem::Command. Pull request #2803 by
|
550
|
+
Luis Sagastume.
|
551
|
+
* Add raw spec method to gem package. Pull request #2806 by Luis
|
552
|
+
Sagastume.
|
553
|
+
* Improve `rake package` test error message. Pull request #2815 by David
|
554
|
+
Rodríguez.
|
555
|
+
* Resolve `@@project_dir` from test file paths. Pull request #2843 by
|
556
|
+
Nobuyoshi Nakada.
|
557
|
+
* Remove dead code in Gem::Validator. Pull request #2537 by Ellen Marie
|
558
|
+
Dash.
|
559
|
+
* The date might have advanced since TODAY has been set. Pull request
|
560
|
+
#2938 by Nobuyoshi Nakada.
|
561
|
+
* Remove old ci configurations. Pull request #2917 by SHIBATA Hiroshi.
|
562
|
+
* Add Gem::Dependency identity. Pull request #2936 by Luis Sagastume.
|
563
|
+
* Filter dependency type and name strictly. Pull request #2930 by SHIBATA
|
564
|
+
Hiroshi.
|
565
|
+
* Always pass an encoding option to Zlib::GzipReader.wrap. Pull request
|
566
|
+
#2933 by Nobuyoshi Nakada.
|
567
|
+
* Introduce default prerelease requirement. Pull request #2925 by David
|
568
|
+
Rodríguez.
|
569
|
+
* Detect libc version, closes #2918. Pull request #2922 by fauno.
|
570
|
+
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
571
|
+
request #2894 by Alexander Pakulov.
|
572
|
+
* Improve `gem uninstall --all`. Pull request #2893 by David Rodríguez.
|
573
|
+
* Use `RbConfig::CONFIG['rubylibprefix']`. Pull request #2889 by Nobuyoshi
|
574
|
+
Nakada.
|
575
|
+
* Build the first gemspec we found if no arguments are passed to gem
|
576
|
+
build. Pull request #2887 by Luis Sagastume.
|
577
|
+
* $LOAD_PATH elements should be real paths. Pull request #2885 by
|
578
|
+
Nobuyoshi Nakada.
|
579
|
+
* Use the standard RUBY_ENGINE_VERSION instead of JRUBY_VERSION. Pull
|
580
|
+
request #2864 by Benoit Daloze.
|
581
|
+
* Cleanup after testing `rake package`. Pull request #2862 by David
|
582
|
+
Rodríguez.
|
583
|
+
* Cherry-pick shushing deprecation warnings from ruby-core. Pull request
|
584
|
+
#2861 by David Rodríguez.
|
585
|
+
* Ext/builder.rb cleanup. Pull request #2849 by Luis Sagastume.
|
586
|
+
* Fix @ran_rake assignment in builder.rb. Pull request #2850 by Luis
|
587
|
+
Sagastume.
|
588
|
+
* Remove test suite warnings. Pull request #2845 by Luis Sagastume.
|
589
|
+
* Replace domain parameter with a parameter to suppress suggestions. Pull
|
590
|
+
request #2846 by Luis Sagastume.
|
591
|
+
* Move default specifications dir definition out of BasicSpecification.
|
592
|
+
Pull request #2841 by Vít Ondruch.
|
593
|
+
* There is no usage of @orig_env_* variables in test suite. Pull request
|
594
|
+
#2838 by SHIBATA Hiroshi.
|
595
|
+
* Use File#open instead of Kernel#open in stub_specification.rb. Pull
|
596
|
+
request #2834 by Luis Sagastume.
|
597
|
+
* Simplify #to_ruby code. Pull request #2825 by Nobuyoshi Nakada.
|
598
|
+
* Add a gem attr to the Gem::Package class. Pull request #2828 by Daniel
|
599
|
+
Berger.
|
600
|
+
* Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
|
601
|
+
|
602
|
+
## Bug fixes:
|
603
|
+
|
604
|
+
* Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
|
605
|
+
* Remove unused empty sources array. Pull request #2598 by Aaron
|
606
|
+
Patterson.
|
607
|
+
* Fix windows specific executables generated by `gem install`. Pull
|
608
|
+
request #2628 by David Rodríguez.
|
609
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
610
|
+
Nobuyoshi Nakada.
|
611
|
+
* Set SOURCE_DATE_EPOCH env var if not provided. Pull request #2882 by
|
612
|
+
Ellen Marie Dash.
|
613
|
+
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
614
|
+
* Fixed deprecation message. Pull request #2867 by Nobuyoshi Nakada.
|
615
|
+
* Fix requiring default gems to consider prereleases. Pull request #2728
|
616
|
+
by David Rodríguez.
|
617
|
+
* Forbid `find_spec_for_exe` without an `exec_name`. Pull request #2706 by
|
618
|
+
David Rodríguez.
|
619
|
+
* Do not prompt for passphrase when key can be loaded without it. Pull
|
620
|
+
request #2710 by Luis Sagastume.
|
621
|
+
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
622
|
+
* Remove long ago deprecated methods. Pull request #2704 by David
|
623
|
+
Rodríguez.
|
624
|
+
* Renamed duplicate test. Pull request #2678 by Nobuyoshi Nakada.
|
625
|
+
* File.exists? is deprecated. Pull request #2855 by SHIBATA Hiroshi.
|
626
|
+
* Fixed to warn with shadowing outer local variable. Pull request #2856 by
|
627
|
+
SHIBATA Hiroshi.
|
628
|
+
* Fix explain with ignore-dependencies. Pull request #2647 by David
|
629
|
+
Rodríguez.
|
630
|
+
* Fix default gem executable installation when folder is not `bin/`. Pull
|
631
|
+
request #2649 by David Rodríguez.
|
632
|
+
* Fix cryptic error on local and ignore-dependencies combination. Pull
|
633
|
+
request #2650 by David Rodríguez.
|
634
|
+
|
635
|
+
## Deprecations:
|
636
|
+
|
637
|
+
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
638
|
+
#2857 by SHIBATA Hiroshi.
|
639
|
+
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
640
|
+
Sagastume.
|
641
|
+
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
642
|
+
Rodríguez.
|
643
|
+
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
644
|
+
Ondruch.
|
645
|
+
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
646
|
+
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
647
|
+
Sagastume.
|
648
|
+
|
649
|
+
## Breaking changes:
|
650
|
+
|
651
|
+
* Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
|
652
|
+
* Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
|
653
|
+
ITO.
|
654
|
+
* Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
|
655
|
+
* Remove conflict.rb code that was supposed to be removed in Rubygems 3.
|
656
|
+
Pull request #2802 by Luis Sagastume.
|
657
|
+
* Compatibility cleanups. Pull request #2754 by David Rodríguez.
|
658
|
+
* Remove `others_possible` activation request param. Pull request #2747 by
|
659
|
+
David Rodríguez.
|
660
|
+
* Remove dependency installer deprecated code. Pull request #2740 by Luis
|
661
|
+
Sagastume.
|
662
|
+
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
|
663
|
+
by SHIBATA Hiroshi.
|
664
|
+
* Skip deprecation warning during specs. Pull request #2718 by David
|
665
|
+
Rodríguez.
|
666
|
+
* Remove QuickLoader reference. Pull request #2719 by David Rodríguez.
|
667
|
+
* Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
|
668
|
+
* Removed needless environmental variable for Travis CI. Pull request
|
669
|
+
#2685 by SHIBATA Hiroshi.
|
670
|
+
* Removing yaml require. Pull request #2538 by Luciano Sousa.
|
671
|
+
|
672
|
+
# 3.0.8 / 2020-02-19
|
673
|
+
|
674
|
+
## Bug fixes:
|
675
|
+
|
676
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
677
|
+
Nobuyoshi Nakada.
|
678
|
+
|
679
|
+
# 3.0.7 / 2020-02-18
|
680
|
+
|
681
|
+
## Bug fixes:
|
682
|
+
|
683
|
+
* Fix underscore version selection for bundler #2908 by David Rodríguez.
|
684
|
+
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
685
|
+
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
686
|
+
Pull request #2782 by Luis Sagastume.
|
687
|
+
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
688
|
+
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
689
|
+
request #2894 by Alexander Pakulov.
|
690
|
+
|
691
|
+
# 3.0.6 / 2019-08-17
|
692
|
+
|
693
|
+
## Bug fixes:
|
6
694
|
|
7
695
|
* Revert #2813. It broke the compatibility with 3.0.x versions.
|
8
696
|
|
9
|
-
|
697
|
+
# 3.0.5 / 2019-08-16
|
10
698
|
|
11
|
-
|
699
|
+
## Enhancements:
|
12
700
|
|
13
701
|
* Use env var to configure api key on push. Pull request #2559 by Luis
|
14
702
|
Sagastume.
|
@@ -43,7 +731,7 @@ Minor enhancements:
|
|
43
731
|
by Alexander Pakulov.
|
44
732
|
* Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
|
45
733
|
|
46
|
-
Bug fixes:
|
734
|
+
## Bug fixes:
|
47
735
|
|
48
736
|
* Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
|
49
737
|
MSP-Greg.
|
@@ -59,9 +747,9 @@ Bug fixes:
|
|
59
747
|
* Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
|
60
748
|
Hiroshi.
|
61
749
|
|
62
|
-
|
750
|
+
# 3.0.4 / 2019-06-14
|
63
751
|
|
64
|
-
|
752
|
+
## Enhancements:
|
65
753
|
|
66
754
|
* Add support for TruffleRuby #2612 by Benoit Daloze
|
67
755
|
* Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
|
@@ -98,7 +786,7 @@ Minor enhancements:
|
|
98
786
|
request #2777 by Yusuke Endoh.
|
99
787
|
* Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
|
100
788
|
|
101
|
-
Bug fixes:
|
789
|
+
## Bug fixes:
|
102
790
|
|
103
791
|
* Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
|
104
792
|
* Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
|
@@ -114,11 +802,10 @@ Bug fixes:
|
|
114
802
|
#2732 by Alex Junger.
|
115
803
|
* Fix TODOs. Pull request #2748 by David Rodríguez.
|
116
804
|
|
117
|
-
|
805
|
+
# 3.0.3 / 2019-03-05
|
118
806
|
|
119
807
|
Security fixes:
|
120
808
|
|
121
|
-
* Fixed following vulnerabilities:
|
122
809
|
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
123
810
|
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
124
811
|
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
@@ -126,14 +813,14 @@ Security fixes:
|
|
126
813
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
127
814
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
128
815
|
|
129
|
-
|
816
|
+
# 3.0.2 / 2019-01-01
|
130
817
|
|
131
|
-
|
818
|
+
## Enhancements:
|
132
819
|
|
133
820
|
* Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
|
134
821
|
* Fix document flag description. Pull request #2555 by Luis Sagastume.
|
135
822
|
|
136
|
-
Bug fixes:
|
823
|
+
## Bug fixes:
|
137
824
|
|
138
825
|
* Fix tests when ruby --program-suffix is used without rubygems
|
139
826
|
--format-executable. Pull request #2549 by Jeremy Evans.
|
@@ -143,9 +830,9 @@ Bug fixes:
|
|
143
830
|
Fukumori.
|
144
831
|
* Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
|
145
832
|
|
146
|
-
|
833
|
+
# 3.0.1 / 2018-12-23
|
147
834
|
|
148
|
-
Bug fixes:
|
835
|
+
## Bug fixes:
|
149
836
|
|
150
837
|
* Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
|
151
838
|
* Dup the Dir.home string before passing it on. Pull request #2545 by
|
@@ -154,9 +841,9 @@ Bug fixes:
|
|
154
841
|
by SHIBATA Hiroshi.
|
155
842
|
* Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
|
156
843
|
|
157
|
-
|
844
|
+
# 3.0.0 / 2018-12-19
|
158
845
|
|
159
|
-
|
846
|
+
## Enhancements:
|
160
847
|
|
161
848
|
* S3 source. Pull request #1690 by Aditya Prakash.
|
162
849
|
* Download gems with threads. Pull request #1898 by André Arko.
|
@@ -164,9 +851,6 @@ Major enhancements:
|
|
164
851
|
* [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
|
165
852
|
Chaofan.
|
166
853
|
* Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
|
167
|
-
|
168
|
-
Minor enhancements:
|
169
|
-
|
170
854
|
* Don't treat inaccessible working directories as build failures. Pull
|
171
855
|
request #1135 by Pete.
|
172
856
|
* Remove useless directory parameter from builders .build methods.
|
@@ -193,7 +877,7 @@ Minor enhancements:
|
|
193
877
|
Swandale.
|
194
878
|
* Add Gem.operating_system_defaults to allow packagers to override
|
195
879
|
defaults. Pull request #2116 by Vít Ondruch.
|
196
|
-
* Update for
|
880
|
+
* Update for compatibility with new minitest. Pull request #2118 by
|
197
881
|
MSP-Greg.
|
198
882
|
* Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
|
199
883
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
@@ -225,11 +909,11 @@ Minor enhancements:
|
|
225
909
|
SHIBATA Hiroshi.
|
226
910
|
* Add Rake task to install dev dependencies. Pull request #2173 by Ellen
|
227
911
|
Marie Dash.
|
228
|
-
* Add new sections to the README and
|
912
|
+
* Add new sections to the README and explanation of what RubyGems is.
|
229
913
|
Pull request #2174 by Colby Swandale.
|
230
914
|
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
|
231
915
|
SHIBATA Hiroshi.
|
232
|
-
* Ignore
|
916
|
+
* Ignore performance test of version regexp pattern. Pull request #2179 by
|
233
917
|
SHIBATA Hiroshi.
|
234
918
|
* Ignore .DS_Store files in the update_manifest task. Pull request #2199
|
235
919
|
by Colby Swandale.
|
@@ -310,7 +994,7 @@ Minor enhancements:
|
|
310
994
|
* This removes support for dynamic API backend lookup via DNS SRV records.
|
311
995
|
Pull request #2433 by Arlandis Word.
|
312
996
|
* Fix link to CONTRIBUTING.md doc. Pull request #2434 by Arlandis Word.
|
313
|
-
* Support Keyword args with
|
997
|
+
* Support Keyword args with Psych. Pull request #2439 by SHIBATA Hiroshi.
|
314
998
|
* Bug/kernel#warn uplevel. Pull request #2442 by Nobuyoshi Nakada.
|
315
999
|
* Improve certificate error message. Pull request #2454 by Luis Sagastume.
|
316
1000
|
* Update gem open command help text. Pull request #2458 by Aditya Prakash.
|
@@ -324,7 +1008,7 @@ Minor enhancements:
|
|
324
1008
|
* Support the environment without OpenSSL. Pull request #2528 by SHIBATA
|
325
1009
|
Hiroshi.
|
326
1010
|
|
327
|
-
Bug fixes:
|
1011
|
+
## Bug fixes:
|
328
1012
|
|
329
1013
|
* Fix undefined method error when printing alert. Pull request #1884 by
|
330
1014
|
Robert Ross.
|
@@ -377,7 +1061,7 @@ Bug fixes:
|
|
377
1061
|
* Fix tests when --program-suffix and similar ruby configure options are
|
378
1062
|
used. Pull request #2529 by Jeremy Evans.
|
379
1063
|
|
380
|
-
|
1064
|
+
## Breaking changes:
|
381
1065
|
|
382
1066
|
* IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
|
383
1067
|
Hiroshi.
|
@@ -410,7 +1094,7 @@ Compatibility changes:
|
|
410
1094
|
by SHIBATA Hiroshi.
|
411
1095
|
* Remove needless define/respond_to condition. Pull request #2255 by
|
412
1096
|
SHIBATA Hiroshi.
|
413
|
-
* Use File.realpath
|
1097
|
+
* Use File.realpath directly in Gem::Package. Pull request #2284 by
|
414
1098
|
SHIBATA Hiroshi.
|
415
1099
|
* Removed needless condition for old versions of Ruby. Pull request #2286
|
416
1100
|
by SHIBATA Hiroshi.
|
@@ -430,32 +1114,30 @@ Compatibility changes:
|
|
430
1114
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
431
1115
|
major versions. Pull request #2515 by Colby Swandale.
|
432
1116
|
|
433
|
-
|
1117
|
+
# 2.7.10 / 2019-06-14
|
434
1118
|
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
* Add a rubocop binstub. Pull request #2468 by David Rodríguez.
|
445
|
-
* Restore the `rubocop` task. Pull request #2470 by David Rodríguez.
|
446
|
-
* Remove trailing blank lines. Pull request #2471 by David Rodríguez.
|
447
|
-
* Remove empty lines around method bodies. Pull request #2473 by David
|
448
|
-
Rodríguez.
|
449
|
-
* Enable Style/MethodDefParentheses in Rubocop. Pull request #2478 by
|
450
|
-
Colby Swandale.
|
451
|
-
* Enable Style/MultilineIfThen in Rubocop. Pull request #2479 by Luis
|
452
|
-
Sagastume.
|
453
|
-
* Remove trailing 'then' from generated code. Pull request #2480 by Luis
|
454
|
-
Sagastume.
|
1119
|
+
## Enhancements:
|
1120
|
+
|
1121
|
+
* Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
|
1122
|
+
by David Rodríguez.
|
1123
|
+
* [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
|
1124
|
+
Pull request #2515 by Colby Swandale.
|
1125
|
+
+ Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
|
1126
|
+
|
1127
|
+
# 2.7.9 / 2019-03-05
|
455
1128
|
|
456
|
-
|
1129
|
+
Security fixes:
|
1130
|
+
|
1131
|
+
* CVE-2019-8320: Delete directory using symlink when decompressing tar
|
1132
|
+
* CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
|
1133
|
+
* CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
|
1134
|
+
* CVE-2019-8323: Escape sequence injection vulnerability in API response handling
|
1135
|
+
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
1136
|
+
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
457
1137
|
|
458
|
-
|
1138
|
+
# 2.7.8 / 2018-11-02
|
1139
|
+
|
1140
|
+
## Enhancements:
|
459
1141
|
|
460
1142
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
461
1143
|
request #2230 by Samuel Giddins.
|
@@ -474,7 +1156,7 @@ Minor enhancements:
|
|
474
1156
|
* Improve bindir flag description. Pull request #2383 by Luis Sagastume.
|
475
1157
|
* Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
|
476
1158
|
|
477
|
-
Bug fixes:
|
1159
|
+
## Bug fixes:
|
478
1160
|
|
479
1161
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
480
1162
|
request #2229 by Elias Hernandis.
|
@@ -487,9 +1169,9 @@ Bug fixes:
|
|
487
1169
|
* Gem::Version should handle nil like it used to before. Pull request
|
488
1170
|
#2363 by Luis Sagastume.
|
489
1171
|
|
490
|
-
|
1172
|
+
# 2.7.7 / 2018-05-08
|
491
1173
|
|
492
|
-
|
1174
|
+
## Enhancements:
|
493
1175
|
|
494
1176
|
* [RequestSet] Only suggest a gem version with an installable platform.
|
495
1177
|
Pull request #2175 by Samuel Giddins.
|
@@ -504,7 +1186,7 @@ Minor enhancements:
|
|
504
1186
|
Sagastume.
|
505
1187
|
* Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
|
506
1188
|
|
507
|
-
Bug fixes:
|
1189
|
+
## Bug fixes:
|
508
1190
|
|
509
1191
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
510
1192
|
#2115 by MSP-Greg.
|
@@ -517,16 +1199,19 @@ Bug fixes:
|
|
517
1199
|
* Fix path checks for case insensitive filesystem. Pull request #2211 by
|
518
1200
|
Lars Kanis.
|
519
1201
|
|
520
|
-
|
1202
|
+
## Deprecations:
|
521
1203
|
|
522
1204
|
* Deprecate unused code before removing them at #1524. Pull request #2197
|
523
1205
|
by SHIBATA Hiroshi.
|
524
1206
|
* Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
|
525
1207
|
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
|
526
1208
|
SHIBATA Hiroshi.
|
1209
|
+
|
1210
|
+
## Breaking changes:
|
1211
|
+
|
527
1212
|
* Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
|
528
1213
|
|
529
|
-
|
1214
|
+
# 2.7.6 / 2018-02-16
|
530
1215
|
|
531
1216
|
Security fixes:
|
532
1217
|
|
@@ -535,7 +1220,7 @@ Security fixes:
|
|
535
1220
|
* Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
|
536
1221
|
Fixed by Jonathan Claudius.
|
537
1222
|
* Strictly interpret octal fields in tar headers.
|
538
|
-
|
1223
|
+
Discovered by plover, fixed by Samuel Giddins.
|
539
1224
|
* Raise a security error when there are duplicate files in a package.
|
540
1225
|
Discovered by plover, fixed by Samuel Giddins.
|
541
1226
|
* Enforce URL validation on spec homepage attribute.
|
@@ -545,9 +1230,9 @@ Security fixes:
|
|
545
1230
|
* Prevent Path Traversal issue during gem installation.
|
546
1231
|
Discovered by nmalkin.
|
547
1232
|
|
548
|
-
|
1233
|
+
# 2.7.5
|
549
1234
|
|
550
|
-
Bug fixes:
|
1235
|
+
## Bug fixes:
|
551
1236
|
|
552
1237
|
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
553
1238
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
@@ -559,9 +1244,9 @@ Bug fixes:
|
|
559
1244
|
* Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
|
560
1245
|
* Fix undefined method error when printing alert #1884 by Robert Ross.
|
561
1246
|
|
562
|
-
|
1247
|
+
# 2.7.4
|
563
1248
|
|
564
|
-
Bug fixes:
|
1249
|
+
## Bug fixes:
|
565
1250
|
|
566
1251
|
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
567
1252
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
@@ -570,9 +1255,9 @@ Bug fixes:
|
|
570
1255
|
* Handle environment that does not have `flock` system call. Pull request
|
571
1256
|
#2107 by SHIBATA Hiroshi.
|
572
1257
|
|
573
|
-
|
1258
|
+
# 2.7.3
|
574
1259
|
|
575
|
-
|
1260
|
+
## Enhancements:
|
576
1261
|
|
577
1262
|
* Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
|
578
1263
|
* Add --[no-]check-development option to cleanup command. Pull request
|
@@ -585,7 +1270,7 @@ Minor enhancements:
|
|
585
1270
|
* Remove multi load warning from plugins documentation. Pull request #2103
|
586
1271
|
by Thibault Jouan.
|
587
1272
|
|
588
|
-
Bug fixes:
|
1273
|
+
## Bug fixes:
|
589
1274
|
|
590
1275
|
* Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
|
591
1276
|
Dash.
|
@@ -604,33 +1289,30 @@ Bug fixes:
|
|
604
1289
|
* Use setup command --regenerate-binstubs option flag. Pull request #2099
|
605
1290
|
by Thibault Jouan.
|
606
1291
|
|
607
|
-
|
1292
|
+
# 2.7.2
|
608
1293
|
|
609
|
-
Bug fixes:
|
1294
|
+
## Bug fixes:
|
610
1295
|
|
611
1296
|
* Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
|
612
1297
|
Hiroshi.
|
613
1298
|
* Added workaround for non-git environment. Pull request #2066 by SHIBATA
|
614
1299
|
Hiroshi.
|
615
1300
|
|
616
|
-
|
1301
|
+
# 2.7.1 (2017-11-03)
|
617
1302
|
|
618
|
-
Bug fixes:
|
1303
|
+
## Bug fixes:
|
619
1304
|
|
620
1305
|
* Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
|
621
1306
|
Samuel Giddins.
|
622
1307
|
|
623
|
-
|
1308
|
+
# 2.7.0 (2017-11-02)
|
624
1309
|
|
625
|
-
|
1310
|
+
## Enhancements:
|
626
1311
|
|
627
1312
|
* Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
|
628
1313
|
* Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
|
629
1314
|
* Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
|
630
1315
|
* Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
|
631
|
-
|
632
|
-
Minor enhancements:
|
633
|
-
|
634
1316
|
* Added message to uninstall command for gem that is not installed. Pull
|
635
1317
|
request #1979 by anant anil kolvankar.
|
636
1318
|
* Add --trust-policy option to unpack command. Pull request #1718 by
|
@@ -716,11 +1398,8 @@ Minor enhancements:
|
|
716
1398
|
* Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
|
717
1399
|
Dash.
|
718
1400
|
|
719
|
-
|
1401
|
+
## Deprecations:
|
720
1402
|
|
721
|
-
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
722
|
-
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
723
|
-
by SHIBATA Hiroshi.
|
724
1403
|
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
725
1404
|
Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
|
726
1405
|
* Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
|
@@ -728,10 +1407,16 @@ Compatibility changes:
|
|
728
1407
|
* Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
|
729
1408
|
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
730
1409
|
Pull request #1731 by Jon Moss.
|
1410
|
+
|
1411
|
+
## Breaking changes:
|
1412
|
+
|
1413
|
+
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
1414
|
+
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
1415
|
+
by SHIBATA Hiroshi.
|
731
1416
|
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
732
1417
|
#1796 by Matej.
|
733
1418
|
|
734
|
-
Bug fixes:
|
1419
|
+
## Bug fixes:
|
735
1420
|
|
736
1421
|
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
|
737
1422
|
MSP-Greg.
|
@@ -784,7 +1469,7 @@ Bug fixes:
|
|
784
1469
|
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
785
1470
|
Pull request #1738 by Samuel Giddins.
|
786
1471
|
|
787
|
-
|
1472
|
+
# 2.6.14 / 2017-10-09
|
788
1473
|
|
789
1474
|
Security fixes:
|
790
1475
|
|
@@ -792,7 +1477,7 @@ Security fixes:
|
|
792
1477
|
See CVE-2017-0903 for full details.
|
793
1478
|
Fix by Aaron Patterson.
|
794
1479
|
|
795
|
-
|
1480
|
+
# 2.6.13 / 2017-08-27
|
796
1481
|
|
797
1482
|
Security fixes:
|
798
1483
|
|
@@ -806,9 +1491,9 @@ Security fixes:
|
|
806
1491
|
to overwrite arbitrary files. (CVE-2017-0901)
|
807
1492
|
Discovered by Yusuke Endoh, fix by Samuel Giddins.
|
808
1493
|
|
809
|
-
|
1494
|
+
# 2.6.12 / 2017-04-30
|
810
1495
|
|
811
|
-
Bug fixes:
|
1496
|
+
## Bug fixes:
|
812
1497
|
|
813
1498
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
814
1499
|
request #1880 by Kazuaki Matsuo.
|
@@ -829,9 +1514,9 @@ Bug fixes:
|
|
829
1514
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
830
1515
|
request #1910 by Samuel Giddins.
|
831
1516
|
|
832
|
-
|
1517
|
+
# 2.6.11 / 2017-03-16
|
833
1518
|
|
834
|
-
Bug fixes:
|
1519
|
+
## Bug fixes:
|
835
1520
|
|
836
1521
|
* Fixed broken tests on ruby-head. Pull request #1841 by
|
837
1522
|
SHIBATA Hiroshi.
|
@@ -842,16 +1527,16 @@ Bug fixes:
|
|
842
1527
|
* Use improved resolver sorting algorithm. Pull request #1856 by
|
843
1528
|
Samuel Giddins.
|
844
1529
|
|
845
|
-
|
1530
|
+
# 2.6.10 / 2017-01-23
|
846
1531
|
|
847
|
-
Bug fixes:
|
1532
|
+
## Bug fixes:
|
848
1533
|
|
849
1534
|
* Fix `require` calling the wrong `gem` method when it is overridden.
|
850
1535
|
Pull request #1822 by Samuel Giddins.
|
851
1536
|
|
852
|
-
|
1537
|
+
# 2.6.9 / 2017-01-20
|
853
1538
|
|
854
|
-
Bug fixes:
|
1539
|
+
## Bug fixes:
|
855
1540
|
|
856
1541
|
* Allow initializing versions with empty strings. Pull request #1767 by
|
857
1542
|
Luis Sagastume.
|
@@ -865,9 +1550,9 @@ Bug fixes:
|
|
865
1550
|
* RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
|
866
1551
|
Jonsson.
|
867
1552
|
|
868
|
-
|
1553
|
+
# 2.6.8 / 2016-10-29
|
869
1554
|
|
870
|
-
Bug fixes:
|
1555
|
+
## Bug fixes:
|
871
1556
|
|
872
1557
|
* Improve SSL verification failure message. Pull request #1751
|
873
1558
|
by Eric Hodel.
|
@@ -876,9 +1561,9 @@ Bug fixes:
|
|
876
1561
|
* Update vendored Molinillo to 0.5.3. Pull request #1763 by
|
877
1562
|
Samuel Giddins.
|
878
1563
|
|
879
|
-
|
1564
|
+
# 2.6.7 / 2016-09-26
|
880
1565
|
|
881
|
-
Bug fixes:
|
1566
|
+
## Bug fixes:
|
882
1567
|
|
883
1568
|
* Install native extensions in the correct location when using the
|
884
1569
|
`--user-install` flag. Pull request #1683 by Noah Kantrowitz.
|
@@ -890,24 +1575,24 @@ Bug fixes:
|
|
890
1575
|
* Update vendored Molinillo to 0.5.1. Pull request #1714 by
|
891
1576
|
Samuel Giddins.
|
892
1577
|
|
893
|
-
|
1578
|
+
# 2.6.6 / 2016-06-22
|
894
1579
|
|
895
|
-
Bug fixes:
|
1580
|
+
## Bug fixes:
|
896
1581
|
|
897
1582
|
* Sort installed versions to make sure we install the latest version when
|
898
1583
|
running `gem update --system`. As a one-time fix, run
|
899
1584
|
`gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
|
900
1585
|
|
901
|
-
|
1586
|
+
# 2.6.5 / 2016-06-21
|
902
1587
|
|
903
|
-
|
1588
|
+
## Enhancements:
|
904
1589
|
|
905
1590
|
* Support for unified Integer in Ruby 2.4. Pull request #1618
|
906
1591
|
by SHIBATA Hiroshi.
|
907
1592
|
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
908
1593
|
Pull request #1638 by Samuel Giddins.
|
909
1594
|
|
910
|
-
Bug fixes:
|
1595
|
+
## Bug fixes:
|
911
1596
|
|
912
1597
|
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
913
1598
|
request #1605 by Daniel Berger.
|
@@ -927,16 +1612,16 @@ Bug fixes:
|
|
927
1612
|
Pull request #1644 by Charles Oliver Nutter.
|
928
1613
|
* Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
|
929
1614
|
|
930
|
-
|
1615
|
+
# 2.6.4 / 2016-04-26
|
931
1616
|
|
932
|
-
|
1617
|
+
## Enhancements:
|
933
1618
|
|
934
1619
|
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
|
935
1620
|
by Chris Charabaruk.
|
936
1621
|
* Use File.symlink on MS Windows if supported. Pull request #1418
|
937
1622
|
by Nobuyoshi Nakada.
|
938
1623
|
|
939
|
-
Bug fixes:
|
1624
|
+
## Bug fixes:
|
940
1625
|
|
941
1626
|
* Redact uri password from error output when gem fetch fails. Pull request
|
942
1627
|
#1565 by Brian Fletcher.
|
@@ -944,9 +1629,9 @@ Bug fixes:
|
|
944
1629
|
* Escape user-supplied content served on web pages by `gem server` to avoid
|
945
1630
|
potential XSS vulnerabilities. Samuel Giddins.
|
946
1631
|
|
947
|
-
|
1632
|
+
# 2.6.3 / 2016-04-05
|
948
1633
|
|
949
|
-
|
1634
|
+
## Enhancements:
|
950
1635
|
|
951
1636
|
* Lazily calculate Gem::LoadError exception messages. Pull request #1550
|
952
1637
|
by Aaron Patterson.
|
@@ -957,7 +1642,7 @@ Minor enhancements:
|
|
957
1642
|
* Show default gems when using "gem list". Pull request #1570 by Luis
|
958
1643
|
Sagastume.
|
959
1644
|
|
960
|
-
Bug fixes:
|
1645
|
+
## Bug fixes:
|
961
1646
|
|
962
1647
|
* Stub ordering should be consistent regardless of how cache is populated.
|
963
1648
|
Pull request #1552 by Aaron Patterson.
|
@@ -973,9 +1658,9 @@ Bug fixes:
|
|
973
1658
|
Giddins.
|
974
1659
|
* Allow two digit version numbers in the tests. Pull request #1575 by unak.
|
975
1660
|
|
976
|
-
|
1661
|
+
# 2.6.2 / 2016-03-12
|
977
1662
|
|
978
|
-
Bug fixes:
|
1663
|
+
## Bug fixes:
|
979
1664
|
|
980
1665
|
* Fix wrong version of gem activation for bin stub. Pull request #1527 by
|
981
1666
|
Aaron Patterson.
|
@@ -986,9 +1671,9 @@ Bug fixes:
|
|
986
1671
|
#1538 by Charles Oliver Nutter.
|
987
1672
|
|
988
1673
|
|
989
|
-
|
1674
|
+
# 2.6.1 / 2016-02-28
|
990
1675
|
|
991
|
-
Bug fixes:
|
1676
|
+
## Bug fixes:
|
992
1677
|
|
993
1678
|
* Ensure `default_path` and `home` are set for paths. Pull request #1513
|
994
1679
|
by Aaron Patterson.
|
@@ -997,9 +1682,9 @@ Bug fixes:
|
|
997
1682
|
* Fix invalid gem file preventing gem install from working. Pull request
|
998
1683
|
#1499 by Luis Sagastume.
|
999
1684
|
|
1000
|
-
|
1685
|
+
# 2.6.0 / 2016-02-26
|
1001
1686
|
|
1002
|
-
|
1687
|
+
## Enhancements:
|
1003
1688
|
|
1004
1689
|
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
1005
1690
|
metadata setting. Pull request #1486 by Josh Lane.
|
@@ -1010,7 +1695,7 @@ Minor enhancements:
|
|
1010
1695
|
* Allow specifying gem requirements via env variables. Pull request #1472
|
1011
1696
|
by Samuel E. Giddins.
|
1012
1697
|
|
1013
|
-
Bug fixes:
|
1698
|
+
## Bug fixes:
|
1014
1699
|
|
1015
1700
|
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
1016
1701
|
Pull request #1485 by Josh Lane.
|
@@ -1036,9 +1721,9 @@ Bug fixes:
|
|
1036
1721
|
* Find_files only from loaded_gems when using gemdeps. Pull request #1277
|
1037
1722
|
by Michal Papis.
|
1038
1723
|
|
1039
|
-
|
1724
|
+
# 2.5.2 / 2016-01-31
|
1040
1725
|
|
1041
|
-
Bug fixes:
|
1726
|
+
## Bug fixes:
|
1042
1727
|
|
1043
1728
|
* Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
|
1044
1729
|
Zuijlen.
|
@@ -1054,7 +1739,7 @@ Bug fixes:
|
|
1054
1739
|
* Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
|
1055
1740
|
Giddins.
|
1056
1741
|
|
1057
|
-
|
1742
|
+
## Enhancements:
|
1058
1743
|
|
1059
1744
|
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
|
1060
1745
|
Sagastume.
|
@@ -1079,9 +1764,9 @@ Minor enhancements:
|
|
1079
1764
|
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
1080
1765
|
#1408 by Samuel E. Giddins.
|
1081
1766
|
|
1082
|
-
|
1767
|
+
# 2.5.1 / 2015-12-10
|
1083
1768
|
|
1084
|
-
Bug fixes:
|
1769
|
+
## Bug fixes:
|
1085
1770
|
|
1086
1771
|
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
1087
1772
|
Issue #1369 reported by Ryan Atball (among others).
|
@@ -1110,9 +1795,9 @@ Bug fixes:
|
|
1110
1795
|
Kudo.
|
1111
1796
|
* Fixed double word typo. Pull request #1411 by Jake Worth.
|
1112
1797
|
|
1113
|
-
|
1798
|
+
# 2.5.0 / 2015-11-03
|
1114
1799
|
|
1115
|
-
|
1800
|
+
## Enhancements:
|
1116
1801
|
|
1117
1802
|
* Added the Gem::Licenses class which provides a set of standard license
|
1118
1803
|
identifiers as set by spdx.org. This is now used by the
|
@@ -1121,8 +1806,6 @@ Major enhancements:
|
|
1121
1806
|
|
1122
1807
|
Pull request #1249 by Kyle Mitchell.
|
1123
1808
|
|
1124
|
-
Minor enhancements:
|
1125
|
-
|
1126
1809
|
* Use Molinillo as the resolver library. This is the same resolver as used by
|
1127
1810
|
Bundler. Pull request #1189 by Samuel E. Giddins.
|
1128
1811
|
* Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
|
@@ -1184,7 +1867,7 @@ Minor enhancements:
|
|
1184
1867
|
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
|
1185
1868
|
Agis Anastasopoulos.
|
1186
1869
|
|
1187
|
-
Bug fixes:
|
1870
|
+
## Bug fixes:
|
1188
1871
|
|
1189
1872
|
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
1190
1873
|
Pull request #1171 by Arthur Nogueira Neves
|
@@ -1241,22 +1924,22 @@ Bug fixes:
|
|
1241
1924
|
* RubyGems handles invalid config files better. Pull request #1367 by Agis
|
1242
1925
|
Anastasopoulos.
|
1243
1926
|
|
1244
|
-
|
1927
|
+
# 2.4.8 / 2015-06-08
|
1245
1928
|
|
1246
|
-
Bug fixes:
|
1929
|
+
## Bug fixes:
|
1247
1930
|
|
1248
1931
|
* Tightened API endpoint checks for CVE-2015-3900
|
1249
1932
|
|
1250
|
-
|
1933
|
+
# 2.4.7 / 2015-05-14
|
1251
1934
|
|
1252
|
-
Bug fixes:
|
1935
|
+
## Bug fixes:
|
1253
1936
|
|
1254
1937
|
* Limit API endpoint to original security domain for CVE-2015-3900.
|
1255
1938
|
Fix by claudijd
|
1256
1939
|
|
1257
|
-
|
1940
|
+
# 2.4.6 / 2015-02-05
|
1258
1941
|
|
1259
|
-
Bug fixes:
|
1942
|
+
## Bug fixes:
|
1260
1943
|
|
1261
1944
|
* Fixed resolving gems with both upper and lower requirement boundaries.
|
1262
1945
|
Issue #1141 by Jakub Jirutka.
|
@@ -1281,9 +1964,9 @@ Bug fixes:
|
|
1281
1964
|
Ondruch.
|
1282
1965
|
* Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
|
1283
1966
|
|
1284
|
-
|
1967
|
+
# 2.4.5 / 2014-12-03
|
1285
1968
|
|
1286
|
-
Bug fixes:
|
1969
|
+
## Bug fixes:
|
1287
1970
|
|
1288
1971
|
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
1289
1972
|
request #1060 by unak.
|
@@ -1323,27 +2006,27 @@ Bug fixes:
|
|
1323
2006
|
* Fixed grouped expression warning. Pull request #1081 by André Arko.
|
1324
2007
|
* Fixed handling of platforms when writing lockfiles.
|
1325
2008
|
|
1326
|
-
|
2009
|
+
# 2.4.4 / 2014-11-12
|
1327
2010
|
|
1328
|
-
Bug fixes:
|
2011
|
+
## Bug fixes:
|
1329
2012
|
|
1330
2013
|
* Add alternate Root CA for upcoming certificate change. Fixes #1050 by
|
1331
2014
|
Protosac
|
1332
2015
|
|
1333
|
-
|
2016
|
+
# 2.4.3 / 2014-11-10
|
1334
2017
|
|
1335
|
-
Bug fixes:
|
2018
|
+
## Bug fixes:
|
1336
2019
|
|
1337
2020
|
* Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
|
1338
2021
|
* Fix typo in platform= docs. Pull request #1048 by @jasonrclark
|
1339
2022
|
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
1340
2023
|
Protosac
|
1341
2024
|
|
1342
|
-
|
2025
|
+
# 2.4.2 / 2014-10-01
|
1343
2026
|
|
1344
2027
|
This release was sponsored by Ruby Central.
|
1345
2028
|
|
1346
|
-
Bug fixes:
|
2029
|
+
## Bug fixes:
|
1347
2030
|
|
1348
2031
|
* RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
|
1349
2032
|
voelzemo.
|
@@ -1377,16 +2060,16 @@ Bug fixes:
|
|
1377
2060
|
* RubyGems now fails immediately when a git reference cannot be found instead
|
1378
2061
|
of spewing git errors. Issue #1031 by Michal Papis
|
1379
2062
|
|
1380
|
-
|
2063
|
+
# 2.4.1 / 2014-07-17
|
1381
2064
|
|
1382
|
-
Bug fixes:
|
2065
|
+
## Bug fixes:
|
1383
2066
|
|
1384
2067
|
* RubyGems can now be updated on Ruby implementations that do not support
|
1385
2068
|
vendordir in RbConfig::CONFIG. Issue #974 by net1957.
|
1386
2069
|
|
1387
|
-
|
2070
|
+
# 2.4.0 / 2014-07-16
|
1388
2071
|
|
1389
|
-
|
2072
|
+
## Enhancements:
|
1390
2073
|
|
1391
2074
|
* The contents command now supports a --show-install-dir option that shows
|
1392
2075
|
only the directory the gem is installed in. Feature request #966 by Akinori
|
@@ -1397,7 +2080,7 @@ Minor enhancements:
|
|
1397
2080
|
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
1398
2081
|
Marcus Rückert.
|
1399
2082
|
|
1400
|
-
Bug fixes:
|
2083
|
+
## Bug fixes:
|
1401
2084
|
|
1402
2085
|
* Kernel#gem now respects the prerelease flag when activating gems.
|
1403
2086
|
Previously this behavior was undefined which could lead to bugs when a
|
@@ -1447,9 +2130,9 @@ Bug fixes:
|
|
1447
2130
|
during gem resolution.
|
1448
2131
|
|
1449
2132
|
|
1450
|
-
|
2133
|
+
# 2.3.0 / 2014-06-10
|
1451
2134
|
|
1452
|
-
|
2135
|
+
## Enhancements:
|
1453
2136
|
|
1454
2137
|
* Added the `open` command which allows you to inspect the source of a gem
|
1455
2138
|
using your editor.
|
@@ -1490,7 +2173,7 @@ Minor enhancements:
|
|
1490
2173
|
* RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
|
1491
2174
|
Benjamin Fleischer.
|
1492
2175
|
|
1493
|
-
Bug fixes:
|
2176
|
+
## Bug fixes:
|
1494
2177
|
|
1495
2178
|
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
1496
2179
|
up gem suggestions. Pull request #808 by Aaron Patterson.
|
@@ -1570,29 +2253,29 @@ Bug fixes:
|
|
1570
2253
|
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
1571
2254
|
#852 by Vít Ondruch.
|
1572
2255
|
|
1573
|
-
|
2256
|
+
# 2.2.5 / 2015-06-08
|
1574
2257
|
|
1575
|
-
Bug fixes:
|
2258
|
+
## Bug fixes:
|
1576
2259
|
|
1577
2260
|
* Tightened API endpoint checks for CVE-2015-3900
|
1578
2261
|
|
1579
|
-
|
2262
|
+
# 2.2.4 / 2015-05-14
|
1580
2263
|
|
1581
|
-
Bug fixes:
|
2264
|
+
## Bug fixes:
|
1582
2265
|
|
1583
2266
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
1584
2267
|
Fix by claudijd
|
1585
2268
|
|
1586
|
-
|
2269
|
+
# 2.2.3 / 2014-12-21
|
1587
2270
|
|
1588
|
-
Bug fixes:
|
2271
|
+
## Bug fixes:
|
1589
2272
|
|
1590
2273
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
1591
2274
|
Fixes #1050 by Protosac
|
1592
2275
|
|
1593
|
-
|
2276
|
+
# 2.2.2 / 2014-02-05
|
1594
2277
|
|
1595
|
-
Bug fixes:
|
2278
|
+
## Bug fixes:
|
1596
2279
|
|
1597
2280
|
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
1598
2281
|
Nakada.
|
@@ -1617,9 +2300,9 @@ Bug fixes:
|
|
1617
2300
|
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
1618
2301
|
Sergio Rubio.
|
1619
2302
|
|
1620
|
-
|
2303
|
+
# 2.2.1 / 2014-01-06
|
1621
2304
|
|
1622
|
-
Bug fixes:
|
2305
|
+
## Bug fixes:
|
1623
2306
|
|
1624
2307
|
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
1625
2308
|
#767 by Diego Viola.
|
@@ -1645,12 +2328,12 @@ Bug fixes:
|
|
1645
2328
|
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
1646
2329
|
request #763 by James Mead
|
1647
2330
|
|
1648
|
-
|
2331
|
+
# 2.2.0 / 2013-12-26
|
1649
2332
|
|
1650
2333
|
Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
|
1651
2334
|
RubyGems as it was prepared for the 2.2.0 release.
|
1652
2335
|
|
1653
|
-
|
2336
|
+
## Enhancements:
|
1654
2337
|
|
1655
2338
|
* RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
|
1656
2339
|
rubygems executables are started and uses the found dependencies. This
|
@@ -1673,8 +2356,6 @@ Major enhancements:
|
|
1673
2356
|
The default sharing location may be configured by RubyGems packagers through
|
1674
2357
|
Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
|
1675
2358
|
|
1676
|
-
Minor enhancements:
|
1677
|
-
|
1678
2359
|
* RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
|
1679
2360
|
prevent an accidental push to a public repository (such as rubygems.org).
|
1680
2361
|
If you have private gems you should set this value in your gem specification
|
@@ -1720,7 +2401,7 @@ Minor enhancements:
|
|
1720
2401
|
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
1721
2402
|
Request #755 by strzibny.
|
1722
2403
|
|
1723
|
-
Bug fixes:
|
2404
|
+
## Bug fixes:
|
1724
2405
|
|
1725
2406
|
* RubyGems now returns an error status when any file given to `gem which`
|
1726
2407
|
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
@@ -1737,9 +2418,9 @@ Bug fixes:
|
|
1737
2418
|
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
1738
2419
|
Lee.
|
1739
2420
|
|
1740
|
-
|
2421
|
+
# 2.1.11 / 2013-11-12
|
1741
2422
|
|
1742
|
-
Bug fixes:
|
2423
|
+
## Bug fixes:
|
1743
2424
|
|
1744
2425
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
1745
2426
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -1749,9 +2430,9 @@ Bug fixes:
|
|
1749
2430
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
1750
2431
|
Pull Request #706 by akr.
|
1751
2432
|
|
1752
|
-
|
2433
|
+
# 2.1.10 / 2013-10-24
|
1753
2434
|
|
1754
|
-
Bug fixes:
|
2435
|
+
## Bug fixes:
|
1755
2436
|
|
1756
2437
|
* Use class check instead of :version method check when creating Gem::Version
|
1757
2438
|
objects. Fixes #674 by jkanywhere.
|
@@ -1770,18 +2451,18 @@ Bug fixes:
|
|
1770
2451
|
* The --ignore-dependencies option for gem installation works again. Issue
|
1771
2452
|
#695
|
1772
2453
|
|
1773
|
-
|
2454
|
+
# 2.1.9 / 2013-10-14
|
1774
2455
|
|
1775
|
-
Bug fixes:
|
2456
|
+
## Bug fixes:
|
1776
2457
|
|
1777
2458
|
* Reduce sorting when fetching specifications. This speeds up the update and
|
1778
2459
|
outdated commands, and others. Issue #657 by windwiny.
|
1779
2460
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
1780
2461
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
1781
2462
|
|
1782
|
-
|
2463
|
+
# 2.1.8 / 2013-10-10
|
1783
2464
|
|
1784
|
-
Bug fixes:
|
2465
|
+
## Bug fixes:
|
1785
2466
|
|
1786
2467
|
* Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
|
1787
2468
|
* Files starting with "." in the root directory are installed again. Issue
|
@@ -1789,9 +2470,9 @@ Bug fixes:
|
|
1789
2470
|
* The index generator no longer indexes default gems. Issue #661 by
|
1790
2471
|
Jeremy Hinegardner.
|
1791
2472
|
|
1792
|
-
|
2473
|
+
# 2.1.7 / 2013-10-09
|
1793
2474
|
|
1794
|
-
Bug fixes:
|
2475
|
+
## Bug fixes:
|
1795
2476
|
|
1796
2477
|
* `gem sources --list` now displays a list of sources. Pull request #672 by
|
1797
2478
|
Nathan Marley.
|
@@ -1804,9 +2485,9 @@ Bug fixes:
|
|
1804
2485
|
* Expand unpack destination directory. This fixes problems when File.realpath
|
1805
2486
|
is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
|
1806
2487
|
|
1807
|
-
|
2488
|
+
# 2.1.6 / 2013-10-08
|
1808
2489
|
|
1809
|
-
Bug fixes:
|
2490
|
+
## Bug fixes:
|
1810
2491
|
|
1811
2492
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
1812
2493
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -1821,7 +2502,7 @@ Bug fixes:
|
|
1821
2502
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
1822
2503
|
Thomas Sänger.
|
1823
2504
|
|
1824
|
-
|
2505
|
+
# 2.1.5 / 2013-09-24
|
1825
2506
|
|
1826
2507
|
Security fixes:
|
1827
2508
|
|
@@ -1830,25 +2511,25 @@ Security fixes:
|
|
1830
2511
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
1831
2512
|
1.8.23.2 (for Ruby 1.9.3).
|
1832
2513
|
|
1833
|
-
|
2514
|
+
# 2.1.4 / 2013-09-17
|
1834
2515
|
|
1835
|
-
Bug fixes:
|
2516
|
+
## Bug fixes:
|
1836
2517
|
|
1837
2518
|
* `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
|
1838
2519
|
#650 by Kyle (remkade).
|
1839
2520
|
* Fixed uninstalling gems installed in the home directory (as in
|
1840
2521
|
`--user-install`). Issue #653 by Lin Jen-Shin.
|
1841
2522
|
|
1842
|
-
|
2523
|
+
# 2.1.3 / 2013-09-12
|
1843
2524
|
|
1844
|
-
Bug fixes:
|
2525
|
+
## Bug fixes:
|
1845
2526
|
|
1846
2527
|
* Gems with files entries starting with "./" no longer install 0 files. Issue
|
1847
2528
|
#644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
|
1848
2529
|
|
1849
|
-
|
2530
|
+
# 2.1.2 / 2013-09-11
|
1850
2531
|
|
1851
|
-
Bug fixes:
|
2532
|
+
## Bug fixes:
|
1852
2533
|
|
1853
2534
|
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
1854
2535
|
request #637 and issue #640 by Charles Nutter.
|
@@ -1857,14 +2538,14 @@ Bug fixes:
|
|
1857
2538
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
1858
2539
|
Issue #643 by Brian Shirai.
|
1859
2540
|
|
1860
|
-
|
2541
|
+
# 2.1.1 / 2013-09-10
|
1861
2542
|
|
1862
|
-
Bug fixes:
|
2543
|
+
## Bug fixes:
|
1863
2544
|
|
1864
2545
|
* Only matching gems matching your local platform are considered for
|
1865
2546
|
installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
|
1866
2547
|
|
1867
|
-
|
2548
|
+
# 2.1.0 / 2013-09-09
|
1868
2549
|
|
1869
2550
|
Security fixes:
|
1870
2551
|
|
@@ -1873,15 +2554,13 @@ Security fixes:
|
|
1873
2554
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
1874
2555
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
1875
2556
|
|
1876
|
-
|
2557
|
+
## Enhancements:
|
1877
2558
|
|
1878
2559
|
* RubyGems uses a new dependency resolver for gem installation which works
|
1879
2560
|
similar to the bundler resolver. The new resolver can resolve conflicts the
|
1880
2561
|
previous resolver could not and offers improved diagnostics when conflicts
|
1881
2562
|
are discovered.
|
1882
2563
|
|
1883
|
-
Minor enhancements:
|
1884
|
-
|
1885
2564
|
* RubyGems now has improved platform matching for the ARM architecture. Gems
|
1886
2565
|
built with a CPU of "arm" will match any specific ARM CPU. See `gem help
|
1887
2566
|
platform` for further details. Fixes #532 by Kim Burgestrand.
|
@@ -1951,7 +2630,7 @@ Minor enhancements:
|
|
1951
2630
|
still slow, but I see a near 50% improvement for 250 gems on a fast
|
1952
2631
|
connection). See also Gem::Specification::outdated_and_latest_version
|
1953
2632
|
|
1954
|
-
Bug fixes:
|
2633
|
+
## Bug fixes:
|
1955
2634
|
|
1956
2635
|
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
1957
2636
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
@@ -1959,29 +2638,29 @@ Bug fixes:
|
|
1959
2638
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
1960
2639
|
request #622 by Arthur Nogueira Neves
|
1961
2640
|
|
1962
|
-
|
2641
|
+
# 2.0.17 / 2015-06-08
|
1963
2642
|
|
1964
|
-
Bug fixes:
|
2643
|
+
## Bug fixes:
|
1965
2644
|
|
1966
2645
|
* Tightened API endpoint checks for CVE-2015-3900
|
1967
2646
|
|
1968
|
-
|
2647
|
+
# 2.0.16 / 2015-05-14
|
1969
2648
|
|
1970
|
-
Bug fixes:
|
2649
|
+
## Bug fixes:
|
1971
2650
|
|
1972
2651
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
1973
2652
|
Fix by claudijd
|
1974
2653
|
|
1975
|
-
|
2654
|
+
# 2.0.15 / 2014-12-21
|
1976
2655
|
|
1977
|
-
Bug fixes:
|
2656
|
+
## Bug fixes:
|
1978
2657
|
|
1979
2658
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
1980
2659
|
Fixes #1050 by Protosac
|
1981
2660
|
|
1982
|
-
|
2661
|
+
# 2.0.14 / 2013-11-12
|
1983
2662
|
|
1984
|
-
Bug fixes:
|
2663
|
+
## Bug fixes:
|
1985
2664
|
|
1986
2665
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
1987
2666
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -1991,9 +2670,9 @@ Bug fixes:
|
|
1991
2670
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
1992
2671
|
Pull Request #706 by akr.
|
1993
2672
|
|
1994
|
-
|
2673
|
+
# 2.0.13 / 2013-10-24
|
1995
2674
|
|
1996
|
-
Bug fixes:
|
2675
|
+
## Bug fixes:
|
1997
2676
|
|
1998
2677
|
* Use class check instead of :version method check when creating Gem::Version
|
1999
2678
|
objects. Fixes #674 by jkanywhere.
|
@@ -2002,16 +2681,16 @@ Bug fixes:
|
|
2002
2681
|
* Fix updating gems which have multiple platforms. Issue #693 by Ookami
|
2003
2682
|
Kenrou.
|
2004
2683
|
|
2005
|
-
|
2684
|
+
# 2.0.12 / 2013-10-14
|
2006
2685
|
|
2007
|
-
Bug fixes:
|
2686
|
+
## Bug fixes:
|
2008
2687
|
|
2009
2688
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
2010
2689
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
2011
2690
|
|
2012
|
-
|
2691
|
+
# 2.0.11 / 2013-10-08
|
2013
2692
|
|
2014
|
-
Bug fixes:
|
2693
|
+
## Bug fixes:
|
2015
2694
|
|
2016
2695
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
2017
2696
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -2026,7 +2705,7 @@ Bug fixes:
|
|
2026
2705
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
2027
2706
|
Thomas Sänger.
|
2028
2707
|
|
2029
|
-
|
2708
|
+
# 2.0.10 / 2013-09-24
|
2030
2709
|
|
2031
2710
|
Security fixes:
|
2032
2711
|
|
@@ -2035,16 +2714,16 @@ Security fixes:
|
|
2035
2714
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2036
2715
|
1.8.23.2 (for Ruby 1.9.3).
|
2037
2716
|
|
2038
|
-
|
2717
|
+
# 2.0.9 / 2013-09-13
|
2039
2718
|
|
2040
|
-
Bug fixes:
|
2719
|
+
## Bug fixes:
|
2041
2720
|
|
2042
2721
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
2043
2722
|
Issue #643 by Brian Shirai.
|
2044
2723
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
2045
2724
|
request #622 by Arthur Nogueira Neves
|
2046
2725
|
|
2047
|
-
|
2726
|
+
# 2.0.8 / 2013-09-09
|
2048
2727
|
|
2049
2728
|
Security fixes:
|
2050
2729
|
|
@@ -2053,14 +2732,14 @@ Security fixes:
|
|
2053
2732
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2054
2733
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2055
2734
|
|
2056
|
-
Bug fixes:
|
2735
|
+
## Bug fixes:
|
2057
2736
|
|
2058
2737
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
2059
2738
|
#625 by elarkin
|
2060
2739
|
|
2061
|
-
|
2740
|
+
# 2.0.7 / 2013-08-15
|
2062
2741
|
|
2063
|
-
Bug fixes:
|
2742
|
+
## Bug fixes:
|
2064
2743
|
|
2065
2744
|
* Extensions may now be built in parallel (therefore gems may be installed in
|
2066
2745
|
parallel). Bug #607 by Hemant Kumar.
|
@@ -2070,9 +2749,9 @@ Bug fixes:
|
|
2070
2749
|
Patches by Yui Naruse and Koichi Sasada.
|
2071
2750
|
* Fixed documentation for Kernel#require.
|
2072
2751
|
|
2073
|
-
|
2752
|
+
# 2.0.6 / 2013-07-24
|
2074
2753
|
|
2075
|
-
Bug fixes:
|
2754
|
+
## Bug fixes:
|
2076
2755
|
|
2077
2756
|
* Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
|
2078
2757
|
#593 by Blargel.
|
@@ -2084,14 +2763,14 @@ Bug fixes:
|
|
2084
2763
|
Bug #599 by Chris Riesbeck
|
2085
2764
|
* Restored default of remote search to `gem search`.
|
2086
2765
|
|
2087
|
-
|
2766
|
+
# 2.0.5 / 2013-07-11
|
2088
2767
|
|
2089
2768
|
* Fixed building of extensions that run ruby in their makefiles. Bug #589 by
|
2090
2769
|
Zachary Salzbank.
|
2091
2770
|
|
2092
|
-
|
2771
|
+
# 2.0.4 / 2013-07-09
|
2093
2772
|
|
2094
|
-
Bug fixes:
|
2773
|
+
## Bug fixes:
|
2095
2774
|
|
2096
2775
|
* Fixed error caused by gem install not finding the right platform for your
|
2097
2776
|
platform. Bug #576 by John Anderson
|
@@ -2130,9 +2809,9 @@ Bug fixes:
|
|
2130
2809
|
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
2131
2810
|
r41148 by Yui Naruse
|
2132
2811
|
|
2133
|
-
|
2812
|
+
# 2.0.3 / 2013-03-11
|
2134
2813
|
|
2135
|
-
|
2814
|
+
## Bug fixes:
|
2136
2815
|
* Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
|
2137
2816
|
#506 by André Arko
|
2138
2817
|
* Use File.realpath to remove extra / while checking if files are
|
@@ -2147,17 +2826,17 @@ Bug fixes:
|
|
2147
2826
|
* Fixed default gem key and cert locations. Pull request #511 by Samuel
|
2148
2827
|
Cochran.
|
2149
2828
|
|
2150
|
-
|
2829
|
+
# 2.0.2 / 2013-03-06
|
2151
2830
|
|
2152
|
-
|
2831
|
+
## Bug fixes:
|
2153
2832
|
* HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
|
2154
2833
|
upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
|
2155
2834
|
* SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
|
2156
2835
|
* Fixed HTTP to HTTPS upgrade for rubygems.org.
|
2157
2836
|
|
2158
|
-
|
2837
|
+
# 2.0.1 / 2013-03-05
|
2159
2838
|
|
2160
|
-
|
2839
|
+
## Bug fixes:
|
2161
2840
|
* Lazily load RubyGems.org API credentials to avoid failure during
|
2162
2841
|
RubyGems installation. Bug #465 by Isaac Sanders.
|
2163
2842
|
* RubyGems now picks the latest prerelease to install. Fixes bug #468 by
|
@@ -2179,7 +2858,7 @@ Bug fixes:
|
|
2179
2858
|
Ruby bug #7713 by nobu
|
2180
2859
|
* Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
|
2181
2860
|
|
2182
|
-
|
2861
|
+
# 2.0.0 / 2013-02-24
|
2183
2862
|
|
2184
2863
|
RubyGems 2.0 includes several new features and many breaking changes. Some of
|
2185
2864
|
these changes will cause existing software to break. These changes are a
|
@@ -2191,7 +2870,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
|
|
2191
2870
|
|
2192
2871
|
Changes since RubyGems 1.8.25 (including past pre-releases):
|
2193
2872
|
|
2194
|
-
|
2873
|
+
## Breaking changes:
|
2195
2874
|
|
2196
2875
|
* Deprecated Gem.unresolved_deps in favor of
|
2197
2876
|
Gem::Specification.unresolved_deps
|
@@ -2213,7 +2892,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2213
2892
|
* Removed support for Ruby 1.9.1
|
2214
2893
|
* Removed many deprecated methods
|
2215
2894
|
|
2216
|
-
|
2895
|
+
## Enhancements:
|
2217
2896
|
|
2218
2897
|
* Improved support for default gems shipping with ruby 2.0.0+
|
2219
2898
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -2231,8 +2910,6 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2231
2910
|
file (Gemfile, Isolate, gem.deps.rb).
|
2232
2911
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2233
2912
|
to autodetect (current and parent directories are searched).
|
2234
|
-
|
2235
|
-
* Minor enhancements:
|
2236
2913
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2237
2914
|
#419 by Erik Hollensbe
|
2238
2915
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
@@ -2275,7 +2952,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2275
2952
|
GEM_HOME
|
2276
2953
|
* When building gems with non-world-readable files a warning is shown.
|
2277
2954
|
|
2278
|
-
|
2955
|
+
## Bug fixes:
|
2279
2956
|
* Gem.refresh now maintains the active gem list. Clearing the list would
|
2280
2957
|
cause double-loads which would cause other bugs. Pull Request #427 by
|
2281
2958
|
Jeremy Evans
|
@@ -2332,7 +3009,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
2332
3009
|
|
2333
3010
|
Changes since RubyGems 2.0.0.rc.2:
|
2334
3011
|
|
2335
|
-
|
3012
|
+
## Bug fixes:
|
2336
3013
|
* Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
|
2337
3014
|
#450 by Jeremy Kemper
|
2338
3015
|
* Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
|
@@ -2345,48 +3022,48 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
2345
3022
|
* Fixed verification of gems at LowSecurity due to missing signature.
|
2346
3023
|
Thanks to André Arko.
|
2347
3024
|
|
2348
|
-
|
3025
|
+
# 2.0.0.rc.2 / 2013-02-08
|
2349
3026
|
|
2350
|
-
|
3027
|
+
## Bug fixes:
|
2351
3028
|
* Fixed signature verification of gems which was broken only on master.
|
2352
3029
|
Thanks to Brian Buchanan.
|
2353
3030
|
* Proper exceptions are raised when verifying an unsigned gem. Thanks to
|
2354
3031
|
André Arko.
|
2355
3032
|
|
2356
|
-
|
3033
|
+
# 2.0.0.rc.1 / 2013-01-08
|
2357
3034
|
|
2358
|
-
|
3035
|
+
## Enhancements:
|
2359
3036
|
* This release of RubyGems can push gems to rubygems.org. Ordinarily
|
2360
3037
|
prerelease versions of RubyGems cannot push gems.
|
2361
3038
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2362
3039
|
#419 by Erik Hollensbe
|
2363
3040
|
|
2364
|
-
|
3041
|
+
## Bug fixes:
|
2365
3042
|
* Fixed exception raised when attempting to push gems to rubygems.org. Bug
|
2366
3043
|
#418 by André Arko
|
2367
3044
|
* Gem installation will fail if RubyGems cannot load the specification from
|
2368
3045
|
the gem. Bug #419 by Erik Hollensbe
|
2369
3046
|
|
2370
|
-
|
3047
|
+
# 2.0.0.preview2.2 / 2012-12-14
|
2371
3048
|
|
2372
|
-
|
3049
|
+
## Enhancements:
|
2373
3050
|
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
2374
3051
|
* Removed rubyforge page from gem list output
|
2375
3052
|
|
2376
|
-
|
3053
|
+
## Bug fixes:
|
2377
3054
|
* Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
|
2378
3055
|
#413 by Jeremy Kemper.
|
2379
3056
|
|
2380
|
-
|
3057
|
+
# 2.0.0.preview2.1 / 2012-12-08
|
2381
3058
|
|
2382
|
-
|
3059
|
+
## Enhancements:
|
2383
3060
|
* Gem::DependencyInstaller now passes build_args down to the installer.
|
2384
3061
|
Pull Request #412 by Sam Rawlins.
|
2385
3062
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
2386
3063
|
broken. Now you must manually say "yes". Pull Request #406 by Shannon
|
2387
3064
|
Skipper.
|
2388
3065
|
|
2389
|
-
|
3066
|
+
## Bug fixes:
|
2390
3067
|
* RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
|
2391
3068
|
* Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
|
2392
3069
|
* Only update the spec cache when we have permission. Ruby Bug #7509
|
@@ -2398,13 +3075,13 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
2398
3075
|
* gem install now ignores directories that match the gem to install. Bug
|
2399
3076
|
#407 by Santiago Pastorino.
|
2400
3077
|
|
2401
|
-
|
3078
|
+
# 2.0.0.preview2 / 2012-12-01
|
2402
3079
|
|
2403
3080
|
This release contains two commits not present in Ruby 2.0.0.preview2. One
|
2404
3081
|
commit is for ruby 1.8.7 support, the second allows RubyGems to work under
|
2405
3082
|
$SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
2406
3083
|
|
2407
|
-
|
3084
|
+
## Breaking changes:
|
2408
3085
|
|
2409
3086
|
* Deprecated Gem.unresolved_deps in favor of
|
2410
3087
|
Gem::Specification.unresolved_deps
|
@@ -2426,7 +3103,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2426
3103
|
* Removed support for Ruby 1.9.1
|
2427
3104
|
* Removed many deprecated methods
|
2428
3105
|
|
2429
|
-
|
3106
|
+
## Enhancements:
|
2430
3107
|
|
2431
3108
|
* Improved support for default gems shipping with ruby 2.0.0+
|
2432
3109
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -2444,9 +3121,6 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2444
3121
|
file (Gemfile, Isolate, gem.deps.rb).
|
2445
3122
|
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2446
3123
|
to autodetect (current and parent directories are searched).
|
2447
|
-
|
2448
|
-
* Minor enhancements:
|
2449
|
-
|
2450
3124
|
* Added --only-executables option to `gem pristine`. Fixes #326
|
2451
3125
|
* Added -I flag for 'gem query' to exclude installed items
|
2452
3126
|
* Added Gem.install(name, version=default) for interactive sessions
|
@@ -2480,7 +3154,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2480
3154
|
GEM_HOME
|
2481
3155
|
* When building gems with non-world-readable files a warning is shown.
|
2482
3156
|
|
2483
|
-
|
3157
|
+
## Bug fixes:
|
2484
3158
|
|
2485
3159
|
* Added PID to setup bin_file while installing RubyGems to protect against
|
2486
3160
|
errors. Fixes #328 by ConradIrwin
|
@@ -2521,17 +3195,17 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
2521
3195
|
* URI scheme matching is no longer case-sensitive. Fixes #322
|
2522
3196
|
* ext/builder now checks $MAKE as well as $make (okkez)
|
2523
3197
|
|
2524
|
-
|
3198
|
+
# 1.8.29 / 2013-11-23
|
2525
3199
|
|
2526
|
-
Bug fixes:
|
3200
|
+
## Bug fixes:
|
2527
3201
|
|
2528
3202
|
* Fixed installation when the LANG environment variable is empty.
|
2529
3203
|
* Added DigiCert High Assurance EV Root CA to the default SSL certificates for
|
2530
3204
|
cloudfront.
|
2531
3205
|
|
2532
|
-
|
3206
|
+
# 1.8.28 / 2013-10-08
|
2533
3207
|
|
2534
|
-
Bug fixes:
|
3208
|
+
## Bug fixes:
|
2535
3209
|
|
2536
3210
|
* Added the Verisign Class 3 Public Primary Certification Authority G5
|
2537
3211
|
certificate and its intermediary to follow the s3.amazonaws.com certificate
|
@@ -2541,7 +3215,7 @@ Bug fixes:
|
|
2541
3215
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
2542
3216
|
https://rubygems.org. Pull request #673 by Hannes Georg.
|
2543
3217
|
|
2544
|
-
|
3218
|
+
# 1.8.27 / 2013-09-24
|
2545
3219
|
|
2546
3220
|
Security fixes:
|
2547
3221
|
|
@@ -2550,7 +3224,7 @@ Security fixes:
|
|
2550
3224
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2551
3225
|
1.8.23.2 (for Ruby 1.9.3).
|
2552
3226
|
|
2553
|
-
|
3227
|
+
# 1.8.26 / 2013-09-09
|
2554
3228
|
|
2555
3229
|
Security fixes:
|
2556
3230
|
|
@@ -2559,13 +3233,13 @@ Security fixes:
|
|
2559
3233
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2560
3234
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2561
3235
|
|
2562
|
-
Bug fixes:
|
3236
|
+
## Bug fixes:
|
2563
3237
|
|
2564
3238
|
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
2565
3239
|
|
2566
|
-
|
3240
|
+
# 1.8.25 / 2013-01-24
|
2567
3241
|
|
2568
|
-
|
3242
|
+
## Bug fixes:
|
2569
3243
|
* Added 11627 to setup bin_file location to protect against errors. Fixes
|
2570
3244
|
#328 by ConradIrwin
|
2571
3245
|
* Specification#ruby_code didn't handle Requirement with multiple
|
@@ -2574,14 +3248,14 @@ Bug fixes:
|
|
2574
3248
|
* Fix missing load_yaml in YAML-related requirement.rb code.
|
2575
3249
|
* Manually backport encoding-aware YAML gemspec
|
2576
3250
|
|
2577
|
-
|
3251
|
+
# 1.8.24 / 2012-04-27
|
2578
3252
|
|
2579
|
-
|
3253
|
+
## Bug fixes:
|
2580
3254
|
|
2581
3255
|
* Install the .pem files properly. Fixes #320
|
2582
3256
|
* Remove OpenSSL dependency from the http code path
|
2583
3257
|
|
2584
|
-
|
3258
|
+
# 1.8.23.2 / 2013-09-24
|
2585
3259
|
|
2586
3260
|
Security fixes:
|
2587
3261
|
|
@@ -2590,7 +3264,7 @@ Security fixes:
|
|
2590
3264
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2591
3265
|
1.8.23.2 (for Ruby 1.9.3).
|
2592
3266
|
|
2593
|
-
|
3267
|
+
# 1.8.23.1 / 2013-09-09
|
2594
3268
|
|
2595
3269
|
Security fixes:
|
2596
3270
|
|
@@ -2599,7 +3273,7 @@ Security fixes:
|
|
2599
3273
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2600
3274
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2601
3275
|
|
2602
|
-
|
3276
|
+
# 1.8.23 / 2012-04-19
|
2603
3277
|
|
2604
3278
|
This release increases the security used when RubyGems is talking to
|
2605
3279
|
an https server. If you use a custom RubyGems server over SSL, this
|
@@ -2615,53 +3289,53 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
|
|
2615
3289
|
certificate checks, but this is not recommended.
|
2616
3290
|
|
2617
3291
|
|
2618
|
-
|
3292
|
+
Security fixes:
|
2619
3293
|
* Disallow redirects from https to http
|
2620
3294
|
* Turn on verification of server SSL certs
|
2621
3295
|
|
2622
|
-
|
3296
|
+
## Enhancements:
|
2623
3297
|
* Add --clear-sources to fetch
|
2624
3298
|
|
2625
|
-
|
3299
|
+
## Bug fixes:
|
2626
3300
|
* Use File.identical? to check if two files are the same.
|
2627
3301
|
* Fixed init_with warning when using psych
|
2628
3302
|
|
2629
|
-
|
3303
|
+
# 1.8.22 / 2012-04-13
|
2630
3304
|
|
2631
|
-
|
3305
|
+
## Bug fixes:
|
2632
3306
|
|
2633
3307
|
* Workaround for psych/syck YAML date parsing issue
|
2634
3308
|
* Don't trust the encoding of ARGV. Fixes #307
|
2635
3309
|
* Quiet default warnings about missing spec variables
|
2636
3310
|
* Read a binary file properly (windows fix)
|
2637
3311
|
|
2638
|
-
|
3312
|
+
# 1.8.21 / 2012-03-22
|
2639
3313
|
|
2640
|
-
|
3314
|
+
## Bug fixes:
|
2641
3315
|
|
2642
3316
|
* Add workaround for buggy yaml output from 1.9.2
|
2643
3317
|
* Force 1.9.1 to remove it's prelude code. Fixes #305
|
2644
3318
|
|
2645
|
-
|
3319
|
+
# 1.8.20 / 2012-03-21
|
2646
3320
|
|
2647
|
-
|
3321
|
+
## Bug fixes:
|
2648
3322
|
|
2649
3323
|
* Add --force to `gem build` to skip validation. Fixes #297
|
2650
3324
|
* Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
|
2651
3325
|
* Treat the source as a proper url base. Fixes #304
|
2652
3326
|
* Warn when updating the specs cache fails. Fixes #300
|
2653
3327
|
|
2654
|
-
|
3328
|
+
# 1.8.19 / 2012-03-14
|
2655
3329
|
|
2656
|
-
|
3330
|
+
## Bug fixes:
|
2657
3331
|
|
2658
3332
|
* Handle loading psych vs syck properly. Fixes #298
|
2659
3333
|
* Make sure Date objects don't leak in via Marshal
|
2660
3334
|
* Perform Date => Time coercion on yaml loading. Fixes #266
|
2661
3335
|
|
2662
|
-
|
3336
|
+
# 1.8.18 / 2012-03-11
|
2663
3337
|
|
2664
|
-
|
3338
|
+
## Bug fixes:
|
2665
3339
|
|
2666
3340
|
* Use Psych API to emit more compatible YAML
|
2667
3341
|
* Download and write inside `gem fetch` directly. Fixes #289
|
@@ -2669,14 +3343,14 @@ certificate checks, but this is not recommended.
|
|
2669
3343
|
* Search everywhere for a spec for `gem spec`. Fixes #288
|
2670
3344
|
* Fix Gem.all_load_path. Fixes #171
|
2671
3345
|
|
2672
|
-
|
3346
|
+
# 1.8.17 / 2012-02-17
|
2673
3347
|
|
2674
|
-
|
3348
|
+
## Enhancements:
|
2675
3349
|
|
2676
3350
|
* Add MacRuby to the list of special cases for platforms (ferrous26)
|
2677
3351
|
* Add a default for where to install rubygems itself
|
2678
3352
|
|
2679
|
-
|
3353
|
+
## Bug fixes:
|
2680
3354
|
|
2681
3355
|
* Fixed gem loading issue caused by dependencies not resolving.
|
2682
3356
|
* Fixed umask error when stdlib is required and unresolved dependencies exist.
|
@@ -2684,57 +3358,59 @@ certificate checks, but this is not recommended.
|
|
2684
3358
|
* Define SUCKAGE better, ie only MRI 1.9.2
|
2685
3359
|
* Propagate env-shebang to the pristine command if set for install.
|
2686
3360
|
|
2687
|
-
|
3361
|
+
# 1.8.16 / 2012-02-12
|
2688
3362
|
|
2689
|
-
|
3363
|
+
## Bug fixes:
|
2690
3364
|
|
2691
3365
|
* Fix gem specification loading when encoding is not UTF-8. #146
|
2692
3366
|
* Allow group writable if umask allows it already.
|
2693
3367
|
* Uniquify the spec list based on directory order priority
|
2694
3368
|
|
2695
|
-
|
3369
|
+
# 1.8.15 / 2012-01-06
|
2696
3370
|
|
2697
|
-
|
3371
|
+
## Bug fixes:
|
2698
3372
|
|
2699
3373
|
* Don't eager load yaml, it creates a bad loop. Fixes #256
|
2700
3374
|
|
2701
|
-
|
3375
|
+
# 1.8.14 / 2012-01-05
|
2702
3376
|
|
2703
|
-
|
3377
|
+
## Bug fixes:
|
2704
3378
|
|
2705
3379
|
* Ignore old/bad cache data in Version
|
2706
3380
|
* Make sure our YAML workarounds are loaded properly. Fixes #250.
|
2707
3381
|
|
2708
|
-
|
3382
|
+
# 1.8.13 / 2011-12-21
|
2709
3383
|
|
2710
|
-
|
3384
|
+
## Bug fixes:
|
2711
3385
|
|
2712
3386
|
* Check loaded_specs properly when trying to satisfy a dep
|
2713
3387
|
|
2714
|
-
|
3388
|
+
## Enhancements:
|
2715
3389
|
|
2716
3390
|
* Remove using #loaded_path? for performance
|
2717
3391
|
* Remove Zlib workaround for Windows build.
|
2718
3392
|
|
2719
|
-
|
3393
|
+
# 1.8.12 / 2011-12-02
|
3394
|
+
|
3395
|
+
## Bug fixes:
|
2720
3396
|
|
2721
|
-
* Bug fix:
|
2722
3397
|
* Handle more cases where Syck's DefaultKey showed up in requirements
|
2723
3398
|
and wasn't cleaned out.
|
2724
3399
|
|
2725
|
-
|
3400
|
+
# 1.8.11 / 2011-10-03
|
3401
|
+
|
3402
|
+
## Bug fixes:
|
2726
3403
|
|
2727
|
-
* Bug fix:
|
2728
3404
|
* Deprecate was moved to Gem::Deprecate to stop polluting the top-level
|
2729
3405
|
namespace.
|
2730
3406
|
|
2731
|
-
|
3407
|
+
# 1.8.10 / 2011-08-25
|
2732
3408
|
|
2733
3409
|
RubyGems 1.8.10 contains a security fix that prevents malicious gems from
|
2734
3410
|
executing code when their specification is loaded. See
|
2735
3411
|
https://github.com/rubygems/rubygems/pull/165 for details.
|
2736
3412
|
|
2737
|
-
|
3413
|
+
## Bug fixes:
|
2738
3414
|
|
2739
3415
|
* RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
|
2740
3416
|
and %q to prevent code injection. Issue #165 by Postmodern
|
@@ -2745,21 +3421,21 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
2745
3421
|
* Fixed Syck DefaultKey infecting ruby-format specifications.
|
2746
3422
|
* `gem uninstall a b` no longer stops if gem "a" is not installed.
|
2747
3423
|
|
2748
|
-
|
3424
|
+
# 1.8.9 / 2011-08-23
|
2749
3425
|
|
2750
|
-
|
3426
|
+
## Bug fixes:
|
2751
3427
|
|
2752
3428
|
* Fixed uninstalling multiple gems using `gem uninstall`
|
2753
3429
|
* Gem.use_paths splatted to take multiple paths! Issue #148
|
2754
3430
|
|
2755
|
-
|
3431
|
+
# 1.8.8 / 2011-08-11
|
2756
3432
|
|
2757
|
-
|
3433
|
+
## Bug fixes:
|
2758
3434
|
* The encoding of a gem's YAML spec is now UTF-8. Issue #149
|
2759
3435
|
|
2760
|
-
|
3436
|
+
# 1.8.7 / 2011-08-04
|
2761
3437
|
|
2762
|
-
|
3438
|
+
## Bug fixes:
|
2763
3439
|
* Added missing require for `gem uninstall --format-executable`
|
2764
3440
|
* The correct name of the executable being uninstalled is now displayed with
|
2765
3441
|
--format-executable
|
@@ -2771,14 +3447,14 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
2771
3447
|
* Gem repository directories are no longer created world-writable. Patch by
|
2772
3448
|
Sakuro OZAWA. Ruby Bug #4930
|
2773
3449
|
|
2774
|
-
|
3450
|
+
# 1.8.6 / 2011-07-25
|
2775
3451
|
|
2776
|
-
|
3452
|
+
## Enhancements:
|
2777
3453
|
|
2778
3454
|
* Add autorequires and delay startup of RubyGems until require is called.
|
2779
3455
|
See Ruby bug #4962
|
2780
3456
|
|
2781
|
-
|
3457
|
+
## Bug fixes:
|
2782
3458
|
|
2783
3459
|
* Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
|
2784
3460
|
* Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
|
@@ -2790,27 +3466,27 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
2790
3466
|
* Handle the Syck DefaultKey problem once and for all.
|
2791
3467
|
* Fix SystemStackError occurring with "gem list -r -a" on 1.9.
|
2792
3468
|
|
2793
|
-
|
3469
|
+
# 1.8.5 / 2011-05-31
|
2794
3470
|
|
2795
|
-
|
3471
|
+
## Enhancements:
|
2796
3472
|
|
2797
3473
|
* The -u option to 'update local source cache' is official deprecated.
|
2798
3474
|
* Remove has_rdoc deprecations from Specification.
|
2799
3475
|
|
2800
|
-
|
3476
|
+
## Bug fixes:
|
2801
3477
|
|
2802
3478
|
* Handle bad specs more gracefully.
|
2803
3479
|
* Reset any Gem paths changed in the installer.
|
2804
3480
|
|
2805
|
-
|
3481
|
+
# 1.8.4 / 2011-05-25
|
2806
3482
|
|
2807
|
-
|
3483
|
+
## Enhancements:
|
2808
3484
|
|
2809
3485
|
* Removed default_executable deprecations from Specification.
|
2810
3486
|
|
2811
|
-
|
3487
|
+
# 1.8.3 / 2011-05-19
|
2812
3488
|
|
2813
|
-
|
3489
|
+
## Bug fixes:
|
2814
3490
|
|
2815
3491
|
* Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
|
2816
3492
|
Shota Fukumori
|
@@ -2819,33 +3495,33 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
2819
3495
|
* Fixed some bad calls left behind after rolling out some refactorings.
|
2820
3496
|
* Syck has a parse error on (good) times output from Psych. (dazuma, et al)
|
2821
3497
|
|
2822
|
-
|
3498
|
+
# 1.8.2 / 2011-05-11
|
2823
3499
|
|
2824
|
-
|
3500
|
+
## Enhancements:
|
2825
3501
|
|
2826
3502
|
* Moved #outdated from OutdatedCommand to Specification (for Isolate).
|
2827
3503
|
* Print out a warning about missing executables.
|
2828
3504
|
|
2829
|
-
|
3505
|
+
## Bug fixes:
|
2830
3506
|
|
2831
3507
|
* Added missing requires to fix various upgrade issues.
|
2832
3508
|
* `gem pristine` respects multiple gem repositories.
|
2833
3509
|
* setup.rb now execs with --disable-gems when possible
|
2834
3510
|
|
2835
|
-
|
3511
|
+
# 1.8.1 / 2011-05-05
|
2836
3512
|
|
2837
|
-
|
3513
|
+
## Enhancements:
|
2838
3514
|
|
2839
3515
|
* Added Gem::Requirement#specific? and Gem::Dependency#specific?
|
2840
3516
|
|
2841
|
-
|
3517
|
+
## Bug fixes:
|
2842
3518
|
|
2843
3519
|
* Typo on Indexer rendered it useless on Windows
|
2844
3520
|
* gem dep can fetch remote dependencies for non-latest gems again.
|
2845
3521
|
* gem uninstall with multiple versions no longer crashes with ArgumentError
|
2846
3522
|
* Always use binary mode for File.open to keep Windows happy
|
2847
3523
|
|
2848
|
-
|
3524
|
+
# 1.8.0 / 2011-04-34
|
2849
3525
|
|
2850
3526
|
This release focused on properly encapsulating functionality. Most of this
|
2851
3527
|
work focused on moving functionality out of Gem::SourceIndex and
|
@@ -2860,7 +3536,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
|
|
2860
3536
|
--build-arg` to regenerate a gem with an extension where it requires special
|
2861
3537
|
build arguments.
|
2862
3538
|
|
2863
|
-
|
3539
|
+
## Deprecations:
|
2864
3540
|
|
2865
3541
|
* DependencyList.from_source_index deprecated the source_index argument.
|
2866
3542
|
* Deprecated Dependency.new(/regex/).
|
@@ -2881,14 +3557,11 @@ build arguments.
|
|
2881
3557
|
* Deprecated all of Gem::GemPathSearcher.
|
2882
3558
|
* Deprecated Gem::Specification#default_executable.
|
2883
3559
|
|
2884
|
-
|
3560
|
+
## Enhancements:
|
2885
3561
|
|
2886
3562
|
* Gem::SourceIndex functionality has been moved to Gem::Specification.
|
2887
3563
|
Gem::SourceIndex is completely disconnected from Gem::Specification
|
2888
3564
|
* Refactored GemPathSearcher entirely out. RIPMF
|
2889
|
-
|
2890
|
-
* 41 minor enhancements:
|
2891
|
-
|
2892
3565
|
* Added CommandManager#unregister_command
|
2893
3566
|
* Added Dependency#matching_specs + to_specs.
|
2894
3567
|
* Added Dependency#to_spec
|
@@ -2936,7 +3609,7 @@ build arguments.
|
|
2936
3609
|
extensions.
|
2937
3610
|
* `gem pristine` can now restore multiple gems.
|
2938
3611
|
|
2939
|
-
|
3612
|
+
## Bug fixes:
|
2940
3613
|
|
2941
3614
|
* DependencyInstaller passed around a source_index instance but used
|
2942
3615
|
Gem.source_index.
|
@@ -2948,15 +3621,15 @@ build arguments.
|
|
2948
3621
|
* `gem pristine` can now restore non-latest gems where the cached gem was
|
2949
3622
|
removed.
|
2950
3623
|
|
2951
|
-
|
3624
|
+
# 1.7.1 / 2011-03-32
|
2952
3625
|
|
2953
|
-
|
3626
|
+
## Bug fixes:
|
2954
3627
|
* Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
|
2955
3628
|
`rake check_manifest` showing a diff would not exit with an error.)
|
2956
3629
|
|
2957
|
-
|
3630
|
+
# 1.7.0 / 2011-03-32
|
2958
3631
|
|
2959
|
-
|
3632
|
+
## Deprecations:
|
2960
3633
|
* Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
|
2961
3634
|
cache.
|
2962
3635
|
* Deprecated RemoteFetcher#open_uri_or_path.
|
@@ -2968,7 +3641,7 @@ build arguments.
|
|
2968
3641
|
test_suite_file(=).
|
2969
3642
|
* Deprecated Specification#has_rdoc= and default_executable=
|
2970
3643
|
|
2971
|
-
|
3644
|
+
## Enhancements:
|
2972
3645
|
* Added stupid simple deprecation module.
|
2973
3646
|
* Added --spec option to `gem unpack` to output a gem's original metadata
|
2974
3647
|
* Added packaging option to Specification#validate
|
@@ -3000,7 +3673,7 @@ build arguments.
|
|
3000
3673
|
* UpdateCommand#gems_to_update now returns (name, version) pairs.
|
3001
3674
|
* UpdateCommand#which_to_update now takes an optional system argument.
|
3002
3675
|
|
3003
|
-
|
3676
|
+
## Bug fixes:
|
3004
3677
|
* Added missing remote fetcher require to pristine command (aarnell)
|
3005
3678
|
* Building gems now checks to ensure all required fields are non-nil
|
3006
3679
|
* Fix option parser when summary is nil.
|
@@ -3016,17 +3689,17 @@ build arguments.
|
|
3016
3689
|
Elias Baixas
|
3017
3690
|
* `gem update` now uniq's command line arguments.
|
3018
3691
|
|
3019
|
-
|
3692
|
+
# 1.6.2 / 2011-03-08
|
3020
3693
|
|
3021
|
-
Bug
|
3694
|
+
## Bug fixes:
|
3022
3695
|
|
3023
3696
|
* require of an activated gem could cause activation conflicts. Fixes
|
3024
3697
|
Bug #29056 by Dave Verwer.
|
3025
3698
|
* `gem outdated` now works with up-to-date prerelease gems.
|
3026
3699
|
|
3027
|
-
|
3700
|
+
# 1.6.1 / 2011-03-03
|
3028
3701
|
|
3029
|
-
Bug
|
3702
|
+
## Bug fixes:
|
3030
3703
|
|
3031
3704
|
* Installation no longer fails when a dependency from a version that won't be
|
3032
3705
|
installed is unsatisfied.
|
@@ -3035,9 +3708,9 @@ Bug Fixes:
|
|
3035
3708
|
* Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
|
3036
3709
|
* Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
|
3037
3710
|
|
3038
|
-
|
3711
|
+
# 1.6.0 / 2011-02-29
|
3039
3712
|
|
3040
|
-
|
3713
|
+
## Deprecations:
|
3041
3714
|
|
3042
3715
|
* RubyGems no longer requires 'thread'. Rails < 3 will need to add require
|
3043
3716
|
'thread' to their applications.
|
@@ -3046,14 +3719,11 @@ Bug Fixes:
|
|
3046
3719
|
* Gem::LoadError#version_requirements has been removed. Use
|
3047
3720
|
Gem::LoadError#requirement.
|
3048
3721
|
|
3049
|
-
|
3722
|
+
## Enhancements:
|
3050
3723
|
|
3051
3724
|
* Rewrote how Gem::activate (gem and require) resolves dependencies.
|
3052
3725
|
* Gem::LoadError#version_requirement has been removed. Use
|
3053
3726
|
Gem::LoadError#requirement.
|
3054
|
-
|
3055
|
-
17 Minor Enhancments:
|
3056
|
-
|
3057
3727
|
* Added --key to `gem push` for setting alternate API keys.
|
3058
3728
|
* Added --format-executable support to gem uninstall.
|
3059
3729
|
* Added Gem::DependencyList#clear.
|
@@ -3077,7 +3747,7 @@ Bug Fixes:
|
|
3077
3747
|
locally cached gem specifications.
|
3078
3748
|
* SpecFetcher.fetch_spec can now take a string source_uri.
|
3079
3749
|
|
3080
|
-
|
3750
|
+
## Bug fixes:
|
3081
3751
|
|
3082
3752
|
* Added missing require of Gem::RemoteFetcher to the unpack command.
|
3083
3753
|
* RubyGems now completely removes a previous install when reinstalling.
|
@@ -3090,28 +3760,28 @@ Bug Fixes:
|
|
3090
3760
|
* Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
|
3091
3761
|
* Gem::Uninstaller now respects --format-executable.
|
3092
3762
|
|
3093
|
-
|
3763
|
+
# 1.5.3 / 2011-02-26
|
3094
3764
|
|
3095
|
-
Bug
|
3765
|
+
## Bug fixes:
|
3096
3766
|
|
3097
3767
|
* Fix for a bug in Syck which causes install failures for gems packaged with
|
3098
3768
|
Psych. Bug #28965 by Aaron Patterson.
|
3099
3769
|
|
3100
|
-
|
3770
|
+
# 1.5.2 / 2011-02-10
|
3101
3771
|
|
3102
|
-
Bug
|
3772
|
+
## Bug fixes:
|
3103
3773
|
|
3104
3774
|
* Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
|
3105
3775
|
|
3106
|
-
|
3776
|
+
# 1.5.1 / 2011-02-09
|
3107
3777
|
|
3108
|
-
|
3778
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
3109
3779
|
|
3110
|
-
|
3780
|
+
## Enhancements:
|
3111
3781
|
|
3112
3782
|
* Added ability to do gem update --system X.Y.Z.
|
3113
3783
|
|
3114
|
-
Bug
|
3784
|
+
## Bug fixes:
|
3115
3785
|
|
3116
3786
|
* Scrub !!null YAML from 1.9.2 (install and build).
|
3117
3787
|
* Added missing requires for user_interaction.
|
@@ -3120,17 +3790,14 @@ Bug Fixes:
|
|
3120
3790
|
* Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
|
3121
3791
|
* RubyGems now enforces ruby 1.8.7 or newer.
|
3122
3792
|
|
3123
|
-
|
3793
|
+
# 1.5.0 / 2011-01-31
|
3124
3794
|
|
3125
|
-
|
3795
|
+
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
3126
3796
|
|
3127
|
-
|
3797
|
+
## Enhancements:
|
3128
3798
|
|
3129
3799
|
* Finally fixed all known 1.9.x issues. Upgrading is now possible!
|
3130
3800
|
* Merged huge 1.3.7/ruby-core changes to master.
|
3131
|
-
|
3132
|
-
Minor Enhancements:
|
3133
|
-
|
3134
3801
|
* Added UPGRADING.rdoc to help deal with 1.9 issues.
|
3135
3802
|
* Gem::Format now gives better errors for corrupt gem files and includes paths
|
3136
3803
|
* Pre-install hooks can now abort gem installation by returning false
|
@@ -3142,7 +3809,7 @@ Minor Enhancements:
|
|
3142
3809
|
* Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
|
3143
3810
|
Erik Hollensbe.
|
3144
3811
|
|
3145
|
-
Bug
|
3812
|
+
## Bug fixes:
|
3146
3813
|
|
3147
3814
|
* `gem update` was implicitly doing --system.
|
3148
3815
|
* 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
|
@@ -3154,25 +3821,25 @@ Bug Fixes:
|
|
3154
3821
|
Erik Hollensbe.
|
3155
3822
|
* rubygems-update lists its development dependencies again
|
3156
3823
|
|
3157
|
-
|
3824
|
+
# 1.4.2 / 2011-01-06
|
3158
3825
|
|
3159
|
-
Bug fixes:
|
3826
|
+
## Bug fixes:
|
3160
3827
|
|
3161
3828
|
* Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
|
3162
3829
|
* Fixed Gem.find_files.
|
3163
3830
|
* Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
|
3164
3831
|
|
3165
|
-
|
3832
|
+
# 1.4.1 / 2010-12-31
|
3166
3833
|
|
3167
3834
|
Since apparently nobody reads my emails, blog posts or the README:
|
3168
3835
|
|
3169
3836
|
DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
|
3170
3837
|
|
3171
|
-
Bug
|
3838
|
+
## Bug fixes:
|
3172
3839
|
|
3173
3840
|
* Specification#load was untainting a frozen string (via `gem build *.spec`)
|
3174
3841
|
|
3175
|
-
|
3842
|
+
# 1.4.0 / 2010-12-30
|
3176
3843
|
|
3177
3844
|
NOTE: In order to better maintain rubygems and to get it in sync with
|
3178
3845
|
the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
|
@@ -3182,7 +3849,7 @@ You have been warned!
|
|
3182
3849
|
|
3183
3850
|
NOTE: We've switched to git/github. See README.rdoc for details.
|
3184
3851
|
|
3185
|
-
|
3852
|
+
## Features:
|
3186
3853
|
|
3187
3854
|
* Added --launch option to `gem server`. (gthiesfeld)
|
3188
3855
|
* Added fuzzy name matching on install failures. (gstark/presidentbeef)
|
@@ -3192,7 +3859,7 @@ New features:
|
|
3192
3859
|
* --source is now additive with your current sources.
|
3193
3860
|
Use --clear-sources first to maintain previous behavior.
|
3194
3861
|
|
3195
|
-
Bug fixes:
|
3862
|
+
## Bug fixes:
|
3196
3863
|
|
3197
3864
|
* Dependency "~>"s now respect lower-bound prerelease versions.
|
3198
3865
|
* Ensure the gem directories exist on download.
|
@@ -3203,18 +3870,18 @@ Bug fixes:
|
|
3203
3870
|
Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
|
3204
3871
|
* Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
|
3205
3872
|
|
3206
|
-
|
3873
|
+
# 1.3.7 / 2010-05-13
|
3207
3874
|
|
3208
3875
|
NOTE:
|
3209
3876
|
|
3210
|
-
|
3877
|
+
https://rubygems.org/ is now the default source for downloading gems.
|
3211
3878
|
|
3212
3879
|
You may have sources set via ~/.gemrc, so you should replace
|
3213
|
-
http://gems.rubyforge.org with
|
3880
|
+
http://gems.rubyforge.org with https://rubygems.org/
|
3214
3881
|
|
3215
3882
|
http://gems.rubyforge.org will continue to work for the foreseeable future.
|
3216
3883
|
|
3217
|
-
|
3884
|
+
## Features:
|
3218
3885
|
|
3219
3886
|
* `gem` commands
|
3220
3887
|
* `gem install` and `gem fetch` now report alternate platforms when a
|
@@ -3233,7 +3900,7 @@ New features:
|
|
3233
3900
|
in 1.3.6)
|
3234
3901
|
* RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
|
3235
3902
|
|
3236
|
-
Bug fixes:
|
3903
|
+
## Bug fixes:
|
3237
3904
|
|
3238
3905
|
* Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
|
3239
3906
|
Roger Pack.
|
@@ -3245,9 +3912,9 @@ Bug fixes:
|
|
3245
3912
|
* Gem::PackageTask depends on the package dir like the other rake package
|
3246
3913
|
tasks so dependencies can be hooked up correctly.
|
3247
3914
|
|
3248
|
-
|
3915
|
+
# 1.3.6 / 2010-02-17
|
3249
3916
|
|
3250
|
-
|
3917
|
+
## Features:
|
3251
3918
|
|
3252
3919
|
* `gem` commands
|
3253
3920
|
* Added `gem push` and `gem owner` for interacting with modern/Gemcutter
|
@@ -3259,7 +3926,7 @@ New features:
|
|
3259
3926
|
force rebuilding. Patch #25982 by Akinori MUSHA.
|
3260
3927
|
* Capital letters are now allowed in prerelease versions.
|
3261
3928
|
|
3262
|
-
Bug fixes:
|
3929
|
+
## Bug fixes:
|
3263
3930
|
|
3264
3931
|
* Development deps are no longer added to rubygems-update gem so older
|
3265
3932
|
versions can update successfully.
|
@@ -3278,7 +3945,7 @@ Bug fixes:
|
|
3278
3945
|
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
|
3279
3946
|
Patch #27409 by Jakub Šťastný.
|
3280
3947
|
|
3281
|
-
|
3948
|
+
## Deprecations:
|
3282
3949
|
|
3283
3950
|
* lib/rubygems/timer.rb has been removed.
|
3284
3951
|
* Gem::Dependency#version_requirements is deprecated and will be removed on or
|
@@ -3287,23 +3954,23 @@ Deprecation Notices:
|
|
3287
3954
|
* Gem::manage_gems was removed in 1.3.3.
|
3288
3955
|
* Time::today was removed in 1.3.3.
|
3289
3956
|
|
3290
|
-
|
3957
|
+
# 1.3.5 / 2009-07-21
|
3291
3958
|
|
3292
|
-
Bug fixes:
|
3959
|
+
## Bug fixes:
|
3293
3960
|
|
3294
3961
|
* Fix use of prerelease gems.
|
3295
3962
|
* Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
|
3296
3963
|
|
3297
|
-
|
3964
|
+
## Deprecations:
|
3298
3965
|
|
3299
3966
|
* Bulk index update is no longer supported (the code currently remains, but not
|
3300
3967
|
the tests)
|
3301
3968
|
* Gem::manage_gems was removed in 1.3.3.
|
3302
3969
|
* Time::today was removed in 1.3.3.
|
3303
3970
|
|
3304
|
-
|
3971
|
+
# 1.3.4 / 2009-05-03
|
3305
3972
|
|
3306
|
-
Bug
|
3973
|
+
## Bug fixes:
|
3307
3974
|
|
3308
3975
|
* Fixed various warnings
|
3309
3976
|
* Gem::ruby_version works correctly for 1.8 branch and trunk
|
@@ -3314,16 +3981,16 @@ Bug Fixes:
|
|
3314
3981
|
drives. Bug #25882 by Lars Christensen
|
3315
3982
|
* Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
|
3316
3983
|
|
3317
|
-
|
3984
|
+
## Deprecations:
|
3318
3985
|
|
3319
3986
|
* Bulk index update is no longer supported (the code currently remains, but not
|
3320
3987
|
the tests)
|
3321
3988
|
* Gem::manage_gems was removed in 1.3.3.
|
3322
3989
|
* Time::today was removed in 1.3.3.
|
3323
3990
|
|
3324
|
-
|
3991
|
+
# 1.3.3 / 2009-05-04
|
3325
3992
|
|
3326
|
-
|
3993
|
+
## Features:
|
3327
3994
|
|
3328
3995
|
* `gem server` allows port names (from /etc/services) with --port.
|
3329
3996
|
* `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
|
@@ -3333,7 +4000,7 @@ New Features:
|
|
3333
4000
|
* Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
|
3334
4001
|
* RDoc is now generated regardless of Gem::Specification#has_rdoc?
|
3335
4002
|
|
3336
|
-
Bug
|
4003
|
+
## Bug fixes:
|
3337
4004
|
|
3338
4005
|
* `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
|
3339
4006
|
Eisenberg.
|
@@ -3355,15 +4022,15 @@ Bug Fixes:
|
|
3355
4022
|
* Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
|
3356
4023
|
reported by Alf Mikula.
|
3357
4024
|
|
3358
|
-
|
4025
|
+
## Deprecations:
|
3359
4026
|
|
3360
4027
|
* Gem::manage_gems has been removed.
|
3361
4028
|
* Time::today has been removed early. There was no way to make it warn and be
|
3362
4029
|
easy to override with user code.
|
3363
4030
|
|
3364
|
-
|
4031
|
+
# 1.3.2 / 2009-04-15
|
3365
4032
|
|
3366
|
-
|
4033
|
+
## Features:
|
3367
4034
|
|
3368
4035
|
* RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
|
3369
4036
|
This can be used to add commands (See Gem::CommandManager) or add
|
@@ -3391,7 +4058,7 @@ Select New Features:
|
|
3391
4058
|
* Modern indicies can now be updated incrementally.
|
3392
4059
|
* Legacy indicies can be updated separately from modern.
|
3393
4060
|
|
3394
|
-
|
4061
|
+
## Bug fixes:
|
3395
4062
|
|
3396
4063
|
* Better gem activation error message. Patch #23082.
|
3397
4064
|
* Kernel methods are now private. Patch #20801 by James M. Lawrence.
|
@@ -3417,7 +4084,7 @@ Select Bugs Fixed:
|
|
3417
4084
|
* Deal with extraneous quotation mark when autogenerating .bat file on MS
|
3418
4085
|
Windows. Bug #22712.
|
3419
4086
|
|
3420
|
-
|
4087
|
+
## Deprecations:
|
3421
4088
|
|
3422
4089
|
* Gem::manage_gems has been removed.
|
3423
4090
|
* Time::today will be removed in RubyGems 1.4.
|
@@ -3425,9 +4092,9 @@ Deprecation Notices:
|
|
3425
4092
|
Special thanks to Chad Wooley for backwards compatibility testing and Luis
|
3426
4093
|
Lavena and Daniel Berger for continuing windows support.
|
3427
4094
|
|
3428
|
-
|
4095
|
+
# 1.3.1 / 2008-10-28
|
3429
4096
|
|
3430
|
-
|
4097
|
+
## Bug fixes:
|
3431
4098
|
|
3432
4099
|
* Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
|
3433
4100
|
issues related to no uid support under Windows.
|
@@ -3438,13 +4105,13 @@ Bugs fixed:
|
|
3438
4105
|
* Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
|
3439
4106
|
* Silence PATH warning.
|
3440
4107
|
|
3441
|
-
|
4108
|
+
## Deprecations:
|
3442
4109
|
|
3443
4110
|
* Gem::manage_gems will be removed on or after March 2009.
|
3444
4111
|
|
3445
|
-
|
4112
|
+
# 1.3.0 / 2008-09-25
|
3446
4113
|
|
3447
|
-
|
4114
|
+
## Features:
|
3448
4115
|
|
3449
4116
|
* RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
|
3450
4117
|
stdout is not a TTY, except with --both.
|
@@ -3458,12 +4125,12 @@ New features:
|
|
3458
4125
|
* RubyGems now updates the ri cache when the rdoc gem is installed and
|
3459
4126
|
documentation is generated.
|
3460
4127
|
|
3461
|
-
|
4128
|
+
## Deprecations:
|
3462
4129
|
|
3463
4130
|
* Gem::manage_gems now warns when called. It will be removed on or after March
|
3464
4131
|
2009.
|
3465
4132
|
|
3466
|
-
|
4133
|
+
## Bug fixes:
|
3467
4134
|
|
3468
4135
|
* RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
|
3469
4136
|
Bug #20775 by Hemant Kumar.
|
@@ -3487,7 +4154,7 @@ Bugs Fixed:
|
|
3487
4154
|
* `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
|
3488
4155
|
* Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
|
3489
4156
|
|
3490
|
-
|
4157
|
+
## Enhancements:
|
3491
4158
|
|
3492
4159
|
* `gem help install` now describes _version_ argument to executable stubs
|
3493
4160
|
* `gem help environment` describes environment variables and ~/.gemrc and
|
@@ -3513,9 +4180,9 @@ Other Changes Include:
|
|
3513
4180
|
* test/test_ext_configure_builder.rb
|
3514
4181
|
* Locale-free patch by Yusuke Endoh [ruby-core:17444].
|
3515
4182
|
|
3516
|
-
|
4183
|
+
# 1.2.0 / 2008-06-21
|
3517
4184
|
|
3518
|
-
|
4185
|
+
## Features:
|
3519
4186
|
|
3520
4187
|
* RubyGems no longer performs bulk updates and instead only fetches the gemspec
|
3521
4188
|
files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
|
@@ -3534,7 +4201,7 @@ New features:
|
|
3534
4201
|
* setup.rb now handles --vendor and --destdir for packagers
|
3535
4202
|
* `gem stale` command that lists gems by last access time
|
3536
4203
|
|
3537
|
-
|
4204
|
+
## Bug fixes:
|
3538
4205
|
|
3539
4206
|
* File modes from gems are now honored, patch #19737
|
3540
4207
|
* Marshal Gem::Specification objects from the future can now be loaded.
|
@@ -3549,7 +4216,7 @@ Bugs Fixed:
|
|
3549
4216
|
* Gem::DependencyInstaller resets installed gems every install, bug #19444
|
3550
4217
|
* Gem.default_path is now honored if GEM_PATH is not set, patch #19502
|
3551
4218
|
|
3552
|
-
|
4219
|
+
## Enhancements:
|
3553
4220
|
|
3554
4221
|
* setup.rb
|
3555
4222
|
* stub files created by RubyGems 0.7.x and older are no longer removed. When
|
@@ -3568,9 +4235,9 @@ Other Changes Include:
|
|
3568
4235
|
* Gem::RemoteFetcher now performs persistent connections for HEAD requests,
|
3569
4236
|
bug #7973
|
3570
4237
|
|
3571
|
-
|
4238
|
+
# 1.1.1 / 2008-04-11
|
3572
4239
|
|
3573
|
-
|
4240
|
+
## Bug fixes:
|
3574
4241
|
|
3575
4242
|
* Gem.prefix now returns non-nil only when RubyGems was installed outside
|
3576
4243
|
sitelibdir or libdir.
|
@@ -3585,9 +4252,9 @@ Bugs Fixed:
|
|
3585
4252
|
* Gem::RemoteFetcher handles Errno::ECONNABORTED.
|
3586
4253
|
* Printing of release notes fixed.
|
3587
4254
|
|
3588
|
-
|
4255
|
+
# 1.1.0 / 2008-03-29
|
3589
4256
|
|
3590
|
-
|
4257
|
+
## Features:
|
3591
4258
|
|
3592
4259
|
* RubyGems now uses persistent connections on index updates. Index updates are
|
3593
4260
|
much faster now.
|
@@ -3599,7 +4266,7 @@ New features:
|
|
3599
4266
|
* `gem spec` now extracts specifications from .gem files.
|
3600
4267
|
* `gem query --installed` to aid automation of checking for gems.
|
3601
4268
|
|
3602
|
-
|
4269
|
+
## Bug fixes:
|
3603
4270
|
|
3604
4271
|
* RubyGems works with both Config and RbConfig now.
|
3605
4272
|
* Executables are now cleaned upon uninstall.
|
@@ -3615,7 +4282,7 @@ Bugs Fixed:
|
|
3615
4282
|
* Gem stub scripts on windows now work outside Gem.bindir.
|
3616
4283
|
* `gem sources -r` now works without network access.
|
3617
4284
|
|
3618
|
-
|
4285
|
+
## Enhancements:
|
3619
4286
|
|
3620
4287
|
* RubyGems now requires Ruby > 1.8.3.
|
3621
4288
|
* Release notes are now printed upon installation.
|
@@ -3626,26 +4293,26 @@ Other Changes Include:
|
|
3626
4293
|
|
3627
4294
|
For a full list of changes to RubyGems, see the ChangeLog file.
|
3628
4295
|
|
3629
|
-
|
4296
|
+
# 1.0.1 / 2007-12-20
|
3630
4297
|
|
3631
|
-
|
4298
|
+
## Bug fixes:
|
3632
4299
|
|
3633
4300
|
* Installation on Ruby 1.8.3 through 1.8.5 fixed
|
3634
4301
|
* `gem build` on 1.8.3 fixed
|
3635
4302
|
|
3636
|
-
|
4303
|
+
## Enhancements:
|
3637
4304
|
|
3638
4305
|
* Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
|
3639
4306
|
this is official in RubyGems 1.0.1.
|
3640
4307
|
|
3641
|
-
|
4308
|
+
# 1.0.0 / 2007-12-20
|
3642
4309
|
|
3643
|
-
|
4310
|
+
## Features:
|
3644
4311
|
|
3645
4312
|
* RubyGems warns about various problems with gemspecs during gem building
|
3646
4313
|
* More-consistent versioning for the RubyGems software
|
3647
4314
|
|
3648
|
-
|
4315
|
+
## Enhancements:
|
3649
4316
|
|
3650
4317
|
* Fixed various bugs and problems with installing gems on Windows
|
3651
4318
|
* Fixed using `gem server` for installing gems
|
@@ -3659,7 +4326,7 @@ Other Changes Include:
|
|
3659
4326
|
* `gem unpack` can now unpack into a specific directory with --target
|
3660
4327
|
* OpenSSL is no longer required by default
|
3661
4328
|
|
3662
|
-
|
4329
|
+
## Breaking changes:
|
3663
4330
|
|
3664
4331
|
* Kernel#require_gem has been removed
|
3665
4332
|
* Executables without a shebang will not be wrapped in a future version, this
|
@@ -3671,9 +4338,9 @@ Deprecations and Deletions:
|
|
3671
4338
|
* Gem::Specification#autorequire= has been deprecated
|
3672
4339
|
* Time::today will be removed in a future version
|
3673
4340
|
|
3674
|
-
|
4341
|
+
# 0.9.5 / 2007-11-19
|
3675
4342
|
|
3676
|
-
|
4343
|
+
## Features:
|
3677
4344
|
|
3678
4345
|
* Platform support
|
3679
4346
|
* Automatic installation of platform gems
|
@@ -3685,7 +4352,7 @@ Major New Features Include:
|
|
3685
4352
|
* Improved stubs and `gem.bat` on mswin, including better compatibility
|
3686
4353
|
with the One-Click Installer.
|
3687
4354
|
|
3688
|
-
|
4355
|
+
## Enhancements:
|
3689
4356
|
|
3690
4357
|
* Time::today is deprecated and will be removed at a future date
|
3691
4358
|
* Gem::manage_gems is deprecated and will be removed at a future date
|
@@ -3730,13 +4397,13 @@ Special thanks to:
|
|
3730
4397
|
* Tom Copeland
|
3731
4398
|
* Wilson Bilkovich
|
3732
4399
|
|
3733
|
-
|
4400
|
+
# 0.9.4 / 2007-05-23
|
3734
4401
|
|
3735
4402
|
If you are experiencing problems with the source index (e.g. strange
|
3736
4403
|
"No Method" errors), or problems with zlib (e.g. "Buffer Error"
|
3737
4404
|
messsage), we recommend upgrading to RubyGems 0.9.4.
|
3738
4405
|
|
3739
|
-
Bug
|
4406
|
+
## Bug fixes:
|
3740
4407
|
|
3741
4408
|
* Several people have been experiencing problems with no method errors
|
3742
4409
|
on the source index cache. The source index cache is now a bit more
|
@@ -3748,9 +4415,9 @@ Bug Fixes Include:
|
|
3748
4415
|
* Several sub-commands were accidentally dropped from the "gem" command.
|
3749
4416
|
These commands have been restored.
|
3750
4417
|
|
3751
|
-
|
4418
|
+
# 0.9.3 / 2007-05-10
|
3752
4419
|
|
3753
|
-
Bug
|
4420
|
+
## Bug fixes:
|
3754
4421
|
|
3755
4422
|
The ZLib library on Windows will occasionally complains about a buffer error
|
3756
4423
|
when unpacking gems. The Gems software has a workaround for that problem, but
|
@@ -3758,19 +4425,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
|
|
3758
4425
|
have received several reports of the error occurring with ZLib 1.2.3, so we
|
3759
4426
|
have permanently enabled the work around on all versions.
|
3760
4427
|
|
3761
|
-
|
4428
|
+
# 0.9.2 / 2007-02-05
|
3762
4429
|
|
3763
|
-
Bug
|
4430
|
+
## Bug fixes:
|
3764
4431
|
|
3765
4432
|
* The "unpack" command now works properly.
|
3766
4433
|
* User name and password are now passed properly to the authenticating
|
3767
4434
|
proxy when downloading gems.
|
3768
4435
|
|
3769
|
-
|
4436
|
+
# 0.9.1 / 2007-01-16
|
3770
4437
|
|
3771
4438
|
See ChangeLog
|
3772
4439
|
|
3773
|
-
|
4440
|
+
# 0.9.0 / 2006-06-28
|
3774
4441
|
|
3775
4442
|
Finally, the much anticipated RubyGems version 0.9.0 is now available.
|
3776
4443
|
This release includes a number of new features and bug fixes. The
|
@@ -3778,7 +4445,7 @@ number one change is that we can now download the gem index
|
|
3778
4445
|
incrementally. This will greatly speed up the gem command when only a
|
3779
4446
|
few gems are out of date.
|
3780
4447
|
|
3781
|
-
|
4448
|
+
## Enhancements:
|
3782
4449
|
|
3783
4450
|
* The gem index is now downloaded incrementally, only updating entries
|
3784
4451
|
that are out of date. If more than 50 entries are out of date, we
|
@@ -3793,9 +4460,6 @@ Major Enhancments include:
|
|
3793
4460
|
* Both RI and RDOC documents are now generated by default.
|
3794
4461
|
* A gemri command is included to read gem RI docs (only needed for
|
3795
4462
|
Ruby 1.8.4 or earlier).
|
3796
|
-
|
3797
|
-
Minor enhancements include:
|
3798
|
-
|
3799
4463
|
* Version 0.0.0 is now a valid gem version.
|
3800
4464
|
* Better detection of missing SSL functionality.
|
3801
4465
|
* SSL is not required if the security policy does not require
|
@@ -3808,7 +4472,7 @@ Minor enhancements include:
|
|
3808
4472
|
* .rbw is now a supported suffix for RubyGem's custom require.
|
3809
4473
|
* Several Ruby 1.9 compatibility fixes (Eric Hodel).
|
3810
4474
|
|
3811
|
-
Bug
|
4475
|
+
## Bug fixes:
|
3812
4476
|
|
3813
4477
|
* Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
|
3814
4478
|
cross-Ruby version compatibility issues.
|
@@ -3820,7 +4484,7 @@ Bug Fixes:
|
|
3820
4484
|
* Fixed prefix handling for native expressions (patch by Aaron Patterson).
|
3821
4485
|
* Fixed several Upgrade => Update typos.
|
3822
4486
|
|
3823
|
-
|
4487
|
+
# 0.8.11 / 2005-07-13
|
3824
4488
|
|
3825
4489
|
* -y is a synonym for --include-dependencies.
|
3826
4490
|
* Better handling of errors in the top level rescue clause.
|
@@ -3839,7 +4503,7 @@ Bug Fixes:
|
|
3839
4503
|
* Added David Glasser's install-from-mirror patch.
|
3840
4504
|
* Additional internal structural cleanup and test reorganization.
|
3841
4505
|
|
3842
|
-
|
4506
|
+
# 0.8.10 / 2005-03-27
|
3843
4507
|
|
3844
4508
|
* In multi-user environments, it is common to supply multiple versions of gems
|
3845
4509
|
(for example Rails), allowing individual users to select the version of the
|
@@ -3850,16 +4514,16 @@ Bug Fixes:
|
|
3850
4514
|
installed, then the "gem update --system" command will download a new
|
3851
4515
|
update, but install the latest update prior to the download.
|
3852
4516
|
|
3853
|
-
|
4517
|
+
# 0.8.9
|
3854
4518
|
|
3855
4519
|
Never released
|
3856
4520
|
|
3857
|
-
|
4521
|
+
# 0.8.8 / 2005-03-14
|
3858
4522
|
|
3859
4523
|
* Moved the master definition of class Requirement back under version.
|
3860
4524
|
Kept the body of Requirement under Gem.
|
3861
4525
|
|
3862
|
-
|
4526
|
+
# 0.8.7 / 2005-03-14
|
3863
4527
|
|
3864
4528
|
Even though it has only been a few weeks since that last release,
|
3865
4529
|
there are quite a number of new features in 0.8.7. A complete list of
|
@@ -3912,11 +4576,11 @@ file system. You can read more about them here:
|
|
3912
4576
|
* gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
|
3913
4577
|
* gemwhich: http://docs.rubygems.org/read/chapter/17
|
3914
4578
|
|
3915
|
-
|
4579
|
+
# 0.8.6 / 2005-02-27
|
3916
4580
|
|
3917
4581
|
* Fixed a small bug with shebang construction
|
3918
4582
|
|
3919
|
-
|
4583
|
+
# 0.8.5 / 2005-02-26
|
3920
4584
|
|
3921
4585
|
Do you know how you used to dread getting the following message while
|
3922
4586
|
installing gems?
|
@@ -3938,7 +4602,7 @@ us. No RDoc generation was included in the following times.
|
|
3938
4602
|
The new caching code is at least 3x faster than previous versions. Woo
|
3939
4603
|
Hoo!
|
3940
4604
|
|
3941
|
-
|
4605
|
+
# 0.8.4 / 2005-01-01
|
3942
4606
|
|
3943
4607
|
* Rubygems 0.8.3's installer was broken unless you already had an older
|
3944
4608
|
version of RubyGems installed. That's fixed.
|
@@ -3948,7 +4612,7 @@ Hoo!
|
|
3948
4612
|
* Support for lower-cased Gem file names (for you, Paul Duncan :)
|
3949
4613
|
* Erik Veenstra's patch for making Gem versions sortable.
|
3950
4614
|
|
3951
|
-
|
4615
|
+
# 0.8.3 / 2004-12-07
|
3952
4616
|
|
3953
4617
|
No real earth shattering news here, but there were a number of really
|
3954
4618
|
annoying issues involving other libraries that RubyGems depends upon.
|
@@ -3990,11 +4654,11 @@ There has been some minor usability enhancements and changes ...
|
|
3990
4654
|
names. This was useful for him while testing libs that he had in
|
3991
4655
|
development.
|
3992
4656
|
|
3993
|
-
|
4657
|
+
# 0.8.1 / 2004-09-17
|
3994
4658
|
|
3995
4659
|
* Quick release to capture some bug fixes.
|
3996
4660
|
|
3997
|
-
|
4661
|
+
# 0.8.0 / 2004-09-15
|
3998
4662
|
|
3999
4663
|
* Remove need for library stubs. Set the RUBYOPT environment variable to
|
4000
4664
|
include "rrubygems", and a normal require will find gem files. Continue to
|
@@ -4017,15 +4681,15 @@ There has been some minor usability enhancements and changes ...
|
|
4017
4681
|
to pick.
|
4018
4682
|
* Added "gem unpack" for "unpacking" a gem to the current directory
|
4019
4683
|
|
4020
|
-
|
4684
|
+
# 0.7.0 / 2004-07-09
|
4021
4685
|
|
4022
4686
|
See ChangeLog
|
4023
4687
|
|
4024
|
-
|
4688
|
+
# 0.6.1 / 2004-06-08
|
4025
4689
|
|
4026
4690
|
See ChangeLog
|
4027
4691
|
|
4028
|
-
|
4692
|
+
# 0.6.0 / 2004-06-08
|
4029
4693
|
|
4030
4694
|
* Collapse output of --search and --list (and gem_server) operations so that
|
4031
4695
|
each gem is listed only once, with each of its versions listed on the same
|
@@ -4038,7 +4702,7 @@ See ChangeLog
|
|
4038
4702
|
spec.required_ruby_version = "> 1.8.0"
|
4039
4703
|
* --install-stub defaults to true, so library stubs are created
|
4040
4704
|
|
4041
|
-
|
4705
|
+
# 0.5.0 / 2004-06-06
|
4042
4706
|
|
4043
4707
|
* Jim added the ability to specify version constraints to avoid API
|
4044
4708
|
incompatibilities. This has been the subject of much debate for the past
|
@@ -4061,11 +4725,11 @@ See ChangeLog
|
|
4061
4725
|
automatically included.
|
4062
4726
|
* Some small bug fixes
|
4063
4727
|
|
4064
|
-
|
4728
|
+
# 0.4.0 / 2004-05-30
|
4065
4729
|
|
4066
4730
|
* Minor bug fixes including Windows compatibility issues
|
4067
4731
|
|
4068
|
-
|
4732
|
+
# 0.3.0 / 2004-04-30
|
4069
4733
|
|
4070
4734
|
* Cleanup of command-line arguments and handling. Most commands accept a
|
4071
4735
|
--local or --remote modifier.
|
@@ -4086,6 +4750,6 @@ See ChangeLog
|
|
4086
4750
|
* Generally improved error messages (still more work to do)
|
4087
4751
|
* Rearranged gem directory structure for cleanliness.
|
4088
4752
|
|
4089
|
-
|
4753
|
+
# 0.2.0 / 2004-03-14
|
4090
4754
|
|
4091
4755
|
* Initial public release
|