rubygems-update 3.0.3 → 3.4.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5556 -0
- data/CODE_OF_CONDUCT.md +62 -24
- data/CONTRIBUTING.md +111 -21
- data/MAINTAINERS.txt +1 -6
- data/Manifest.txt +209 -101
- data/POLICIES.md +65 -22
- data/README.md +23 -15
- data/UPGRADING.md +5 -81
- data/bin/gem +2 -16
- data/bin/update_rubygems +5 -5
- data/bundler/CHANGELOG.md +2619 -1256
- data/bundler/LICENSE.md +18 -19
- data/bundler/README.md +11 -12
- data/bundler/UPGRADING.md +222 -0
- data/bundler/bundler.gemspec +13 -33
- data/bundler/exe/bundle +26 -11
- data/bundler/exe/bundler +1 -1
- data/bundler/lib/bundler/.document +1 -0
- data/bundler/lib/bundler/build_metadata.rb +5 -13
- data/bundler/lib/bundler/capistrano.rb +4 -4
- data/bundler/lib/bundler/cli/add.rb +28 -16
- data/bundler/lib/bundler/cli/binstubs.rb +11 -3
- data/bundler/lib/bundler/cli/cache.rb +24 -17
- data/bundler/lib/bundler/cli/check.rb +5 -3
- data/bundler/lib/bundler/cli/clean.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +41 -13
- data/bundler/lib/bundler/cli/config.rb +170 -86
- data/bundler/lib/bundler/cli/console.rb +3 -3
- data/bundler/lib/bundler/cli/doctor.rb +27 -10
- data/bundler/lib/bundler/cli/exec.rb +8 -25
- data/bundler/lib/bundler/cli/fund.rb +36 -0
- data/bundler/lib/bundler/cli/gem.rb +261 -48
- data/bundler/lib/bundler/cli/info.rb +52 -8
- data/bundler/lib/bundler/cli/init.rb +7 -3
- data/bundler/lib/bundler/cli/inject.rb +1 -1
- data/bundler/lib/bundler/cli/install.rb +38 -66
- data/bundler/lib/bundler/cli/issue.rb +8 -7
- data/bundler/lib/bundler/cli/list.rb +19 -11
- data/bundler/lib/bundler/cli/lock.rb +11 -4
- data/bundler/lib/bundler/cli/open.rb +14 -9
- data/bundler/lib/bundler/cli/outdated.rb +152 -121
- data/bundler/lib/bundler/cli/platform.rb +2 -2
- data/bundler/lib/bundler/cli/plugin.rb +19 -2
- data/bundler/lib/bundler/cli/pristine.rb +6 -1
- data/bundler/lib/bundler/cli/remove.rb +1 -2
- data/bundler/lib/bundler/cli/show.rb +3 -3
- data/bundler/lib/bundler/cli/update.rb +49 -18
- data/bundler/lib/bundler/cli/viz.rb +1 -1
- data/bundler/lib/bundler/cli.rb +269 -165
- data/bundler/lib/bundler/compact_index_client/cache.rb +7 -24
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
- data/bundler/lib/bundler/compact_index_client/updater.rb +58 -57
- data/bundler/lib/bundler/compact_index_client.rb +28 -18
- data/bundler/lib/bundler/constants.rb +1 -1
- data/bundler/lib/bundler/current_ruby.rb +26 -11
- data/bundler/lib/bundler/definition.rb +359 -441
- data/bundler/lib/bundler/dependency.rb +29 -71
- data/bundler/lib/bundler/deployment.rb +1 -1
- data/bundler/lib/bundler/digest.rb +71 -0
- data/bundler/lib/bundler/dsl.rb +84 -116
- data/bundler/lib/bundler/endpoint_specification.rb +20 -14
- data/bundler/lib/bundler/env.rb +10 -15
- data/bundler/lib/bundler/environment_preserver.rb +30 -3
- data/bundler/lib/bundler/errors.rb +31 -14
- data/bundler/lib/bundler/feature_flag.rb +13 -33
- data/bundler/lib/bundler/fetcher/base.rb +7 -9
- data/bundler/lib/bundler/fetcher/compact_index.rb +46 -39
- data/bundler/lib/bundler/fetcher/dependency.rb +2 -2
- data/bundler/lib/bundler/fetcher/downloader.rb +15 -12
- data/bundler/lib/bundler/fetcher/index.rb +4 -30
- data/bundler/lib/bundler/fetcher.rb +39 -41
- data/bundler/lib/bundler/force_platform.rb +18 -0
- data/bundler/lib/bundler/friendly_errors.rb +49 -54
- data/bundler/lib/bundler/gem_helper.rb +79 -43
- data/bundler/lib/bundler/gem_helpers.rb +44 -28
- data/bundler/lib/bundler/gem_tasks.rb +1 -1
- data/bundler/lib/bundler/gem_version_promoter.rb +54 -99
- data/bundler/lib/bundler/graph.rb +5 -5
- data/bundler/lib/bundler/index.rb +14 -52
- data/bundler/lib/bundler/injector.rb +50 -16
- data/bundler/lib/bundler/inline.rb +28 -29
- data/bundler/lib/bundler/installer/gem_installer.rb +22 -23
- data/bundler/lib/bundler/installer/parallel_installer.rb +51 -51
- data/bundler/lib/bundler/installer/standalone.rb +62 -12
- data/bundler/lib/bundler/installer.rb +46 -97
- data/bundler/lib/bundler/lazy_specification.rb +88 -48
- data/bundler/lib/bundler/lockfile_generator.rb +3 -3
- data/bundler/lib/bundler/lockfile_parser.rb +30 -62
- data/bundler/{man → lib/bundler/man}/bundle-add.1 +29 -5
- data/bundler/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +22 -4
- data/bundler/{man → lib/bundler/man}/bundle-binstubs.1 +6 -4
- data/bundler/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +3 -5
- data/bundler/lib/bundler/man/bundle-cache.1 +61 -0
- data/bundler/{man/bundle-package.ronn → lib/bundler/man/bundle-cache.1.ronn} +22 -15
- data/bundler/{man → lib/bundler/man}/bundle-check.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-clean.1 +2 -2
- data/bundler/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-config.1 +78 -60
- data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +96 -85
- data/bundler/lib/bundler/man/bundle-console.1 +53 -0
- data/bundler/lib/bundler/man/bundle-console.1.ronn +44 -0
- data/bundler/{man → lib/bundler/man}/bundle-doctor.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-exec.1 +6 -6
- data/bundler/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +6 -6
- data/bundler/lib/bundler/man/bundle-gem.1 +105 -0
- data/bundler/lib/bundler/man/bundle-gem.1.ronn +117 -0
- data/bundler/lib/bundler/man/bundle-help.1 +13 -0
- data/bundler/lib/bundler/man/bundle-help.1.ronn +12 -0
- data/bundler/{man → lib/bundler/man}/bundle-info.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-init.1 +6 -2
- data/bundler/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +3 -1
- data/bundler/{man → lib/bundler/man}/bundle-inject.1 +5 -2
- data/bundler/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +3 -1
- data/bundler/{man → lib/bundler/man}/bundle-install.1 +42 -37
- data/bundler/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +42 -38
- data/bundler/{man → lib/bundler/man}/bundle-list.1 +7 -7
- data/bundler/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +6 -6
- data/bundler/{man → lib/bundler/man}/bundle-lock.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-open.1 +22 -2
- data/bundler/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +9 -1
- data/bundler/{man → lib/bundler/man}/bundle-outdated.1 +3 -10
- data/bundler/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +1 -10
- data/bundler/{man → lib/bundler/man}/bundle-platform.1 +16 -6
- data/bundler/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +14 -7
- data/bundler/lib/bundler/man/bundle-plugin.1 +81 -0
- data/bundler/lib/bundler/man/bundle-plugin.1.ronn +59 -0
- data/bundler/{man → lib/bundler/man}/bundle-pristine.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-remove.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-show.1 +1 -1
- data/bundler/{man → lib/bundler/man}/bundle-update.1 +8 -8
- data/bundler/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +8 -7
- data/bundler/lib/bundler/man/bundle-version.1 +35 -0
- data/bundler/lib/bundler/man/bundle-version.1.ronn +24 -0
- data/bundler/{man → lib/bundler/man}/bundle-viz.1 +4 -1
- data/bundler/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +2 -0
- data/bundler/{man → lib/bundler/man}/bundle.1 +17 -12
- data/bundler/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +14 -9
- data/bundler/lib/bundler/man/gemfile.5 +723 -0
- data/bundler/{man → lib/bundler/man}/gemfile.5.ronn +112 -95
- data/bundler/lib/bundler/man/index.txt +29 -0
- data/bundler/lib/bundler/match_metadata.rb +13 -0
- data/bundler/lib/bundler/match_platform.rb +1 -2
- data/bundler/lib/bundler/match_remote_metadata.rb +29 -0
- data/bundler/lib/bundler/mirror.rb +10 -12
- data/bundler/lib/bundler/plugin/api/source.rb +29 -15
- data/bundler/lib/bundler/plugin/api.rb +1 -1
- data/bundler/lib/bundler/plugin/dsl.rb +1 -1
- data/bundler/lib/bundler/plugin/index.rb +31 -8
- data/bundler/lib/bundler/plugin/installer/git.rb +0 -4
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -9
- data/bundler/lib/bundler/plugin/installer.rb +35 -22
- data/bundler/lib/bundler/plugin/source_list.rb +5 -1
- data/bundler/lib/bundler/plugin.rb +102 -42
- data/bundler/lib/bundler/process_lock.rb +1 -1
- data/bundler/lib/bundler/remote_specification.rb +15 -8
- data/bundler/lib/bundler/resolver/base.rb +77 -0
- data/bundler/lib/bundler/resolver/candidate.rb +94 -0
- data/bundler/lib/bundler/resolver/incompatibility.rb +15 -0
- data/bundler/lib/bundler/resolver/package.rb +72 -0
- data/bundler/lib/bundler/resolver/root.rb +25 -0
- data/bundler/lib/bundler/resolver/spec_group.rb +49 -73
- data/bundler/lib/bundler/resolver.rb +343 -300
- data/bundler/lib/bundler/retry.rb +4 -4
- data/bundler/lib/bundler/ruby_dsl.rb +1 -1
- data/bundler/lib/bundler/ruby_version.rb +9 -37
- data/bundler/lib/bundler/rubygems_ext.rb +235 -92
- data/bundler/lib/bundler/rubygems_gem_installer.rb +87 -21
- data/bundler/lib/bundler/rubygems_integration.rb +179 -515
- data/bundler/lib/bundler/runtime.rb +25 -40
- data/bundler/lib/bundler/self_manager.rb +168 -0
- data/bundler/lib/bundler/settings.rb +162 -118
- data/bundler/lib/bundler/setup.rb +11 -12
- data/bundler/lib/bundler/shared_helpers.rb +61 -102
- data/bundler/lib/bundler/similarity_detector.rb +3 -3
- data/bundler/lib/bundler/source/git/git_proxy.rb +257 -128
- data/bundler/lib/bundler/source/git.rb +84 -61
- data/bundler/lib/bundler/source/metadata.rb +9 -9
- data/bundler/lib/bundler/source/path/installer.rb +11 -32
- data/bundler/lib/bundler/source/path.rb +28 -17
- data/bundler/lib/bundler/source/rubygems/remote.rb +3 -4
- data/bundler/lib/bundler/source/rubygems.rb +171 -197
- data/bundler/lib/bundler/source/rubygems_aggregate.rb +68 -0
- data/bundler/lib/bundler/source.rb +30 -10
- data/bundler/lib/bundler/source_list.rb +112 -67
- data/bundler/lib/bundler/source_map.rb +71 -0
- data/bundler/lib/bundler/spec_set.rb +86 -72
- data/bundler/lib/bundler/stub_specification.rb +45 -37
- data/bundler/lib/bundler/templates/Executable +3 -5
- data/bundler/lib/bundler/templates/Executable.bundler +21 -17
- data/bundler/lib/bundler/templates/Executable.standalone +4 -4
- data/bundler/lib/bundler/templates/Gemfile +0 -2
- 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/Cargo.toml.tt +7 -0
- data/bundler/lib/bundler/templates/newgem/Gemfile.tt +22 -2
- data/bundler/lib/bundler/templates/newgem/README.md.tt +13 -15
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +33 -5
- data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -0
- data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +25 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +15 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/{extconf.rb.tt → extconf-c.rb.tt} +2 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +6 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +12 -0
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +37 -0
- data/bundler/lib/bundler/templates/newgem/gitignore.tt +3 -0
- data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +18 -0
- data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +4 -2
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +36 -41
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +13 -0
- data/bundler/lib/bundler/templates/newgem/sig/newgem.rbs.tt +8 -0
- data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
- data/bundler/lib/bundler/templates/newgem/standard.yml.tt +3 -0
- data/bundler/lib/bundler/templates/newgem/test/minitest/test_helper.rb.tt +6 -0
- data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/test_newgem.rb.tt} +3 -1
- data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
- data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
- data/bundler/lib/bundler/ui/rg_proxy.rb +1 -1
- data/bundler/lib/bundler/ui/shell.rb +39 -20
- data/bundler/lib/bundler/ui/silent.rb +21 -5
- data/bundler/lib/bundler/ui.rb +3 -3
- data/bundler/lib/bundler/uri_credentials_filter.rb +10 -4
- data/bundler/lib/bundler/vendor/.document +1 -0
- data/bundler/lib/bundler/vendor/connection_pool/LICENSE +20 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +174 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +3 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +56 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +128 -0
- data/bundler/lib/bundler/vendor/fileutils/LICENSE.txt +22 -0
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +1493 -425
- data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +82 -0
- 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/net-http-persistent/lib/net/http/persistent.rb +302 -462
- data/bundler/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +189 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +155 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +60 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb +105 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb +3 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb +129 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +411 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +243 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb +178 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +31 -0
- data/bundler/lib/bundler/vendor/thor/LICENSE.md +20 -0
- 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 +25 -14
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +20 -10
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +34 -15
- 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/core_ext/hash_with_indifferent_access.rb +6 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +83 -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/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/line_editor.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/nested_context.rb +29 -0
- 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 +40 -6
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -4
- 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/basic.rb +88 -13
- 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/shell.rb +5 -5
- 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/thor/lib/thor.rb +16 -9
- data/bundler/lib/bundler/vendor/tsort/LICENSE.txt +22 -0
- data/bundler/lib/bundler/vendor/tsort/lib/tsort.rb +452 -0
- data/bundler/lib/bundler/vendor/uri/LICENSE.txt +22 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +729 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +100 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +267 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +1587 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +125 -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 +22 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +293 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +539 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +119 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +6 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ws.rb +83 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/wss.rb +23 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri.rb +104 -0
- data/bundler/lib/bundler/vendored_fileutils.rb +1 -6
- data/bundler/lib/bundler/vendored_persistent.rb +2 -39
- data/bundler/lib/bundler/{vendored_molinillo.rb → vendored_pub_grub.rb} +1 -1
- data/bundler/lib/bundler/vendored_thor.rb +2 -2
- data/bundler/lib/bundler/vendored_tsort.rb +4 -0
- data/bundler/lib/bundler/vendored_uri.rb +4 -0
- data/bundler/lib/bundler/version.rb +5 -20
- data/bundler/lib/bundler/vlad.rb +2 -2
- data/bundler/lib/bundler/worker.rb +26 -15
- data/bundler/lib/bundler/yaml_serializer.rb +3 -4
- data/bundler/lib/bundler.rb +285 -183
- data/hide_lib_for_update/note.txt +0 -4
- data/lib/rubygems/available_set.rb +7 -8
- data/lib/rubygems/basic_specification.rb +44 -31
- data/lib/rubygems/bundler_version_finder.rb +28 -50
- data/lib/rubygems/command.rb +104 -46
- data/lib/rubygems/command_manager.rb +35 -16
- data/lib/rubygems/commands/build_command.rb +77 -26
- data/lib/rubygems/commands/cert_command.rb +78 -76
- data/lib/rubygems/commands/check_command.rb +20 -22
- data/lib/rubygems/commands/cleanup_command.rb +36 -32
- data/lib/rubygems/commands/contents_command.rb +16 -18
- data/lib/rubygems/commands/dependency_command.rb +39 -50
- data/lib/rubygems/commands/environment_command.rb +11 -13
- data/lib/rubygems/commands/fetch_command.rb +33 -16
- data/lib/rubygems/commands/generate_index_command.rb +18 -17
- data/lib/rubygems/commands/help_command.rb +7 -7
- data/lib/rubygems/commands/info_command.rb +11 -6
- data/lib/rubygems/commands/install_command.rb +45 -79
- data/lib/rubygems/commands/list_command.rb +9 -8
- data/lib/rubygems/commands/lock_command.rb +7 -9
- data/lib/rubygems/commands/mirror_command.rb +3 -4
- data/lib/rubygems/commands/open_command.rb +11 -14
- data/lib/rubygems/commands/outdated_command.rb +5 -6
- data/lib/rubygems/commands/owner_command.rb +29 -22
- data/lib/rubygems/commands/pristine_command.rb +61 -51
- data/lib/rubygems/commands/push_command.rb +26 -63
- data/lib/rubygems/commands/query_command.rb +21 -337
- data/lib/rubygems/commands/rdoc_command.rb +26 -26
- data/lib/rubygems/commands/search_command.rb +8 -8
- data/lib/rubygems/commands/server_command.rb +16 -77
- data/lib/rubygems/commands/setup_command.rb +282 -241
- data/lib/rubygems/commands/signin_command.rb +9 -10
- data/lib/rubygems/commands/signout_command.rb +7 -9
- data/lib/rubygems/commands/sources_command.rb +42 -26
- data/lib/rubygems/commands/specification_command.rb +25 -20
- data/lib/rubygems/commands/stale_command.rb +3 -3
- data/lib/rubygems/commands/uninstall_command.rb +58 -49
- data/lib/rubygems/commands/unpack_command.rb +15 -44
- data/lib/rubygems/commands/update_command.rb +133 -81
- data/lib/rubygems/commands/which_command.rb +8 -11
- data/lib/rubygems/commands/yank_command.rb +22 -19
- data/lib/rubygems/compatibility.rb +7 -5
- data/lib/rubygems/config_file.rb +101 -47
- data/lib/rubygems/core_ext/kernel_gem.rb +8 -12
- data/lib/rubygems/core_ext/kernel_require.rb +124 -83
- data/lib/rubygems/core_ext/kernel_warn.rb +35 -30
- data/lib/rubygems/core_ext/tcpsocket_init.rb +52 -0
- data/lib/rubygems/defaults.rb +131 -55
- data/lib/rubygems/dependency.rb +44 -27
- data/lib/rubygems/dependency_installer.rb +49 -205
- data/lib/rubygems/dependency_list.rb +24 -25
- data/lib/rubygems/deprecate.rb +106 -12
- data/lib/rubygems/doctor.rb +22 -22
- data/lib/rubygems/errors.rb +8 -14
- data/lib/rubygems/exceptions.rb +35 -33
- data/lib/rubygems/ext/build_error.rb +2 -0
- data/lib/rubygems/ext/builder.rb +71 -95
- data/lib/rubygems/ext/cargo_builder/link_flag_converter.rb +27 -0
- data/lib/rubygems/ext/cargo_builder.rb +360 -0
- data/lib/rubygems/ext/cmake_builder.rb +6 -7
- data/lib/rubygems/ext/configure_builder.rb +5 -8
- data/lib/rubygems/ext/ext_conf_builder.rb +45 -65
- data/lib/rubygems/ext/rake_builder.rb +7 -10
- data/lib/rubygems/ext.rb +7 -6
- data/lib/rubygems/gem_runner.rb +15 -26
- data/lib/rubygems/gemcutter_utilities.rb +179 -54
- data/lib/rubygems/indexer.rb +38 -53
- data/lib/rubygems/install_default_message.rb +2 -2
- data/lib/rubygems/install_message.rb +2 -2
- data/lib/rubygems/install_update_options.rb +73 -64
- data/lib/rubygems/installer.rb +230 -173
- data/lib/rubygems/installer_uninstaller_utils.rb +29 -0
- data/lib/rubygems/local_remote_options.rb +22 -24
- data/lib/rubygems/mock_gem_ui.rb +2 -5
- data/lib/rubygems/name_tuple.rb +10 -14
- data/lib/rubygems/openssl.rb +7 -0
- data/lib/rubygems/optparse/.document +1 -0
- data/lib/rubygems/optparse/COPYING +56 -0
- data/lib/rubygems/optparse/lib/optionparser.rb +2 -0
- data/lib/rubygems/optparse/lib/optparse/ac.rb +54 -0
- data/lib/rubygems/optparse/lib/optparse/date.rb +18 -0
- data/lib/rubygems/optparse/lib/optparse/kwargs.rb +22 -0
- data/lib/rubygems/optparse/lib/optparse/shellwords.rb +7 -0
- data/lib/rubygems/optparse/lib/optparse/time.rb +11 -0
- data/lib/rubygems/optparse/lib/optparse/uri.rb +7 -0
- data/lib/rubygems/optparse/lib/optparse/version.rb +71 -0
- data/lib/rubygems/optparse/lib/optparse.rb +2308 -0
- data/lib/rubygems/optparse.rb +3 -0
- data/lib/rubygems/package/digest_io.rb +0 -2
- data/lib/rubygems/package/file_source.rb +2 -4
- data/lib/rubygems/package/io_source.rb +4 -2
- data/lib/rubygems/package/old.rb +9 -11
- data/lib/rubygems/package/tar_header.rb +73 -66
- data/lib/rubygems/package/tar_reader/entry.rb +8 -9
- data/lib/rubygems/package/tar_reader.rb +16 -13
- data/lib/rubygems/package/tar_writer.rb +12 -22
- data/lib/rubygems/package.rb +142 -125
- data/lib/rubygems/package_task.rb +5 -11
- data/lib/rubygems/path_support.rb +3 -8
- data/lib/rubygems/platform.rb +113 -73
- data/lib/rubygems/psych_tree.rb +1 -1
- data/lib/rubygems/query_utils.rb +351 -0
- data/lib/rubygems/rdoc.rb +4 -16
- data/lib/rubygems/remote_fetcher.rb +64 -136
- data/lib/rubygems/request/connection_pools.rb +7 -11
- data/lib/rubygems/request/http_pool.rb +2 -3
- data/lib/rubygems/request.rb +31 -32
- data/lib/rubygems/request_set/gem_dependency_api.rb +135 -136
- data/lib/rubygems/request_set/lockfile/parser.rb +28 -28
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +5 -5
- data/lib/rubygems/request_set/lockfile.rb +21 -20
- data/lib/rubygems/request_set.rb +30 -43
- data/lib/rubygems/requirement.rb +42 -64
- data/lib/rubygems/resolver/activation_request.rb +29 -53
- data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
- data/lib/rubygems/resolver/api_set.rb +33 -26
- data/lib/rubygems/resolver/api_specification.rb +30 -16
- data/lib/rubygems/resolver/best_set.rb +9 -11
- data/lib/rubygems/resolver/composed_set.rb +3 -5
- data/lib/rubygems/resolver/conflict.rb +12 -19
- data/lib/rubygems/resolver/current_set.rb +0 -2
- data/lib/rubygems/resolver/dependency_request.rb +3 -5
- data/lib/rubygems/resolver/git_set.rb +2 -4
- data/lib/rubygems/resolver/git_specification.rb +6 -8
- data/lib/rubygems/resolver/index_set.rb +4 -6
- data/lib/rubygems/resolver/index_specification.rb +38 -7
- data/lib/rubygems/resolver/installed_specification.rb +4 -6
- data/lib/rubygems/resolver/installer_set.rb +69 -27
- data/lib/rubygems/resolver/local_specification.rb +2 -4
- data/lib/rubygems/resolver/lock_set.rb +7 -9
- data/lib/rubygems/resolver/lock_specification.rb +6 -8
- data/lib/rubygems/resolver/molinillo/LICENSE +9 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +8 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +7 -6
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +4 -3
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +51 -12
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +42 -9
- data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +82 -8
- data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +13 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +510 -165
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +3 -2
- data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +8 -4
- data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +6 -5
- data/lib/rubygems/resolver/molinillo.rb +1 -1
- data/lib/rubygems/resolver/requirement_list.rb +0 -1
- data/lib/rubygems/resolver/set.rb +0 -3
- data/lib/rubygems/resolver/source_set.rb +0 -2
- data/lib/rubygems/resolver/spec_specification.rb +14 -2
- data/lib/rubygems/resolver/specification.rb +14 -3
- data/lib/rubygems/resolver/vendor_set.rb +1 -3
- data/lib/rubygems/resolver/vendor_specification.rb +3 -5
- data/lib/rubygems/resolver.rb +58 -54
- data/lib/rubygems/s3_uri_signer.rb +175 -0
- data/lib/rubygems/safe_yaml.rb +14 -16
- data/lib/rubygems/security/policies.rb +47 -47
- data/lib/rubygems/security/policy.rb +25 -29
- data/lib/rubygems/security/signer.rb +16 -18
- data/lib/rubygems/security/trust_dir.rb +5 -6
- data/lib/rubygems/security.rb +90 -69
- data/lib/rubygems/security_option.rb +7 -8
- data/lib/rubygems/source/git.rb +30 -30
- data/lib/rubygems/source/installed.rb +1 -3
- data/lib/rubygems/source/local.rb +4 -6
- data/lib/rubygems/source/lock.rb +0 -2
- data/lib/rubygems/source/specific_file.rb +1 -3
- data/lib/rubygems/source/vendor.rb +0 -2
- data/lib/rubygems/source.rb +50 -38
- data/lib/rubygems/source_list.rb +9 -13
- data/lib/rubygems/spec_fetcher.rb +52 -64
- data/lib/rubygems/specification.rb +432 -463
- data/lib/rubygems/specification_policy.rb +185 -87
- data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +21 -0
- data/lib/rubygems/stub_specification.rb +24 -29
- data/lib/rubygems/text.rb +21 -21
- data/lib/rubygems/tsort/.document +1 -0
- data/lib/rubygems/tsort/LICENSE.txt +22 -0
- data/lib/rubygems/tsort/lib/tsort.rb +452 -0
- data/lib/rubygems/tsort.rb +3 -0
- data/lib/rubygems/uninstaller.rb +110 -57
- data/lib/rubygems/unknown_command_spell_checker.rb +21 -0
- data/lib/rubygems/update_suggestion.rb +69 -0
- data/lib/rubygems/uri.rb +126 -0
- data/lib/rubygems/uri_formatter.rb +2 -4
- data/lib/rubygems/user_interaction.rb +46 -49
- data/lib/rubygems/util/licenses.rb +511 -404
- data/lib/rubygems/util.rb +40 -56
- data/lib/rubygems/validator.rb +15 -37
- data/lib/rubygems/version.rb +48 -29
- data/lib/rubygems/version_option.rb +11 -5
- data/lib/rubygems.rb +305 -332
- data/rubygems-update.gemspec +6 -13
- data/setup.rb +11 -22
- data/test/rubygems/alternate_cert.pem +14 -14
- data/test/rubygems/alternate_cert_32.pem +15 -15
- data/test/rubygems/alternate_key.pem +25 -25
- data/test/rubygems/bundler_test_gem.rb +419 -0
- data/test/rubygems/ca_cert.pem +74 -65
- data/test/rubygems/child_cert.pem +15 -16
- data/test/rubygems/child_cert_32.pem +15 -16
- data/test/rubygems/child_key.pem +25 -25
- data/test/rubygems/client.pem +103 -45
- data/test/rubygems/data/excon-0.7.7.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
- data/test/rubygems/data/pry-0.4.7.gemspec.rz +0 -0
- data/test/rubygems/encrypted_private_key.pem +26 -26
- data/test/rubygems/expired_cert.pem +15 -15
- data/test/rubygems/future_cert.pem +15 -15
- data/test/rubygems/future_cert_32.pem +15 -15
- data/test/rubygems/grandchild_cert.pem +15 -16
- data/test/rubygems/grandchild_cert_32.pem +15 -16
- data/test/rubygems/grandchild_key.pem +25 -25
- data/{lib/rubygems/test_case.rb → test/rubygems/helper.rb} +505 -507
- data/{lib → test}/rubygems/installer_test_case.rb +115 -53
- data/test/rubygems/invalid_issuer_cert.pem +16 -16
- data/test/rubygems/invalid_issuer_cert_32.pem +16 -16
- data/test/rubygems/invalid_key.pem +25 -25
- data/test/rubygems/invalid_signer_cert.pem +15 -15
- data/test/rubygems/invalid_signer_cert_32.pem +15 -15
- data/test/rubygems/invalidchild_cert.pem +15 -16
- data/test/rubygems/invalidchild_cert_32.pem +15 -16
- data/test/rubygems/invalidchild_key.pem +25 -25
- data/{lib → test}/rubygems/package/tar_test_case.rb +4 -6
- data/test/rubygems/packages/Bluebie-legs-0.6.2.gem +0 -0
- data/test/rubygems/packages/ascii_binder-0.1.10.1.gem +0 -0
- data/test/rubygems/packages/ill-formatted-platform-1.0.0.10.gem +0 -0
- data/test/rubygems/plugin/exception/rubygems_plugin.rb +1 -1
- data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +1 -1
- data/test/rubygems/private_ec_key.pem +9 -0
- data/test/rubygems/private_key.pem +25 -25
- data/test/rubygems/public_cert.pem +16 -16
- data/test/rubygems/public_cert_32.pem +15 -15
- data/test/rubygems/public_key.pem +7 -7
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
- data/test/rubygems/rubygems_plugin.rb +2 -4
- data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
- data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +12 -0
- data/test/rubygems/ssl_cert.pem +78 -17
- data/test/rubygems/ssl_key.pem +25 -13
- data/test/rubygems/test_bundled_ca.rb +44 -47
- data/test/rubygems/test_config.rb +5 -7
- data/test/rubygems/test_deprecate.rb +90 -10
- data/test/rubygems/test_exit.rb +17 -0
- data/test/rubygems/test_gem.rb +679 -885
- data/test/rubygems/test_gem_available_set.rb +24 -25
- data/test/rubygems/test_gem_bundler_version_finder.rb +42 -42
- data/test/rubygems/test_gem_command.rb +186 -39
- data/test/rubygems/test_gem_command_manager.rb +166 -36
- data/test/rubygems/test_gem_commands_build_command.rb +436 -52
- data/test/rubygems/test_gem_commands_cert_command.rb +193 -124
- data/test/rubygems/test_gem_commands_check_command.rb +9 -11
- data/test/rubygems/test_gem_commands_cleanup_command.rb +87 -62
- data/test/rubygems/test_gem_commands_contents_command.rb +73 -42
- data/test/rubygems/test_gem_commands_dependency_command.rb +39 -41
- data/test/rubygems/test_gem_commands_environment_command.rb +60 -48
- data/test/rubygems/test_gem_commands_fetch_command.rb +163 -32
- data/test/rubygems/test_gem_commands_generate_index_command.rb +39 -9
- data/test/rubygems/test_gem_commands_help_command.rb +34 -19
- data/test/rubygems/test_gem_commands_info_command.rb +34 -9
- data/test/rubygems/test_gem_commands_install_command.rb +600 -173
- data/test/rubygems/test_gem_commands_list_command.rb +5 -7
- data/test/rubygems/test_gem_commands_lock_command.rb +11 -13
- data/test/rubygems/test_gem_commands_mirror.rb +3 -4
- data/test/rubygems/test_gem_commands_open_command.rb +16 -19
- data/test/rubygems/test_gem_commands_outdated_command.rb +24 -7
- data/test/rubygems/test_gem_commands_owner_command.rb +183 -49
- data/test/rubygems/test_gem_commands_pristine_command.rb +222 -89
- data/test/rubygems/test_gem_commands_push_command.rb +178 -69
- data/test/rubygems/test_gem_commands_query_command.rb +114 -89
- data/test/rubygems/test_gem_commands_search_command.rb +2 -4
- data/test/rubygems/test_gem_commands_server_command.rb +6 -46
- data/test/rubygems/test_gem_commands_setup_command.rb +334 -157
- data/test/rubygems/test_gem_commands_signin_command.rb +187 -27
- data/test/rubygems/test_gem_commands_signout_command.rb +3 -10
- data/test/rubygems/test_gem_commands_sources_command.rb +266 -33
- data/test/rubygems/test_gem_commands_specification_command.rb +81 -55
- data/test/rubygems/test_gem_commands_stale_command.rb +4 -6
- data/test/rubygems/test_gem_commands_uninstall_command.rb +230 -95
- data/test/rubygems/test_gem_commands_unpack_command.rb +32 -34
- data/test/rubygems/test_gem_commands_update_command.rb +412 -102
- data/test/rubygems/test_gem_commands_which_command.rb +12 -14
- data/test/rubygems/test_gem_commands_yank_command.rb +107 -26
- data/test/rubygems/test_gem_config_file.rb +120 -96
- data/test/rubygems/test_gem_dependency.rb +94 -86
- data/test/rubygems/test_gem_dependency_installer.rb +305 -388
- data/test/rubygems/test_gem_dependency_list.rb +66 -61
- data/test/rubygems/test_gem_dependency_resolution_error.rb +5 -7
- data/test/rubygems/test_gem_doctor.rb +73 -47
- data/test/rubygems/test_gem_ext_builder.rb +116 -106
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +8 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.lock +233 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.toml +10 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/src/lib.rs +27 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/lib/custom_name.rb +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/.gitignore +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +233 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +10 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/rust_ruby_example.gemspec +8 -0
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/src/lib.rs +51 -0
- data/test/rubygems/test_gem_ext_cargo_builder.rb +166 -0
- data/test/rubygems/test_gem_ext_cargo_builder_link_flag_converter.rb +33 -0
- data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +60 -0
- data/test/rubygems/test_gem_ext_cmake_builder.rb +32 -37
- data/test/rubygems/test_gem_ext_configure_builder.rb +23 -31
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +75 -79
- data/test/rubygems/test_gem_ext_rake_builder.rb +49 -30
- data/test/rubygems/test_gem_gem_runner.rb +52 -7
- data/test/rubygems/test_gem_gemcutter_utilities.rb +91 -76
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +4 -6
- data/test/rubygems/test_gem_indexer.rb +120 -105
- data/test/rubygems/test_gem_install_update_options.rb +57 -33
- data/test/rubygems/test_gem_installer.rb +1230 -644
- data/test/rubygems/test_gem_local_remote_options.rb +11 -13
- data/test/rubygems/test_gem_name_tuple.rb +4 -6
- data/test/rubygems/test_gem_package.rb +396 -266
- data/test/rubygems/test_gem_package_old.rb +57 -56
- data/test/rubygems/test_gem_package_tar_header.rb +108 -50
- data/test/rubygems/test_gem_package_tar_reader.rb +8 -10
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +77 -20
- data/test/rubygems/test_gem_package_tar_writer.rb +107 -101
- data/test/rubygems/test_gem_package_task.rb +58 -25
- data/test/rubygems/test_gem_path_support.rb +29 -29
- data/test/rubygems/test_gem_platform.rb +388 -199
- data/test/rubygems/test_gem_rdoc.rb +20 -155
- data/test/rubygems/test_gem_remote_fetcher.rb +474 -303
- data/test/rubygems/test_gem_request.rb +128 -85
- data/test/rubygems/test_gem_request_connection_pools.rb +32 -32
- data/test/rubygems/test_gem_request_set.rb +186 -110
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +280 -261
- data/test/rubygems/test_gem_request_set_lockfile.rb +93 -94
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +68 -69
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +136 -136
- data/test/rubygems/test_gem_requirement.rb +140 -55
- data/test/rubygems/test_gem_resolver.rb +224 -115
- data/test/rubygems/test_gem_resolver_activation_request.rb +9 -40
- data/test/rubygems/test_gem_resolver_api_set.rb +79 -78
- data/test/rubygems/test_gem_resolver_api_specification.rb +47 -49
- data/test/rubygems/test_gem_resolver_best_set.rb +43 -22
- data/test/rubygems/test_gem_resolver_composed_set.rb +1 -3
- data/test/rubygems/test_gem_resolver_conflict.rb +12 -18
- data/test/rubygems/test_gem_resolver_dependency_request.rb +15 -17
- data/test/rubygems/test_gem_resolver_git_set.rb +22 -24
- data/test/rubygems/test_gem_resolver_git_specification.rb +22 -22
- data/test/rubygems/test_gem_resolver_index_set.rb +14 -16
- data/test/rubygems/test_gem_resolver_index_specification.rb +21 -18
- data/test/rubygems/test_gem_resolver_installed_specification.rb +5 -8
- data/test/rubygems/test_gem_resolver_installer_set.rb +106 -44
- data/test/rubygems/test_gem_resolver_local_specification.rb +7 -9
- data/test/rubygems/test_gem_resolver_lock_set.rb +15 -17
- data/test/rubygems/test_gem_resolver_lock_specification.rb +17 -19
- data/test/rubygems/test_gem_resolver_requirement_list.rb +1 -3
- data/test/rubygems/test_gem_resolver_specification.rb +8 -10
- data/test/rubygems/test_gem_resolver_vendor_set.rb +9 -11
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +10 -12
- data/test/rubygems/test_gem_security.rb +109 -79
- data/test/rubygems/test_gem_security_policy.rb +102 -107
- data/test/rubygems/test_gem_security_signer.rb +51 -52
- data/test/rubygems/test_gem_security_trust_dir.rb +14 -16
- data/test/rubygems/test_gem_silent_ui.rb +47 -42
- data/test/rubygems/test_gem_source.rb +66 -51
- data/test/rubygems/test_gem_source_fetch_problem.rb +17 -8
- data/test/rubygems/test_gem_source_git.rb +74 -74
- data/test/rubygems/test_gem_source_installed.rb +16 -18
- data/test/rubygems/test_gem_source_list.rb +5 -5
- data/test/rubygems/test_gem_source_local.rb +15 -16
- data/test/rubygems/test_gem_source_lock.rb +31 -33
- data/test/rubygems/test_gem_source_specific_file.rb +18 -19
- data/test/rubygems/test_gem_source_subpath_problem.rb +49 -0
- data/test/rubygems/test_gem_source_vendor.rb +13 -15
- data/test/rubygems/test_gem_spec_fetcher.rb +74 -67
- data/test/rubygems/test_gem_specification.rb +1051 -1071
- data/test/rubygems/test_gem_stream_ui.rb +25 -23
- data/test/rubygems/test_gem_stub_specification.rb +39 -56
- data/test/rubygems/test_gem_text.rb +8 -3
- data/test/rubygems/test_gem_uninstaller.rb +269 -100
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +3 -5
- data/test/rubygems/test_gem_update_suggestion.rb +208 -0
- data/test/rubygems/test_gem_uri.rb +39 -0
- data/test/rubygems/test_gem_uri_formatter.rb +14 -16
- data/test/rubygems/test_gem_util.rb +46 -34
- data/test/rubygems/test_gem_validator.rb +12 -15
- data/test/rubygems/test_gem_version.rb +49 -34
- data/test/rubygems/test_gem_version_option.rb +16 -18
- data/test/rubygems/test_kernel.rb +61 -53
- data/test/rubygems/test_project_sanity.rb +20 -0
- data/test/rubygems/test_remote_fetch_error.rb +7 -8
- data/test/rubygems/test_require.rb +415 -121
- data/test/rubygems/test_rubygems.rb +74 -0
- data/{lib/rubygems/test_utilities.rb → test/rubygems/utilities.rb} +74 -50
- data/test/rubygems/wrong_key_cert.pem +15 -15
- data/test/rubygems/wrong_key_cert_32.pem +15 -15
- data/test/test_changelog_generator.rb +17 -0
- metadata +218 -244
- data/.rubocop.yml +0 -66
- data/.travis.yml +0 -38
- data/History.txt +0 -3965
- data/Rakefile +0 -372
- 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/dep_proxy.rb +0 -48
- data/bundler/lib/bundler/gem_remote_fetcher.rb +0 -43
- data/bundler/lib/bundler/gemdeps.rb +0 -29
- data/bundler/lib/bundler/psyched_yaml.rb +0 -37
- 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/gems.rb +0 -8
- data/bundler/lib/bundler/templates/newgem/test/test_helper.rb.tt +0 -4
- data/bundler/lib/bundler/templates/newgem/travis.yml.tt +0 -7
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +0 -81
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +0 -36
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +0 -66
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +0 -62
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +0 -63
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +0 -61
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +0 -126
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +0 -46
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +0 -36
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +0 -136
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +0 -223
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +0 -143
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +0 -101
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +0 -67
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +0 -837
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +0 -46
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +0 -58
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -12
- 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/bundler/lib/bundler/version_ranges.rb +0 -76
- data/bundler/man/bundle-gem.1 +0 -80
- data/bundler/man/bundle-gem.ronn +0 -78
- data/bundler/man/bundle-package.1 +0 -55
- data/lib/rubygems/psych_additions.rb +0 -10
- data/lib/rubygems/server.rb +0 -878
- 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/rubygems/syck_hack.rb +0 -77
- data/lib/ubygems.rb +0 -14
- data/test/rubygems/bogussources.rb +0 -9
- data/test/rubygems/data/null-type.gemspec.rz +0 -0
- data/test/rubygems/test_gem_server.rb +0 -607
- data/util/CL2notes +0 -55
- data/util/ci +0 -77
- data/util/create_certs.rb +0 -171
- 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
- /data/bundler/lib/bundler/{ssl_certs → man}/.document +0 -0
- /data/bundler/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
- /data/bundler/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
- /data/bundler/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
- /data/bundler/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
- /data/bundler/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
- /data/bundler/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
- /data/bundler/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
- /data/{bundler/lib/bundler/ssl_certs/index.rubygems.org → lib/rubygems/ssl_certs/rubygems.org}/GlobalSignRootCA.pem +0 -0
data/History.txt
DELETED
@@ -1,3965 +0,0 @@
|
|
1
|
-
# coding: UTF-8
|
2
|
-
|
3
|
-
=== 3.0.2 / 2019-01-01
|
4
|
-
|
5
|
-
Minor enhancements:
|
6
|
-
|
7
|
-
* Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
|
8
|
-
* Fix document flag description. Pull request #2555 by Luis Sagastume.
|
9
|
-
|
10
|
-
Bug fixes:
|
11
|
-
|
12
|
-
* Fix tests when ruby --program-suffix is used without rubygems
|
13
|
-
--format-executable. Pull request #2549 by Jeremy Evans.
|
14
|
-
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
15
|
-
request #2554 by Grey Baker.
|
16
|
-
* Unset SOURCE_DATE_EPOCH in the test cases. Pull request #2558 by Sorah
|
17
|
-
Fukumori.
|
18
|
-
* Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
|
19
|
-
|
20
|
-
=== 3.0.1 / 2018-12-23
|
21
|
-
|
22
|
-
Bug fixes:
|
23
|
-
|
24
|
-
* Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
|
25
|
-
* Dup the Dir.home string before passing it on. Pull request #2545 by
|
26
|
-
Charles Oliver Nutter.
|
27
|
-
* Added permissions to installed files for non-owners. Pull request #2546
|
28
|
-
by SHIBATA Hiroshi.
|
29
|
-
* Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
|
30
|
-
|
31
|
-
=== 3.0.0 / 2018-12-19
|
32
|
-
|
33
|
-
Major enhancements:
|
34
|
-
|
35
|
-
* S3 source. Pull request #1690 by Aditya Prakash.
|
36
|
-
* Download gems with threads. Pull request #1898 by André Arko.
|
37
|
-
* Update to SPDX license list 3.0. Pull request #2152 by Mike Linksvayer.
|
38
|
-
* [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
|
39
|
-
Chaofan.
|
40
|
-
* Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
|
41
|
-
|
42
|
-
Minor enhancements:
|
43
|
-
|
44
|
-
* Don't treat inaccessible working directories as build failures. Pull
|
45
|
-
request #1135 by Pete.
|
46
|
-
* Remove useless directory parameter from builders .build methods.
|
47
|
-
[rebased]. Pull request #1433 by Kurtis Rainbolt-Greene.
|
48
|
-
* Skipping more than one gem in pristine. Pull request #1592 by Henne
|
49
|
-
Vogelsang.
|
50
|
-
* Add info command to print information about an installed gem. Pull
|
51
|
-
request #2023 by Colby Swandale.
|
52
|
-
* Add --[no-]check-development option to cleanup command. Pull request
|
53
|
-
#2061 by Lin Jen-Shin (godfat).
|
54
|
-
* Show which gem referenced a missing gem. Pull request #2067 by Artem
|
55
|
-
Khramov.
|
56
|
-
* Prevent to delete to "bundler-" prefix gem like bundler-audit. Pull
|
57
|
-
request #2086 by SHIBATA Hiroshi.
|
58
|
-
* Fix rake install_test_deps once the rake clean_env does not exist. Pull
|
59
|
-
request #2090 by Lucas Arantes.
|
60
|
-
* Workaround common options mutation in Gem::Command test. Pull request
|
61
|
-
#2098 by Thibault Jouan.
|
62
|
-
* Extract a SpecificationPolicy validation class. Pull request #2101 by
|
63
|
-
Olle Jonsson.
|
64
|
-
* Handle environment that does not have `flock` system call. Pull request
|
65
|
-
#2107 by SHIBATA Hiroshi.
|
66
|
-
* Handle the explain option in gem update. Pull request #2110 by Colby
|
67
|
-
Swandale.
|
68
|
-
* Add Gem.operating_system_defaults to allow packagers to override
|
69
|
-
defaults. Pull request #2116 by Vít Ondruch.
|
70
|
-
* Update for compatibilty with new minitest. Pull request #2118 by
|
71
|
-
MSP-Greg.
|
72
|
-
* Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
|
73
|
-
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
74
|
-
#2125 by SHIBATA Hiroshi.
|
75
|
-
* Set whether bundler is used for gemdeps with an environmental variable.
|
76
|
-
Pull request #2126 by SHIBATA Hiroshi.
|
77
|
-
* Titleize "GETTING HELP" in readme. Pull request #2136 by Colby Swandale.
|
78
|
-
* Improve the error message given when using --version with multiple gems
|
79
|
-
in the install command. Pull request #2137 by Colby Swandale.
|
80
|
-
* Use `File.open` instead of `open`. Pull request #2142 by SHIBATA
|
81
|
-
Hiroshi.
|
82
|
-
* Gem::Util.traverse_parents should not crash on permissions error. Pull
|
83
|
-
request #2147 by Robert Ulejczyk.
|
84
|
-
* [Installer] Avoid a #mkdir race condition. Pull request #2148 by Samuel
|
85
|
-
Giddins.
|
86
|
-
* Allow writing gemspecs from gem unpack to location specified by target
|
87
|
-
option. Pull request #2150 by Colby Swandale.
|
88
|
-
* Raise errors in `gem uninstall` when a file in a gem could not be
|
89
|
-
removed . Pull request #2154 by Colby Swandale.
|
90
|
-
* Remove PID from gem index directory. Pull request #2155 by SHIBATA
|
91
|
-
Hiroshi.
|
92
|
-
* Nil guard on `Gem::Specification`. Pull request #2164 by SHIBATA
|
93
|
-
Hiroshi.
|
94
|
-
* Skip broken test with macOS platform. Pull request #2167 by SHIBATA
|
95
|
-
Hiroshi.
|
96
|
-
* Support option for `--destdir` with upgrade installer. Pull request
|
97
|
-
#2169 by SHIBATA Hiroshi.
|
98
|
-
* To use constant instead of hard-coded version. Pull request #2171 by
|
99
|
-
SHIBATA Hiroshi.
|
100
|
-
* Add Rake task to install dev dependencies. Pull request #2173 by Ellen
|
101
|
-
Marie Dash.
|
102
|
-
* Add new sections to the README and explaination of what RubyGems is.
|
103
|
-
Pull request #2174 by Colby Swandale.
|
104
|
-
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
|
105
|
-
SHIBATA Hiroshi.
|
106
|
-
* Ignore perfomance test of version regexp pattern. Pull request #2179 by
|
107
|
-
SHIBATA Hiroshi.
|
108
|
-
* Ignore .DS_Store files in the update_manifest task. Pull request #2199
|
109
|
-
by Colby Swandale.
|
110
|
-
* Allow building gems without having to be in the gem folder . Pull
|
111
|
-
request #2204 by Colby Swandale.
|
112
|
-
* Added coverage ability used by simplecov. Pull request #2207 by SHIBATA
|
113
|
-
Hiroshi.
|
114
|
-
* Improve invalid proxy error message. Pull request #2217 by Luis
|
115
|
-
Sagastume.
|
116
|
-
* Simplify home directory detection and platform condition. Pull request
|
117
|
-
#2218 by SHIBATA Hiroshi.
|
118
|
-
* Permission options. Pull request #2219 by Nobuyoshi Nakada.
|
119
|
-
* Improve gemspec and package task. Pull request #2220 by SHIBATA Hiroshi.
|
120
|
-
* Prefer to use util_spec in `Gem::TestCase`. Pull request #2227 by
|
121
|
-
SHIBATA Hiroshi.
|
122
|
-
* [Requirement] Treat requirements with == versions as equal. Pull
|
123
|
-
request #2230 by Samuel Giddins.
|
124
|
-
* Add a note for the non-semantically versioned case. Pull request #2242
|
125
|
-
by David Rodríguez.
|
126
|
-
* Keep feature names loaded in the block. Pull request #2261 by Nobuyoshi
|
127
|
-
Nakada.
|
128
|
-
* Tweak warning recommendation. Pull request #2266 by David Rodríguez.
|
129
|
-
* Show git path in gem env. Pull request #2268 by Luis Sagastume.
|
130
|
-
* Add `--env-shebang` flag to setup command. Pull request #2271 by James
|
131
|
-
Myers.
|
132
|
-
* Support SOURCE_DATE_EPOCH to make gem spec reproducible. Pull request
|
133
|
-
#2278 by Levente Polyak.
|
134
|
-
* Chdir back to original directory when building an extension fails. Pull
|
135
|
-
request #2282 by Samuel Giddins.
|
136
|
-
* [Rakefile] Add a default task that runs the tests. Pull request #2283 by
|
137
|
-
Samuel Giddins.
|
138
|
-
* Support SOURCE_DATE_EPOCH to make gem tar reproducible. Pull request
|
139
|
-
#2289 by Levente Polyak.
|
140
|
-
* Reset hooks in test cases. Pull request #2297 by Samuel Giddins.
|
141
|
-
* Minor typo: nokogiri. Pull request #2298 by Darshan Baid.
|
142
|
-
* Ignore vendored molinillo from code coverage. Pull request #2302 by
|
143
|
-
SHIBATA Hiroshi.
|
144
|
-
* Support IO.copy_stream. Pull request #2303 by okkez.
|
145
|
-
* Prepare beta release. Pull request #2304 by SHIBATA Hiroshi.
|
146
|
-
* Add error message when trying to open a default gem. Pull request #2307
|
147
|
-
by Luis Sagastume.
|
148
|
-
* Add alias command 'i' for 'install' command. Pull request #2308 by
|
149
|
-
ota42y.
|
150
|
-
* Cleanup rdoc task in Rakefile. Pull request #2318 by SHIBATA Hiroshi.
|
151
|
-
* Add testcase to test_gem_text.rb. Pull request #2329 by Oliver.
|
152
|
-
* Gem build strict option. Pull request #2332 by David Rodríguez.
|
153
|
-
* Make spec reset more informative. Pull request #2333 by Luis Sagastume.
|
154
|
-
* [Rakefile] Set bundler build metadata when doing a release. Pull request
|
155
|
-
#2335 by Samuel Giddins.
|
156
|
-
* Speed up globbing relative to given directories. Pull request #2336 by
|
157
|
-
Samuel Giddins.
|
158
|
-
* Remove semver gem build warning. Pull request #2351 by David Rodríguez.
|
159
|
-
* Expand symlinks in gem path. Pull request #2352 by Benoit Daloze.
|
160
|
-
* Normalize comment indentations. Pull request #2353 by David Rodríguez.
|
161
|
-
* Add bindir flag to pristine. Pull request #2361 by Luis Sagastume.
|
162
|
-
* Add --user-install behaviour to cleanup command. Pull request #2362 by
|
163
|
-
Luis Sagastume.
|
164
|
-
* Allow build options to be passed to Rake. Pull request #2382 by Alyssa
|
165
|
-
Ross.
|
166
|
-
* Add --re-sign flag to cert command. Pull request #2391 by Luis
|
167
|
-
Sagastume.
|
168
|
-
* Fix "interpreted as grouped expression" warning. Pull request #2399 by
|
169
|
-
Colby Swandale.
|
170
|
-
* [Gem::Ext::Builder] Comments to aid future refactoring. Pull request
|
171
|
-
#2405 by Ellen Marie Dash.
|
172
|
-
* Move CONTRIBUTING.rdoc and POLICIES.rdoc documents to markdown. Pull
|
173
|
-
request #2412 by Colby Swandale.
|
174
|
-
* Improve certificate expiration defaults. Pull request #2420 by Luis
|
175
|
-
Sagastume.
|
176
|
-
* Freeze all possible constants. Pull request #2422 by Colby Swandale.
|
177
|
-
* Fix bundler rubygems binstub not properly looking for bundler. Pull
|
178
|
-
request #2426 by David Rodríguez.
|
179
|
-
* Make sure rubygems never leaks to another installation. Pull request
|
180
|
-
#2427 by David Rodríguez.
|
181
|
-
* Update README.md. Pull request #2428 by Marc-André Lafortune.
|
182
|
-
* Restrict special chars from prefixing new gem names. Pull request #2432
|
183
|
-
by Luis Sagastume.
|
184
|
-
* This removes support for dynamic API backend lookup via DNS SRV records.
|
185
|
-
Pull request #2433 by Arlandis Word.
|
186
|
-
* Fix link to CONTRIBUTING.md doc. Pull request #2434 by Arlandis Word.
|
187
|
-
* Support Keyword args with Pysch. Pull request #2439 by SHIBATA Hiroshi.
|
188
|
-
* Bug/kernel#warn uplevel. Pull request #2442 by Nobuyoshi Nakada.
|
189
|
-
* Improve certificate error message. Pull request #2454 by Luis Sagastume.
|
190
|
-
* Update gem open command help text. Pull request #2458 by Aditya Prakash.
|
191
|
-
* Uninstall with versions. Pull request #2466 by David Rodríguez.
|
192
|
-
* Add output option to build command. Pull request #2501 by Colby
|
193
|
-
Swandale.
|
194
|
-
* Move rubocop into a separate stage in travis ci. Pull request #2510 by
|
195
|
-
Colby Swandale.
|
196
|
-
* Ignore warnings with test_gem_specification.rb. Pull request #2523 by
|
197
|
-
SHIBATA Hiroshi.
|
198
|
-
* Support the environment without OpenSSL. Pull request #2528 by SHIBATA
|
199
|
-
Hiroshi.
|
200
|
-
|
201
|
-
Bug fixes:
|
202
|
-
|
203
|
-
* Fix undefined method error when printing alert. Pull request #1884 by
|
204
|
-
Robert Ross.
|
205
|
-
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
206
|
-
#2115 by MSP-Greg.
|
207
|
-
* Fixed typos. Pull request #2143 by SHIBATA Hiroshi.
|
208
|
-
* Fix regression of destdir on Windows platform. Pull request #2178 by
|
209
|
-
SHIBATA Hiroshi.
|
210
|
-
* Fixed no assignment variables about default gems installation. Pull
|
211
|
-
request #2181 by SHIBATA Hiroshi.
|
212
|
-
* Fix spelling errors in the README. Pull request #2187 by Colby Swandale.
|
213
|
-
* Missing comma creates ambiguous meaning. Pull request #2190 by Clifford
|
214
|
-
Heath.
|
215
|
-
* Fix getting started instructions. Pull request #2198 by Luis Sagastume.
|
216
|
-
* Fix rubygems dev env. Pull request #2201 by Luis Sagastume.
|
217
|
-
* Fix #1470: generate documentation when --install-dir is present. Pull
|
218
|
-
request #2229 by Elias Hernandis.
|
219
|
-
* Fix activation when multiple platforms installed. Pull request #2339 by
|
220
|
-
MSP-Greg.
|
221
|
-
* Fix required_ruby_version with prereleases and improve error message.
|
222
|
-
Pull request #2344 by David Rodríguez.
|
223
|
-
* Update tests for 'newer' Windows builds. Pull request #2348 by MSP-Greg.
|
224
|
-
* Fix broken rubocop task by upgrading to 0.58.1. Pull request #2356 by
|
225
|
-
David Rodríguez.
|
226
|
-
* Gem::Version should handle nil like it used to before. Pull request
|
227
|
-
#2363 by Luis Sagastume.
|
228
|
-
* Avoid need of C++ compiler to pass the test suite. Pull request #2367 by
|
229
|
-
Vít Ondruch.
|
230
|
-
* Fix auto resign expired certificate. Pull request #2380 by Luis
|
231
|
-
Sagastume.
|
232
|
-
* Skip permissions-dependent test when root. Pull request #2386 by Alyssa
|
233
|
-
Ross.
|
234
|
-
* Fix test that depended on /usr/bin being in PATH. Pull request #2387 by
|
235
|
-
Alyssa Ross.
|
236
|
-
* Fixed test fail with mswin environment. Pull request #2390 by SHIBATA
|
237
|
-
Hiroshi.
|
238
|
-
* Fix broken builds using the correct rubocop version. Pull request #2396
|
239
|
-
by Luis Sagastume.
|
240
|
-
* Fix extension builder failure when verbose. Pull request #2457 by Sorah
|
241
|
-
Fukumori.
|
242
|
-
* Fix test warnings. Pull request #2472 by MSP-Greg.
|
243
|
-
* The test suite of bundler is not present ruby description. Pull request
|
244
|
-
#2484 by SHIBATA Hiroshi.
|
245
|
-
* Fix crash on certain gemspecs. Pull request #2506 by David Rodríguez.
|
246
|
-
* Fixed test fails with the newer version of OpenSSL. Pull request #2507
|
247
|
-
by SHIBATA Hiroshi.
|
248
|
-
* Fix broken symlink that points to ../*. Pull request #2516 by Akira
|
249
|
-
Matsuda.
|
250
|
-
* Fix remote fetcher tests. Pull request #2520 by Luis Sagastume.
|
251
|
-
* Fix tests when --program-suffix and similar ruby configure options are
|
252
|
-
used. Pull request #2529 by Jeremy Evans.
|
253
|
-
|
254
|
-
Compatibility changes:
|
255
|
-
|
256
|
-
* IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
|
257
|
-
Hiroshi.
|
258
|
-
* Ignored to publish rdoc documentation of rubygems for
|
259
|
-
docs.seattlerb.org. Pull request #2105 by SHIBATA Hiroshi.
|
260
|
-
* Support pre-release RubyGems. Pull request #2128 by SHIBATA Hiroshi.
|
261
|
-
* Relax minitest version for 5. Pull request #2131 by SHIBATA Hiroshi.
|
262
|
-
* Remove zentest from dev dependency. Pull request #2132 by SHIBATA
|
263
|
-
Hiroshi.
|
264
|
-
* Remove hoe for test suite. Pull request #2160 by SHIBATA Hiroshi.
|
265
|
-
* Cleanup deprecated tasks. Pull request #2162 by SHIBATA Hiroshi.
|
266
|
-
* Drop to support Ruby < 2.2. Pull request #2182 by SHIBATA Hiroshi.
|
267
|
-
* Cleanup deprecated style. Pull request #2193 by SHIBATA Hiroshi.
|
268
|
-
* Remove CVEs from the rubygems repo. Pull request #2195 by Colby
|
269
|
-
Swandale.
|
270
|
-
* Removed needless condition for old version of ruby. Pull request #2206
|
271
|
-
by SHIBATA Hiroshi.
|
272
|
-
* Removed deprecated methods over the limit day. Pull request #2216 by
|
273
|
-
SHIBATA Hiroshi.
|
274
|
-
* Remove syck support. Pull request #2222 by SHIBATA Hiroshi.
|
275
|
-
* Removed needless condition for Encoding. Pull request #2223 by SHIBATA
|
276
|
-
Hiroshi.
|
277
|
-
* Removed needless condition for String#force_encoding. Pull request #2225
|
278
|
-
by SHIBATA Hiroshi.
|
279
|
-
* Removed needless OpenSSL patch for Ruby 1.8. Pull request #2243 by
|
280
|
-
SHIBATA Hiroshi.
|
281
|
-
* Removed compatibility code for Ruby 1.9.2. Pull request #2244 by SHIBATA
|
282
|
-
Hiroshi.
|
283
|
-
* Removed needless version condition for the old ruby. Pull request #2252
|
284
|
-
by SHIBATA Hiroshi.
|
285
|
-
* Remove needless define/respond_to condition. Pull request #2255 by
|
286
|
-
SHIBATA Hiroshi.
|
287
|
-
* Use File.realpath directlry in Gem::Package. Pull request #2284 by
|
288
|
-
SHIBATA Hiroshi.
|
289
|
-
* Removed needless condition for old versions of Ruby. Pull request #2286
|
290
|
-
by SHIBATA Hiroshi.
|
291
|
-
* Remove the --rdoc and --ri options from install/update. Pull request
|
292
|
-
#2354 by Colby Swandale.
|
293
|
-
* Move authors assigner to required attributes section of
|
294
|
-
Gem::Specification. Pull request #2406 by Grey Baker.
|
295
|
-
* Remove rubyforge_page functionality. Pull request #2436 by Nick
|
296
|
-
Schwaderer.
|
297
|
-
* Drop ruby 1.8 support and use IO.popen. Pull request #2441 by Nobuyoshi
|
298
|
-
Nakada.
|
299
|
-
* Drop ruby 2.2 support. Pull request #2487 by David Rodríguez.
|
300
|
-
* Remove some old compatibility code. Pull request #2488 by David
|
301
|
-
Rodríguez.
|
302
|
-
* Remove .document from src. Pull request #2489 by Colby Swandale.
|
303
|
-
* Remove old version support. Pull request #2493 by Nobuyoshi Nakada.
|
304
|
-
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
305
|
-
major versions. Pull request #2515 by Colby Swandale.
|
306
|
-
|
307
|
-
Style changes:
|
308
|
-
|
309
|
-
* Add Rubocop. Pull request #2250 by Colby Swandale.
|
310
|
-
* Removed explicitly declaration of thread library. Pull request #2324 by
|
311
|
-
SHIBATA Hiroshi.
|
312
|
-
* Remove Trailing whitespace with rubocop. Pull request #2394 by SHIBATA
|
313
|
-
Hiroshi.
|
314
|
-
* Update rubocop and also use correct pessimistic version. Pull request
|
315
|
-
#2404 by Colby Swandale.
|
316
|
-
* Enable more rubocop rules. Pull request #2435 by Ellen Marie Dash.
|
317
|
-
* Fix and lock rubocop. Pull request #2465 by David Rodríguez.
|
318
|
-
* Add a rubocop binstub. Pull request #2468 by David Rodríguez.
|
319
|
-
* Restore the `rubocop` task. Pull request #2470 by David Rodríguez.
|
320
|
-
* Remove trailing blank lines. Pull request #2471 by David Rodríguez.
|
321
|
-
* Remove empty lines around method bodies. Pull request #2473 by David
|
322
|
-
Rodríguez.
|
323
|
-
* Enable Style/MethodDefParentheses in Rubocop. Pull request #2478 by
|
324
|
-
Colby Swandale.
|
325
|
-
* Enable Style/MultilineIfThen in Rubocop. Pull request #2479 by Luis
|
326
|
-
Sagastume.
|
327
|
-
* Remove trailing 'then' from generated code. Pull request #2480 by Luis
|
328
|
-
Sagastume.
|
329
|
-
|
330
|
-
=== 2.7.8 / 2018-11-02
|
331
|
-
|
332
|
-
Minor enhancements:
|
333
|
-
|
334
|
-
* [Requirement] Treat requirements with == versions as equal. Pull
|
335
|
-
request #2230 by Samuel Giddins.
|
336
|
-
* Fix exec_name documentation. Pull request #2239 by Luis Sagastume.
|
337
|
-
* [TarHeader] Extract the empty header into a constant. Pull request #2247
|
338
|
-
by Samuel Giddins.
|
339
|
-
* Simplify the code that lets us call the original, non-monkeypatched
|
340
|
-
Kernel#require. Pull request #2267 by Leon Miller-Out.
|
341
|
-
* Add install alias documentation. Pull request #2320 by ota42y.
|
342
|
-
* [Rakefile] Set bundler build metadata when doing a release. Pull request
|
343
|
-
#2335 by Samuel Giddins.
|
344
|
-
* Backport commits from ruby core . Pull request #2347 by SHIBATA Hiroshi.
|
345
|
-
* Sign in to the correct host before push. Pull request #2366 by Luis
|
346
|
-
Sagastume.
|
347
|
-
* Bump bundler-1.16.4. Pull request #2381 by SHIBATA Hiroshi.
|
348
|
-
* Improve bindir flag description. Pull request #2383 by Luis Sagastume.
|
349
|
-
* Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
|
350
|
-
|
351
|
-
Bug fixes:
|
352
|
-
|
353
|
-
* Fix #1470: generate documentation when --install-dir is present. Pull
|
354
|
-
request #2229 by Elias Hernandis.
|
355
|
-
* Fix no proxy checking. Pull request #2249 by Luis Sagastume.
|
356
|
-
* Validate SPDX license exceptions. Pull request #2257 by Mikit.
|
357
|
-
* Retry api specification spec with original platform. Pull request #2275
|
358
|
-
by Luis Sagastume.
|
359
|
-
* Fix approximate recommendation with prereleases. Pull request #2345 by
|
360
|
-
David Rodríguez.
|
361
|
-
* Gem::Version should handle nil like it used to before. Pull request
|
362
|
-
#2363 by Luis Sagastume.
|
363
|
-
|
364
|
-
=== 2.7.7 / 2018-05-08
|
365
|
-
|
366
|
-
Minor enhancements:
|
367
|
-
|
368
|
-
* [RequestSet] Only suggest a gem version with an installable platform.
|
369
|
-
Pull request #2175 by Samuel Giddins.
|
370
|
-
* Fixed no assignment variables about default gems installation. Pull
|
371
|
-
request #2181 by SHIBATA Hiroshi.
|
372
|
-
* Backport improvements for test-case from Ruby core. Pull request #2189
|
373
|
-
by SHIBATA Hiroshi.
|
374
|
-
* Fix ruby warnings in test suite. Pull request #2205 by Colby Swandale.
|
375
|
-
* To use Gem::Specification#bindir of bundler instead of hard coded path.
|
376
|
-
Pull request #2208 by SHIBATA Hiroshi.
|
377
|
-
* Update gem push --help description. Pull request #2215 by Luis
|
378
|
-
Sagastume.
|
379
|
-
* Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
|
380
|
-
|
381
|
-
Bug fixes:
|
382
|
-
|
383
|
-
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
384
|
-
#2115 by MSP-Greg.
|
385
|
-
* Fixed tempfile leak for RubyGems 2.7.6. Pull request #2194 by SHIBATA
|
386
|
-
Hiroshi.
|
387
|
-
* Add missing requires. Pull request #2196 by David Rodríguez.
|
388
|
-
* Fix Gem::Version.correct?. Pull request #2203 by Masato Nakamura.
|
389
|
-
* Fix verify_entry regex for metadata. Pull request #2212 by Luis
|
390
|
-
Sagastume.
|
391
|
-
* Fix path checks for case insensitive filesystem. Pull request #2211 by
|
392
|
-
Lars Kanis.
|
393
|
-
|
394
|
-
Compatibility changes:
|
395
|
-
|
396
|
-
* Deprecate unused code before removing them at #1524. Pull request #2197
|
397
|
-
by SHIBATA Hiroshi.
|
398
|
-
* Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
|
399
|
-
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
|
400
|
-
SHIBATA Hiroshi.
|
401
|
-
* Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
|
402
|
-
|
403
|
-
=== 2.7.6 / 2018-02-16
|
404
|
-
|
405
|
-
Security fixes:
|
406
|
-
|
407
|
-
* Prevent path traversal when writing to a symlinked basedir outside of the root.
|
408
|
-
Discovered by nmalkin, fixed by Jonathan Claudius and Samuel Giddins.
|
409
|
-
* Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
|
410
|
-
Fixed by Jonathan Claudius.
|
411
|
-
* Strictly interpret octal fields in tar headers.
|
412
|
-
Discoved by plover, fixed by Samuel Giddins.
|
413
|
-
* Raise a security error when there are duplicate files in a package.
|
414
|
-
Discovered by plover, fixed by Samuel Giddins.
|
415
|
-
* Enforce URL validation on spec homepage attribute.
|
416
|
-
Discovered by Yasin Soliman, fixed by Jonathan Claudius.
|
417
|
-
* Mitigate XSS vulnerability in homepage attribute when displayed via `gem server`.
|
418
|
-
Discovered by Yasin Soliman, fixed by Jonathan Claudius.
|
419
|
-
* Prevent Path Traversal issue during gem installation.
|
420
|
-
Discovered by nmalkin.
|
421
|
-
|
422
|
-
=== 2.7.5
|
423
|
-
|
424
|
-
Bug fixes:
|
425
|
-
|
426
|
-
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
427
|
-
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
428
|
-
* Support option for `--destdir` with upgrade installer. #2169 by Thibault Jouan.
|
429
|
-
* Remove PID from gem index directory. #2155 by SHIBATA Hiroshi.
|
430
|
-
* Avoid a #mkdir race condition #2148 by Samuel Giddins.
|
431
|
-
* Gem::Util.traverse_parents should not crash on permissions error #2147 by Robert Ulejczyk.
|
432
|
-
* Use `File.open` instead of `open`. #2142 by SHIBATA Hiroshi.
|
433
|
-
* Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
|
434
|
-
* Fix undefined method error when printing alert #1884 by Robert Ross.
|
435
|
-
|
436
|
-
=== 2.7.4
|
437
|
-
|
438
|
-
Bug fixes:
|
439
|
-
|
440
|
-
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
441
|
-
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
442
|
-
#2125 by SHIBATA Hiroshi.
|
443
|
-
* Fix updater with rubygems-2.7.3 Pull request #2124 by SHIBATA Hiroshi.
|
444
|
-
* Handle environment that does not have `flock` system call. Pull request
|
445
|
-
#2107 by SHIBATA Hiroshi.
|
446
|
-
|
447
|
-
=== 2.7.3
|
448
|
-
|
449
|
-
Minor enhancements:
|
450
|
-
|
451
|
-
* Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
|
452
|
-
* Add --[no-]check-development option to cleanup command. Pull request
|
453
|
-
#2061 by Lin Jen-Shin (godfat).
|
454
|
-
* Merge glob pattern using braces. Pull request #2072 by Kazuhiro
|
455
|
-
NISHIYAMA.
|
456
|
-
* Removed warnings of unused variables. Pull request #2084 by SHIBATA
|
457
|
-
Hiroshi.
|
458
|
-
* Call SPDX.org using HTTPS. Pull request #2102 by Olle Jonsson.
|
459
|
-
* Remove multi load warning from plugins documentation. Pull request #2103
|
460
|
-
by Thibault Jouan.
|
461
|
-
|
462
|
-
Bug fixes:
|
463
|
-
|
464
|
-
* Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
|
465
|
-
Dash.
|
466
|
-
* Avoid encoding issues by using binread in setup. Pull request #2089 by
|
467
|
-
Mauro Morales.
|
468
|
-
* Fix rake install_test_deps once the rake clean_env does not exist. Pull
|
469
|
-
request #2090 by Lucas Oliveira.
|
470
|
-
* Prevent to delete to "bundler-" prefix gem like bundler-audit. Pull
|
471
|
-
request #2086 by SHIBATA Hiroshi.
|
472
|
-
* Generate .bat files on Windows platform. Pull request #2094 by SHIBATA
|
473
|
-
Hiroshi.
|
474
|
-
* Workaround common options mutation in Gem::Command test. Pull request
|
475
|
-
#2098 by Thibault Jouan.
|
476
|
-
* Check gems dir existence before removing bundler. Pull request #2104 by
|
477
|
-
Thibault Jouan.
|
478
|
-
* Use setup command --regenerate-binstubs option flag. Pull request #2099
|
479
|
-
by Thibault Jouan.
|
480
|
-
|
481
|
-
=== 2.7.2
|
482
|
-
|
483
|
-
Bug fixes:
|
484
|
-
|
485
|
-
* Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
|
486
|
-
Hiroshi.
|
487
|
-
* Added workaround for non-git environment. Pull request #2066 by SHIBATA
|
488
|
-
Hiroshi.
|
489
|
-
|
490
|
-
=== 2.7.1 (2017-11-03)
|
491
|
-
|
492
|
-
Bug fixes:
|
493
|
-
|
494
|
-
* Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
|
495
|
-
Samuel Giddins.
|
496
|
-
|
497
|
-
=== 2.7.0 (2017-11-02)
|
498
|
-
|
499
|
-
Major enhancements:
|
500
|
-
|
501
|
-
* Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
|
502
|
-
* Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
|
503
|
-
* Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
|
504
|
-
* Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
|
505
|
-
|
506
|
-
Minor enhancements:
|
507
|
-
|
508
|
-
* Added message to uninstall command for gem that is not installed. Pull
|
509
|
-
request #1979 by anant anil kolvankar.
|
510
|
-
* Add --trust-policy option to unpack command. Pull request #1718 by
|
511
|
-
Nobuyoshi Nakada.
|
512
|
-
* Show default gems for all platforms. Pull request #1685 by Konstantin
|
513
|
-
Shabanov.
|
514
|
-
* Add Travis and Appveyor build status to README. Pull request #1918 by
|
515
|
-
Jun Aruga.
|
516
|
-
* Remove warning `no email specified` when no email. Pull request #1675 by
|
517
|
-
Leigh McCulloch.
|
518
|
-
* Improve -rubygems performance. Pull request #1801 by Samuel Giddins.
|
519
|
-
* Improve the performance of Kernel#require. Pull request #1678 by Samuel
|
520
|
-
Giddins.
|
521
|
-
* Improve user-facing messages by consistent casing of Ruby/RubyGems. Pull
|
522
|
-
request #1771 by John Labovitz.
|
523
|
-
* Improve error message when Gem::RuntimeRequirementNotMetError is raised.
|
524
|
-
Pull request #1789 by Luis Sagastume.
|
525
|
-
* Code Improvement: Inheritance corrected. Pull request #1942 by Shiva
|
526
|
-
Bhusal.
|
527
|
-
* [Source] Autoload fileutils. Pull request #1906 by Samuel Giddins.
|
528
|
-
* Use Hash#fetch instead of if/else in Gem::ConfigFile. Pull request #1824
|
529
|
-
by Daniel Berger.
|
530
|
-
* Require digest when it is used. Pull request #2006 by Samuel Giddins.
|
531
|
-
* Do not index the doc folder in the `update_manifest` task. Pull request
|
532
|
-
#2031 by Colby Swandale.
|
533
|
-
* Don't use two postfix conditionals on one line. Pull request #2038 by
|
534
|
-
Ellen Marie Dash.
|
535
|
-
* [SafeYAML] Avoid warning when Gem::Deprecate.skip is set. Pull request
|
536
|
-
#2034 by Samuel Giddins.
|
537
|
-
* Update gem yank description. Pull request #2009 by David Radcliffe.
|
538
|
-
* Fix formatting of installation instructions in README. Pull request
|
539
|
-
#2018 by Jordan Danford.
|
540
|
-
* Do not use #quick_spec internally. Pull request #1733 by Jon Moss.
|
541
|
-
* Switch from docs to guides reference. Pull request #1886 by Jonathan
|
542
|
-
Claudius.
|
543
|
-
* Happier message when latest version is already installed. Pull request
|
544
|
-
#1956 by Jared Beck.
|
545
|
-
* Update specification reference docs. Pull request #1960 by Grey Baker.
|
546
|
-
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
547
|
-
request #1910 by Samuel Giddins.
|
548
|
-
* Update cryptography for Gem::Security. Pull request #1691 by Sylvain
|
549
|
-
Daubert.
|
550
|
-
* Don't output mkmf.log message if compilation didn't fail. Pull request
|
551
|
-
#1808 by Jeremy Evans.
|
552
|
-
* Matches_for_glob - remove root path. Pull request #2010 by ahorek.
|
553
|
-
* Gem::Resolver#search_for update for reliable searching/sorting. Pull
|
554
|
-
request #1993 by MSP-Greg.
|
555
|
-
* Allow local installs with transitive prerelease requirements. Pull
|
556
|
-
request #1990 by Samuel Giddins.
|
557
|
-
* Small style fixes to Installer Set. Pull request #1985 by Arthur
|
558
|
-
Marzinkovskiy.
|
559
|
-
* Setup cmd: Avoid terminating option string w/ dot. Pull request #1825 by
|
560
|
-
Olle Jonsson.
|
561
|
-
* Warn when no files are set. Pull request #1773 by Aidan Coyle.
|
562
|
-
* Ensure `to_spec` falls back on prerelease specs. Pull request #1755 by
|
563
|
-
André Arko.
|
564
|
-
* [Specification] Eval setting default attributes in #initialize. Pull
|
565
|
-
request #1739 by Samuel Giddins.
|
566
|
-
* Sort ordering of sources is preserved. Pull request #1633 by Nathan
|
567
|
-
Ladd.
|
568
|
-
* Retry with :prerelease when no suggestions are found. Pull request #1696
|
569
|
-
by Aditya Prakash.
|
570
|
-
* [Rakefile] Run `git submodule update --init` in `rake newb`. Pull
|
571
|
-
request #1694 by Samuel Giddins.
|
572
|
-
* [TestCase] Address comments around ui changes. Pull request #1677 by
|
573
|
-
Samuel Giddins.
|
574
|
-
* Eagerly resolve in activate_bin_path. Pull request #1666 by Samuel
|
575
|
-
Giddins.
|
576
|
-
* [Version] Make hash based upon canonical segments. Pull request #1659 by
|
577
|
-
Samuel Giddins.
|
578
|
-
* Add Ruby Together CTA, rearrange README a bit. Pull request #1775 by
|
579
|
-
Michael Bernstein.
|
580
|
-
* Update Contributing.rdoc with new label usage. Pull request #1716 by
|
581
|
-
Lynn Cyrin.
|
582
|
-
* Add --host sample to help. Pull request #1709 by Code Ahss.
|
583
|
-
* Add a helpful suggestion when `gem install` fails due to required_rub….
|
584
|
-
Pull request #1697 by Samuel Giddins.
|
585
|
-
* Add cert expiration length flag. Pull request #1725 by Luis Sagastume.
|
586
|
-
* Add submodule instructions to manual install. Pull request #1727 by
|
587
|
-
Joseph Frazier.
|
588
|
-
* Allow usage of multiple `--version` operators. Pull request #1546 by
|
589
|
-
James Wen.
|
590
|
-
* Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
|
591
|
-
Dash.
|
592
|
-
|
593
|
-
Compatibility changes:
|
594
|
-
|
595
|
-
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
596
|
-
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
597
|
-
by SHIBATA Hiroshi.
|
598
|
-
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
599
|
-
Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
|
600
|
-
* Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
|
601
|
-
Moss.
|
602
|
-
* Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
|
603
|
-
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
604
|
-
Pull request #1731 by Jon Moss.
|
605
|
-
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
606
|
-
#1796 by Matej.
|
607
|
-
|
608
|
-
Bug fixes:
|
609
|
-
|
610
|
-
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
|
611
|
-
MSP-Greg.
|
612
|
-
* Fixed broken links and overzealous URL encoding in gem server. Pull
|
613
|
-
request #1809 by Nicole Orchard.
|
614
|
-
* Fix a typo. Pull request #1722 by Koichi ITO.
|
615
|
-
* Fix error message Gem::Security::Policy. Pull request #1724 by Nobuyoshi
|
616
|
-
Nakada.
|
617
|
-
* Fixing links markdown formatting in README. Pull request #1791 by Piotr
|
618
|
-
Kuczynski.
|
619
|
-
* Fix failing Bundler 1.8.7 CI builds. Pull request #1820 by Samuel
|
620
|
-
Giddins.
|
621
|
-
* Fixed test broken on ruby-head . Pull request #1842 by SHIBATA Hiroshi.
|
622
|
-
* Fix typos with misspell. Pull request #1846 by SHIBATA Hiroshi.
|
623
|
-
* Fix gem open to open highest version number rather than lowest. Pull
|
624
|
-
request #1877 by Tim Pope.
|
625
|
-
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
626
|
-
request #1878 by Kazuaki Matsuo.
|
627
|
-
* Fix typos in CONTRIBUTING.rdoc. Pull request #1909 by Mark Sayson.
|
628
|
-
* Fix some small documentation issues in installer. Pull request #1972 by
|
629
|
-
Colby Swandale.
|
630
|
-
* Fix links in Policies document. Pull request #1964 by Alyssa Ross.
|
631
|
-
* Fix NoMethodError on bundler/inline environment. Pull request #2042 by
|
632
|
-
SHIBATA Hiroshi.
|
633
|
-
* Correct comments for Gem::InstallerTestCase#setup. Pull request #1741 by
|
634
|
-
MSP-Greg.
|
635
|
-
* Use File.expand_path for certification and key location. Pull request
|
636
|
-
#1987 by SHIBATA Hiroshi.
|
637
|
-
* Rescue EROFS. Pull request #1417 by Nobuyoshi Nakada.
|
638
|
-
* Fix spelling of 'vulnerability'. Pull request #2022 by Philip Arndt.
|
639
|
-
* Fix metadata link key names. Pull request #1896 by Aditya Prakash.
|
640
|
-
* Fix a typo in uninstall_command.rb. Pull request #1934 by Yasuhiro
|
641
|
-
Horimoto.
|
642
|
-
* Gem::Requirement.create treat arguments as variable-length. Pull request
|
643
|
-
#1830 by Toru YAGI.
|
644
|
-
* Display an explanation when rake encounters an ontological problem. Pull
|
645
|
-
request #1982 by Wilson Bilkovich.
|
646
|
-
* [Server] Handle gems with names ending in `-\d`. Pull request #1926 by
|
647
|
-
Samuel Giddins.
|
648
|
-
* [InstallerSet] Avoid reloading _all_ local gems multiple times during
|
649
|
-
dependency resolution. Pull request #1925 by Samuel Giddins.
|
650
|
-
* Modify the return value of Gem::Version.correct?. Pull request #1916 by
|
651
|
-
Tsukuru Tanimichi.
|
652
|
-
* Validate metadata link keys. Pull request #1834 by Aditya Prakash.
|
653
|
-
* Add changelog to metadata validation. Pull request #1885 by Aditya
|
654
|
-
Prakash.
|
655
|
-
* Replace socket error text message. Pull request #1823 by Daniel Berger.
|
656
|
-
* Raise error if the email is invalid when building cert. Pull request
|
657
|
-
#1779 by Luis Sagastume.
|
658
|
-
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
659
|
-
Pull request #1738 by Samuel Giddins.
|
660
|
-
|
661
|
-
=== 2.6.14 / 2017-10-09
|
662
|
-
|
663
|
-
Security fixes:
|
664
|
-
|
665
|
-
* Whitelist classes and symbols that are in loaded YAML.
|
666
|
-
See CVE-2017-0903 for full details.
|
667
|
-
Fix by Aaron Patterson.
|
668
|
-
|
669
|
-
=== 2.6.13 / 2017-08-27
|
670
|
-
|
671
|
-
Security fixes:
|
672
|
-
|
673
|
-
* Fix a DNS request hijacking vulnerability. (CVE-2017-0902)
|
674
|
-
Discovered by Jonathan Claudius, fix by Samuel Giddins.
|
675
|
-
* Fix an ANSI escape sequence vulnerability. (CVE-2017-0899)
|
676
|
-
Discovered by Yusuke Endoh, fix by Evan Phoenix.
|
677
|
-
* Fix a DOS vulnerability in the `query` command. (CVE-2017-0900)
|
678
|
-
Discovered by Yusuke Endoh, fix by Samuel Giddins.
|
679
|
-
* Fix a vulnerability in the gem installer that allowed a malicious gem
|
680
|
-
to overwrite arbitrary files. (CVE-2017-0901)
|
681
|
-
Discovered by Yusuke Endoh, fix by Samuel Giddins.
|
682
|
-
|
683
|
-
=== 2.6.12 / 2017-04-30
|
684
|
-
|
685
|
-
Bug fixes:
|
686
|
-
|
687
|
-
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
688
|
-
request #1880 by Kazuaki Matsuo.
|
689
|
-
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1879 by
|
690
|
-
MSP-Greg.
|
691
|
-
* Fix gem open to open highest version number rather than lowest. Pull
|
692
|
-
request #1877 by Tim Pope.
|
693
|
-
* Add a test for requiring a default spec as installed by the ruby
|
694
|
-
installer. Pull request #1899 by Samuel Giddins.
|
695
|
-
* Fix broken --exact parameter to gem command. Pull request #1873 by Jason
|
696
|
-
Frey.
|
697
|
-
* [Installer] Generate backwards-compatible binstubs. Pull request #1904
|
698
|
-
by Samuel Giddins.
|
699
|
-
* Fix pre-existing source recognition on add action. Pull request #1883 by
|
700
|
-
Jonathan Claudius.
|
701
|
-
* Prevent negative IDs in output of #inspect. Pull request #1908 by Vít
|
702
|
-
Ondruch.
|
703
|
-
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
704
|
-
request #1910 by Samuel Giddins.
|
705
|
-
|
706
|
-
=== 2.6.11 / 2017-03-16
|
707
|
-
|
708
|
-
Bug fixes:
|
709
|
-
|
710
|
-
* Fixed broken tests on ruby-head. Pull request #1841 by
|
711
|
-
SHIBATA Hiroshi.
|
712
|
-
* Update vendored Molinillo to 0.5.7. Pull request #1859 by Samuel
|
713
|
-
Giddins.
|
714
|
-
* Avoid activating Ruby 2.5 default gems when possible. Pull request #1843
|
715
|
-
by Samuel Giddins.
|
716
|
-
* Use improved resolver sorting algorithm. Pull request #1856 by
|
717
|
-
Samuel Giddins.
|
718
|
-
|
719
|
-
=== 2.6.10 / 2017-01-23
|
720
|
-
|
721
|
-
Bug fixes:
|
722
|
-
|
723
|
-
* Fix `require` calling the wrong `gem` method when it is overridden.
|
724
|
-
Pull request #1822 by Samuel Giddins.
|
725
|
-
|
726
|
-
=== 2.6.9 / 2017-01-20
|
727
|
-
|
728
|
-
Bug fixes:
|
729
|
-
|
730
|
-
* Allow initializing versions with empty strings. Pull request #1767 by
|
731
|
-
Luis Sagastume.
|
732
|
-
* Fix TypeError on 2.4. Pull request #1788 by Nobuyoshi Nakada.
|
733
|
-
* Don't output mkmf.log message if compilation didn't fail. Pull request
|
734
|
-
#1808 by Jeremy Evans.
|
735
|
-
* Fixed broken links and overzealous URL encoding in gem server. Pull
|
736
|
-
request #1809 by Nicole Orchard.
|
737
|
-
* Update vendored Molinillo to 0.5.5. Pull request #1812 by Samuel
|
738
|
-
Giddins.
|
739
|
-
* RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
|
740
|
-
Jonsson.
|
741
|
-
|
742
|
-
=== 2.6.8 / 2016-10-29
|
743
|
-
|
744
|
-
Bug fixes:
|
745
|
-
|
746
|
-
* Improve SSL verification failure message. Pull request #1751
|
747
|
-
by Eric Hodel.
|
748
|
-
* Ensure `to_spec` falls back on prerelease specs. Pull request
|
749
|
-
#1755 by André Arko.
|
750
|
-
* Update vendored Molinillo to 0.5.3. Pull request #1763 by
|
751
|
-
Samuel Giddins.
|
752
|
-
|
753
|
-
=== 2.6.7 / 2016-09-26
|
754
|
-
|
755
|
-
Bug fixes:
|
756
|
-
|
757
|
-
* Install native extensions in the correct location when using the
|
758
|
-
`--user-install` flag. Pull request #1683 by Noah Kantrowitz.
|
759
|
-
* When calling `Gem.sources`, load sources from `configuration`
|
760
|
-
if present, else use the default sources. Pull request #1699
|
761
|
-
by Luis Sagastume.
|
762
|
-
* Fail gracefully when attempting to redirect without a Location.
|
763
|
-
Pull request #1711 by Samuel Giddins.
|
764
|
-
* Update vendored Molinillo to 0.5.1. Pull request #1714 by
|
765
|
-
Samuel Giddins.
|
766
|
-
|
767
|
-
=== 2.6.6 / 2016-06-22
|
768
|
-
|
769
|
-
Bug fixes:
|
770
|
-
|
771
|
-
* Sort installed versions to make sure we install the latest version when
|
772
|
-
running `gem update --system`. As a one-time fix, run
|
773
|
-
`gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
|
774
|
-
|
775
|
-
=== 2.6.5 / 2016-06-21
|
776
|
-
|
777
|
-
Minor enhancements:
|
778
|
-
|
779
|
-
* Support for unified Integer in Ruby 2.4. Pull request #1618
|
780
|
-
by SHIBATA Hiroshi.
|
781
|
-
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
782
|
-
Pull request #1638 by Samuel Giddins.
|
783
|
-
|
784
|
-
Bug fixes:
|
785
|
-
|
786
|
-
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
787
|
-
request #1605 by Daniel Berger.
|
788
|
-
* Update `update_bundled_ca_certificates` utility script for directory
|
789
|
-
nesting. Pull request #1583 by James Wen.
|
790
|
-
* Fix broken symlink support in tar writer (+ fix broken test). Pull
|
791
|
-
request #1578 by Cezary Baginski.
|
792
|
-
* Remove extension directory before (re-)installing. Pull request #1576
|
793
|
-
by Jeremy Hinegardner.
|
794
|
-
* Regenerate test CA certificates with appropriate extensions. Pull
|
795
|
-
request #1611 by rhenium.
|
796
|
-
* Rubygems does not terminate on failed file lock when not superuser. Pull
|
797
|
-
request #1582 by Ellen Marie Dash.
|
798
|
-
* Fix tar headers with a 101 character name. Pull request #1612 by Paweł
|
799
|
-
Tomulik.
|
800
|
-
* Add Gem.platform_defaults to allow implementations to override defaults.
|
801
|
-
Pull request #1644 by Charles Oliver Nutter.
|
802
|
-
* Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
|
803
|
-
|
804
|
-
=== 2.6.4 / 2016-04-26
|
805
|
-
|
806
|
-
Minor enhancements:
|
807
|
-
|
808
|
-
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
|
809
|
-
by Chris Charabaruk.
|
810
|
-
* Use File.symlink on MS Windows if supported. Pull request #1418
|
811
|
-
by Nobuyoshi Nakada.
|
812
|
-
|
813
|
-
Bug fixes:
|
814
|
-
|
815
|
-
* Redact uri password from error output when gem fetch fails. Pull request
|
816
|
-
#1565 by Brian Fletcher.
|
817
|
-
* Suppress warnings. Pull request #1594 by Nobuyoshi Nakada.
|
818
|
-
* Escape user-supplied content served on web pages by `gem server` to avoid
|
819
|
-
potential XSS vulnerabilities. Samuel Giddins.
|
820
|
-
|
821
|
-
=== 2.6.3 / 2016-04-05
|
822
|
-
|
823
|
-
Minor enhancements:
|
824
|
-
|
825
|
-
* Lazily calculate Gem::LoadError exception messages. Pull request #1550
|
826
|
-
by Aaron Patterson.
|
827
|
-
* New fastly cert. Pull request #1548 by David Radcliffe.
|
828
|
-
* Organize and cleanup SSL certs. Pull request #1555 by James Wen.
|
829
|
-
* [RubyGems] Make deprecation message for paths= more helpful. Pull
|
830
|
-
request #1562 by Samuel Giddins.
|
831
|
-
* Show default gems when using "gem list". Pull request #1570 by Luis
|
832
|
-
Sagastume.
|
833
|
-
|
834
|
-
Bug fixes:
|
835
|
-
|
836
|
-
* Stub ordering should be consistent regardless of how cache is populated.
|
837
|
-
Pull request #1552 by Aaron Patterson.
|
838
|
-
* Handle cases when the @@stubs variable contains non-stubs. Pull request
|
839
|
-
#1558 by Per Lundberg.
|
840
|
-
* Fix test on Windows for inconsistent temp path. Pull request #1554 by
|
841
|
-
Hiroshi Shirosaki.
|
842
|
-
* Fix `Gem.find_spec_for_exe` picks oldest gem. Pull request #1566 by
|
843
|
-
Shinichi Maeshima.
|
844
|
-
* [Owner] Fallback to email and userid when owner email is missing. Pull
|
845
|
-
request #1569 by Samuel Giddins.
|
846
|
-
* [Installer] Handle nil existing executable. Pull request #1561 by Samuel
|
847
|
-
Giddins.
|
848
|
-
* Allow two digit version numbers in the tests. Pull request #1575 by unak.
|
849
|
-
|
850
|
-
=== 2.6.2 / 2016-03-12
|
851
|
-
|
852
|
-
Bug fixes:
|
853
|
-
|
854
|
-
* Fix wrong version of gem activation for bin stub. Pull request #1527 by
|
855
|
-
Aaron Patterson.
|
856
|
-
* Speed up gem activation failures. Pull request #1539 by Aaron Patterson.
|
857
|
-
* Fix platform sorting in the resolver. Pull request #1542 by Samuel E.
|
858
|
-
Giddins.
|
859
|
-
* Ensure we unlock the monitor even if try_activate throws. Pull request
|
860
|
-
#1538 by Charles Oliver Nutter.
|
861
|
-
|
862
|
-
|
863
|
-
=== 2.6.1 / 2016-02-28
|
864
|
-
|
865
|
-
Bug fixes:
|
866
|
-
|
867
|
-
* Ensure `default_path` and `home` are set for paths. Pull request #1513
|
868
|
-
by Aaron Patterson.
|
869
|
-
* Restore but deprecate support for Array values on `Gem.paths=`. Pull
|
870
|
-
request #1514 by Aaron Patterson.
|
871
|
-
* Fix invalid gem file preventing gem install from working. Pull request
|
872
|
-
#1499 by Luis Sagastume.
|
873
|
-
|
874
|
-
=== 2.6.0 / 2016-02-26
|
875
|
-
|
876
|
-
Minor enhancements:
|
877
|
-
|
878
|
-
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
879
|
-
metadata setting. Pull request #1486 by Josh Lane.
|
880
|
-
* Update bundled Molinillo to 0.4.3. Pull request #1493 by Samuel E. Giddins.
|
881
|
-
* Add version option to gem open command. Pull request #1483 by Hrvoje
|
882
|
-
Šimić.
|
883
|
-
* Feature/add silent flag. Pull request #1455 by Luis Sagastume.
|
884
|
-
* Allow specifying gem requirements via env variables. Pull request #1472
|
885
|
-
by Samuel E. Giddins.
|
886
|
-
|
887
|
-
Bug fixes:
|
888
|
-
|
889
|
-
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
890
|
-
Pull request #1485 by Josh Lane.
|
891
|
-
* Move `coding` location to first line. Pull request #1471 by SHIBATA
|
892
|
-
Hiroshi.
|
893
|
-
* [PathSupport] Handle a regexp path separator. Pull request #1469 by
|
894
|
-
Samuel E. Giddins.
|
895
|
-
* Clean up the PathSupport object. Pull request #1094 by Aaron Patterson.
|
896
|
-
* Join with File::PATH_SEPARATOR in Gem.use_paths. Pull request #1476 by
|
897
|
-
Samuel E. Giddins.
|
898
|
-
* Handle when the gem home and gem path arent set in the config file. Pull
|
899
|
-
request #1478 by Samuel E. Giddins.
|
900
|
-
* Terminate TimeoutHandler. Pull request #1479 by Nobuyoshi Nakada.
|
901
|
-
* Remove redundant cache. Pull request #1482 by Eileen M. Uchitelle.
|
902
|
-
* Freeze `Gem::Version@segments` instance variable. Pull request #1487 by
|
903
|
-
Ben Dean.
|
904
|
-
* Gem cleanup is trying to uninstall gems outside GEM_HOME and reporting
|
905
|
-
an error after it tries. Pull request #1353 by Luis Sagastume.
|
906
|
-
* Avoid duplicated sources. Pull request #1489 by Luis Sagastume.
|
907
|
-
* Better description for quiet flag. Pull request #1491 by Luis Sagastume.
|
908
|
-
* Raise error if find_by_name returns with nil. Pull request #1494 by
|
909
|
-
Zoltán Hegedüs.
|
910
|
-
* Find_files only from loaded_gems when using gemdeps. Pull request #1277
|
911
|
-
by Michal Papis.
|
912
|
-
|
913
|
-
=== 2.5.2 / 2016-01-31
|
914
|
-
|
915
|
-
Bug fixes:
|
916
|
-
|
917
|
-
* Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
|
918
|
-
Zuijlen.
|
919
|
-
* Handle trailing colons in GEM_PATH, by Damien Robert.
|
920
|
-
* Improve the Gemfile `gemspec` method, fixing #1204 and #1033. Pull request
|
921
|
-
#1276 by Michael Papis.
|
922
|
-
* Warn only once when a gemspec license is invalid. Pull request #1414 by Samuel
|
923
|
-
E. Giddins.
|
924
|
-
* Check for exact constants before using them, fixing Ruby bug #11940. Pull
|
925
|
-
request #1438 by Nobuyoshi Nakada.
|
926
|
-
* Fix building C extensions on Ruby 1.9.x on Windows. Pull request #1453 by Marie
|
927
|
-
Markwell.
|
928
|
-
* Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
|
929
|
-
Giddins.
|
930
|
-
|
931
|
-
Minor enhancements:
|
932
|
-
|
933
|
-
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
|
934
|
-
Sagastume.
|
935
|
-
* Allow basic auth to be excluded from `allowed_push_host`. By Josh Lane.
|
936
|
-
* Add `gem list --exact`, which finds gems by string match instead of regex. Pull
|
937
|
-
request #1344 by Luis Sagastume.
|
938
|
-
* Suggest alternatives when gem license is unknown. Pull request #1443 by Samuel
|
939
|
-
E. Giddins.
|
940
|
-
* Print a useful error if a binstub expects a newer version of a gem than is
|
941
|
-
installed. Pull request #1407 by Samuel E. Giddins.
|
942
|
-
* Allow the (supported) s3:// scheme to be used with `--source`. Pull request
|
943
|
-
#1416 by Dave Adams.
|
944
|
-
* Add `--[no-]post-install-message` to `install` and `update`. Pull request #1162
|
945
|
-
by Josef Šimánek.
|
946
|
-
* Add `--host` option to `yank`, providing symmetry with `pull`. Pull request
|
947
|
-
#1361 by Mike Virata-Stone.
|
948
|
-
* Update bundled Molinillo to 0.4.1. Pull request #1452 by Samuel E. Giddins.
|
949
|
-
* Allow calling `build` without '.gemspec'. Pull request #1454 by Stephen
|
950
|
-
Blackstone.
|
951
|
-
* Add support for `source` option on gems in Gemfile. Pull request #1355 by
|
952
|
-
Michael Papis.
|
953
|
-
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
954
|
-
#1408 by Samuel E. Giddins.
|
955
|
-
|
956
|
-
=== 2.5.1 / 2015-12-10
|
957
|
-
|
958
|
-
Bug fixes:
|
959
|
-
|
960
|
-
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
961
|
-
Issue #1369 reported by Ryan Atball (among others).
|
962
|
-
Pull request #1375 by Samuel E. Giddins.
|
963
|
-
* Revert PR #1332. Unable to reproduce, and nil should be impossible.
|
964
|
-
* Gem::Specification#to_fullpath now returns .rb extensions when such a file
|
965
|
-
exists. Pull request #1114 by y-yagi.
|
966
|
-
* RubyGems now handles Net::HTTPFatalError instead of crashing. Pull
|
967
|
-
request #1314 by Samuel E. Giddins.
|
968
|
-
* Updated bundled Molinillo to 0.4.0. Pull request #1322, #1396 by Samuel E.
|
969
|
-
Giddins.
|
970
|
-
* Improved performance of spec loading by reducing likelihood of loading the
|
971
|
-
complete specification. Pull request #1373 by Aaron Patterson.
|
972
|
-
* Improved caching of requirable files Pull request #1377 by Aaron Patterson.
|
973
|
-
* Fixed activation of gems with development dependencies. Pull request #1388
|
974
|
-
by Samuel E. Giddins.
|
975
|
-
* RubyGems now uses the same Molinillo vendoring strategy as Bundler. Pull
|
976
|
-
request #1397 by Samuel E. Giddins.
|
977
|
-
* Fixed documentation of Gem::Requirement.parse. Pull request #1398 by
|
978
|
-
Juanito Fatas.
|
979
|
-
* RubyGems no longer warns when a prerelease gem has prerelease dependencies.
|
980
|
-
Pull request #1399 by Samuel E. Giddins.
|
981
|
-
* Fixed Gem::Version documentation example. Pull request #1401 by Guilherme
|
982
|
-
Goettems Schneider.
|
983
|
-
* Updated documentation links to https://. Pull request #1404 by Suriyaa
|
984
|
-
Kudo.
|
985
|
-
* Fixed double word typo. Pull request #1411 by Jake Worth.
|
986
|
-
|
987
|
-
=== 2.5.0 / 2015-11-03
|
988
|
-
|
989
|
-
Major enhancements:
|
990
|
-
|
991
|
-
* Added the Gem::Licenses class which provides a set of standard license
|
992
|
-
identifiers as set by spdx.org. This is now used by the
|
993
|
-
Gem::Specification#license attribute to try to standardize (though not
|
994
|
-
enforce) licenses set by gem authors.
|
995
|
-
|
996
|
-
Pull request #1249 by Kyle Mitchell.
|
997
|
-
|
998
|
-
Minor enhancements:
|
999
|
-
|
1000
|
-
* Use Molinillo as the resolver library. This is the same resolver as used by
|
1001
|
-
Bundler. Pull request #1189 by Samuel E. Giddins.
|
1002
|
-
* Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
|
1003
|
-
* The parsed gem dependencies file is now available via Gem.gemdeps following
|
1004
|
-
Gem.use_gemdeps. Pull request #1224 by Hsing-Hui Hsu, issue #1213 by
|
1005
|
-
Michal Papis.
|
1006
|
-
* Moved description attribute to recommended for Gem::Specification.
|
1007
|
-
Pull request #1046 by Michal Papis
|
1008
|
-
* Moved `Gem::Indexer#abbreviate` and `#sanitize` to `Gem::Specification`.
|
1009
|
-
Pull request #1145 by Arthur Nogueira Neves
|
1010
|
-
* Cache Gem::Version segments for `#bump` and `#release`.
|
1011
|
-
Pull request #1131 by Matijs van Zuijlen
|
1012
|
-
* Fix edge case in `levenshtein_distance` for comparing longer strings.
|
1013
|
-
Pull request #1173 by Richard Schneeman
|
1014
|
-
* Remove duplication from List#to_a, improving from O(n^2) to O(n) time.
|
1015
|
-
Pull request #1200 by Marc Siegel.
|
1016
|
-
* Gem::Specification.add_specs is deprecated and will be removed from version
|
1017
|
-
3.0 with no replacement. To add specs, install the gem, then reset the
|
1018
|
-
cache.
|
1019
|
-
* Gem::Specification.add_spec is deprecated and will be removed from version
|
1020
|
-
3.0 with no replacement. To add specs, install the gem, then reset the
|
1021
|
-
cache.
|
1022
|
-
* Gem::Specification.remove_spec is deprecated and will be removed from version
|
1023
|
-
3.0 with no replacement. To remove specs, uninstall the gem, then reset the
|
1024
|
-
cache by calling Gem::Specification.reset.
|
1025
|
-
* Call Array#compact before calling Array#uniq for minor speed improvement in
|
1026
|
-
the Gem::Specification#files method.
|
1027
|
-
Pull request #1253 by Marat Amerov.
|
1028
|
-
* Use stringio instead of custom String classes.
|
1029
|
-
Pull request #1250 by Petr Skocik.
|
1030
|
-
* Use URI#host instead of URI#hostname to retain backwards compatibility with
|
1031
|
-
Ruby 1.9.2 and earlier in util library.
|
1032
|
-
Pull request #1288 by Joe Rafaniello.
|
1033
|
-
* Documentation update for gem sources.
|
1034
|
-
Pull request #1324 by Ilya Vassilevsky.
|
1035
|
-
* Documentation update for required_ruby_version.
|
1036
|
-
Pull request #1321 by Matt Patterson.
|
1037
|
-
* Documentation update for gem update.
|
1038
|
-
Pull request #1306 by Tim Blair.
|
1039
|
-
* Emit a warning on SRV resolve failure.
|
1040
|
-
Pull request #1023 by Ivan Kuchin.
|
1041
|
-
* Allow duplicate dependencies between runtime and development.
|
1042
|
-
Pull request #1032 by Murray Steele.
|
1043
|
-
* The gem env command now shows the user installation directory.
|
1044
|
-
Pull request #1343 by Luis Sagastume.
|
1045
|
-
* The Gem::Platform#=== method now treats a nil cpu arch the same as 'universal'.
|
1046
|
-
Pull request #1356 by Daniel Berger.
|
1047
|
-
* Improved memory performance in Gem::Specification.traverse. Pull request
|
1048
|
-
#1188 by Aaron Patterson.
|
1049
|
-
* RubyGems packages now support symlinks. Pull request #1209 by Samuel E.
|
1050
|
-
Giddins.
|
1051
|
-
* RubyGems no longer outputs mkmf.log if it does not exist. Pull request
|
1052
|
-
#1222 by Andrew Hooker.
|
1053
|
-
* Added Bitrig platform. Pull request #1233 by John C. Vernaleo.
|
1054
|
-
* Improved error message for first-time RubyGems developers. Pull request
|
1055
|
-
#1241 by André Arko
|
1056
|
-
* Improved performance of Gem::Specification#load with cached specs. Pull
|
1057
|
-
request #1297 by Samuel E. Giddins.
|
1058
|
-
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
|
1059
|
-
Agis Anastasopoulos.
|
1060
|
-
|
1061
|
-
Bug fixes:
|
1062
|
-
|
1063
|
-
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
1064
|
-
Pull request #1171 by Arthur Nogueira Neves
|
1065
|
-
* Don't crash if partially uninstalled gem can't be found.
|
1066
|
-
Pull request #1283 by Cezary Baginski.
|
1067
|
-
* Test warning cleanup.
|
1068
|
-
Pull request #1298 by Samuel E. Giddins.
|
1069
|
-
* Documentation fix for GemDependencyAPI.
|
1070
|
-
Pull request #1308 by Michael Papis.
|
1071
|
-
* Fetcher now ignores ENOLCK errors in single threaded environments. This
|
1072
|
-
handles an issue with gem installation on NFS as best we can. Addresses
|
1073
|
-
issue #1176 by Ryan Moore.
|
1074
|
-
Pull request #1327 by Daniel Berger.
|
1075
|
-
* Fix some path quoting issues in the test suite.
|
1076
|
-
Pull request #1328 by Gavin Miller.
|
1077
|
-
* Fix NoMethodError in running ruby processes when gems are uninstalled.
|
1078
|
-
Pull request #1332 by Peter Drake.
|
1079
|
-
* Fixed a potential NoMethodError for gem cleanup.
|
1080
|
-
Pull request #1333 by Peter Drake.
|
1081
|
-
* Fixed gem help bug.
|
1082
|
-
Issue #1352 reported by bogem, pull request #1357 by Luis Sagastume.
|
1083
|
-
* Remove temporary directories after tests finish. Pull request #1181 by
|
1084
|
-
Nobuyoshi Nokada.
|
1085
|
-
* Update links in RubyGems documentation. Pull request #1185 by Darío Hereñú.
|
1086
|
-
* Prerelease gem executables can now be run. Pull request #1186 by Samuel E.
|
1087
|
-
Giddins.
|
1088
|
-
* Updated RubyGems travis-ci ruby versions. Pull request #1187 by Samuel E.
|
1089
|
-
Giddins.
|
1090
|
-
* Fixed release date of RubyGems 2.4.6. Pull request #1190 by Frieder
|
1091
|
-
Bluemle.
|
1092
|
-
* Fixed bugs in gem activation. Pull request #1202 by Miklós Fazekas.
|
1093
|
-
* Fixed documentation for `gem list`. Pull request #1228 by Godfrey Chan.
|
1094
|
-
* Fixed #1200 history entry. Pull request #1234 by Marc Siegel.
|
1095
|
-
* Fixed synchronization issue when resetting the Gem::Specification gem list.
|
1096
|
-
Pull request #1239 by Samuel E. Giddins.
|
1097
|
-
* Fixed running tests in parallel. Pull request #1257 by SHIBATA Hiroshi.
|
1098
|
-
* Fixed running tests with `--program-prefix` or `--program-suffix` for ruby.
|
1099
|
-
Pull request #1258 by Shane Gibbs.
|
1100
|
-
* Fixed Gem::Specification#to_yaml. Pull request #1262 by Hiroaki Izu.
|
1101
|
-
* Fixed taintedness of Gem::Specification#raw_require_paths. Pull request
|
1102
|
-
#1268 by Sam Ruby.
|
1103
|
-
* Fixed sorting of platforms when installing gems. Pull request #1271 by
|
1104
|
-
nonsequitur.
|
1105
|
-
* Use `--no-document` over deprecated documentation options when installing
|
1106
|
-
dependencies on travis. Pull request #1272 by takiy33.
|
1107
|
-
* Improved support for IPv6 addresses in URIs. Pull request #1275 by Joe
|
1108
|
-
Rafaniello.
|
1109
|
-
* Spec validation no longer crashes if a file does not exist. Pull request
|
1110
|
-
#1278 by Samuel E. Giddins.
|
1111
|
-
* Gems can now be installed within `rescue`. Pull request #1282 by Samuel E.
|
1112
|
-
Giddins.
|
1113
|
-
* Increased Diffie-Hellman key size for tests for modern OpenSSL. Pull
|
1114
|
-
request #1290 by Vít Ondruch.
|
1115
|
-
* RubyGems handles invalid config files better. Pull request #1367 by Agis
|
1116
|
-
Anastasopoulos.
|
1117
|
-
|
1118
|
-
=== 2.4.8 / 2015-06-08
|
1119
|
-
|
1120
|
-
Bug fixes:
|
1121
|
-
|
1122
|
-
* Tightened API endpoint checks for CVE-2015-3900
|
1123
|
-
|
1124
|
-
=== 2.4.7 / 2015-05-14
|
1125
|
-
|
1126
|
-
Bug fixes:
|
1127
|
-
|
1128
|
-
* Limit API endpoint to original security domain for CVE-2015-3900.
|
1129
|
-
Fix by claudijd
|
1130
|
-
|
1131
|
-
=== 2.4.6 / 2015-02-05
|
1132
|
-
|
1133
|
-
Bug fixes:
|
1134
|
-
|
1135
|
-
* Fixed resolving gems with both upper and lower requirement boundaries.
|
1136
|
-
Issue #1141 by Jakub Jirutka.
|
1137
|
-
* Moved extension directory after require_paths to fix missing constant bugs
|
1138
|
-
in some gems with C extensions. Issue #784 by André Arko, pull request
|
1139
|
-
#1137 by Barry Allard.
|
1140
|
-
* Use Gem::Dependency#requirement when adding a dependency to an existing
|
1141
|
-
dependency instance. Pull request #1101 by Josh Cheek.
|
1142
|
-
* Fixed warning of shadowed local variable in Gem::Specification. Pull request
|
1143
|
-
#1109 by Rohit Arondekar
|
1144
|
-
* Gem::Requirement should always sort requirements before coercion to Hash.
|
1145
|
-
Pull request #1139 by Eito Katagiri.
|
1146
|
-
* The `gem open` command should change the current working directory before
|
1147
|
-
opening the editor. Pull request #1142 by Alex Wood.
|
1148
|
-
* Ensure quotes are stripped from the Windows launcher script used to install
|
1149
|
-
gems. Pull request #1115 by Youngjun Song.
|
1150
|
-
* Fixed errors when writing to NFS to to 0444 files. Issue #1161 by Emmanuel
|
1151
|
-
Hadoux.
|
1152
|
-
* Removed dead code in Gem::StreamUI. Pull request #1117 by mediaslave24.
|
1153
|
-
* Fixed typos. Pull request #1096 by hakeda.
|
1154
|
-
* Relaxed CMake dependency for RHEL 6 and CentOS 6. Pull request #1124 by Vít
|
1155
|
-
Ondruch.
|
1156
|
-
* Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
|
1157
|
-
|
1158
|
-
=== 2.4.5 / 2014-12-03
|
1159
|
-
|
1160
|
-
Bug fixes:
|
1161
|
-
|
1162
|
-
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
1163
|
-
request #1060 by unak.
|
1164
|
-
* RubyGems no longer attempts to look up gems remotely with the --local flag.
|
1165
|
-
Pull request #1084 by Jeremy Evans.
|
1166
|
-
* Executable stubs use the correct gem version when RUBYGEMS_GEMDEPS is
|
1167
|
-
active. Issue #1072 by Michael Kaiser-Nyman.
|
1168
|
-
* Fixed handling of pinned gems in lockfiles with versions. Issue #1078 by
|
1169
|
-
Ian Ker-Seymer.
|
1170
|
-
* Fixed handling of git@example:gem.git URIs. Issue #1054 by Mogutan Mogu.
|
1171
|
-
* Fixed handling of platforms retrieved from the dependencies API. Issue
|
1172
|
-
#1058 and patch suggestion by tux-mind.
|
1173
|
-
* RubyGems now suggests a copy-pasteable `gem pristine` command when
|
1174
|
-
extensions are missing. Pull request #1057 by Shannon Skipper.
|
1175
|
-
* Improved errors for long file names when packaging. Pull request #1016 by
|
1176
|
-
Piotrek Bator.
|
1177
|
-
* `gem pristine` now skips gems cannot be found remotely. Pull request #1064
|
1178
|
-
by Tuomas Kareinen.
|
1179
|
-
* `gem pristine` now caches gems to the proper directory. Pull request #1064
|
1180
|
-
by Tuomas Kareinen.
|
1181
|
-
* `gem pristine` now skips bundled gems properly. Pull request #1064 by
|
1182
|
-
Tuomas Kareinen.
|
1183
|
-
* Improved interoperability of Vagrant with RubyGems. Pull request #1057 by
|
1184
|
-
Vít Ondruch.
|
1185
|
-
* Renamed CONTRIBUTING to CONTRIBUTING.rdoc to allow markup. Pull request
|
1186
|
-
#1090 by Roberto Miranda.
|
1187
|
-
* Switched from #partition to #reject as only one collection is used. Pull
|
1188
|
-
request #1074 by Tuomas Kareinen.
|
1189
|
-
* Fixed installation of gems on systems using memory-mapped files. Pull
|
1190
|
-
request #1038 by Justin Li.
|
1191
|
-
* Fixed bug in Gem::Text#min3 where `a == b < c`. Pull request #1026 by
|
1192
|
-
fortissimo1997.
|
1193
|
-
* Fixed uninitialized variable warning in BasicSpecification. Pull request
|
1194
|
-
#1019 by Piotr Szotkowski.
|
1195
|
-
* Removed unneeded exception handling for cyclic dependencies. Pull request
|
1196
|
-
#1043 by Jens Wille.
|
1197
|
-
* Fixed grouped expression warning. Pull request #1081 by André Arko.
|
1198
|
-
* Fixed handling of platforms when writing lockfiles.
|
1199
|
-
|
1200
|
-
=== 2.4.4 / 2014-11-12
|
1201
|
-
|
1202
|
-
Bug fixes:
|
1203
|
-
|
1204
|
-
* Add alternate Root CA for upcoming certificate change. Fixes #1050 by
|
1205
|
-
Protosac
|
1206
|
-
|
1207
|
-
=== 2.4.3 / 2014-11-10
|
1208
|
-
|
1209
|
-
Bug fixes:
|
1210
|
-
|
1211
|
-
* Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
|
1212
|
-
* Fix typo in platform= docs. Pull request #1048 by @jasonrclark
|
1213
|
-
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
1214
|
-
Protosac
|
1215
|
-
|
1216
|
-
=== 2.4.2 / 2014-10-01
|
1217
|
-
|
1218
|
-
This release was sponsored by Ruby Central.
|
1219
|
-
|
1220
|
-
Bug fixes:
|
1221
|
-
|
1222
|
-
* RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
|
1223
|
-
voelzemo.
|
1224
|
-
* Added support for missing git_source method in the gem dependencies API.
|
1225
|
-
* Fixed handling of git gems with an alternate install directory.
|
1226
|
-
* Lockfiles will no longer be truncated upon resolution errors.
|
1227
|
-
* Fixed messaging for `gem owner -a`. Issue #1004 by Aaron Patterson, Ryan
|
1228
|
-
Davis.
|
1229
|
-
* Removed meaningless ensure. Pull request #1003 by gogotanaka.
|
1230
|
-
* Improved wording of --source option help. Pull request #989 by Jason Clark.
|
1231
|
-
* Empty build_info files are now ignored. Issue #903 by Adan Alvarado.
|
1232
|
-
* Gem::Installer ignores dependency checks when installing development
|
1233
|
-
dependencies. Issue #994 by Jens Willie.
|
1234
|
-
* `gem update` now continues after dependency errors. Issue #993 by aaronchi.
|
1235
|
-
* RubyGems no longer warns about semantic version dependencies for the 0.x
|
1236
|
-
range. Issue #987 by Jeff Felchner, pull request #1006 by Hsing-Hui Hsu.
|
1237
|
-
* Added minimal lock to allow multithread installation of gems. Issue #982
|
1238
|
-
and pull request #1005 by Yorick Peterse
|
1239
|
-
* RubyGems now considers prerelease dependencies as it did in earlier versions
|
1240
|
-
when --prerelease is given. Issue #990 by Jeremy Tryba.
|
1241
|
-
* Updated capitalization in README. Issue #1010 by Ben Bodenmiller.
|
1242
|
-
* Fixed activating gems from a Gemfile for default gems. Issue #991 by khoan.
|
1243
|
-
* Fixed windows stub script generation for Cygwin. Issue #1000 by Brett
|
1244
|
-
DiFrischia.
|
1245
|
-
* Allow gem bindir and ruby.exe to live in separate diretories. Pull request
|
1246
|
-
#942 by Ian Flynn.
|
1247
|
-
* Fixed handling of gemspec in gem dependencies files to match Bundler
|
1248
|
-
behavior. Issue #1020 by Michal Papis.
|
1249
|
-
* Fixed `gem update` when updating to prereleases. Issue #1028 by Santiago
|
1250
|
-
Pastorino.
|
1251
|
-
* RubyGems now fails immediately when a git reference cannot be found instead
|
1252
|
-
of spewing git errors. Issue #1031 by Michal Papis
|
1253
|
-
|
1254
|
-
=== 2.4.1 / 2014-07-17
|
1255
|
-
|
1256
|
-
Bug fixes:
|
1257
|
-
|
1258
|
-
* RubyGems can now be updated on Ruby implementations that do not support
|
1259
|
-
vendordir in RbConfig::CONFIG. Issue #974 by net1957.
|
1260
|
-
|
1261
|
-
=== 2.4.0 / 2014-07-16
|
1262
|
-
|
1263
|
-
Minor enhancements:
|
1264
|
-
|
1265
|
-
* The contents command now supports a --show-install-dir option that shows
|
1266
|
-
only the directory the gem is installed in. Feature request #966 by Akinori
|
1267
|
-
MUSHA.
|
1268
|
-
* Added a --build-root option to the install command for packagers. Pull
|
1269
|
-
request #965 by Marcus Rückert.
|
1270
|
-
* Added vendor gem support to RubyGems. Package managers may now install gems
|
1271
|
-
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
1272
|
-
Marcus Rückert.
|
1273
|
-
|
1274
|
-
Bug fixes:
|
1275
|
-
|
1276
|
-
* Kernel#gem now respects the prerelease flag when activating gems.
|
1277
|
-
Previously this behavior was undefined which could lead to bugs when a
|
1278
|
-
prerelease version was unintentionally activated. Bug #938 by Joe Ferris.
|
1279
|
-
* RubyGems now prefers gems from git over installed gems. This allows gems
|
1280
|
-
from git to override an installed gem with the same name and version. Bug
|
1281
|
-
#944 by Thomas Kriechbaumer.
|
1282
|
-
* Fixed handling of git gems in a lockfile with unversioned dependencies. Bug
|
1283
|
-
#940 by Michael Kaiser-Nyman.
|
1284
|
-
* The ruby directive in a gem dependencies file is ignored when installing.
|
1285
|
-
Bug #941 by Michael Kaiser-Nyman.
|
1286
|
-
* Added open to list of builtin commands (`gem open` now works). Reported by
|
1287
|
-
Espen Antonsen.
|
1288
|
-
* `gem open` now works with command-line editors. Pull request #962 by Tim
|
1289
|
-
Pope.
|
1290
|
-
* `gem install -g` now respects `--conservative`. Pull request #950 by Jeremy
|
1291
|
-
Evans.
|
1292
|
-
* RubyGems releases announcements now now include checksums. Bug #939 by
|
1293
|
-
Alexander E. Fischer.
|
1294
|
-
* RubyGems now expands ~ in $PATH when checking if installed executables will
|
1295
|
-
be runnable. Pull request #945 by Alex Talker.
|
1296
|
-
* Fixed `gem install -g --explain`. Issue #947 by Luis Lavena. Patch by
|
1297
|
-
Hsing-Hui Hsu.
|
1298
|
-
* RubyGems locks less during gem activation. Pull request #951 by Aaron
|
1299
|
-
Patterson and Justin Searls, #969 by Jeremy Tryba.
|
1300
|
-
* Kernel#gem is now thread-safe. Pull request #967 by Aaron Patterson.
|
1301
|
-
* RubyGems now handles spaces in directory names for some parts of extension
|
1302
|
-
building. Pull request #949 by Tristan Hill.
|
1303
|
-
* RubyGems no longer defines an empty Date class. Pull Request #948 by Benoit
|
1304
|
-
Daloze.
|
1305
|
-
* RubyGems respects --document options for `gem update` again. Bug 946 by
|
1306
|
-
jonforums. Patch by Hsing-Hui Hsu.
|
1307
|
-
* RubyGems generates documentation again with --ignore-dependencies. Bug #961
|
1308
|
-
by Pulfer.
|
1309
|
-
* RubyGems can install extensions across partitions now. Pull request #970 by
|
1310
|
-
Michael Scherer.
|
1311
|
-
* `-s` is now short for `--source` which resolves an ambiguity with
|
1312
|
-
--no-suggestions. Pull request #955 by Alexander Kahn.
|
1313
|
-
* Added extra test for ~> for 0.0.X versions. Pull request #958 by Mark
|
1314
|
-
Lorenz.
|
1315
|
-
* Fixed typo in gem updated help. Pull request #952 by Per Modin.
|
1316
|
-
* Clarified that the gem description should not be excessively long. Part of
|
1317
|
-
bug #956 by Renier Morales.
|
1318
|
-
* Hid documentation of outdated test_files related methods in Specification.
|
1319
|
-
Guides issue #90 by Emil Soman.
|
1320
|
-
* RubyGems now falls back to the old index if the rubygems.org API fails
|
1321
|
-
during gem resolution.
|
1322
|
-
|
1323
|
-
|
1324
|
-
=== 2.3.0 / 2014-06-10
|
1325
|
-
|
1326
|
-
Minor enhancements:
|
1327
|
-
|
1328
|
-
* Added the `open` command which allows you to inspect the source of a gem
|
1329
|
-
using your editor.
|
1330
|
-
Issue #789 by Mike Perham. Pull request #804 by Vitali F.
|
1331
|
-
* The `update` command shows a summary of which gems were and were not
|
1332
|
-
updated. Issue #544 by Mark D. Blackwell.
|
1333
|
-
Pull request #777 by Tejas Bubane.
|
1334
|
-
* Improved "could not find 'gem'" error reporting. Pull request #913 by
|
1335
|
-
Richard Schneeman.
|
1336
|
-
* Gem.use_gemdeps now accepts an argument specifying the path of the gem
|
1337
|
-
dependencies file. When the file is not found an ArgumentError is raised.
|
1338
|
-
* Writing a .lock file for a gem dependencies file is now controlled by the
|
1339
|
-
--[no-]lock option. Pull reuqest #774 by Jeremy Evans.
|
1340
|
-
* Suggestion of alternate names and spelling corrections during install can be
|
1341
|
-
suppressed with the --no-suggestions option. Issue #867 by Jimmy Cuadra.
|
1342
|
-
* Added mswin64 support. Pull request #881 by U. Nakamura.
|
1343
|
-
* A gem is installable from an IO again (as in RubyGems 1.8.x and older).
|
1344
|
-
Pull request #716 by Xavier Shay.
|
1345
|
-
* RubyGems no longer attempts to build extensions during activation. Instead
|
1346
|
-
a warning is issued instructing you to run `gem pristine` which will build
|
1347
|
-
the extensions for the current platform. Issue #796 by dunric.
|
1348
|
-
* Added Gem::UserInteraction#verbose which prints when the --verbose option is
|
1349
|
-
given. Pull request #811 by Aaron Patterson.
|
1350
|
-
* RubyGems can now fetch gems from private repositories using S3. Pull
|
1351
|
-
request #856 by Brian Palmer.
|
1352
|
-
* Added Gem::ConflictError subclass of Gem::LoadError so you can distinguish
|
1353
|
-
conflicts from other problems. Pull request #841 by Aaron Patterson.
|
1354
|
-
* Cleaned up unneeded load_yaml bootstrapping in Rakefile. Pull request #815
|
1355
|
-
by Zachary Scott.
|
1356
|
-
* Improved performance of conflict resolution. Pull request #842 by Aaron
|
1357
|
-
Patterson.
|
1358
|
-
* Add documentation of "~> 0" to Gem::Version. Issue #896 by Aaron Suggs.
|
1359
|
-
* Added CONTRIBUTING file. Pull request #849 by Mark Turner.
|
1360
|
-
* Allow use of bindir in windows_stub_script in .bat
|
1361
|
-
Pull request #818 by @unak and @nobu
|
1362
|
-
* Use native File::PATH_SEPARATOR and remove $ before gem env on
|
1363
|
-
Gem::Dependency#to_specs. Pull request #915 by @parkr
|
1364
|
-
* RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
|
1365
|
-
Benjamin Fleischer.
|
1366
|
-
|
1367
|
-
Bug fixes:
|
1368
|
-
|
1369
|
-
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
1370
|
-
up gem suggestions. Pull request #808 by Aaron Patterson.
|
1371
|
-
* The given .gem is installed again when multiple versions of the same gem
|
1372
|
-
exist in the current directory. Bug #875 by Prem Sichanugrist.
|
1373
|
-
* Local gems are preferred by name over remote gems again. Bug #834 by
|
1374
|
-
jonforums.
|
1375
|
-
* RubyGems can install local prerelease gems again. Pull request #866 by
|
1376
|
-
Aaron Patterson. Issue #813 by André Arko.
|
1377
|
-
* RubyGems installs development dependencies correctly again. Issue #893 by
|
1378
|
-
Jens Wille.
|
1379
|
-
* RubyGems only installs prerelease versions when they are requested again.
|
1380
|
-
Issue #853 by Seth Vargo, special thanks to Zachary Scott and Ben Moss.
|
1381
|
-
Issue #884 by Nathaniel Bibler.
|
1382
|
-
* Fixed RubyGems list and search command help. Pull request #905 and #928 by
|
1383
|
-
Gabriel Gilder.
|
1384
|
-
* The list of gems to uninstall is always sorted now. Bug #918 by postmodern.
|
1385
|
-
* The update command only updates exactly matching gem names now. Bug #919 by
|
1386
|
-
postmodern.
|
1387
|
-
* Gem::Server now supports prerelease versions. Bug #857 by Marcelo Alvim.
|
1388
|
-
* RubyGems no longer raises an exception immediately when gems are missing
|
1389
|
-
with RUBYGEMS_GEMDEPS. A warning is printed instead. Issue #886 by Michael
|
1390
|
-
Kaiser-Nyman.
|
1391
|
-
* Commands using the rubygems.org API no longer try to sign-in when a
|
1392
|
-
non-rubygems API key has been chosen. Bug #826 by Ben Sedat.
|
1393
|
-
* Updated documentation of Gem::Specification#executables to indicate that
|
1394
|
-
only ruby scripts are allowed. Bug #830 by Geoff Nixon.
|
1395
|
-
* Gem dependency API supports multiple platforms for #platform and #platforms
|
1396
|
-
now. Bug #821 by johnny5-.
|
1397
|
-
* Gem dependency API supports lockfiles without explicit sources. Bug #820 by
|
1398
|
-
johnny5-.
|
1399
|
-
* Gem dependency API supports lockfiles with multiple sources. Bug #822 by
|
1400
|
-
johnny5-, bug #851 by sumit shah.
|
1401
|
-
* Gem dependency API supports lockfiles with git sources using branch, tag and
|
1402
|
-
ref. Bug #822 by johnny5-, #931 by Christoph Blank.
|
1403
|
-
* Gem dependency API no longer raises an exception when a gem does not exist
|
1404
|
-
in one of the configured sources. Bug #897 by Michael Kaiser-Nyman.
|
1405
|
-
* Gem dependency API no longer lists development dependencies in the lockfile.
|
1406
|
-
Bug #768 by Diego Viola, #916 by Santiago Pastorino.
|
1407
|
-
* SSL configuration entries in ~/.gemrc are properly round-tripped. Bug #837
|
1408
|
-
by Noah Luck Easterly.
|
1409
|
-
* The environment command now shows the system configuration directory where
|
1410
|
-
the all-users gemrc lives. Bug #827 by Ben Langfeld.
|
1411
|
-
* Improved speed of conflict checking when activating gems. Pull request #843
|
1412
|
-
by Aaron Patterson.
|
1413
|
-
* Improved speed of levenshtein distance for gem suggestion misspellings.
|
1414
|
-
Pull requests #809, #812 by Aaron Patterson.
|
1415
|
-
* Restored persistent connections. Pull request #869 by Aaron Patterson.
|
1416
|
-
* Reduced requests when fetching gems with the bundler API. Pull request #773
|
1417
|
-
by Charlie Somerville.
|
1418
|
-
* Reduced dependency prefetching to improve install speed. Pull requests
|
1419
|
-
#871, #872 by Matthew Draper.
|
1420
|
-
* RubyGems now avoids net/http auto-proxy detection. Issue #824 by HINOHARA
|
1421
|
-
Hiroshi.
|
1422
|
-
* Removed conversion of Gem::List (used for debugging installs) to unless
|
1423
|
-
necessary. Pull request #870 by Aaron Patterson.
|
1424
|
-
* RubyGems now prints release notes from the current release. Bug #814 by
|
1425
|
-
André Arko.
|
1426
|
-
* RubyGems allows installation of unsigned gems again with -P MediumSecurity
|
1427
|
-
and lower. Bug #859 by Justin S. Collins.
|
1428
|
-
* Fixed typo in Jim Weirich's name. Ruby pull request #577 by Mo Khan.
|
1429
|
-
* Fixed typo in Gem.datadir documentation. Pull request #868 by Patrick
|
1430
|
-
Jones.
|
1431
|
-
* Fixed File.exists? warnings. Pull request #829 by SHIBATA Hiroshi.
|
1432
|
-
* Fixed show_release_notes test for LANG=C. Issue #862 by Luis Lavena.
|
1433
|
-
* Fixed Gem::Package from IO tests on windows. Patch from issue #861 by Luis
|
1434
|
-
Lavena.
|
1435
|
-
* Check for nil extensions as BasicSpecification does not initialize them.
|
1436
|
-
Pull request #882 by André Arko.
|
1437
|
-
* Fixed Gem::BasicSpecification#require_paths receives a String for
|
1438
|
-
@require_paths. Pull requrest #904 by @danielpclark
|
1439
|
-
* Fixed circular require warnings. Bug #908 by Zachary Scott.
|
1440
|
-
* Gem::Specification#require_paths can no longer accidentally be an Array.
|
1441
|
-
Pull requests #904, #909 by Daniel P. Clark.
|
1442
|
-
* Don't build extensions if `build_dir/extensions` isn't writable.
|
1443
|
-
Pull request #912 by @dunric
|
1444
|
-
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
1445
|
-
#852 by Vít Ondruch.
|
1446
|
-
|
1447
|
-
=== 2.2.5 / 2015-06-08
|
1448
|
-
|
1449
|
-
Bug fixes:
|
1450
|
-
|
1451
|
-
* Tightened API endpoint checks for CVE-2015-3900
|
1452
|
-
|
1453
|
-
=== 2.2.4 / 2015-05-14
|
1454
|
-
|
1455
|
-
Bug fixes:
|
1456
|
-
|
1457
|
-
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
1458
|
-
Fix by claudijd
|
1459
|
-
|
1460
|
-
=== 2.2.3 / 2014-12-21
|
1461
|
-
|
1462
|
-
Bug fixes:
|
1463
|
-
|
1464
|
-
* Backport: Add alternate Root CA for upcoming certificate change.
|
1465
|
-
Fixes #1050 by Protosac
|
1466
|
-
|
1467
|
-
=== 2.2.2 / 2014-02-05
|
1468
|
-
|
1469
|
-
Bug fixes:
|
1470
|
-
|
1471
|
-
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
1472
|
-
Nakada.
|
1473
|
-
* Removed double requests in RemoteFetcher#cache_update_path to improve remote
|
1474
|
-
install speed. Pull request #772 by Charlie Somerville.
|
1475
|
-
* The mkmf.log is now placed next to gem_make.out when building extensions.
|
1476
|
-
* `gem install -g --local` no longer accesses the network. Bug #776 by Jeremy
|
1477
|
-
Evans.
|
1478
|
-
* RubyGems now correctly handles URL passwords with encoded characters. Pull
|
1479
|
-
request #781 by Brian Fletcher.
|
1480
|
-
* RubyGems now correctly escapes URL characters. Pull request #788 by Brian
|
1481
|
-
Fletcher.
|
1482
|
-
* RubyGems can now unpack tar files where the type flag is not given. Pull
|
1483
|
-
request #790 by Cody Russell.
|
1484
|
-
* Typo corrections. Pull request ruby/ruby#506 by windwiny.
|
1485
|
-
* RubyGems now uses both the default certificates and ssl_ca_cert instead of
|
1486
|
-
one or the other. Pull request #795 by zebardy.
|
1487
|
-
* RubyGems can now use the bundler API against hosted gem servers in a
|
1488
|
-
directory. Pull request #801 by Brian Fletcher.
|
1489
|
-
* RubyGems bin stubs now ignore non-versions. This allows RubyGems bin stubs
|
1490
|
-
to list file names like "_foo_". Issue #799 by Postmodern.
|
1491
|
-
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
1492
|
-
Sergio Rubio.
|
1493
|
-
|
1494
|
-
=== 2.2.1 / 2014-01-06
|
1495
|
-
|
1496
|
-
Bug fixes:
|
1497
|
-
|
1498
|
-
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
1499
|
-
#767 by Diego Viola.
|
1500
|
-
* RubyGems now displays which gem couldn't be uninstalled from the home
|
1501
|
-
directory. Pull request #757 by Michal Papis.
|
1502
|
-
* Removed unused method Gem::Resolver#find_conflict_state. Pull request #759
|
1503
|
-
by Smit Shah.
|
1504
|
-
* Fixed installing gems from local files without dependencies. Issue #760 by
|
1505
|
-
Arash Mousavi, pull request #764 by Tim Moore.
|
1506
|
-
* Removed TODO about syntax that works in Ruby 1.8.7. Pull request #765 by
|
1507
|
-
Benjamin Fleischer.
|
1508
|
-
* Switched Gem.ruby_api_version to use RbConfig::CONFIG['ruby_version'] which
|
1509
|
-
has the same value but is overridable by packagers through
|
1510
|
-
--with-ruby-version= when configuring ruby. Bug #770 by Jeremy Evans.
|
1511
|
-
* RubyGems now prefers the bundler API for `gem install` to reduce HTTP
|
1512
|
-
requests. (This change was intended for RubyGems 2.2.0 but was missed.)
|
1513
|
-
This should address bug #762 by Dan Peterson and bug #766 by mipearson.
|
1514
|
-
* Added Gem::BasicSpecification#source_paths so documentation or analysis
|
1515
|
-
tools can work properly as require_paths no longer returns extension source
|
1516
|
-
directories. Bug #758 Vít Ondruch.
|
1517
|
-
* Gem.read_binary can read read-only files again. This caused file://
|
1518
|
-
repositories to stop working. Bug #761 by John Anderson.
|
1519
|
-
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
1520
|
-
request #763 by James Mead
|
1521
|
-
|
1522
|
-
=== 2.2.0 / 2013-12-26
|
1523
|
-
|
1524
|
-
Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
|
1525
|
-
RubyGems as it was prepared for the 2.2.0 release.
|
1526
|
-
|
1527
|
-
Major enhancements:
|
1528
|
-
|
1529
|
-
* RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
|
1530
|
-
rubygems executables are started and uses the found dependencies. This
|
1531
|
-
means `rake` will work similar to `bundle exec rake`. To enable this set
|
1532
|
-
the `RUBYGEMS_GEMDEPS` environment variable to the location of your
|
1533
|
-
dependencies file.
|
1534
|
-
|
1535
|
-
See Gem::use_gemdeps for further details.
|
1536
|
-
|
1537
|
-
* A RubyGems directory may now be shared amongst multiple ruby versions. Upon
|
1538
|
-
activation RubyGems will automatically compile missing extensions for the
|
1539
|
-
current platform when the built objects are missing. Issue #596 by Michal
|
1540
|
-
Papis
|
1541
|
-
|
1542
|
-
By default different platforms do not share gem install locations so this
|
1543
|
-
must be configured by setting GEM_HOME to a common directory. Some gems use
|
1544
|
-
fixed paths for requiring extensions and are not compatible with sharing gem
|
1545
|
-
directories.
|
1546
|
-
|
1547
|
-
The default sharing location may be configured by RubyGems packagers through
|
1548
|
-
Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
|
1549
|
-
|
1550
|
-
Minor enhancements:
|
1551
|
-
|
1552
|
-
* RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
|
1553
|
-
prevent an accidental push to a public repository (such as rubygems.org).
|
1554
|
-
If you have private gems you should set this value in your gem specification
|
1555
|
-
metadata. Pull request #603 by Seamus Abshere.
|
1556
|
-
* `gem list` now shows results for multiple arguments. Pull request #604 by
|
1557
|
-
Zach Rabinovich.
|
1558
|
-
* `gem pristine --extensions` will restore only gems with extensions. Issue
|
1559
|
-
#619 by Postmodern.
|
1560
|
-
* Gem::Specification#files is now sorted. Pull request #612 by Justin George.
|
1561
|
-
* For `gem list` and friends, "LOCAL" and "REMOTE" headers are omitted if
|
1562
|
-
only local or remote gem information is requested with --quiet. Pull
|
1563
|
-
request #615 by Michal Papis.
|
1564
|
-
* Added Gem::Specification#full_require_paths which is like require_paths, but
|
1565
|
-
returns a fully-qualified results. Pull request #632 by Vít Ondruch.
|
1566
|
-
* RubyGems now looks for the https_proxy environment variable for https://
|
1567
|
-
sources. RubyGems will fall back to http_proxy if there is no https_proxy.
|
1568
|
-
Issue #610 by mkristian.
|
1569
|
-
* RubyGems now creates directories in .gem files. Issue #631 by marksolaris.
|
1570
|
-
* RubyGems raises an exception when a specification includes its gem. Issue
|
1571
|
-
#623 by notEthan.
|
1572
|
-
* RubyGems now displays relevant release note information when updating
|
1573
|
-
RubyGems. Issue #647 by Trevor Wennblom.
|
1574
|
-
* Deprecated Gem::Installer::ExtensionBuildError in favor of
|
1575
|
-
Gem::Ext::BuildError. The old constant is an alias for the new constant.
|
1576
|
-
* When extensions are built the gem_make.out file is always written now, even
|
1577
|
-
on success. This will help with debugging bad builds that report success.
|
1578
|
-
* If a specification fails to validate RubyGems shows a link to the
|
1579
|
-
specification reference guide. Issue #656 by Markus Heiler.
|
1580
|
-
* When using `gem install -g`, RubyGems now detects the presence of an
|
1581
|
-
Isolate, Gemfile or gem.deps.rb file.
|
1582
|
-
* Added Gem::StubSpecification#stubbed? to help determine if a user should run
|
1583
|
-
`gem pristine` to speed up gem loading. Pull request #694 and #701 by Jon
|
1584
|
-
Leighton.
|
1585
|
-
* RubyGems now warns when a gem has a pessimistic version dependency that may
|
1586
|
-
be too strict.
|
1587
|
-
* RubyGems now warns when a gem has an open-ended dependency.
|
1588
|
-
* RubyGems now raises an exception when a dependency for a gem is defined
|
1589
|
-
twice.
|
1590
|
-
* Marked the license specification attribute as recommended. Pull request
|
1591
|
-
#713 by Benjamin Fleischer.
|
1592
|
-
* RubyGems uses io/console instead of `stty` when available. Pull request
|
1593
|
-
#740 by Nobuyoshi Nakada
|
1594
|
-
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
1595
|
-
Request #755 by strzibny.
|
1596
|
-
|
1597
|
-
Bug fixes:
|
1598
|
-
|
1599
|
-
* RubyGems now returns an error status when any file given to `gem which`
|
1600
|
-
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
1601
|
-
* Fixed command escaping when building rake extensions. Pull request #721 by
|
1602
|
-
Dmitry Ratnikov.
|
1603
|
-
* Fixed uninstallation of gems when GEM_HOME is a relative directory. Issue
|
1604
|
-
#708 by Ryan Davis.
|
1605
|
-
* Default gems are now ignored by Gem::Validator#alien. Issue #717 by David
|
1606
|
-
Bahar.
|
1607
|
-
* Fixed typos in RubyGems. Pull requests #723, #725, #731 by Akira Matsuda,
|
1608
|
-
pull request #736 by Leo Gallucci, pull request #746 by DV Suresh.
|
1609
|
-
* RubyGems now holds exclusive locks on cached gem files to prevent incorrect
|
1610
|
-
updates. Pull Request #737 by Smit Shah
|
1611
|
-
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
1612
|
-
Lee.
|
1613
|
-
|
1614
|
-
=== 2.1.11 / 2013-11-12
|
1615
|
-
|
1616
|
-
Bug fixes:
|
1617
|
-
|
1618
|
-
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
1619
|
-
to be removed. Issue #698 by Tiago Macedo.
|
1620
|
-
* Restored wildcard handling when installing gems. Issue #697 by Chuck Remes.
|
1621
|
-
* Added DigiCert High Assurance EV Root CA certificate for the cloudfront.net
|
1622
|
-
certificate change.
|
1623
|
-
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
1624
|
-
Pull Request #706 by akr.
|
1625
|
-
|
1626
|
-
=== 2.1.10 / 2013-10-24
|
1627
|
-
|
1628
|
-
Bug fixes:
|
1629
|
-
|
1630
|
-
* Use class check instead of :version method check when creating Gem::Version
|
1631
|
-
objects. Fixes #674 by jkanywhere.
|
1632
|
-
* Fail during `gem update` when an error occurs checking for newer versions.
|
1633
|
-
This means RubyGems no longer reports "nothing to update" when it cannot
|
1634
|
-
communicate with the server. Issue #688 by Jimmy Dee.
|
1635
|
-
* Allow installation of gems when the home directory does not exist. Issue
|
1636
|
-
#689 by Laurence Rowe
|
1637
|
-
* Fix updating gems which have multiple platforms. Issue #693 by Ookami
|
1638
|
-
Kenrou.
|
1639
|
-
* The gem server now uses user-provided directories. Issue #696 by Marcelo
|
1640
|
-
Alvim.
|
1641
|
-
* Improved resolution of gems when specific versions have conflicting
|
1642
|
-
dependencies.
|
1643
|
-
* RubyGems installs local gems regardless of platform again. Issue #695
|
1644
|
-
* The --ignore-dependencies option for gem installation works again. Issue
|
1645
|
-
#695
|
1646
|
-
|
1647
|
-
=== 2.1.9 / 2013-10-14
|
1648
|
-
|
1649
|
-
Bug fixes:
|
1650
|
-
|
1651
|
-
* Reduce sorting when fetching specifications. This speeds up the update and
|
1652
|
-
outdated commands, and others. Issue #657 by windwiny.
|
1653
|
-
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
1654
|
-
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
1655
|
-
|
1656
|
-
=== 2.1.8 / 2013-10-10
|
1657
|
-
|
1658
|
-
Bug fixes:
|
1659
|
-
|
1660
|
-
* Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
|
1661
|
-
* Files starting with "." in the root directory are installed again. Issue
|
1662
|
-
#680 by Ivo Wever, Pull Request #681 by Jeremy Evans.
|
1663
|
-
* The index generator no longer indexes default gems. Issue #661 by
|
1664
|
-
Jeremy Hinegardner.
|
1665
|
-
|
1666
|
-
=== 2.1.7 / 2013-10-09
|
1667
|
-
|
1668
|
-
Bug fixes:
|
1669
|
-
|
1670
|
-
* `gem sources --list` now displays a list of sources. Pull request #672 by
|
1671
|
-
Nathan Marley.
|
1672
|
-
* RubyGems no longer alters Gem::Specification.dirs when installing. Pull
|
1673
|
-
Request #670 by Vít Ondruch
|
1674
|
-
* Use RFC 2616-compatible time in HTTP headers. Pull request #655 by Larry
|
1675
|
-
Marburger.
|
1676
|
-
* RubyGems now gives a more descriptive message for missing licenses on
|
1677
|
-
validation. Issue #656 by Markus Heiler.
|
1678
|
-
* Expand unpack destination directory. This fixes problems when File.realpath
|
1679
|
-
is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
|
1680
|
-
|
1681
|
-
=== 2.1.6 / 2013-10-08
|
1682
|
-
|
1683
|
-
Bug fixes:
|
1684
|
-
|
1685
|
-
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
1686
|
-
#665 by emeyekayee. Fixes #671 by jonforums.
|
1687
|
-
* Remove redundant built-in certificates not needed for https://rubygems.org
|
1688
|
-
Fixes #654 by Vít Ondruch.
|
1689
|
-
* Added test for missing certificates for https://s3.amazonaws.com or
|
1690
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
1691
|
-
* RubyGems now allows a Pathname for Kernel#require like the built-in
|
1692
|
-
Kernel#require. Pull request #663 by Aaron Patterson.
|
1693
|
-
* Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
|
1694
|
-
1.9.1 is no longer receiving security fixes, so please update to a newer
|
1695
|
-
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
1696
|
-
Thomas Sänger.
|
1697
|
-
|
1698
|
-
=== 2.1.5 / 2013-09-24
|
1699
|
-
|
1700
|
-
Security fixes:
|
1701
|
-
|
1702
|
-
* RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
|
1703
|
-
backtracking in Gem::Version validation. See CVE-2013-4363 for full details
|
1704
|
-
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
1705
|
-
1.8.23.2 (for Ruby 1.9.3).
|
1706
|
-
|
1707
|
-
=== 2.1.4 / 2013-09-17
|
1708
|
-
|
1709
|
-
Bug fixes:
|
1710
|
-
|
1711
|
-
* `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
|
1712
|
-
#650 by Kyle (remkade).
|
1713
|
-
* Fixed uninstalling gems installed in the home directory (as in
|
1714
|
-
`--user-install`). Issue #653 by Lin Jen-Shin.
|
1715
|
-
|
1716
|
-
=== 2.1.3 / 2013-09-12
|
1717
|
-
|
1718
|
-
Bug fixes:
|
1719
|
-
|
1720
|
-
* Gems with files entries starting with "./" no longer install 0 files. Issue
|
1721
|
-
#644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
|
1722
|
-
|
1723
|
-
=== 2.1.2 / 2013-09-11
|
1724
|
-
|
1725
|
-
Bug fixes:
|
1726
|
-
|
1727
|
-
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
1728
|
-
request #637 and issue #640 by Charles Nutter.
|
1729
|
-
* Gems with extensions are now installed correctly when the --install-dir
|
1730
|
-
option is used. Issue #642 by Lin Jen-Shin.
|
1731
|
-
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
1732
|
-
Issue #643 by Brian Shirai.
|
1733
|
-
|
1734
|
-
=== 2.1.1 / 2013-09-10
|
1735
|
-
|
1736
|
-
Bug fixes:
|
1737
|
-
|
1738
|
-
* Only matching gems matching your local platform are considered for
|
1739
|
-
installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
|
1740
|
-
|
1741
|
-
=== 2.1.0 / 2013-09-09
|
1742
|
-
|
1743
|
-
Security fixes:
|
1744
|
-
|
1745
|
-
* RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
|
1746
|
-
backtracking in Gem::Version validation. See CVE-2013-4287 for full details
|
1747
|
-
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
1748
|
-
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
1749
|
-
|
1750
|
-
Major enhancements:
|
1751
|
-
|
1752
|
-
* RubyGems uses a new dependency resolver for gem installation which works
|
1753
|
-
similar to the bundler resolver. The new resolver can resolve conflicts the
|
1754
|
-
previous resolver could not and offers improved diagnostics when conflicts
|
1755
|
-
are discovered.
|
1756
|
-
|
1757
|
-
Minor enhancements:
|
1758
|
-
|
1759
|
-
* RubyGems now has improved platform matching for the ARM architecture. Gems
|
1760
|
-
built with a CPU of "arm" will match any specific ARM CPU. See `gem help
|
1761
|
-
platform` for further details. Fixes #532 by Kim Burgestrand.
|
1762
|
-
* The --version option now accepts compound requirements the same as in a gem
|
1763
|
-
dependency. The following invocation will install rails between 4.0.0.beta
|
1764
|
-
and 4.2:
|
1765
|
-
|
1766
|
-
gem install rails -v '>= 4.0.0.beta, < 4.2'
|
1767
|
-
|
1768
|
-
Fixes #531 by Gary S. Weaver
|
1769
|
-
* `gem clean` now allows `-n` as an alias for `--dryrun`. Pull Request #517
|
1770
|
-
by Gastón Ramos
|
1771
|
-
* Added `gem update --system` to `gem help`. Pull Request #514 by Vince
|
1772
|
-
Wadhwani
|
1773
|
-
* Added PATH to `gem env` output. Pull Request #490 by Michal Papis
|
1774
|
-
* Added --host option to `gem owner` to match other commands using the
|
1775
|
-
gemcutter API. Pull Request #462 and issue #461 by Hugo Lopes Tavares
|
1776
|
-
* Added --abort-on-dependent to `gem uninstall`. This will abort instead of
|
1777
|
-
asking to uninstall a gem that is depended upon by another gem. Pull
|
1778
|
-
request #549 by Philip Arndt.
|
1779
|
-
* RubyGems no longer alters Gem::Specification.dirs when installing. Based on
|
1780
|
-
Pull Request #452 by Vít Ondruch
|
1781
|
-
* RubyGems uses ENV['MAKE'] or ENV['make'] over rbconfig.rb's make if present.
|
1782
|
-
Pull Request #443 by Erik Hollensbe
|
1783
|
-
* RubyGems can now save remote source cache files in an alternate directory
|
1784
|
-
controlled by `ENV["GEM_SPEC_CACHE"]`. Pull Request #489 by Michal Papis
|
1785
|
-
* Generated private keys are now encrypted. Pull Request #453 by pietro
|
1786
|
-
* Separated Gem::Request from Gem::RemoteFetcher. Pull Request #283 by Steve
|
1787
|
-
Klabnik.
|
1788
|
-
* RubyGems indicates when a .gem's content is corrupt while verifying. Bug
|
1789
|
-
#519 by William T Nelson.
|
1790
|
-
* Refactored common installer setup. Pull request #520 by Gastón Ramos
|
1791
|
-
* Moved activation tests to Gem::Specification. Pull request #521 by Gastón
|
1792
|
-
Ramos
|
1793
|
-
* When a --version option with a prerelease version is given RubyGems
|
1794
|
-
automatically enables prerelease versions but only the last version is
|
1795
|
-
used. If the first version is a prerelease version this is no longer sticky
|
1796
|
-
unless an explicit --[no-]prerelease was also given. Fixes part of #531.
|
1797
|
-
* RubyGems now supports an SSL client certificate. Pull request #550 by
|
1798
|
-
Robert Kenny.
|
1799
|
-
* RubyGems now suggests how to fix permission errors. Pull request #553 by
|
1800
|
-
Odin Dutton.
|
1801
|
-
* Added support for installing a gem as default gems for alternate ruby
|
1802
|
-
implementations. Pull request #566 by Charles Nutter.
|
1803
|
-
* Improved performance of Gem::Specification#load by caching the loaded
|
1804
|
-
gemspec. Pull request #569 by Charlie Somerville.
|
1805
|
-
* RubyGems now warns when an unsigned gem is verified if -P was given during
|
1806
|
-
installation even if the security policy allows unsigned gems and warns when
|
1807
|
-
an untrusted certificate is seen even if the security policy allows
|
1808
|
-
untrusted certificates. Issue #474 by Grant Olson
|
1809
|
-
* RubyGems can now rewrite executables with or without a shebang of
|
1810
|
-
/usr/bin/env via <code>gem pristine --all --only-executables
|
1811
|
-
--env-[no-]shebang</code>. Issue #579 by Paul Annesley.
|
1812
|
-
* RubyGems can now run its tests without OpenSSL. Ruby Bug #8557 by nobu.
|
1813
|
-
* Improved performance by caching Gem::Version objects and avoiding
|
1814
|
-
method_missing in Gem::Specification. Pull request #447 by Jon Leighton.
|
1815
|
-
* Files in a .gem now preserve their modification times. Pull request #582 by
|
1816
|
-
Jesse Bowes
|
1817
|
-
* Improved speed of looking up dependencies in SpecFetcher through
|
1818
|
-
Array#bsearch (when present). Pull request #595 by Andras Suller
|
1819
|
-
* Added `--all` option to `gem uninstall` which removes all gems in GEM_HOME.
|
1820
|
-
Pull request #584 by Shannon Skipper.
|
1821
|
-
* Added Gem.find_latest_files which is equivalent to Gem.find_files but only
|
1822
|
-
returns matching files from the latest version of each gem. Issue #186 by
|
1823
|
-
Ryan Davis.
|
1824
|
-
* Improved performance of `gem outdated` by reducing duplicate work (it is
|
1825
|
-
still slow, but I see a near 50% improvement for 250 gems on a fast
|
1826
|
-
connection). See also Gem::Specification::outdated_and_latest_version
|
1827
|
-
|
1828
|
-
Bug fixes:
|
1829
|
-
|
1830
|
-
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
1831
|
-
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
1832
|
-
#625 by elarkin
|
1833
|
-
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
1834
|
-
request #622 by Arthur Nogueira Neves
|
1835
|
-
|
1836
|
-
=== 2.0.17 / 2015-06-08
|
1837
|
-
|
1838
|
-
Bug fixes:
|
1839
|
-
|
1840
|
-
* Tightened API endpoint checks for CVE-2015-3900
|
1841
|
-
|
1842
|
-
=== 2.0.16 / 2015-05-14
|
1843
|
-
|
1844
|
-
Bug fixes:
|
1845
|
-
|
1846
|
-
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
1847
|
-
Fix by claudijd
|
1848
|
-
|
1849
|
-
=== 2.0.15 / 2014-12-21
|
1850
|
-
|
1851
|
-
Bug fixes:
|
1852
|
-
|
1853
|
-
* Backport: Add alternate Root CA for upcoming certificate change.
|
1854
|
-
Fixes #1050 by Protosac
|
1855
|
-
|
1856
|
-
=== 2.0.14 / 2013-11-12
|
1857
|
-
|
1858
|
-
Bug fixes:
|
1859
|
-
|
1860
|
-
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
1861
|
-
to be removed. Issue #698 by Tiago Macedo.
|
1862
|
-
* Restored wildcard handling when installing gems. Issue #697 by Chuck Remes.
|
1863
|
-
* Added DigiCert High Assurance EV Root CA certificate for the cloudfront.net
|
1864
|
-
certificate change.
|
1865
|
-
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
1866
|
-
Pull Request #706 by akr.
|
1867
|
-
|
1868
|
-
=== 2.0.13 / 2013-10-24
|
1869
|
-
|
1870
|
-
Bug fixes:
|
1871
|
-
|
1872
|
-
* Use class check instead of :version method check when creating Gem::Version
|
1873
|
-
objects. Fixes #674 by jkanywhere.
|
1874
|
-
* Allow installation of gems when the home directory does not exist. Issue
|
1875
|
-
#689 by Laurence Rowe
|
1876
|
-
* Fix updating gems which have multiple platforms. Issue #693 by Ookami
|
1877
|
-
Kenrou.
|
1878
|
-
|
1879
|
-
=== 2.0.12 / 2013-10-14
|
1880
|
-
|
1881
|
-
Bug fixes:
|
1882
|
-
|
1883
|
-
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
1884
|
-
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
1885
|
-
|
1886
|
-
=== 2.0.11 / 2013-10-08
|
1887
|
-
|
1888
|
-
Bug fixes:
|
1889
|
-
|
1890
|
-
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
1891
|
-
#665 by emeyekayee. Fixes #671 by jonforums.
|
1892
|
-
* Remove redundant built-in certificates not needed for https://rubygems.org
|
1893
|
-
Fixes #654 by Vít Ondruch.
|
1894
|
-
* Added test for missing certificates for https://s3.amazonaws.com or
|
1895
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
1896
|
-
* RubyGems now allows a Pathname for Kernel#require like the built-in
|
1897
|
-
Kernel#require. Pull request #663 by Aaron Patterson.
|
1898
|
-
* Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
|
1899
|
-
1.9.1 is no longer receiving security fixes, so please update to a newer
|
1900
|
-
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
1901
|
-
Thomas Sänger.
|
1902
|
-
|
1903
|
-
=== 2.0.10 / 2013-09-24
|
1904
|
-
|
1905
|
-
Security fixes:
|
1906
|
-
|
1907
|
-
* RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
|
1908
|
-
backtracking in Gem::Version validation. See CVE-2013-4363 for full details
|
1909
|
-
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
1910
|
-
1.8.23.2 (for Ruby 1.9.3).
|
1911
|
-
|
1912
|
-
=== 2.0.9 / 2013-09-13
|
1913
|
-
|
1914
|
-
Bug fixes:
|
1915
|
-
|
1916
|
-
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
1917
|
-
Issue #643 by Brian Shirai.
|
1918
|
-
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
1919
|
-
request #622 by Arthur Nogueira Neves
|
1920
|
-
|
1921
|
-
=== 2.0.8 / 2013-09-09
|
1922
|
-
|
1923
|
-
Security fixes:
|
1924
|
-
|
1925
|
-
* RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
|
1926
|
-
backtracking in Gem::Version validation. See CVE-2013-4287 for full details
|
1927
|
-
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
1928
|
-
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
1929
|
-
|
1930
|
-
Bug fixes:
|
1931
|
-
|
1932
|
-
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
1933
|
-
#625 by elarkin
|
1934
|
-
|
1935
|
-
=== 2.0.7 / 2013-08-15
|
1936
|
-
|
1937
|
-
Bug fixes:
|
1938
|
-
|
1939
|
-
* Extensions may now be built in parallel (therefore gems may be installed in
|
1940
|
-
parallel). Bug #607 by Hemant Kumar.
|
1941
|
-
* Changed broken link to RubyGems Bookshelf to point to RubyGems guides. Ruby
|
1942
|
-
pull request #369 by 謝致邦.
|
1943
|
-
* Fixed various test failures due to platform differences or poor tests.
|
1944
|
-
Patches by Yui Naruse and Koichi Sasada.
|
1945
|
-
* Fixed documentation for Kernel#require.
|
1946
|
-
|
1947
|
-
=== 2.0.6 / 2013-07-24
|
1948
|
-
|
1949
|
-
Bug fixes:
|
1950
|
-
|
1951
|
-
* Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
|
1952
|
-
#593 by Blargel.
|
1953
|
-
* Fixed crash when installing gems with extensions under the `-V` flag. Bug
|
1954
|
-
#601 by Nick Hoffman.
|
1955
|
-
* Fixed race condition retrieving HTTP connections in Gem::Request on JRuby.
|
1956
|
-
Bug #597 by Hemant Kumar.
|
1957
|
-
* Fixed building extensions on ruby 1.9.3 under mingw. Bug #594 by jonforums,
|
1958
|
-
Bug #599 by Chris Riesbeck
|
1959
|
-
* Restored default of remote search to `gem search`.
|
1960
|
-
|
1961
|
-
=== 2.0.5 / 2013-07-11
|
1962
|
-
|
1963
|
-
* Fixed building of extensions that run ruby in their makefiles. Bug #589 by
|
1964
|
-
Zachary Salzbank.
|
1965
|
-
|
1966
|
-
=== 2.0.4 / 2013-07-09
|
1967
|
-
|
1968
|
-
Bug fixes:
|
1969
|
-
|
1970
|
-
* Fixed error caused by gem install not finding the right platform for your
|
1971
|
-
platform. Bug #576 by John Anderson
|
1972
|
-
* Fixed pushing gems with the default host. Bug #495 by Utkarsh Kukreti
|
1973
|
-
* Improved unhelpful error message from `gem owner --remove`. Bug #488 by
|
1974
|
-
Steve Klabnik
|
1975
|
-
* Fixed typo in `gem spec` help. Pull request #563 by oooooooo
|
1976
|
-
* Fixed creation of build_info with --install-dir. Bug #457 by Vít Ondruch.
|
1977
|
-
* RubyGems converts non-string dependency names to strings now. Bug #505 by
|
1978
|
-
Terence Lee
|
1979
|
-
* Outdated prerelease versions are now listed in `gem outdated`.
|
1980
|
-
* RubyGems now only calls fsync() on the specification when installing, not
|
1981
|
-
every file from the gem. This improves the performance of gem installation
|
1982
|
-
on some systems. Pull Request #556 by Grzesiek Kolodziejczyk
|
1983
|
-
* Removed surprise search term anchoring in `gem search` to restore 1.8-like
|
1984
|
-
search behavior while still defaulting to --remote. Pull request #562 by
|
1985
|
-
Ben Bleything
|
1986
|
-
* Fixed handling of DESTDIR when building extensions. Pull request #573 by
|
1987
|
-
Akinori MUSHA
|
1988
|
-
* Fixed documentation of `gem pristine` defaults (--all is not a default).
|
1989
|
-
Pull request #577 by Shannon Skipper
|
1990
|
-
* Fixed a windows extension-building test failure. Pull request #575 by
|
1991
|
-
Hiroshi Shirosaki
|
1992
|
-
* Fixed issue with `gem update` where it would attempt to use a Version
|
1993
|
-
instead of a Requirement to find the latest gem. Fixes #570 by Nick Cox.
|
1994
|
-
* RubyGems now ignores an empty but set RUBYGEMS_HOST environment variable.
|
1995
|
-
Based on pull request #558 by Robin Dupret.
|
1996
|
-
* Removed duplicate creation of gem subdirectories in
|
1997
|
-
Gem::DependencyInstaller. Pull Request #456 by Vít Ondruch
|
1998
|
-
* RubyGems now works with Ruby built with `--with-ruby-version=''`. Pull
|
1999
|
-
Request #455 by Vít Ondruch
|
2000
|
-
* Fixed race condition when two threads require the same gem. Ruby bug report
|
2001
|
-
#8374 by Joel VanderWerf
|
2002
|
-
* Cleaned up siteconf between extension build and extension install. Pull
|
2003
|
-
request #587 by Dominic Cleal
|
2004
|
-
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
2005
|
-
r41148 by Yui Naruse
|
2006
|
-
|
2007
|
-
=== 2.0.3 / 2013-03-11
|
2008
|
-
|
2009
|
-
* Bug fixes:
|
2010
|
-
* Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
|
2011
|
-
#506 by André Arko
|
2012
|
-
* Use File.realpath to remove extra / while checking if files are
|
2013
|
-
installable. Issue #508 by Jacob Evans.
|
2014
|
-
* When installing RubyGems on JRuby, the standard library is no longer
|
2015
|
-
deleted. Fixes #504 by Juan Sanchez, #507 by Charles Oliver Nutter.
|
2016
|
-
* When building extconf.rb extensions use the intermediate destination
|
2017
|
-
directory. This addresses further issues with C extension building.
|
2018
|
-
* Use the absolute path to the generated siteconf in case the extension
|
2019
|
-
changes directories to run extconf.rb (like memcached). Fixes #498 by
|
2020
|
-
Chris Morris.
|
2021
|
-
* Fixed default gem key and cert locations. Pull request #511 by Samuel
|
2022
|
-
Cochran.
|
2023
|
-
|
2024
|
-
=== 2.0.2 / 2013-03-06
|
2025
|
-
|
2026
|
-
* Bug fixes:
|
2027
|
-
* HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
|
2028
|
-
upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
|
2029
|
-
* SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
|
2030
|
-
* Fixed HTTP to HTTPS upgrade for rubygems.org.
|
2031
|
-
|
2032
|
-
=== 2.0.1 / 2013-03-05
|
2033
|
-
|
2034
|
-
* Bug fixes:
|
2035
|
-
* Lazily load RubyGems.org API credentials to avoid failure during
|
2036
|
-
RubyGems installation. Bug #465 by Isaac Sanders.
|
2037
|
-
* RubyGems now picks the latest prerelease to install. Fixes bug #468 by
|
2038
|
-
Santiago Pastorino.
|
2039
|
-
* Improved detection of missing Zlib::GzipReader encoding support. Works
|
2040
|
-
around JRuby-only bug #472 by Matt Beedle.
|
2041
|
-
* "Done installing documentation" is no longer displayed when documentation
|
2042
|
-
generation is disabled. Fixes bug #469 by Jeff Sandberg
|
2043
|
-
* The existing executable check now respects --format-executable. Pull
|
2044
|
-
request #471 by Jeremy Evans.
|
2045
|
-
* RubyGems no longer creates gem subdirectories when fetching gems. Fixes
|
2046
|
-
#482 by Loren Segal.
|
2047
|
-
* RubyGems does not require OpenSSL like RubyGems 1.8, but still prefers it.
|
2048
|
-
Fixes #481 by André Arko.
|
2049
|
-
* RubyGems only fetches specs for list, search and query commands when
|
2050
|
-
needed like RubyGems 1.x. Fixes bug #487 by bitbuerster, Ruby bug #8019
|
2051
|
-
by Ike Miller.
|
2052
|
-
* Allow specification of mode for gem subdirectory creation.
|
2053
|
-
Ruby bug #7713 by nobu
|
2054
|
-
* Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
|
2055
|
-
|
2056
|
-
=== 2.0.0 / 2013-02-24
|
2057
|
-
|
2058
|
-
RubyGems 2.0 includes several new features and many breaking changes. Some of
|
2059
|
-
these changes will cause existing software to break. These changes are a
|
2060
|
-
result of improvements to the internals of RubyGems that make it more
|
2061
|
-
maintainable and improve APIs for RubyGems users.
|
2062
|
-
|
2063
|
-
If you are using bundler be sure to install a 1.3.0.prerelease version or
|
2064
|
-
newer. Older versions of bundler will not work with RubyGems 2.0.
|
2065
|
-
|
2066
|
-
Changes since RubyGems 1.8.25 (including past pre-releases):
|
2067
|
-
|
2068
|
-
* Breaking changes:
|
2069
|
-
|
2070
|
-
* Deprecated Gem.unresolved_deps in favor of
|
2071
|
-
Gem::Specification.unresolved_deps
|
2072
|
-
* Merged Gem::Builder into Gem::Package. Use Gem::Package.build(spec)
|
2073
|
-
instead of Gem::Builder.new(spec).build
|
2074
|
-
* Merged Gem::Format into Gem::Package. Use Gem::Package.new instead
|
2075
|
-
of Gem::Format.from_file_by_path
|
2076
|
-
* Moved Gem::OldFormat to Gem::Package::Old. Gem::Package will
|
2077
|
-
automatically detect old gems for you, so there is no need to refer to it.
|
2078
|
-
* Removed Gem::DocManager, replaced by Gem::RDoc and done_installing hook
|
2079
|
-
* Removed Gem::Package::TarInput in favor of Gem::Package
|
2080
|
-
* Removed Gem::Package::TarOutput in favor of Gem::Package
|
2081
|
-
* Removed Gem::RemoteFetcher#open_uri_or_path. (steveklabnik)
|
2082
|
-
* Removed Gem::SSL in favor of using OpenSSL directly
|
2083
|
-
* Removed Gem.loaded_path
|
2084
|
-
* Removed RSS generation from the gem indexer
|
2085
|
-
* Removed benchmark option from .gemrc
|
2086
|
-
* Removed broken YAML gemspec support in `gem build`
|
2087
|
-
* Removed support for Ruby 1.9.1
|
2088
|
-
* Removed many deprecated methods
|
2089
|
-
|
2090
|
-
* Major enhancements:
|
2091
|
-
|
2092
|
-
* Improved support for default gems shipping with ruby 2.0.0+
|
2093
|
-
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
2094
|
-
* `gem search` now defaults to --remote and is anchored like gem list. Fixes
|
2095
|
-
#166
|
2096
|
-
* Added --document to replace --rdoc and --ri. Use --no-document to disable
|
2097
|
-
documentation, --document=rdoc to only generate rdoc.
|
2098
|
-
* Only ri-format documentation is generated by default.
|
2099
|
-
* `gem server` uses RDoc::Servlet from RDoc 4.0 to generate HTML
|
2100
|
-
documentation.
|
2101
|
-
* Add ability to install gems directly from a compatible gemdep
|
2102
|
-
file (Gemfile, Isolate, gem.deps.rb)
|
2103
|
-
<code>gem install --file path</code>
|
2104
|
-
* Add ability to load gem activation information from a gemdeps
|
2105
|
-
file (Gemfile, Isolate, gem.deps.rb).
|
2106
|
-
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2107
|
-
to autodetect (current and parent directories are searched).
|
2108
|
-
|
2109
|
-
* Minor enhancements:
|
2110
|
-
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2111
|
-
#419 by Erik Hollensbe
|
2112
|
-
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
2113
|
-
broken. Now you must manually say "yes". Pull Request #406 by Shannon
|
2114
|
-
Skipper.
|
2115
|
-
* Gem::DependencyInstaller now passes build_args down to the installer.
|
2116
|
-
Pull Request #412 by Sam Rawlins.
|
2117
|
-
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
2118
|
-
* Removed rubyforge page from gem list output
|
2119
|
-
* Added --only-executables option to `gem pristine`. Fixes #326
|
2120
|
-
* Added -I flag for 'gem query' to exclude installed items
|
2121
|
-
* Added Gem.install(name, version=default) for interactive sessions
|
2122
|
-
* Added Gem::FilePermissionError#directory
|
2123
|
-
* Added Gem::rubygems_version which is like Gem::ruby_version
|
2124
|
-
* Added RUBYGEMS_HOST documentation to `gem env`
|
2125
|
-
* Added a post_installs hook that runs after Gem::DependencyInstaller
|
2126
|
-
finishes installing a set of gems
|
2127
|
-
* Added a usage method for Gem::Commands::OwnerCommand. (ffmike)
|
2128
|
-
* Added an optional type parameter to Gem::Specification#doc_dir.
|
2129
|
-
* Added announcements url and clarified how to file tickets
|
2130
|
-
* Added guidance for how to use rdoc and ri in setup command. (jjb)
|
2131
|
-
* Attempting to install multiple gems with --version is now an error. You
|
2132
|
-
can specify per-gem versions like <code>rake:0.9.5</code>
|
2133
|
-
* Clarified Gem::CommandManager example code to avoid multi load problems.
|
2134
|
-
(baroquebobcat)
|
2135
|
-
* Corrupt or bad cached specs are now re-downloaded. (cookrn)
|
2136
|
-
* Extension build arguments are saved from install and reused for pristine
|
2137
|
-
* If the OS allows it, documentation is built in a forked background
|
2138
|
-
process. (alexch)
|
2139
|
-
* Imported gem yank from the gemcutter gem. Fixes #177, #343
|
2140
|
-
* Packaged gems now contain and verify SHA1 checksums
|
2141
|
-
* Removed commas from gem update summary so you can paste it back to
|
2142
|
-
cleanup. (amatsuda)
|
2143
|
-
* RubyGems will now warn when building gems with prerelease dependencies.
|
2144
|
-
Fixes #255
|
2145
|
-
* The RUBYGEMS_HOST environment variable is used to determine appropriate
|
2146
|
-
API key for pushing or yanking gems
|
2147
|
-
* Uninstall is now performed in reverse topological order.
|
2148
|
-
* Users are told what to type when they try to uninstall a gem outside
|
2149
|
-
GEM_HOME
|
2150
|
-
* When building gems with non-world-readable files a warning is shown.
|
2151
|
-
|
2152
|
-
* Bug fixes:
|
2153
|
-
* Gem.refresh now maintains the active gem list. Clearing the list would
|
2154
|
-
cause double-loads which would cause other bugs. Pull Request #427 by
|
2155
|
-
Jeremy Evans
|
2156
|
-
* RubyGems now refuses to read the gem push credentials file if it has
|
2157
|
-
insecure permissions. Pull Request #438 by Shannon Skipper
|
2158
|
-
* RubyGems now requires a local gem name to end in '.gem'. Issue #407 by
|
2159
|
-
Santiago Pastorino.
|
2160
|
-
* Do not allow old-format gems to be installed with a security policy that
|
2161
|
-
verifies data.
|
2162
|
-
* Gem installation will fail if RubyGems cannot load the specification from
|
2163
|
-
the gem. Bug #419 by Erik Hollensbe
|
2164
|
-
* RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
|
2165
|
-
* Only update the spec cache when we have permission. Ruby Bug #7509
|
2166
|
-
* gem install now ignores directories and non .gem files that match the gem
|
2167
|
-
to install. Bug #407 by Santiago Pastorino.
|
2168
|
-
* Added PID to setup bin_file while installing RubyGems to protect against
|
2169
|
-
errors. Fixes #328 by ConradIrwin
|
2170
|
-
* Added missing require in Gem::Uninstaller when format_executable is set.
|
2171
|
-
(sakuro)
|
2172
|
-
* Exact gem command name matches are now chosen even if a longer command
|
2173
|
-
overlaps the exact name
|
2174
|
-
* Fixed Gem.loaded_path? with a Pathname instance. (mattetti)
|
2175
|
-
* Fixed Gem::Dependency.new mismatch with rubygems.org checks
|
2176
|
-
* Fixed SecurityError in Gem::Specification.load when $SAFE=1. (ged)
|
2177
|
-
* Fixed SystemStackError with "gem list -r -a" on 1.9 (cldwalker)
|
2178
|
-
* Fixed `gem owners` command so that exceptions don't stop the rest of the
|
2179
|
-
command from completing
|
2180
|
-
* Fixed `gem unpack uninstalled_gem` default version picker.
|
2181
|
-
* Fixed defunct rubyforge urls in gem command line help
|
2182
|
-
* Fixed documentation for the various hooks collections
|
2183
|
-
* Fixed documentation generation on setup when the gem directory does not
|
2184
|
-
exist. Fixes #253
|
2185
|
-
* Fixed documentation to reflect where defaults overrides are loaded from.
|
2186
|
-
(ferrous26)
|
2187
|
-
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
2188
|
-
* Fixed gem loading issue caused by dependencies not resolving.
|
2189
|
-
* Fixed independent testing of test_gem_package_tar_output. Ruby Bug #4686
|
2190
|
-
by Shota Fukumori
|
2191
|
-
* Fixed typo in uninstall message. (sandal)
|
2192
|
-
* Gem::Requirement#<=> returns nil on non-requirement arg.
|
2193
|
-
* Gem::Requirement.satisfied_by? raises ArgumentError if given a non-version
|
2194
|
-
argument
|
2195
|
-
* Gem::Version#initialize no longer modifies its parameter. (miaout17)
|
2196
|
-
* Group-writable permissions are now allowed for gem repositories. (ctcherry)
|
2197
|
-
* Memoized values in Gem::Specification are now reset the version or
|
2198
|
-
platform changes. Fixes #78
|
2199
|
-
* More specific errors are raised for bad requirements. (arsduo)
|
2200
|
-
* Removed reference to 'sources' gem in documentation
|
2201
|
-
* Removed unused block arguments to avoid creating Proc objects. (k-tsj)
|
2202
|
-
* RubyGems now asks before overwriting executable wrappers. Ruby Bug #1800
|
2203
|
-
* The bindir is now created with mkdir_p during install. (voxik)
|
2204
|
-
* URI scheme matching is no longer case-sensitive. Fixes #322
|
2205
|
-
* ext/builder now checks $MAKE as well as $make (okkez)
|
2206
|
-
|
2207
|
-
Changes since RubyGems 2.0.0.rc.2:
|
2208
|
-
|
2209
|
-
* Bug fixes:
|
2210
|
-
* Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
|
2211
|
-
#450 by Jeremy Kemper
|
2212
|
-
* Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
|
2213
|
-
Forums.
|
2214
|
-
* Fixed `gem update` with --user-install. Ruby bug #7779 by Jon Forums.
|
2215
|
-
* Fixed test_initialize_user_install for windows. Ruby bug #7885 by Luis
|
2216
|
-
Lavena.
|
2217
|
-
* Create extension destination directory before building extensions. Ruby
|
2218
|
-
Bug #7897 and patch by Kenta Murata.
|
2219
|
-
* Fixed verification of gems at LowSecurity due to missing signature.
|
2220
|
-
Thanks to André Arko.
|
2221
|
-
|
2222
|
-
=== 2.0.0.rc.2 / 2013-02-08
|
2223
|
-
|
2224
|
-
* Bug fixes:
|
2225
|
-
* Fixed signature verification of gems which was broken only on master.
|
2226
|
-
Thanks to Brian Buchanan.
|
2227
|
-
* Proper exceptions are raised when verifying an unsigned gem. Thanks to
|
2228
|
-
André Arko.
|
2229
|
-
|
2230
|
-
=== 2.0.0.rc.1 / 2013-01-08
|
2231
|
-
|
2232
|
-
* Minor enhancements:
|
2233
|
-
* This release of RubyGems can push gems to rubygems.org. Ordinarily
|
2234
|
-
prerelease versions of RubyGems cannot push gems.
|
2235
|
-
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
2236
|
-
#419 by Erik Hollensbe
|
2237
|
-
|
2238
|
-
* Bug fixes:
|
2239
|
-
* Fixed exception raised when attempting to push gems to rubygems.org. Bug
|
2240
|
-
#418 by André Arko
|
2241
|
-
* Gem installation will fail if RubyGems cannot load the specification from
|
2242
|
-
the gem. Bug #419 by Erik Hollensbe
|
2243
|
-
|
2244
|
-
=== 2.0.0.preview2.2 / 2012-12-14
|
2245
|
-
|
2246
|
-
* Minor enhancements:
|
2247
|
-
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
2248
|
-
* Removed rubyforge page from gem list output
|
2249
|
-
|
2250
|
-
* Bug fixes:
|
2251
|
-
* Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
|
2252
|
-
#413 by Jeremy Kemper.
|
2253
|
-
|
2254
|
-
=== 2.0.0.preview2.1 / 2012-12-08
|
2255
|
-
|
2256
|
-
* Minor enhancements:
|
2257
|
-
* Gem::DependencyInstaller now passes build_args down to the installer.
|
2258
|
-
Pull Request #412 by Sam Rawlins.
|
2259
|
-
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
2260
|
-
broken. Now you must manually say "yes". Pull Request #406 by Shannon
|
2261
|
-
Skipper.
|
2262
|
-
|
2263
|
-
* Bug fixes:
|
2264
|
-
* RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
|
2265
|
-
* Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
|
2266
|
-
* Only update the spec cache when we have permission. Ruby Bug #7509
|
2267
|
-
* Restored order of version marking. Fixes an issue with bundler. Thanks
|
2268
|
-
to Aaron Patterson and Terence Lee.
|
2269
|
-
* Gem cleanup now skips default gems. Pull Request #409 by Kouhei Sutou
|
2270
|
-
* gem list, search and query can show remote gems again. Bug #410 by
|
2271
|
-
Henry Maddocks
|
2272
|
-
* gem install now ignores directories that match the gem to install. Bug
|
2273
|
-
#407 by Santiago Pastorino.
|
2274
|
-
|
2275
|
-
=== 2.0.0.preview2 / 2012-12-01
|
2276
|
-
|
2277
|
-
This release contains two commits not present in Ruby 2.0.0.preview2. One
|
2278
|
-
commit is for ruby 1.8.7 support, the second allows RubyGems to work under
|
2279
|
-
$SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
2280
|
-
|
2281
|
-
* Breaking changes:
|
2282
|
-
|
2283
|
-
* Deprecated Gem.unresolved_deps in favor of
|
2284
|
-
Gem::Specification.unresolved_deps
|
2285
|
-
* Merged Gem::Builder into Gem::Package. Use Gem::Package.build(spec)
|
2286
|
-
instead of Gem::Builder.new(spec).build
|
2287
|
-
* Merged Gem::Format into Gem::Package. Use Gem::Package.new instead
|
2288
|
-
of Gem::Format.from_file_by_path
|
2289
|
-
* Moved Gem::OldFormat to Gem::Package::Old. Gem::Package will
|
2290
|
-
automatically detect old gems for you, so there is no need to refer to it.
|
2291
|
-
* Removed Gem::DocManager, replaced by Gem::RDoc and done_installing hook
|
2292
|
-
* Removed Gem::Package::TarInput in favor of Gem::Package
|
2293
|
-
* Removed Gem::Package::TarOutput in favor of Gem::Package
|
2294
|
-
* Removed Gem::RemoteFetcher#open_uri_or_path. (steveklabnik)
|
2295
|
-
* Removed Gem::SSL in favor of using OpenSSL directly
|
2296
|
-
* Removed Gem.loaded_path
|
2297
|
-
* Removed RSS generation from the gem indexer
|
2298
|
-
* Removed benchmark option from .gemrc
|
2299
|
-
* Removed broken YAML gemspec support in `gem build`
|
2300
|
-
* Removed support for Ruby 1.9.1
|
2301
|
-
* Removed many deprecated methods
|
2302
|
-
|
2303
|
-
* Major enhancements:
|
2304
|
-
|
2305
|
-
* Improved support for default gems shipping with ruby 2.0.0+
|
2306
|
-
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
2307
|
-
* `gem search` now defaults to --remote and is anchored like gem list. Fixes
|
2308
|
-
#166
|
2309
|
-
* Added --document to replace --rdoc and --ri. Use --no-document to disable
|
2310
|
-
documentation, --document=rdoc to only generate rdoc.
|
2311
|
-
* Only ri-format documentation is generated by default.
|
2312
|
-
* `gem server` uses RDoc::Servlet from RDoc 4.0 to generate HTML
|
2313
|
-
documentation.
|
2314
|
-
* Add ability to install gems directly from a compatible gemdep
|
2315
|
-
file (Gemfile, Isolate, gem.deps.rb)
|
2316
|
-
<code>gem install --file path</code>
|
2317
|
-
* Add ability to load gem activation information from a gemdeps
|
2318
|
-
file (Gemfile, Isolate, gem.deps.rb).
|
2319
|
-
Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
|
2320
|
-
to autodetect (current and parent directories are searched).
|
2321
|
-
|
2322
|
-
* Minor enhancements:
|
2323
|
-
|
2324
|
-
* Added --only-executables option to `gem pristine`. Fixes #326
|
2325
|
-
* Added -I flag for 'gem query' to exclude installed items
|
2326
|
-
* Added Gem.install(name, version=default) for interactive sessions
|
2327
|
-
* Added Gem::FilePermissionError#directory
|
2328
|
-
* Added Gem::rubygems_version which is like Gem::ruby_version
|
2329
|
-
* Added RUBYGEMS_HOST documentation to `gem env`
|
2330
|
-
* Added a post_installs hook that runs after Gem::DependencyInstaller
|
2331
|
-
finishes installing a set of gems
|
2332
|
-
* Added a usage method for Gem::Commands::OwnerCommand. (ffmike)
|
2333
|
-
* Added an optional type parameter to Gem::Specification#doc_dir.
|
2334
|
-
* Added announcements url and clarified how to file tickets
|
2335
|
-
* Added guidance for how to use rdoc and ri in setup command. (jjb)
|
2336
|
-
* Attempting to install multiple gems with --version is now an error. You
|
2337
|
-
can specify per-gem versions like <code>rake:0.9.5</code>
|
2338
|
-
* Clarified Gem::CommandManager example code to avoid multi load problems.
|
2339
|
-
(baroquebobcat)
|
2340
|
-
* Corrupt or bad cached specs are now re-downloaded. (cookrn)
|
2341
|
-
* Extension build arguments are saved from install and reused for pristine
|
2342
|
-
* If the OS allows it, documentation is built in a forked background
|
2343
|
-
process. (alexch)
|
2344
|
-
* Imported gem yank from the gemcutter gem. Fixes #177, #343
|
2345
|
-
* Packaged gems now contain and verify SHA1 checksums
|
2346
|
-
* Removed commas from gem update summary so you can paste it back to
|
2347
|
-
cleanup. (amatsuda)
|
2348
|
-
* RubyGems will now warn when building gems with prerelease dependencies.
|
2349
|
-
Fixes #255
|
2350
|
-
* The RUBYGEMS_HOST environment variable is used to determine appropriate
|
2351
|
-
API key for pushing or yanking gems
|
2352
|
-
* Uninstall is now performed in reverse topological order.
|
2353
|
-
* Users are told what to type when they try to uninstall a gem outside
|
2354
|
-
GEM_HOME
|
2355
|
-
* When building gems with non-world-readable files a warning is shown.
|
2356
|
-
|
2357
|
-
* Bug fixes:
|
2358
|
-
|
2359
|
-
* Added PID to setup bin_file while installing RubyGems to protect against
|
2360
|
-
errors. Fixes #328 by ConradIrwin
|
2361
|
-
* Added missing require in Gem::Uninstaller when format_executable is set.
|
2362
|
-
(sakuro)
|
2363
|
-
* Exact gem command name matches are now chosen even if a longer command
|
2364
|
-
overlaps the exact name
|
2365
|
-
* Fixed Gem.loaded_path? with a Pathname instance. (mattetti)
|
2366
|
-
* Fixed Gem::Dependency.new mismatch with rubygems.org checks
|
2367
|
-
* Fixed SecurityError in Gem::Specification.load when $SAFE=1. (ged)
|
2368
|
-
* Fixed SystemStackError with "gem list -r -a" on 1.9 (cldwalker)
|
2369
|
-
* Fixed `gem owners` command so that exceptions don't stop the rest of the
|
2370
|
-
command from completing
|
2371
|
-
* Fixed `gem unpack uninstalled_gem` default version picker.
|
2372
|
-
* Fixed defunct rubyforge urls in gem command line help
|
2373
|
-
* Fixed documentation for the various hooks collections
|
2374
|
-
* Fixed documentation generation on setup when the gem directory does not
|
2375
|
-
exist. Fixes #253
|
2376
|
-
* Fixed documentation to reflect where defaults overrides are loaded from.
|
2377
|
-
(ferrous26)
|
2378
|
-
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
2379
|
-
* Fixed gem loading issue caused by dependencies not resolving.
|
2380
|
-
* Fixed independent testing of test_gem_package_tar_output. Ruby Bug #4686
|
2381
|
-
by Shota Fukumori
|
2382
|
-
* Fixed typo in uninstall message. (sandal)
|
2383
|
-
* Gem::Requirement#<=> returns nil on non-requirement arg.
|
2384
|
-
* Gem::Requirement.satisfied_by? raises ArgumentError if given a non-version
|
2385
|
-
argument
|
2386
|
-
* Gem::Version#initialize no longer modifies its parameter. (miaout17)
|
2387
|
-
* Group-writable permissions are now allowed for gem repositories. (ctcherry)
|
2388
|
-
* Memoized values in Gem::Specification are now reset the version or
|
2389
|
-
platform changes. Fixes #78
|
2390
|
-
* More specific errors are raised for bad requirements. (arsduo)
|
2391
|
-
* Removed reference to 'sources' gem in documentation
|
2392
|
-
* Removed unused block arguments to avoid creating Proc objects. (k-tsj)
|
2393
|
-
* RubyGems now asks before overwriting executable wrappers. Ruby Bug #1800
|
2394
|
-
* The bindir is now created with mkdir_p during install. (voxik)
|
2395
|
-
* URI scheme matching is no longer case-sensitive. Fixes #322
|
2396
|
-
* ext/builder now checks $MAKE as well as $make (okkez)
|
2397
|
-
|
2398
|
-
=== 1.8.29 / 2013-11-23
|
2399
|
-
|
2400
|
-
Bug fixes:
|
2401
|
-
|
2402
|
-
* Fixed installation when the LANG environment variable is empty.
|
2403
|
-
* Added DigiCert High Assurance EV Root CA to the default SSL certificates for
|
2404
|
-
cloudfront.
|
2405
|
-
|
2406
|
-
=== 1.8.28 / 2013-10-08
|
2407
|
-
|
2408
|
-
Bug fixes:
|
2409
|
-
|
2410
|
-
* Added the Verisign Class 3 Public Primary Certification Authority G5
|
2411
|
-
certificate and its intermediary to follow the s3.amazonaws.com certificate
|
2412
|
-
change. Fixes #665 by emeyekayee. Fixes #671 by jonforums.
|
2413
|
-
* Remove redundant built-in certificates not needed for https://rubygems.org
|
2414
|
-
Fixes #654 by Vít Ondruch.
|
2415
|
-
* Added test for missing certificates for https://s3.amazonaws.com or
|
2416
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
2417
|
-
|
2418
|
-
=== 1.8.27 / 2013-09-24
|
2419
|
-
|
2420
|
-
Security fixes:
|
2421
|
-
|
2422
|
-
* RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
|
2423
|
-
backtracking in Gem::Version validation. See CVE-2013-4363 for full details
|
2424
|
-
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2425
|
-
1.8.23.2 (for Ruby 1.9.3).
|
2426
|
-
|
2427
|
-
=== 1.8.26 / 2013-09-09
|
2428
|
-
|
2429
|
-
Security fixes:
|
2430
|
-
|
2431
|
-
* RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
|
2432
|
-
backtracking in Gem::Version validation. See CVE-2013-4287 for full details
|
2433
|
-
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2434
|
-
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2435
|
-
|
2436
|
-
Bug fixes:
|
2437
|
-
|
2438
|
-
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
2439
|
-
|
2440
|
-
=== 1.8.25 / 2013-01-24
|
2441
|
-
|
2442
|
-
* Bug fixes:
|
2443
|
-
* Added 11627 to setup bin_file location to protect against errors. Fixes
|
2444
|
-
#328 by ConradIrwin
|
2445
|
-
* Specification#ruby_code didn't handle Requirement with multiple
|
2446
|
-
* Fix error on creating a Version object with a frozen string.
|
2447
|
-
* Fix incremental index updates
|
2448
|
-
* Fix missing load_yaml in YAML-related requirement.rb code.
|
2449
|
-
* Manually backport encoding-aware YAML gemspec
|
2450
|
-
|
2451
|
-
=== 1.8.24 / 2012-04-27
|
2452
|
-
|
2453
|
-
* 1 bug fix:
|
2454
|
-
|
2455
|
-
* Install the .pem files properly. Fixes #320
|
2456
|
-
* Remove OpenSSL dependency from the http code path
|
2457
|
-
|
2458
|
-
=== 1.8.23.2 / 2013-09-24
|
2459
|
-
|
2460
|
-
Security fixes:
|
2461
|
-
|
2462
|
-
* RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
|
2463
|
-
backtracking in Gem::Version validation. See CVE-2013-4363 for full details
|
2464
|
-
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
2465
|
-
1.8.23.2 (for Ruby 1.9.3).
|
2466
|
-
|
2467
|
-
=== 1.8.23.1 / 2013-09-09
|
2468
|
-
|
2469
|
-
Security fixes:
|
2470
|
-
|
2471
|
-
* RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
|
2472
|
-
backtracking in Gem::Version validation. See CVE-2013-4287 for full details
|
2473
|
-
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
2474
|
-
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
2475
|
-
|
2476
|
-
=== 1.8.23 / 2012-04-19
|
2477
|
-
|
2478
|
-
This release increases the security used when RubyGems is talking to
|
2479
|
-
an https server. If you use a custom RubyGems server over SSL, this
|
2480
|
-
release will cause RubyGems to no longer connect unless your SSL cert
|
2481
|
-
is globally valid.
|
2482
|
-
|
2483
|
-
You can configure SSL certificate usage in RubyGems through the
|
2484
|
-
:ssl_ca_cert and :ssl_verify_mode options in ~/.gemrc and /etc/gemrc.
|
2485
|
-
The recommended way is to set :ssl_ca_cert to the CA certificate for
|
2486
|
-
your server or a certificate bundle containing your CA certification.
|
2487
|
-
|
2488
|
-
You may also set :ssl_verify_mode to 0 to completely disable SSL
|
2489
|
-
certificate checks, but this is not recommended.
|
2490
|
-
|
2491
|
-
|
2492
|
-
* 2 security fixes:
|
2493
|
-
* Disallow redirects from https to http
|
2494
|
-
* Turn on verification of server SSL certs
|
2495
|
-
|
2496
|
-
* 1 minor feature:
|
2497
|
-
* Add --clear-sources to fetch
|
2498
|
-
|
2499
|
-
* 2 bug fixes:
|
2500
|
-
* Use File.identical? to check if two files are the same.
|
2501
|
-
* Fixed init_with warning when using psych
|
2502
|
-
|
2503
|
-
=== 1.8.22 / 2012-04-13
|
2504
|
-
|
2505
|
-
* 4 bug fixes:
|
2506
|
-
|
2507
|
-
* Workaround for psych/syck YAML date parsing issue
|
2508
|
-
* Don't trust the encoding of ARGV. Fixes #307
|
2509
|
-
* Quiet default warnings about missing spec variables
|
2510
|
-
* Read a binary file properly (windows fix)
|
2511
|
-
|
2512
|
-
=== 1.8.21 / 2012-03-22
|
2513
|
-
|
2514
|
-
* 2 bug fixes:
|
2515
|
-
|
2516
|
-
* Add workaround for buggy yaml output from 1.9.2
|
2517
|
-
* Force 1.9.1 to remove it's prelude code. Fixes #305
|
2518
|
-
|
2519
|
-
=== 1.8.20 / 2012-03-21
|
2520
|
-
|
2521
|
-
* 4 bug fixes:
|
2522
|
-
|
2523
|
-
* Add --force to `gem build` to skip validation. Fixes #297
|
2524
|
-
* Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
|
2525
|
-
* Treat the source as a proper url base. Fixes #304
|
2526
|
-
* Warn when updating the specs cache fails. Fixes #300
|
2527
|
-
|
2528
|
-
=== 1.8.19 / 2012-03-14
|
2529
|
-
|
2530
|
-
* 3 bug fixes:
|
2531
|
-
|
2532
|
-
* Handle loading psych vs syck properly. Fixes #298
|
2533
|
-
* Make sure Date objects don't leak in via Marshal
|
2534
|
-
* Perform Date => Time coercion on yaml loading. Fixes #266
|
2535
|
-
|
2536
|
-
=== 1.8.18 / 2012-03-11
|
2537
|
-
|
2538
|
-
* 4 bug fixes:
|
2539
|
-
|
2540
|
-
* Use Psych API to emit more compatible YAML
|
2541
|
-
* Download and write inside `gem fetch` directly. Fixes #289
|
2542
|
-
* Honor sysconfdir on 1.8. Fixes #291
|
2543
|
-
* Search everywhere for a spec for `gem spec`. Fixes #288
|
2544
|
-
* Fix Gem.all_load_path. Fixes #171
|
2545
|
-
|
2546
|
-
=== 1.8.17 / 2012-02-17
|
2547
|
-
|
2548
|
-
* 2 minor enhancements:
|
2549
|
-
|
2550
|
-
* Add MacRuby to the list of special cases for platforms (ferrous26)
|
2551
|
-
* Add a default for where to install rubygems itself
|
2552
|
-
|
2553
|
-
* 3 bug fixes:
|
2554
|
-
|
2555
|
-
* Fixed gem loading issue caused by dependencies not resolving.
|
2556
|
-
* Fixed umask error when stdlib is required and unresolved dependencies exist.
|
2557
|
-
* Shebang munging would only take one arg after the cmd
|
2558
|
-
* Define SUCKAGE better, ie only MRI 1.9.2
|
2559
|
-
* Propagate env-shebang to the pristine command if set for install.
|
2560
|
-
|
2561
|
-
=== 1.8.16 / 2012-02-12
|
2562
|
-
|
2563
|
-
* 3 bug fixes:
|
2564
|
-
|
2565
|
-
* Fix gem specification loading when encoding is not UTF-8. #146
|
2566
|
-
* Allow group writable if umask allows it already.
|
2567
|
-
* Uniquify the spec list based on directory order priority
|
2568
|
-
|
2569
|
-
=== 1.8.15 / 2012-01-06
|
2570
|
-
|
2571
|
-
* 1 bug fix:
|
2572
|
-
|
2573
|
-
* Don't eager load yaml, it creates a bad loop. Fixes #256
|
2574
|
-
|
2575
|
-
=== 1.8.14 / 2012-01-05
|
2576
|
-
|
2577
|
-
* 2 bug fixes:
|
2578
|
-
|
2579
|
-
* Ignore old/bad cache data in Version
|
2580
|
-
* Make sure our YAML workarounds are loaded properly. Fixes #250.
|
2581
|
-
|
2582
|
-
=== 1.8.13 / 2011-12-21
|
2583
|
-
|
2584
|
-
* 1 bug fix:
|
2585
|
-
|
2586
|
-
* Check loaded_specs properly when trying to satisfy a dep
|
2587
|
-
|
2588
|
-
* 2 minor enhancements:
|
2589
|
-
|
2590
|
-
* Remove using #loaded_path? for performance
|
2591
|
-
* Remove Zlib workaround for Windows build.
|
2592
|
-
|
2593
|
-
=== 1.8.12 / 2011-12-02
|
2594
|
-
|
2595
|
-
* Bug fix:
|
2596
|
-
* Handle more cases where Syck's DefaultKey showed up in requirements
|
2597
|
-
and wasn't cleaned out.
|
2598
|
-
|
2599
|
-
=== 1.8.11 / 2011-10-03
|
2600
|
-
|
2601
|
-
* Bug fix:
|
2602
|
-
* Deprecate was moved to Gem::Deprecate to stop polluting the top-level
|
2603
|
-
namespace.
|
2604
|
-
|
2605
|
-
=== 1.8.10 / 2011-08-25
|
2606
|
-
|
2607
|
-
RubyGems 1.8.10 contains a security fix that prevents malicious gems from
|
2608
|
-
executing code when their specification is loaded. See
|
2609
|
-
https://github.com/rubygems/rubygems/pull/165 for details.
|
2610
|
-
|
2611
|
-
* 5 bug fixes:
|
2612
|
-
|
2613
|
-
* RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
|
2614
|
-
and %q to prevent code injection. Issue #165 by Postmodern
|
2615
|
-
* RubyGems attempt to activate the psych gem now to obtain bugfixes from
|
2616
|
-
psych.
|
2617
|
-
* Gem.dir has been restored to the front of Gem.path. Fixes remaining
|
2618
|
-
problem with Issue #115
|
2619
|
-
* Fixed Syck DefaultKey infecting ruby-format specifications.
|
2620
|
-
* `gem uninstall a b` no longer stops if gem "a" is not installed.
|
2621
|
-
|
2622
|
-
=== 1.8.9 / 2011-08-23
|
2623
|
-
|
2624
|
-
* Bug fixes:
|
2625
|
-
|
2626
|
-
* Fixed uninstalling multiple gems using `gem uninstall`
|
2627
|
-
* Gem.use_paths splatted to take multiple paths! Issue #148
|
2628
|
-
|
2629
|
-
=== 1.8.8 / 2011-08-11
|
2630
|
-
|
2631
|
-
* Bug fix:
|
2632
|
-
* The encoding of a gem's YAML spec is now UTF-8. Issue #149
|
2633
|
-
|
2634
|
-
=== 1.8.7 / 2011-08-04
|
2635
|
-
|
2636
|
-
* Bug fixes:
|
2637
|
-
* Added missing require for `gem uninstall --format-executable`
|
2638
|
-
* The correct name of the executable being uninstalled is now displayed with
|
2639
|
-
--format-executable
|
2640
|
-
* Fixed `gem unpack uninstalled_gem` default version picker
|
2641
|
-
* RubyGems no longer claims a nonexistent gem can be uninstalled
|
2642
|
-
* `gem which` no longer claims directories are requirable files
|
2643
|
-
* `gem cleanup` continues cleaning up gems if one can't be uninstalled due
|
2644
|
-
to permissions. Issue #82
|
2645
|
-
* Gem repository directories are no longer created world-writable. Patch by
|
2646
|
-
Sakuro OZAWA. Ruby Bug #4930
|
2647
|
-
|
2648
|
-
=== 1.8.6 / 2011-07-25
|
2649
|
-
|
2650
|
-
* 1 minor enhancement:
|
2651
|
-
|
2652
|
-
* Add autorequires and delay startup of RubyGems until require is called.
|
2653
|
-
See Ruby bug #4962
|
2654
|
-
|
2655
|
-
* 9 bug fixes:
|
2656
|
-
|
2657
|
-
* Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
|
2658
|
-
* Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
|
2659
|
-
* Added missing APPLE_GEM_HOME in paths.
|
2660
|
-
* Extend YAML::Syck::DefaultKey fixing to `marshal_dump` as well.
|
2661
|
-
* Fix #29216: check correct bin_dir in check_that_user_bin_dir_is_in_path.
|
2662
|
-
* Revert Gem.latest_load_paths to working order (PathSupport revert).
|
2663
|
-
* Restore normalization of GEM_HOME.
|
2664
|
-
* Handle the Syck DefaultKey problem once and for all.
|
2665
|
-
* Fix SystemStackError occurring with "gem list -r -a" on 1.9.
|
2666
|
-
|
2667
|
-
=== 1.8.5 / 2011-05-31
|
2668
|
-
|
2669
|
-
* 2 minor enhancement:
|
2670
|
-
|
2671
|
-
* The -u option to 'update local source cache' is official deprecated.
|
2672
|
-
* Remove has_rdoc deprecations from Specification.
|
2673
|
-
|
2674
|
-
* 2 bug fixes:
|
2675
|
-
|
2676
|
-
* Handle bad specs more gracefully.
|
2677
|
-
* Reset any Gem paths changed in the installer.
|
2678
|
-
|
2679
|
-
=== 1.8.4 / 2011-05-25
|
2680
|
-
|
2681
|
-
* 1 minor enhancement:
|
2682
|
-
|
2683
|
-
* Removed default_executable deprecations from Specification.
|
2684
|
-
|
2685
|
-
=== 1.8.3 / 2011-05-19
|
2686
|
-
|
2687
|
-
* 4 bug fixes:
|
2688
|
-
|
2689
|
-
* Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
|
2690
|
-
Shota Fukumori
|
2691
|
-
* Fix test failures for systems with separate ruby versions. Ruby Bug #3808
|
2692
|
-
by Jeremy Evans
|
2693
|
-
* Fixed some bad calls left behind after rolling out some refactorings.
|
2694
|
-
* Syck has a parse error on (good) times output from Psych. (dazuma, et al)
|
2695
|
-
|
2696
|
-
=== 1.8.2 / 2011-05-11
|
2697
|
-
|
2698
|
-
* 2 minor enhancements:
|
2699
|
-
|
2700
|
-
* Moved #outdated from OutdatedCommand to Specification (for Isolate).
|
2701
|
-
* Print out a warning about missing executables.
|
2702
|
-
|
2703
|
-
* 3 bug fixes:
|
2704
|
-
|
2705
|
-
* Added missing requires to fix various upgrade issues.
|
2706
|
-
* `gem pristine` respects multiple gem repositories.
|
2707
|
-
* setup.rb now execs with --disable-gems when possible
|
2708
|
-
|
2709
|
-
=== 1.8.1 / 2011-05-05
|
2710
|
-
|
2711
|
-
* 1 minor enhancement:
|
2712
|
-
|
2713
|
-
* Added Gem::Requirement#specific? and Gem::Dependency#specific?
|
2714
|
-
|
2715
|
-
* 4 bug fixes:
|
2716
|
-
|
2717
|
-
* Typo on Indexer rendered it useless on Windows
|
2718
|
-
* gem dep can fetch remote dependencies for non-latest gems again.
|
2719
|
-
* gem uninstall with multiple versions no longer crashes with ArgumentError
|
2720
|
-
* Always use binary mode for File.open to keep Windows happy
|
2721
|
-
|
2722
|
-
=== 1.8.0 / 2011-04-34
|
2723
|
-
|
2724
|
-
This release focused on properly encapsulating functionality. Most of this
|
2725
|
-
work focused on moving functionality out of Gem::SourceIndex and
|
2726
|
-
Gem::GemPathSearcher into Gem::Specification where it belongs.
|
2727
|
-
|
2728
|
-
After installing RubyGems 1.8.0 you will see deprecations when loading your
|
2729
|
-
exsting gems. Run `gem pristine --all --no-extensions` to regenerate your
|
2730
|
-
gem specifications safely.
|
2731
|
-
|
2732
|
-
Currently RubyGems does not save the build arguments used to build gems with
|
2733
|
-
extensions. You will need to run `gem pristine gem_with_extension --
|
2734
|
-
--build-arg` to regenerate a gem with an extension where it requires special
|
2735
|
-
build arguments.
|
2736
|
-
|
2737
|
-
* 24(+) Deprecations (WOOT!):
|
2738
|
-
|
2739
|
-
* DependencyList.from_source_index deprecated the source_index argument.
|
2740
|
-
* Deprecated Dependency.new(/regex/).
|
2741
|
-
* Deprecated Gem.searcher.
|
2742
|
-
* Deprecated Gem.source_index and Gem.available?
|
2743
|
-
* Deprecated Gem: activate_dep, activate_spec, activate,
|
2744
|
-
report_activate_error, and required_location.
|
2745
|
-
* Deprecated Gem::all_partials
|
2746
|
-
* Deprecated Gem::cache_dir
|
2747
|
-
* Deprecated Gem::cache_gem
|
2748
|
-
* Deprecated Gem::default_system_source_cache_dir
|
2749
|
-
* Deprecated Gem::default_user_source_cache_dir
|
2750
|
-
* Deprecated Platform#empty?
|
2751
|
-
* Deprecated Specification.cache_gem
|
2752
|
-
* Deprecated Specification.installation_path
|
2753
|
-
* Deprecated Specification.loaded, loaded?, and loaded=
|
2754
|
-
* Deprecated all of Gem::SourceIndex.
|
2755
|
-
* Deprecated all of Gem::GemPathSearcher.
|
2756
|
-
* Deprecated Gem::Specification#default_executable.
|
2757
|
-
|
2758
|
-
* 2 major enhancements:
|
2759
|
-
|
2760
|
-
* Gem::SourceIndex functionality has been moved to Gem::Specification.
|
2761
|
-
Gem::SourceIndex is completely disconnected from Gem::Specification
|
2762
|
-
* Refactored GemPathSearcher entirely out. RIPMF
|
2763
|
-
|
2764
|
-
* 41 minor enhancements:
|
2765
|
-
|
2766
|
-
* Added CommandManager#unregister_command
|
2767
|
-
* Added Dependency#matching_specs + to_specs.
|
2768
|
-
* Added Dependency#to_spec
|
2769
|
-
* Added Gem.pre_reset_hook/s and post_reset_hook/s.
|
2770
|
-
* Added GemCommand.reset to reinitialize the singleton
|
2771
|
-
* Added Specification#activate.
|
2772
|
-
* Added Specification#activated, activated=, and activated?
|
2773
|
-
* Added Specification#base_dir.
|
2774
|
-
* Added Specification#bin_dir and bin_file.
|
2775
|
-
* Added Specification#cache_dir and cache_file. Aliased cache_gem.
|
2776
|
-
* Added Specification#doc_dir and ri_dir.
|
2777
|
-
* Added Specification#find(name_or_dep, *requirements).
|
2778
|
-
* Added Specification#gem_dir and gems_dir.
|
2779
|
-
* Added Specification#spec_dir and spec_file.
|
2780
|
-
* Added Specification.add_spec, add_specs, and remove_spec.
|
2781
|
-
* Added Specification.all=. If you use this, we will light you on fire.
|
2782
|
-
* Added Specification.all_names.
|
2783
|
-
* Added Specification.dirs and dirs=. dirs= resets.
|
2784
|
-
* Added Specification.find_all_by_name(name, *reqs)
|
2785
|
-
* Added Specification.latest_specs. SO TINY!
|
2786
|
-
* Added TestCase#all_spec_names to help clean up tests
|
2787
|
-
* Added TestCase#assert_path_exists and refute_path_exists. Will move to
|
2788
|
-
minitest.
|
2789
|
-
* Gem.sources no longer tries to load sources gem. Only uses default_sources.
|
2790
|
-
* Installer no longer accepts a source_index option.
|
2791
|
-
* More low-level integration.
|
2792
|
-
* Removed Gem::FileOperations since it is a dummy class
|
2793
|
-
* Removed a comment because I am dumb
|
2794
|
-
* Removed pkgs/sources/lib/sources.rb
|
2795
|
-
* Revamped indexer to mostly not use SourceIndex (legacy index requires it).
|
2796
|
-
* Rewrote our last functional test suite to be happy and fast
|
2797
|
-
* RubyGems is now under the Ruby License or the MIT license
|
2798
|
-
* Specification#== now only checks name, version, and platform.
|
2799
|
-
* Specification#authors= now forcefully flattens contents (bad rspec! no
|
2800
|
-
cookie!)
|
2801
|
-
* Specification#eql? checks all fields.
|
2802
|
-
* Specification#installation_path no longer raises if it hasn't been
|
2803
|
-
activated.
|
2804
|
-
* Specification#validate now ensures that authors is not empty.
|
2805
|
-
* TestCase.util_setup_spec_fetcher no longer returns a SourceIndex.
|
2806
|
-
* Uninstaller no longer passes around SourceIndex instances
|
2807
|
-
* Warn on loading bad spec array values (ntlm-http gem has nil in its cert
|
2808
|
-
chain)
|
2809
|
-
* `gem pristine` now accepts --no-executables to skip restoring gems with
|
2810
|
-
extensions.
|
2811
|
-
* `gem pristine` can now restore multiple gems.
|
2812
|
-
|
2813
|
-
* 6 bug fixes:
|
2814
|
-
|
2815
|
-
* DependencyInstaller passed around a source_index instance but used
|
2816
|
-
Gem.source_index.
|
2817
|
-
* Fixed Platform#== and #hash so instances may be used as hash keys.
|
2818
|
-
* Fixed broken Specification#original_platform. It should never be nil.
|
2819
|
-
* Gem::Text#format_text now strips trailing whitespace
|
2820
|
-
* Normalize LOAD_PATH with File.expand_path
|
2821
|
-
* `gem build` errors should exit 1.
|
2822
|
-
* `gem pristine` can now restore non-latest gems where the cached gem was
|
2823
|
-
removed.
|
2824
|
-
|
2825
|
-
=== 1.7.1 / 2011-03-32
|
2826
|
-
|
2827
|
-
* 1 bug fix:
|
2828
|
-
* Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
|
2829
|
-
`rake check_manifest` showing a diff would not exit with an error.)
|
2830
|
-
|
2831
|
-
=== 1.7.0 / 2011-03-32
|
2832
|
-
|
2833
|
-
* 16 Deprecations (woot!)
|
2834
|
-
* Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
|
2835
|
-
cache.
|
2836
|
-
* Deprecated RemoteFetcher#open_uri_or_path.
|
2837
|
-
* Deprecated SourceIndex#all_gems.
|
2838
|
-
* Deprecated SourceIndex#initialize(hash_of_specs).
|
2839
|
-
* Deprecated SourceIndex.from_installed_gems, from_gems_in, and
|
2840
|
-
load_specification.
|
2841
|
-
* Deprecated Specification#has_rdoc, default_executable, and
|
2842
|
-
test_suite_file(=).
|
2843
|
-
* Deprecated Specification#has_rdoc= and default_executable=
|
2844
|
-
|
2845
|
-
* 26 minor enhancements:
|
2846
|
-
* Added stupid simple deprecation module.
|
2847
|
-
* Added --spec option to `gem unpack` to output a gem's original metadata
|
2848
|
-
* Added packaging option to Specification#validate
|
2849
|
-
* Gem.bin_path requires the exec_name argument.
|
2850
|
-
* Read from cached specs if fetch fails for some reason
|
2851
|
-
* Refactored Specification#assign_defaults into #initialize.
|
2852
|
-
* RemoteFetcher#fetch_path now dispatches dynamically to 'fetch_<uri.schema>'
|
2853
|
-
* Removed Specification @@gather.
|
2854
|
-
* Removed Specification.attribute.
|
2855
|
-
* Removed Specification.attribute_alias_singular.
|
2856
|
-
* Removed Specification.attribute_defaults.
|
2857
|
-
* Removed Specification.attributes
|
2858
|
-
* Removed Specification.overwrite_accessor.
|
2859
|
-
* Removed Specification.read_only.
|
2860
|
-
* Removed Specification.required_attribute.
|
2861
|
-
* Removed Specification::SPECIFICATION_VERSION_HISTORY and turned into rdoc
|
2862
|
-
* Removed blanket rescue in default_executable. Hope it doesn't blow up! :P
|
2863
|
-
* Removed nearly all metaprogramming from Specification. Yay for
|
2864
|
-
attr_accessor!
|
2865
|
-
* SourceIndex#initialize changed to prefer an array of spec dirs, defaulting
|
2866
|
-
to none.
|
2867
|
-
* SourceIndex.new is now the preferred way to create SourceIndex instances.
|
2868
|
-
*gasp*
|
2869
|
-
* Specification#validate now checks that array attribs are indeed arrays.
|
2870
|
-
* Specification.default_value is now an instance method.
|
2871
|
-
* Switched Specification::TODAY to be proper midnight @ UTC
|
2872
|
-
* Update Gem::RemoteFetcher\'s User-Agent to handle RUBY_ENGINE and
|
2873
|
-
RUBY_REVISION when patchlevel is -1
|
2874
|
-
* UpdateCommand#gems_to_update now returns (name, version) pairs.
|
2875
|
-
* UpdateCommand#which_to_update now takes an optional system argument.
|
2876
|
-
|
2877
|
-
* 11 bug fixes:
|
2878
|
-
* Added missing remote fetcher require to pristine command (aarnell)
|
2879
|
-
* Building gems now checks to ensure all required fields are non-nil
|
2880
|
-
* Fix option parser when summary is nil.
|
2881
|
-
* Fixed `gem contents` to work with the lightweight specifications
|
2882
|
-
* Fixed `gem update --system x.y.z` where x.y.z == latest version. (MGPalmer)
|
2883
|
-
* Fixed gem contents sorting and tests. (MGPalmer)
|
2884
|
-
* Fixed intermittant problem in `gem fetch` with --platform specified (quix)
|
2885
|
-
* Fixed lightweight specifications so `gem rdoc` will generate proper
|
2886
|
-
documentation
|
2887
|
-
* MockGemUI#terminate_interaction should not raise Gem::SystemExitException.
|
2888
|
-
(MGPalmer)
|
2889
|
-
* RubyGems now raises a better error for broken .gem files. Bug #29067 by
|
2890
|
-
Elias Baixas
|
2891
|
-
* `gem update` now uniq's command line arguments.
|
2892
|
-
|
2893
|
-
=== 1.6.2 / 2011-03-08
|
2894
|
-
|
2895
|
-
Bug Fixes:
|
2896
|
-
|
2897
|
-
* require of an activated gem could cause activation conflicts. Fixes
|
2898
|
-
Bug #29056 by Dave Verwer.
|
2899
|
-
* `gem outdated` now works with up-to-date prerelease gems.
|
2900
|
-
|
2901
|
-
=== 1.6.1 / 2011-03-03
|
2902
|
-
|
2903
|
-
Bug Fixes:
|
2904
|
-
|
2905
|
-
* Installation no longer fails when a dependency from a version that won't be
|
2906
|
-
installed is unsatisfied.
|
2907
|
-
* README.rdoc now shows how to file tickets and get help. Pull Request #40 by
|
2908
|
-
Aaron Patterson.
|
2909
|
-
* Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
|
2910
|
-
* Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
|
2911
|
-
|
2912
|
-
=== 1.6.0 / 2011-02-29
|
2913
|
-
|
2914
|
-
4 Deprecations:
|
2915
|
-
|
2916
|
-
* RubyGems no longer requires 'thread'. Rails < 3 will need to add require
|
2917
|
-
'thread' to their applications.
|
2918
|
-
* Gem.cache is deprecated. Use Gem.source_index.
|
2919
|
-
* RbConfig.datadir is deprecated. Use Gem.datadir.
|
2920
|
-
* Gem::LoadError#version_requirements has been removed. Use
|
2921
|
-
Gem::LoadError#requirement.
|
2922
|
-
|
2923
|
-
2 Major Enhancements:
|
2924
|
-
|
2925
|
-
* Rewrote how Gem::activate (gem and require) resolves dependencies.
|
2926
|
-
* Gem::LoadError#version_requirement has been removed. Use
|
2927
|
-
Gem::LoadError#requirement.
|
2928
|
-
|
2929
|
-
17 Minor Enhancments:
|
2930
|
-
|
2931
|
-
* Added --key to `gem push` for setting alternate API keys.
|
2932
|
-
* Added --format-executable support to gem uninstall.
|
2933
|
-
* Added Gem::DependencyList#clear.
|
2934
|
-
* Added Gem::DependencyList#remove_specs_unsatisfied_by
|
2935
|
-
* Added Gem.latest_spec_for, latest_version_for, and latest_rubygems_version.
|
2936
|
-
* Added Gem::Dependency#merge which merges requirements for two
|
2937
|
-
dependencies.
|
2938
|
-
* Added Gem::TestCase#util_spec for faster tests.
|
2939
|
-
* Added Gem::Specification#dependent_specs.
|
2940
|
-
* Added Gem::TestCase#new_spec and Gem::TestCase#install_specs.
|
2941
|
-
* Added flag to include prerelease gems in Gem::SourceIndex#latest_specs.
|
2942
|
-
* Gem.cache_dir always references the proper cache dir.
|
2943
|
-
Pass true to support a user path.
|
2944
|
-
* Gem.cache_gem, given a filename always references the cache gem.
|
2945
|
-
Pass true to support a user path.
|
2946
|
-
* Added Gem::Specification#conflicts
|
2947
|
-
* Removed rdoc gem/require from test_case.rb.
|
2948
|
-
* Rubygems will no longer let you push if you're using beta or unreleased
|
2949
|
-
rubygems.
|
2950
|
-
* Save RAM / GC churn by removing spec.files and rdoc options from
|
2951
|
-
locally cached gem specifications.
|
2952
|
-
* SpecFetcher.fetch_spec can now take a string source_uri.
|
2953
|
-
|
2954
|
-
10 Bug Fixes:
|
2955
|
-
|
2956
|
-
* Added missing require of Gem::RemoteFetcher to the unpack command.
|
2957
|
-
* RubyGems now completely removes a previous install when reinstalling.
|
2958
|
-
* Fixed Gem::Installer#generate_bin to only chmod files that exist.
|
2959
|
-
* Fixed handling of Windows style file:/// uris.
|
2960
|
-
* Fixed requires in tests. (shota)
|
2961
|
-
* Fixed script generation on Windows.
|
2962
|
-
* Fixed test issues if you have older rubygems installed.
|
2963
|
-
* Gem::DependencyInstaller tests use Gem::Security, add the missing require.
|
2964
|
-
* Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
|
2965
|
-
* Gem::Uninstaller now respects --format-executable.
|
2966
|
-
|
2967
|
-
=== 1.5.3 / 2011-02-26
|
2968
|
-
|
2969
|
-
Bug Fixes:
|
2970
|
-
|
2971
|
-
* Fix for a bug in Syck which causes install failures for gems packaged with
|
2972
|
-
Psych. Bug #28965 by Aaron Patterson.
|
2973
|
-
|
2974
|
-
=== 1.5.2 / 2011-02-10
|
2975
|
-
|
2976
|
-
Bug Fixes:
|
2977
|
-
|
2978
|
-
* Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
|
2979
|
-
|
2980
|
-
=== 1.5.1 / 2011-02-09
|
2981
|
-
|
2982
|
-
==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
2983
|
-
|
2984
|
-
Minor Enhancement:
|
2985
|
-
|
2986
|
-
* Added ability to do gem update --system X.Y.Z.
|
2987
|
-
|
2988
|
-
Bug Fixes:
|
2989
|
-
|
2990
|
-
* Scrub !!null YAML from 1.9.2 (install and build).
|
2991
|
-
* Added missing requires for user_interaction.
|
2992
|
-
* Wrote option processing tests for gem update.
|
2993
|
-
* Updated upgrading doco for new gem update --system option.
|
2994
|
-
* Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
|
2995
|
-
* RubyGems now enforces ruby 1.8.7 or newer.
|
2996
|
-
|
2997
|
-
=== 1.5.0 / 2011-01-31
|
2998
|
-
|
2999
|
-
==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
3000
|
-
|
3001
|
-
Major Enhancements:
|
3002
|
-
|
3003
|
-
* Finally fixed all known 1.9.x issues. Upgrading is now possible!
|
3004
|
-
* Merged huge 1.3.7/ruby-core changes to master.
|
3005
|
-
|
3006
|
-
Minor Enhancements:
|
3007
|
-
|
3008
|
-
* Added UPGRADING.rdoc to help deal with 1.9 issues.
|
3009
|
-
* Gem::Format now gives better errors for corrupt gem files and includes paths
|
3010
|
-
* Pre-install hooks can now abort gem installation by returning false
|
3011
|
-
* Move shareable TestCase classes to lib/ to help plugin authors with tests.
|
3012
|
-
* Add post-build hooks that can cancel the gem install
|
3013
|
-
* Always require custom_require now that require_gem is gone
|
3014
|
-
* Added GemInstaller accessors for @options so plugins can reference them.
|
3015
|
-
* Optimized Gem.find_files. ~10% faster than 1.4.2. ~40% faster than ruby 1.9.
|
3016
|
-
* Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
|
3017
|
-
Erik Hollensbe.
|
3018
|
-
|
3019
|
-
Bug Fixes:
|
3020
|
-
|
3021
|
-
* `gem update` was implicitly doing --system.
|
3022
|
-
* 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
|
3023
|
-
* Add RubyForge URL to README. Closes #28825
|
3024
|
-
* 1.9.3: Use chdir {} when building extensions to prevent warnings. Fixes #4337
|
3025
|
-
* 1.9.2: Fix circular require warning.
|
3026
|
-
* Make requiring openssl even lazier at request of NaHi
|
3027
|
-
* `gem unpack` will now download the gem if it is not in the cache. Patch by
|
3028
|
-
Erik Hollensbe.
|
3029
|
-
* rubygems-update lists its development dependencies again
|
3030
|
-
|
3031
|
-
=== 1.4.2 / 2011-01-06
|
3032
|
-
|
3033
|
-
Bug fixes:
|
3034
|
-
|
3035
|
-
* Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
|
3036
|
-
* Fixed Gem.find_files.
|
3037
|
-
* Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
|
3038
|
-
|
3039
|
-
=== 1.4.1 / 2010-12-31
|
3040
|
-
|
3041
|
-
Since apparently nobody reads my emails, blog posts or the README:
|
3042
|
-
|
3043
|
-
DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
|
3044
|
-
|
3045
|
-
Bug fix:
|
3046
|
-
|
3047
|
-
* Specification#load was untainting a frozen string (via `gem build *.spec`)
|
3048
|
-
|
3049
|
-
=== 1.4.0 / 2010-12-30
|
3050
|
-
|
3051
|
-
NOTE: In order to better maintain rubygems and to get it in sync with
|
3052
|
-
the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
|
3053
|
-
switching to a 4-6 week release schedule. This release is the
|
3054
|
-
precursor to that process and as such may be a bit on the wild side!
|
3055
|
-
You have been warned!
|
3056
|
-
|
3057
|
-
NOTE: We've switched to git/github. See README.rdoc for details.
|
3058
|
-
|
3059
|
-
New features:
|
3060
|
-
|
3061
|
-
* Added --launch option to `gem server`. (gthiesfeld)
|
3062
|
-
* Added fuzzy name matching on install failures. (gstark/presidentbeef)
|
3063
|
-
* Allow searching w/ file extensions: gem which fileutils.rb
|
3064
|
-
* Progress indicator during download (Ryan Melton)
|
3065
|
-
* Speed up Gem::Version#<=> by 2-3x in common cases. (raggi)
|
3066
|
-
* --source is now additive with your current sources.
|
3067
|
-
Use --clear-sources first to maintain previous behavior.
|
3068
|
-
|
3069
|
-
Bug fixes:
|
3070
|
-
|
3071
|
-
* Dependency "~>"s now respect lower-bound prerelease versions.
|
3072
|
-
* Ensure the gem directories exist on download.
|
3073
|
-
* Expand Windows user home candidates for Ruby 1.8. Bug #28371 & #28494
|
3074
|
-
* Fix find_files to order by version.
|
3075
|
-
* Fix ivar typo. [Josh Peek]
|
3076
|
-
* Normalized requires and made many of them lazy.
|
3077
|
-
Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
|
3078
|
-
* Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
|
3079
|
-
|
3080
|
-
=== 1.3.7 / 2010-05-13
|
3081
|
-
|
3082
|
-
NOTE:
|
3083
|
-
|
3084
|
-
http://rubygems.org is now the default source for downloading gems.
|
3085
|
-
|
3086
|
-
You may have sources set via ~/.gemrc, so you should replace
|
3087
|
-
http://gems.rubyforge.org with http://rubygems.org
|
3088
|
-
|
3089
|
-
http://gems.rubyforge.org will continue to work for the foreseeable future.
|
3090
|
-
|
3091
|
-
New features:
|
3092
|
-
|
3093
|
-
* `gem` commands
|
3094
|
-
* `gem install` and `gem fetch` now report alternate platforms when a
|
3095
|
-
matching one couldn't be found.
|
3096
|
-
* `gem contents` --prefix is now the default as specified in --help. Bug
|
3097
|
-
#27211 by Mamoru Tasaka.
|
3098
|
-
* `gem fetch` can fetch of old versions again. Bug #27960 by Eric Hankins.
|
3099
|
-
* `gem query` and friends output now lists platforms. Bug #27856 by Greg
|
3100
|
-
Hazel.
|
3101
|
-
* `gem server` now allows specification of multiple gem dirs for
|
3102
|
-
documentation. Bug #27573 by Yuki Sonoda.
|
3103
|
-
* `gem unpack` can unpack gems again. Bug #27872 by Timothy Jones.
|
3104
|
-
* `gem unpack` now unpacks remote gems.
|
3105
|
-
* --user-install is no longer the default. If you really liked it, see
|
3106
|
-
Gem::ConfigFile to learn how to set it by default. (This change was made
|
3107
|
-
in 1.3.6)
|
3108
|
-
* RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
|
3109
|
-
|
3110
|
-
Bug fixes:
|
3111
|
-
|
3112
|
-
* Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
|
3113
|
-
Roger Pack.
|
3114
|
-
* RubyGems now protects against exceptions being raised by plugins.
|
3115
|
-
* rubygems/builder now requires user_interaction. Ruby Bug #1040 by Phillip
|
3116
|
-
Toland.
|
3117
|
-
* Gem::Dependency support #version_requirements= with a warning. Fix for old
|
3118
|
-
Rails versions. Bug #27868 by Wei Jen Lu.
|
3119
|
-
* Gem::PackageTask depends on the package dir like the other rake package
|
3120
|
-
tasks so dependencies can be hooked up correctly.
|
3121
|
-
|
3122
|
-
=== 1.3.6 / 2010-02-17
|
3123
|
-
|
3124
|
-
New features:
|
3125
|
-
|
3126
|
-
* `gem` commands
|
3127
|
-
* Added `gem push` and `gem owner` for interacting with modern/Gemcutter
|
3128
|
-
sources
|
3129
|
-
* `gem dep` now supports --prerelease.
|
3130
|
-
* `gem fetch` now supports --prerelease.
|
3131
|
-
* `gem server` now supports --bind. Patch #27357 by Bruno Michel.
|
3132
|
-
* `gem rdoc` no longer overwrites built documentation. Use --overwrite
|
3133
|
-
force rebuilding. Patch #25982 by Akinori MUSHA.
|
3134
|
-
* Capital letters are now allowed in prerelease versions.
|
3135
|
-
|
3136
|
-
Bug fixes:
|
3137
|
-
|
3138
|
-
* Development deps are no longer added to rubygems-update gem so older
|
3139
|
-
versions can update successfully.
|
3140
|
-
* Installer bugs:
|
3141
|
-
* Prerelease gems can now depend on non-prerelease gems.
|
3142
|
-
* Development dependencies are ignored unless explicitly needed. Bug #27608
|
3143
|
-
by Roger Pack.
|
3144
|
-
* `gem` commands
|
3145
|
-
* `gem which` now fails if no paths were found. Adapted patch #27681 by
|
3146
|
-
Caio Chassot.
|
3147
|
-
* `gem server` no longer has invalid markup. Bug #27045 by Eric Young.
|
3148
|
-
* `gem list` and friends show both prerelease and regular gems when
|
3149
|
-
--prerelease --all is given
|
3150
|
-
* Gem::Format no longer crashes on empty files. Bug #27292 by Ian Ragsdale.
|
3151
|
-
* Gem::GemPathSearcher handles nil require_paths. Patch #27334 by Roger Pack.
|
3152
|
-
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
|
3153
|
-
Patch #27409 by Jakub Šťastný.
|
3154
|
-
|
3155
|
-
Deprecation Notices:
|
3156
|
-
|
3157
|
-
* lib/rubygems/timer.rb has been removed.
|
3158
|
-
* Gem::Dependency#version_requirements is deprecated and will be removed on or
|
3159
|
-
after August 2010.
|
3160
|
-
* Bulk index update is no longer supported.
|
3161
|
-
* Gem::manage_gems was removed in 1.3.3.
|
3162
|
-
* Time::today was removed in 1.3.3.
|
3163
|
-
|
3164
|
-
=== 1.3.5 / 2009-07-21
|
3165
|
-
|
3166
|
-
Bug fixes:
|
3167
|
-
|
3168
|
-
* Fix use of prerelease gems.
|
3169
|
-
* Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
|
3170
|
-
|
3171
|
-
Deprecation Notices:
|
3172
|
-
|
3173
|
-
* Bulk index update is no longer supported (the code currently remains, but not
|
3174
|
-
the tests)
|
3175
|
-
* Gem::manage_gems was removed in 1.3.3.
|
3176
|
-
* Time::today was removed in 1.3.3.
|
3177
|
-
|
3178
|
-
=== 1.3.4 / 2009-05-03
|
3179
|
-
|
3180
|
-
Bug Fixes:
|
3181
|
-
|
3182
|
-
* Fixed various warnings
|
3183
|
-
* Gem::ruby_version works correctly for 1.8 branch and trunk
|
3184
|
-
* Prerelease gems now show up in `gem list` and can be used
|
3185
|
-
* Fixed option name for `gem setup --format-executable`
|
3186
|
-
* RubyGems now matches Ruby > 1.9.1 gem paths
|
3187
|
-
* Gem::RemoteFetcher#download now works for explicit Windows paths across
|
3188
|
-
drives. Bug #25882 by Lars Christensen
|
3189
|
-
* Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
|
3190
|
-
|
3191
|
-
Deprecation Notices:
|
3192
|
-
|
3193
|
-
* Bulk index update is no longer supported (the code currently remains, but not
|
3194
|
-
the tests)
|
3195
|
-
* Gem::manage_gems was removed in 1.3.3.
|
3196
|
-
* Time::today was removed in 1.3.3.
|
3197
|
-
|
3198
|
-
=== 1.3.3 / 2009-05-04
|
3199
|
-
|
3200
|
-
New Features:
|
3201
|
-
|
3202
|
-
* `gem server` allows port names (from /etc/services) with --port.
|
3203
|
-
* `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
|
3204
|
-
Dobriakov.
|
3205
|
-
* `gem spec` can retrieve single fields from a spec (like `gem spec rake
|
3206
|
-
authors`).
|
3207
|
-
* Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
|
3208
|
-
* RDoc is now generated regardless of Gem::Specification#has_rdoc?
|
3209
|
-
|
3210
|
-
Bug Fixes:
|
3211
|
-
|
3212
|
-
* `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
|
3213
|
-
Eisenberg.
|
3214
|
-
* Gem.bin_path now escapes paths with spaces.
|
3215
|
-
* Rake extension builder uses explicit correctly loads rubygems when invoking
|
3216
|
-
rake.
|
3217
|
-
* Prerelease versions now match "~>" correctly. Patch #25759 by Yossef
|
3218
|
-
Mendelssohn.
|
3219
|
-
* Check bindir for executables, not root when validating. Bug reported by
|
3220
|
-
David Chelimsky.
|
3221
|
-
* Remove Time.today, no way to override it before RubyGems loads. Bug #25564
|
3222
|
-
by Emanuele Vicentini
|
3223
|
-
* Raise Gem::Exception for #installation_path when not installed. Bug #25741
|
3224
|
-
by Daniel Berger.
|
3225
|
-
* Don't raise in Gem::Specification#validate when homepage is nil. Bug #25677
|
3226
|
-
by Mike Burrows.
|
3227
|
-
* Uninstall executables from the correct directory. Bug #25555 by Brett
|
3228
|
-
Eisenberg.
|
3229
|
-
* Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
|
3230
|
-
reported by Alf Mikula.
|
3231
|
-
|
3232
|
-
Deprecation Notices:
|
3233
|
-
|
3234
|
-
* Gem::manage_gems has been removed.
|
3235
|
-
* Time::today has been removed early. There was no way to make it warn and be
|
3236
|
-
easy to override with user code.
|
3237
|
-
|
3238
|
-
=== 1.3.2 / 2009-04-15
|
3239
|
-
|
3240
|
-
Select New Features:
|
3241
|
-
|
3242
|
-
* RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
|
3243
|
-
This can be used to add commands (See Gem::CommandManager) or add
|
3244
|
-
install/uninstall hooks (See Gem::Installer and Gem::Uninstaller).
|
3245
|
-
* Gem::Version now understands prerelease versions using letters. (eg.
|
3246
|
-
'1.2.1.b') Thanks to Josh Susser, Alex Vollmer and Phil Hagelberg.
|
3247
|
-
* RubyGems now includes a Rake task for creating gems which replaces rake's
|
3248
|
-
Rake::GemPackageTask. See Gem::PackageTask.
|
3249
|
-
* Gem::find_files now returns paths in $LOAD_PATH.
|
3250
|
-
* Added Gem::promote_load_path for use with Gem::find_files
|
3251
|
-
* Added Gem::bin_path to make finding executables easier. Patch #24114 by
|
3252
|
-
James Tucker.
|
3253
|
-
* Various improvements to build arguments for installing gems.
|
3254
|
-
* `gem contents` added --all and --no-prefix.
|
3255
|
-
* Gem::Specification
|
3256
|
-
* #validate strips directories and errors on not-files.
|
3257
|
-
* #description no longer removes newlines.
|
3258
|
-
* #name must be a String.
|
3259
|
-
* FIXME and TODO are no longer allowed in various fields.
|
3260
|
-
* Added support for a license attribute. Feature #11041 (partial).
|
3261
|
-
* Removed Gem::Specification::list, too much process growth. Bug #23668 by
|
3262
|
-
Steve Purcell.
|
3263
|
-
* `gem generate_index`
|
3264
|
-
* Can now generate an RSS feed.
|
3265
|
-
* Modern indicies can now be updated incrementally.
|
3266
|
-
* Legacy indicies can be updated separately from modern.
|
3267
|
-
|
3268
|
-
Select Bugs Fixed:
|
3269
|
-
|
3270
|
-
* Better gem activation error message. Patch #23082.
|
3271
|
-
* Kernel methods are now private. Patch #20801 by James M. Lawrence.
|
3272
|
-
* Fixed various usability issues with `gem check`.
|
3273
|
-
* `gem update` now rescues InstallError and continues. Bug #19268 by Gabriel
|
3274
|
-
Wilkins.
|
3275
|
-
* Allow 'https', 'file' as a valid schemes for --source. Patch #22485.
|
3276
|
-
* `gem install`
|
3277
|
-
* Now removes existing path before installing. Bug #22837.
|
3278
|
-
* Uses Gem::bin_path in executable stubs to work around Kernel#load bug in
|
3279
|
-
1.9.
|
3280
|
-
* Correctly handle build args (after --) via the API. Bug #23210.
|
3281
|
-
* --user-install
|
3282
|
-
* `gem install --no-user-install` now works. Patch #23573 by Alf Mikula.
|
3283
|
-
* `gem uninstall` can now uninstall from ~/.gem. Bug #23760 by Roger Pack.
|
3284
|
-
* setup.rb
|
3285
|
-
* Clarify RubyGems RDoc installation location. Bug #22656 by Gian Marco
|
3286
|
-
Gherardi.
|
3287
|
-
* Allow setup to run from read-only location. Patch #21862 by Luis Herrera.
|
3288
|
-
* Fixed overwriting ruby executable when BASERUBY was not set. Bug #24958
|
3289
|
-
by Michael Soulier.
|
3290
|
-
* Ensure we're in a RubyGems dir when installing.
|
3291
|
-
* Deal with extraneous quotation mark when autogenerating .bat file on MS
|
3292
|
-
Windows. Bug #22712.
|
3293
|
-
|
3294
|
-
Deprecation Notices:
|
3295
|
-
|
3296
|
-
* Gem::manage_gems has been removed.
|
3297
|
-
* Time::today will be removed in RubyGems 1.4.
|
3298
|
-
|
3299
|
-
Special thanks to Chad Wooley for backwards compatibility testing and Luis
|
3300
|
-
Lavena and Daniel Berger for continuing windows support.
|
3301
|
-
|
3302
|
-
=== 1.3.1 / 2008-10-28
|
3303
|
-
|
3304
|
-
Bugs fixed:
|
3305
|
-
|
3306
|
-
* Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
|
3307
|
-
issues related to no uid support under Windows.
|
3308
|
-
* Fix requires for Gem::inflate, Gem::deflate, etc.
|
3309
|
-
* Make Gem.dir respect :gemhome value from config. (Note: this feature may be
|
3310
|
-
removed since it is hard to implement on 1.9.)
|
3311
|
-
* Kernel methods are now private. Patch #20801 by James M. Lawrence.
|
3312
|
-
* Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
|
3313
|
-
* Silence PATH warning.
|
3314
|
-
|
3315
|
-
Deprecation Notices:
|
3316
|
-
|
3317
|
-
* Gem::manage_gems will be removed on or after March 2009.
|
3318
|
-
|
3319
|
-
=== 1.3.0 / 2008-09-25
|
3320
|
-
|
3321
|
-
New features:
|
3322
|
-
|
3323
|
-
* RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
|
3324
|
-
stdout is not a TTY, except with --both.
|
3325
|
-
* Added Gem.find_files, allows a gem to discover features provided by other
|
3326
|
-
gems.
|
3327
|
-
* Added pre/post (un)install hooks for packagers of RubyGems. (Not for gems
|
3328
|
-
themselves).
|
3329
|
-
* RubyGems now installs gems into ~/.gem if GEM_HOME is not writable. Use
|
3330
|
-
--no-user-install command-line switch to disable this behavior.
|
3331
|
-
* Fetching specs for update now uses If-Modified-Since requests.
|
3332
|
-
* RubyGems now updates the ri cache when the rdoc gem is installed and
|
3333
|
-
documentation is generated.
|
3334
|
-
|
3335
|
-
Deprecation Notices:
|
3336
|
-
|
3337
|
-
* Gem::manage_gems now warns when called. It will be removed on or after March
|
3338
|
-
2009.
|
3339
|
-
|
3340
|
-
Bugs Fixed:
|
3341
|
-
|
3342
|
-
* RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
|
3343
|
-
Bug #20775 by Hemant Kumar.
|
3344
|
-
* RubyGems now uses the regexp we already have for `gem list --installed`. Bug
|
3345
|
-
#20876 by Nick Hoffman.
|
3346
|
-
* Platform is now forced to Gem::Platform::RUBY when nil or blank in the
|
3347
|
-
indexer. Fixes various uninstallable gems.
|
3348
|
-
* Handle EINVAL on seek. Based on patch in bug #20791 by Neil Wilson.
|
3349
|
-
* Fix HTTPS support. Patch #21072 by Alex Arnell.
|
3350
|
-
* RubyGems now loads all cache files even if latest has been loaded. Bug
|
3351
|
-
#20776 by Uwe Kubosch.
|
3352
|
-
* RubyGems checks for support of development dependencies for #to_ruby. Bug
|
3353
|
-
#20778 by Evan Weaver.
|
3354
|
-
* Now specifications from the future can be loaded.
|
3355
|
-
* Binary script uninstallation fixed. Bug #21234 by Neil Wilson.
|
3356
|
-
* Uninstallation with -i fixed. Bug #20812 by John Clayton.
|
3357
|
-
* Gem::Uninstaller#remove_all now calls Gem::Uninstaller#uninstall_gem so hooks
|
3358
|
-
get called. Bug #21242 by Neil Wilson.
|
3359
|
-
* Gem.ruby now properly escaped on windows. Fixes problem with extension
|
3360
|
-
compilation.
|
3361
|
-
* `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
|
3362
|
-
* Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
|
3363
|
-
|
3364
|
-
Other Changes Include:
|
3365
|
-
|
3366
|
-
* `gem help install` now describes _version_ argument to executable stubs
|
3367
|
-
* `gem help environment` describes environment variables and ~/.gemrc and
|
3368
|
-
/etc/gemrc
|
3369
|
-
* On-disk gemspecs are now read in UTF-8 and written with a UTF-8 magic comment
|
3370
|
-
* Rakefile
|
3371
|
-
* If the SETUP_OPTIONS environment variable is set, pass its contents as
|
3372
|
-
arguments to setup.rb
|
3373
|
-
* lib/rubygems/platform.rb
|
3374
|
-
* Remove deprecated constant warnings and really deprecate them. (WIN32,
|
3375
|
-
etc).
|
3376
|
-
* lib/rubygems/remote_fetcher.rb
|
3377
|
-
* Now uses ~/.gem/cache if the cache dir in GEM_HOME is not writable.
|
3378
|
-
* lib/rubygems/source_index.rb
|
3379
|
-
* Deprecate options to 'search' other than Gem::Dependency instances and
|
3380
|
-
issue warning until November 2008.
|
3381
|
-
* setup.rb
|
3382
|
-
* --destdir folder structure now built using Pathname, so it works for
|
3383
|
-
Windows platforms.
|
3384
|
-
* test/*
|
3385
|
-
* Fixes to run tests when under test/rubygems/. Patch by Yusuke ENDOH
|
3386
|
-
[ruby-core:17353].
|
3387
|
-
* test/test_ext_configure_builder.rb
|
3388
|
-
* Locale-free patch by Yusuke Endoh [ruby-core:17444].
|
3389
|
-
|
3390
|
-
=== 1.2.0 / 2008-06-21
|
3391
|
-
|
3392
|
-
New features:
|
3393
|
-
|
3394
|
-
* RubyGems no longer performs bulk updates and instead only fetches the gemspec
|
3395
|
-
files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
|
3396
|
-
allow RubyGems to take advantage of the new metadata updater. If a pre 1.2
|
3397
|
-
remote source is in the sources list, RubyGems will revert to the bulk update
|
3398
|
-
code for compatibility.
|
3399
|
-
* RubyGems now has runtime and development dependency types. Use
|
3400
|
-
#add_development_dependency and #add_runtime_dependency. All typeless
|
3401
|
-
dependencies are considered to be runtime dependencies.
|
3402
|
-
* RubyGems will now require rubygems/defaults/operating_system.rb and
|
3403
|
-
rubygems/defaults/#{RBX_ENGINE}.rb if they exist. This allows packagers and
|
3404
|
-
ruby implementers to add custom behavior to RubyGems via these files. (If
|
3405
|
-
the RubyGems API is insufficient, please suggest improvements via the
|
3406
|
-
RubyGems list.)
|
3407
|
-
* /etc/gemrc (and windows equivalent) for global settings
|
3408
|
-
* setup.rb now handles --vendor and --destdir for packagers
|
3409
|
-
* `gem stale` command that lists gems by last access time
|
3410
|
-
|
3411
|
-
Bugs Fixed:
|
3412
|
-
|
3413
|
-
* File modes from gems are now honored, patch #19737
|
3414
|
-
* Marshal Gem::Specification objects from the future can now be loaded.
|
3415
|
-
* A trailing / is now added to remote sources when missing, bug #20134
|
3416
|
-
* Gems with legacy platforms will now be correctly uninstalled, patch #19877
|
3417
|
-
* `gem install --no-wrappers` followed by `gem install --wrappers` no longer
|
3418
|
-
overwrites executables
|
3419
|
-
* `gem pristine` now forces reinstallation of gems, bug #20387
|
3420
|
-
* RubyGems gracefully handles ^C while loading .gemspec files from disk, bug
|
3421
|
-
#20523
|
3422
|
-
* Paths are expanded in more places, bug #19317, bug #19896
|
3423
|
-
* Gem::DependencyInstaller resets installed gems every install, bug #19444
|
3424
|
-
* Gem.default_path is now honored if GEM_PATH is not set, patch #19502
|
3425
|
-
|
3426
|
-
Other Changes Include:
|
3427
|
-
|
3428
|
-
* setup.rb
|
3429
|
-
* stub files created by RubyGems 0.7.x and older are no longer removed. When
|
3430
|
-
upgrading from these ancient versions, upgrade to 1.1.x first to clean up
|
3431
|
-
stubs.
|
3432
|
-
* RDoc is no longer required until necessary, patch #20414
|
3433
|
-
* `gem server`
|
3434
|
-
* Now completely matches the output of `gem generate_index` and
|
3435
|
-
has correct content types
|
3436
|
-
* Refreshes from source directories for every hit. The server will no longer
|
3437
|
-
need to be restarted after installing gems.
|
3438
|
-
* `gem query --details` and friends now display author, homepage, rubyforge url
|
3439
|
-
and installed location
|
3440
|
-
* `gem install` without -i no longer reinstalls dependencies if they are in
|
3441
|
-
GEM_PATH but not in GEM_HOME
|
3442
|
-
* Gem::RemoteFetcher now performs persistent connections for HEAD requests,
|
3443
|
-
bug #7973
|
3444
|
-
|
3445
|
-
=== 1.1.1 / 2008-04-11
|
3446
|
-
|
3447
|
-
Bugs Fixed:
|
3448
|
-
|
3449
|
-
* Gem.prefix now returns non-nil only when RubyGems was installed outside
|
3450
|
-
sitelibdir or libdir.
|
3451
|
-
* The `gem server` gem list now correctly links to gem details.
|
3452
|
-
* `gem update --system` now passes --no-format-executable to setup.rb.
|
3453
|
-
* Gem::SourceIndex#refresh! now works with multiple gem repositories.
|
3454
|
-
* Downloaded gems now go into --install-dir's cache directory.
|
3455
|
-
* Various fixes to downloading gem metadata.
|
3456
|
-
* `gem install --force` now ignores network errors too.
|
3457
|
-
* `gem pristine` now rebuilds extensions.
|
3458
|
-
* `gem update --system` now works on virgin Apple ruby.
|
3459
|
-
* Gem::RemoteFetcher handles Errno::ECONNABORTED.
|
3460
|
-
* Printing of release notes fixed.
|
3461
|
-
|
3462
|
-
=== 1.1.0 / 2008-03-29
|
3463
|
-
|
3464
|
-
New features:
|
3465
|
-
|
3466
|
-
* RubyGems now uses persistent connections on index updates. Index updates are
|
3467
|
-
much faster now.
|
3468
|
-
* RubyGems only updates from a latest index by default, cutting candidate gems
|
3469
|
-
for updates to roughly 1/4 (at present). Index updates are even faster
|
3470
|
-
still.
|
3471
|
-
* `gem list -r` may only show the latest version of a gem, add --all to see
|
3472
|
-
all gems.
|
3473
|
-
* `gem spec` now extracts specifications from .gem files.
|
3474
|
-
* `gem query --installed` to aid automation of checking for gems.
|
3475
|
-
|
3476
|
-
Bugs Fixed:
|
3477
|
-
|
3478
|
-
* RubyGems works with both Config and RbConfig now.
|
3479
|
-
* Executables are now cleaned upon uninstall.
|
3480
|
-
* You can now uninstall from a particular directory.
|
3481
|
-
* Updating from non-default sources fixed.
|
3482
|
-
* Executable stubs now use ruby install name in shebang.
|
3483
|
-
* `gem unpack` checks every directory in Gem.path now.
|
3484
|
-
* `gem install` now exits with non-zero exit code when appropriate.
|
3485
|
-
* `gem update` only updates gems that need updates.
|
3486
|
-
* `gem update` doesn't force remote-only updates.
|
3487
|
-
* `gem update` handles dependencies properly when updating.
|
3488
|
-
* Gems are now loaded in Gem.path order.
|
3489
|
-
* Gem stub scripts on windows now work outside Gem.bindir.
|
3490
|
-
* `gem sources -r` now works without network access.
|
3491
|
-
|
3492
|
-
Other Changes Include:
|
3493
|
-
|
3494
|
-
* RubyGems now requires Ruby > 1.8.3.
|
3495
|
-
* Release notes are now printed upon installation.
|
3496
|
-
* `gem env path` now prints a usable path.
|
3497
|
-
* `gem install` reverts to local-only installation upon network error.
|
3498
|
-
* Tar handling code refactoring and cleanup.
|
3499
|
-
* Gem::DependencyInstaller's API has changed.
|
3500
|
-
|
3501
|
-
For a full list of changes to RubyGems, see the ChangeLog file.
|
3502
|
-
|
3503
|
-
=== 1.0.1 / 2007-12-20
|
3504
|
-
|
3505
|
-
Bugs Fixed:
|
3506
|
-
|
3507
|
-
* Installation on Ruby 1.8.3 through 1.8.5 fixed
|
3508
|
-
* `gem build` on 1.8.3 fixed
|
3509
|
-
|
3510
|
-
Other Changes Include:
|
3511
|
-
|
3512
|
-
* Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
|
3513
|
-
this is official in RubyGems 1.0.1.
|
3514
|
-
|
3515
|
-
=== 1.0.0 / 2007-12-20
|
3516
|
-
|
3517
|
-
Major New Features Include:
|
3518
|
-
|
3519
|
-
* RubyGems warns about various problems with gemspecs during gem building
|
3520
|
-
* More-consistent versioning for the RubyGems software
|
3521
|
-
|
3522
|
-
Other Changes Include:
|
3523
|
-
|
3524
|
-
* Fixed various bugs and problems with installing gems on Windows
|
3525
|
-
* Fixed using `gem server` for installing gems
|
3526
|
-
* Various operations are even more verbose with --verbose
|
3527
|
-
* Built gems are now backwards compatible with 0.9.4
|
3528
|
-
* Improved detection of RUBYOPT loading rubygems
|
3529
|
-
* `ruby setup.rb` now has a --help option
|
3530
|
-
* Gem::Specification#bindir is now respected on installation
|
3531
|
-
* Executable stubs can now be installed to match ruby's name, so if ruby is
|
3532
|
-
installed as 'ruby18', foo_exec will be installed as 'foo_exec18'
|
3533
|
-
* `gem unpack` can now unpack into a specific directory with --target
|
3534
|
-
* OpenSSL is no longer required by default
|
3535
|
-
|
3536
|
-
Deprecations and Deletions:
|
3537
|
-
|
3538
|
-
* Kernel#require_gem has been removed
|
3539
|
-
* Executables without a shebang will not be wrapped in a future version, this
|
3540
|
-
may cause such executables to fail to operate on installation
|
3541
|
-
* Gem::Platform constants other than RUBY and CURRENT have been removed
|
3542
|
-
* Gem::RemoteInstaller was removed
|
3543
|
-
* Gem::Specification#test_suite_file and #test_suite_file= are deprecated in
|
3544
|
-
favor of #test_file and #test_file=
|
3545
|
-
* Gem::Specification#autorequire= has been deprecated
|
3546
|
-
* Time::today will be removed in a future version
|
3547
|
-
|
3548
|
-
=== 0.9.5 / 2007-11-19
|
3549
|
-
|
3550
|
-
Major New Features Include:
|
3551
|
-
|
3552
|
-
* Platform support
|
3553
|
-
* Automatic installation of platform gems
|
3554
|
-
* New bandwidth and memory friendlier index file format
|
3555
|
-
* "Offline" mode (--no-update-sources)
|
3556
|
-
* Bulk update threshold can be specified (-B, --bulk-threshold)
|
3557
|
-
* New `gem fetch` command
|
3558
|
-
* `gem` now has "really verbose" output when you specify -v
|
3559
|
-
* Improved stubs and `gem.bat` on mswin, including better compatibility
|
3560
|
-
with the One-Click Installer.
|
3561
|
-
|
3562
|
-
Other Changes Include:
|
3563
|
-
|
3564
|
-
* Time::today is deprecated and will be removed at a future date
|
3565
|
-
* Gem::manage_gems is deprecated and will be removed at a future date
|
3566
|
-
* `gem install --include-dependencies` (-y) is now deprecated since it is the
|
3567
|
-
default, use --ignore-dependencies to turn off automatic dependency
|
3568
|
-
installation
|
3569
|
-
* Multi-version diamond dependencies only are installed once
|
3570
|
-
* Processing a YAML bulk index update takes less memory
|
3571
|
-
* `gem install -i` makes sure all depenencies are installed
|
3572
|
-
* `gem update --system` reinstalls into the prefix it was originally installed
|
3573
|
-
in
|
3574
|
-
* `gem update --system` respects --no-rdoc and --no-ri flags
|
3575
|
-
* HTTP basic authentication support for proxies
|
3576
|
-
* Gem::Specification#platforms should no longer be a String, use
|
3577
|
-
Gem::Platform::CURRENT when building binary gems instead
|
3578
|
-
* `gem env` has more diagnostic information
|
3579
|
-
* require 'rubygems' loads less code
|
3580
|
-
* sources.gem is gone, RubyGems now uses built-in defaults
|
3581
|
-
* `gem install --source` will no longer add --source by default, use `gem
|
3582
|
-
sources --add` to make it a permanent extra source
|
3583
|
-
* `gem query` (list) no longer prints details by default
|
3584
|
-
* Exact gem names are matched in various places
|
3585
|
-
* mkrf extensions are now supported
|
3586
|
-
* A gem can depend on a specific RubyGems version
|
3587
|
-
* `gem_server` is now `gem server`
|
3588
|
-
* `gemlock` is now `gem lock`
|
3589
|
-
* `gem_mirror` is now `gem mirror`
|
3590
|
-
* `gemwhich` is now `gem which`
|
3591
|
-
* `gemri` is no longer included with RubyGems
|
3592
|
-
* `index_gem_repository.rb` is now `gem generate_index`
|
3593
|
-
* `gem` performs more validation of parameters
|
3594
|
-
* Custom rdoc styles are now supported
|
3595
|
-
* Gem indexer no longer removes quick index during index creation
|
3596
|
-
* Kernel#require only rescues a LoadError for the file being required now
|
3597
|
-
* `gem dependencies` can now display some information for remote gems
|
3598
|
-
* Updating RubyGems now works with RUBYOPT=-rubygems
|
3599
|
-
|
3600
|
-
Special thanks to:
|
3601
|
-
|
3602
|
-
* Daniel Berger
|
3603
|
-
* Luis Lavena
|
3604
|
-
* Tom Copeland
|
3605
|
-
* Wilson Bilkovich
|
3606
|
-
|
3607
|
-
=== 0.9.4 / 2007-05-23
|
3608
|
-
|
3609
|
-
If you are experiencing problems with the source index (e.g. strange
|
3610
|
-
"No Method" errors), or problems with zlib (e.g. "Buffer Error"
|
3611
|
-
messsage), we recommend upgrading to RubyGems 0.9.4.
|
3612
|
-
|
3613
|
-
Bug Fixes Include:
|
3614
|
-
|
3615
|
-
* Several people have been experiencing problems with no method errors
|
3616
|
-
on the source index cache. The source index cache is now a bit more
|
3617
|
-
self healing. Furthermore, if the source index cache is
|
3618
|
-
irreparable, then it is automatically dropped and reloaded.
|
3619
|
-
* The source cache files may now be dropped with the "gem sources
|
3620
|
-
--clear-all" command. (This command may require root is the system
|
3621
|
-
source cache is in a root protected area).
|
3622
|
-
* Several sub-commands were accidentally dropped from the "gem" command.
|
3623
|
-
These commands have been restored.
|
3624
|
-
|
3625
|
-
=== 0.9.3 / 2007-05-10
|
3626
|
-
|
3627
|
-
Bug Fixes Include:
|
3628
|
-
|
3629
|
-
The ZLib library on Windows will occasionally complains about a buffer error
|
3630
|
-
when unpacking gems. The Gems software has a workaround for that problem, but
|
3631
|
-
the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
|
3632
|
-
have received several reports of the error occurring with ZLib 1.2.3, so we
|
3633
|
-
have permanently enabled the work around on all versions.
|
3634
|
-
|
3635
|
-
=== 0.9.2 / 2007-02-05
|
3636
|
-
|
3637
|
-
Bug Fixes Include:
|
3638
|
-
|
3639
|
-
* The "unpack" command now works properly.
|
3640
|
-
* User name and password are now passed properly to the authenticating
|
3641
|
-
proxy when downloading gems.
|
3642
|
-
|
3643
|
-
=== 0.9.1 / 2007-01-16
|
3644
|
-
|
3645
|
-
See ChangeLog
|
3646
|
-
|
3647
|
-
=== 0.9.0 / 2006-06-28
|
3648
|
-
|
3649
|
-
Finally, the much anticipated RubyGems version 0.9.0 is now available.
|
3650
|
-
This release includes a number of new features and bug fixes. The
|
3651
|
-
number one change is that we can now download the gem index
|
3652
|
-
incrementally. This will greatly speed up the gem command when only a
|
3653
|
-
few gems are out of date.
|
3654
|
-
|
3655
|
-
Major Enhancments include:
|
3656
|
-
|
3657
|
-
* The gem index is now downloaded incrementally, only updating entries
|
3658
|
-
that are out of date. If more than 50 entries are out of date, we
|
3659
|
-
revert back to a bulk download.
|
3660
|
-
* Several patches related to allowing RubyGems to work with
|
3661
|
-
authenticating proxies (from Danie Roux and Anatol Pomozov). Just
|
3662
|
-
put the user and password in the proxy URL (e.g. -p
|
3663
|
-
http://user:password@proxy.address.com:8080) or use the
|
3664
|
-
HTTP_PROXY_USER and HTTP_PROXY_PASS environment variables.
|
3665
|
-
* The gem unpack command can now accept a file path rather than just a
|
3666
|
-
install gem name.
|
3667
|
-
* Both RI and RDOC documents are now generated by default.
|
3668
|
-
* A gemri command is included to read gem RI docs (only needed for
|
3669
|
-
Ruby 1.8.4 or earlier).
|
3670
|
-
|
3671
|
-
Minor enhancements include:
|
3672
|
-
|
3673
|
-
* Version 0.0.0 is now a valid gem version.
|
3674
|
-
* Better detection of missing SSL functionality.
|
3675
|
-
* SSL is not required if the security policy does not require
|
3676
|
-
signature checking.
|
3677
|
-
* Rake built extensions are now supported (Tilman Sauerbeck).
|
3678
|
-
* Several autorequire bug fixes.
|
3679
|
-
* --traceback is now an alias for --backtrace (I can never remember
|
3680
|
-
which one it is).
|
3681
|
-
* SAFE=1 compatibility fixes.
|
3682
|
-
* .rbw is now a supported suffix for RubyGem's custom require.
|
3683
|
-
* Several Ruby 1.9 compatibility fixes (Eric Hodel).
|
3684
|
-
|
3685
|
-
Bug Fixes:
|
3686
|
-
|
3687
|
-
* Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
|
3688
|
-
cross-Ruby version compatibility issues.
|
3689
|
-
* Fixed bug where the wrong executables could be uninstalled (Eric
|
3690
|
-
Hodel).
|
3691
|
-
* Fixed bug where gem unpack occasionally unpacked the wrong gem.
|
3692
|
-
* Fixed bug where a fatal error occurred when permissions on .gemrc
|
3693
|
-
were too restrictive (reported by Luca Pireddu).
|
3694
|
-
* Fixed prefix handling for native expressions (patch by Aaron Patterson).
|
3695
|
-
* Fixed several Upgrade => Update typos.
|
3696
|
-
|
3697
|
-
=== 0.8.11 / 2005-07-13
|
3698
|
-
|
3699
|
-
* -y is a synonym for --include-dependencies.
|
3700
|
-
* Better handling of errors in the top level rescue clause.
|
3701
|
-
* Package list command (e.g. gem inspect GEM).
|
3702
|
-
* .gemrc now allows cvsrc-like options to set defaults per subcommand.
|
3703
|
-
* The autorequire gem spec field will now accept a list.
|
3704
|
-
* Substituted Time for Date in specs, increasing performance
|
3705
|
-
dramatically.
|
3706
|
-
* Fixed reported bug of gem directories ending in "-" (reported by
|
3707
|
-
Erik Hatcher).
|
3708
|
-
* Fixed but in installer that caused dependency installation to not
|
3709
|
-
work.
|
3710
|
-
* Added Paul Duncan's gem signing patch.
|
3711
|
-
* Added Mark Hubbart's Framework patch (for better integration with OS
|
3712
|
-
X).
|
3713
|
-
* Added David Glasser's install-from-mirror patch.
|
3714
|
-
* Additional internal structural cleanup and test reorganization.
|
3715
|
-
|
3716
|
-
=== 0.8.10 / 2005-03-27
|
3717
|
-
|
3718
|
-
* In multi-user environments, it is common to supply multiple versions of gems
|
3719
|
-
(for example Rails), allowing individual users to select the version of the
|
3720
|
-
gem they desire. This allows a user to be insulated from updates to that
|
3721
|
-
gem. RubyGems 0.8.10 fixes a problem where gems could occasionally become
|
3722
|
-
confused about the current versions of libraries selected by the user.
|
3723
|
-
* The other annoying bug is that if there are any existing rubygems-update gems
|
3724
|
-
installed, then the "gem update --system" command will download a new
|
3725
|
-
update, but install the latest update prior to the download.
|
3726
|
-
|
3727
|
-
=== 0.8.9
|
3728
|
-
|
3729
|
-
Never released
|
3730
|
-
|
3731
|
-
=== 0.8.8 / 2005-03-14
|
3732
|
-
|
3733
|
-
* Moved the master definition of class Requirement back under version.
|
3734
|
-
Kept the body of Requirement under Gem.
|
3735
|
-
|
3736
|
-
=== 0.8.7 / 2005-03-14
|
3737
|
-
|
3738
|
-
Even though it has only been a few weeks since that last release,
|
3739
|
-
there are quite a number of new features in 0.8.7. A complete list of
|
3740
|
-
new features will be given below, but here is a summary of the hot
|
3741
|
-
items.
|
3742
|
-
|
3743
|
-
* The bug that prevented some users from installing rails has been
|
3744
|
-
squashed. A big thanks to Bill Guindon (aGorilla) for helping track
|
3745
|
-
that one down.
|
3746
|
-
|
3747
|
-
There are several new commands available on the gem command:
|
3748
|
-
|
3749
|
-
* gem cleanup GEMNAME -- Cleanup (uninstall) all the old versions of
|
3750
|
-
gem. If the gem name is omitted, the entire repository is cleaned.
|
3751
|
-
* gem dependency GEMNAME -- Show the dependencies for the named gems.
|
3752
|
-
This is really helpful when trying to figure out what gem needs what
|
3753
|
-
other gem.
|
3754
|
-
|
3755
|
-
There changes to the existing commands as well.
|
3756
|
-
|
3757
|
-
* gem uninstall is much smarter about removing gems from the
|
3758
|
-
repository. Lists of gems are now uninstalled in proper dependency
|
3759
|
-
order (ie. if A depends on B, A is uninstalled first). Also,
|
3760
|
-
warnings about broken dependencies occur only when removing the
|
3761
|
-
*last* gem that supports a dependency is removed.
|
3762
|
-
|
3763
|
-
Both gem install and gem uninstall support some new command line
|
3764
|
-
options that can reduce the amount of yes/no queries given the user.
|
3765
|
-
For install we have:
|
3766
|
-
|
3767
|
-
* --ignore-dependencies -- Only install requests gems, no
|
3768
|
-
dependendecies are automatically installed.
|
3769
|
-
* --include-dependencies -- Automatically install dependencies,
|
3770
|
-
without confirmation.
|
3771
|
-
|
3772
|
-
For gem uninstall, the new options are:
|
3773
|
-
|
3774
|
-
* --all -- Uninstall all matching gems without confirmation.
|
3775
|
-
* --ignore-dependencies -- Uninstall, even if dependencies are broken.
|
3776
|
-
* --executables -- Remove executables without confirmation
|
3777
|
-
|
3778
|
-
Under general cleanup, gems will not, by default, run RDoc on packages
|
3779
|
-
that do not have the RDoc flag set.
|
3780
|
-
|
3781
|
-
And finally there is a new library file 'gemconfigure' to aid in
|
3782
|
-
writing version sensitive applications (without undue dependencies on
|
3783
|
-
RubyGems); and 'gemwhich', a short script to locate libraries in the
|
3784
|
-
file system. You can read more about them here:
|
3785
|
-
|
3786
|
-
* gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
|
3787
|
-
* gemwhich: http://docs.rubygems.org/read/chapter/17
|
3788
|
-
|
3789
|
-
=== 0.8.6 / 2005-02-27
|
3790
|
-
|
3791
|
-
* Fixed a small bug with shebang construction
|
3792
|
-
|
3793
|
-
=== 0.8.5 / 2005-02-26
|
3794
|
-
|
3795
|
-
Do you know how you used to dread getting the following message while
|
3796
|
-
installing gems?
|
3797
|
-
|
3798
|
-
Updating Gem source index for: http://gems.rubyforge.org
|
3799
|
-
|
3800
|
-
It could take up to 30 seconds (on my machine, even worse on others) for
|
3801
|
-
that crazy source index to update.
|
3802
|
-
|
3803
|
-
This latest release of RubyGems speeds that wait time up considerably.
|
3804
|
-
The following table gives the following times for installing RedCloth
|
3805
|
-
with a required source index update on three system we had available to
|
3806
|
-
us. No RDoc generation was included in the following times.
|
3807
|
-
|
3808
|
-
RubyGems Linux Mac OSX Windows
|
3809
|
-
0.8.4 33 secs 73 secs 58 secs
|
3810
|
-
0.8.5 8 secs 14 secs 21 secs
|
3811
|
-
|
3812
|
-
The new caching code is at least 3x faster than previous versions. Woo
|
3813
|
-
Hoo!
|
3814
|
-
|
3815
|
-
=== 0.8.4 / 2005-01-01
|
3816
|
-
|
3817
|
-
* Rubygems 0.8.3's installer was broken unless you already had an older
|
3818
|
-
version of RubyGems installed. That's fixed.
|
3819
|
-
* Change in the way Gem::Specification internally deals with lazy attributes
|
3820
|
-
and defaults, bringing (with some loadpath_manager changes) a fairly
|
3821
|
-
significant increase in speed.
|
3822
|
-
* Support for lower-cased Gem file names (for you, Paul Duncan :)
|
3823
|
-
* Erik Veenstra's patch for making Gem versions sortable.
|
3824
|
-
|
3825
|
-
=== 0.8.3 / 2004-12-07
|
3826
|
-
|
3827
|
-
No real earth shattering news here, but there were a number of really
|
3828
|
-
annoying issues involving other libraries that RubyGems depends upon.
|
3829
|
-
0.8.3 contains some workarounds for these issues. In particular:
|
3830
|
-
|
3831
|
-
* Added workaround for the null byte in Dir string issue. (see
|
3832
|
-
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/121702).
|
3833
|
-
(Thanks to Mauricio Fernández for the quick response on this one).
|
3834
|
-
* Added workaround for old version of Zlib on windows that caused
|
3835
|
-
Ruwiki to fail to install. (see
|
3836
|
-
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/121770)
|
3837
|
-
* Added workaround for large YAML file issues. (We dynamically cut
|
3838
|
-
down the size of the source index YAML file and seem to have worked
|
3839
|
-
around immediate issues.
|
3840
|
-
|
3841
|
-
There has been some minor usability enhancements and changes ...
|
3842
|
-
|
3843
|
-
* A user specific source index cache can be used when the site-wide
|
3844
|
-
cache is unwritable (i.e. because you are running as a non-admin).
|
3845
|
-
This *greatly* speeds up gem commands run in non-admin mode when the
|
3846
|
-
site-wide cache is out of date.
|
3847
|
-
* The gem command now used an HTTP HEAD command to detect if the
|
3848
|
-
server's source index needs to be downloaed.
|
3849
|
-
* gem check gemname --test will run unit tests on installed gems that
|
3850
|
-
have unit tests.
|
3851
|
-
* Multiple gem names are allowed on the gem install command line.
|
3852
|
-
This means you can do:
|
3853
|
-
|
3854
|
-
gem install rake rails needle postgres-pr pimki
|
3855
|
-
|
3856
|
-
(Ok, you get the idea)
|
3857
|
-
* Multiple authors my be specified in a Gem spec.
|
3858
|
-
* Switched to using setup.rb (rather than a custom install script) for
|
3859
|
-
the installation of RubyGems itself. If you have installed RubyGems
|
3860
|
-
before, double check the installation instructions and make sure you
|
3861
|
-
use setup.rb instead of install.rb.
|
3862
|
-
* Ryan Davis has provided a patch so you can use an env variable
|
3863
|
-
(GEM_SKIP), to tell loadpath_manager not to load gems of those
|
3864
|
-
names. This was useful for him while testing libs that he had in
|
3865
|
-
development.
|
3866
|
-
|
3867
|
-
=== 0.8.1 / 2004-09-17
|
3868
|
-
|
3869
|
-
* Quick release to capture some bug fixes.
|
3870
|
-
|
3871
|
-
=== 0.8.0 / 2004-09-15
|
3872
|
-
|
3873
|
-
* Remove need for library stubs. Set the RUBYOPT environment variable to
|
3874
|
-
include "rrubygems", and a normal require will find gem files. Continue to
|
3875
|
-
use 'require_gem gem_name, version' to specify gem versions.
|
3876
|
-
* Deprecated "test_suite_file" gemspec attribute in favor of "test_files" array.
|
3877
|
-
* Generates rdoc by default on installs.
|
3878
|
-
* Adopted tar/gzip file format, thanks to Mauricio Fernandez.
|
3879
|
-
* "gem rdoc" allows generation of rdoc after gem installation (will add a "gem
|
3880
|
-
test"
|
3881
|
-
* Application stubs can now accept an optional parameter of _VERSION_ that will
|
3882
|
-
run an arbitrary version of the application requested.
|
3883
|
-
* Various bug fixes
|
3884
|
-
* Various platform-independency improvements
|
3885
|
-
* "gem spec --all" displays spec info for all installed version of a given gem.
|
3886
|
-
* Dynamic caching of sources
|
3887
|
-
* Support for user-definable sources on the command line (thanks Assaph Mehr)
|
3888
|
-
* More intelligent support for platform-dependent gems. Use Platform::CURRENT
|
3889
|
-
when building a gem to set its platform to the one you're building on.
|
3890
|
-
Installation displays a choice of platform-dependent gems, allowing the user
|
3891
|
-
to pick.
|
3892
|
-
* Added "gem unpack" for "unpacking" a gem to the current directory
|
3893
|
-
|
3894
|
-
=== 0.7.0 / 2004-07-09
|
3895
|
-
|
3896
|
-
See ChangeLog
|
3897
|
-
|
3898
|
-
=== 0.6.1 / 2004-06-08
|
3899
|
-
|
3900
|
-
See ChangeLog
|
3901
|
-
|
3902
|
-
=== 0.6.0 / 2004-06-08
|
3903
|
-
|
3904
|
-
* Collapse output of --search and --list (and gem_server) operations so that
|
3905
|
-
each gem is listed only once, with each of its versions listed on the same
|
3906
|
-
line.
|
3907
|
-
* bin/gem: new --upgrade-all option allows one to upgrade every installed gem
|
3908
|
-
* new #required_ruby_version attribute added to gem specification for
|
3909
|
-
specifying a dependency on which version of ruby the gem needs. Format it
|
3910
|
-
accepts is the same as the Gem::Version::Requirement format:
|
3911
|
-
|
3912
|
-
spec.required_ruby_version = "> 1.8.0"
|
3913
|
-
* --install-stub defaults to true, so library stubs are created
|
3914
|
-
|
3915
|
-
=== 0.5.0 / 2004-06-06
|
3916
|
-
|
3917
|
-
* Jim added the ability to specify version constraints to avoid API
|
3918
|
-
incompatibilities. This has been the subject of much debate for the past
|
3919
|
-
couple of months, with many ideas and code contributed by Eivind Eklund and
|
3920
|
-
Mauricio Fernandez. The following set of assertions shows how it works:
|
3921
|
-
|
3922
|
-
assert_inadequate("1.3", "~> 1.4")
|
3923
|
-
assert_adequate( "1.4", "~> 1.4")
|
3924
|
-
assert_adequate( "1.5", "~> 1.4")
|
3925
|
-
assert_inadequate("2.0", "~> 1.4") # This one is key--the new operator
|
3926
|
-
# disallows major version number
|
3927
|
-
# differences.
|
3928
|
-
* Group gem search output when multiple versions exist for a given gem:
|
3929
|
-
|
3930
|
-
activerecord (0.7.8, 0.7.7, 0.7.6, 0.7.5)
|
3931
|
-
Implements the ActiveRecord pattern for ORM.
|
3932
|
-
* Add arbitrary RDoc-able files via gemspec (not just Ruby source files) for
|
3933
|
-
people who have, for example, README.rdoc in their distributions. Add to
|
3934
|
-
gemspec via: spec.extra_rdoc_files = ["list", "of", "files"]. Ruby files are
|
3935
|
-
automatically included.
|
3936
|
-
* Some small bug fixes
|
3937
|
-
|
3938
|
-
=== 0.4.0 / 2004-05-30
|
3939
|
-
|
3940
|
-
* Minor bug fixes including Windows compatibility issues
|
3941
|
-
|
3942
|
-
=== 0.3.0 / 2004-04-30
|
3943
|
-
|
3944
|
-
* Cleanup of command-line arguments and handling. Most commands accept a
|
3945
|
-
--local or --remote modifier.
|
3946
|
-
* Creation of Application Gems (packages that include executable programs).
|
3947
|
-
See http://rubygems.rubyforge.org/wiki/wiki.pl?DeveloperGuide for information
|
3948
|
-
on how to use it.
|
3949
|
-
* Basic functionality for installing binary gems from source (:extensions
|
3950
|
-
property of gem specification holds an array of paths to extconf.rb files to
|
3951
|
-
be used for compilation)
|
3952
|
-
* Install library "stub" allowing a normal 'require' to work (which then does
|
3953
|
-
the rubygems require and 'require_gem'
|
3954
|
-
* --run-tests runs the test suite specified by the "test_suite_file" property
|
3955
|
-
of a gem specification
|
3956
|
-
* HTTP Proxy support works. Rewrite of HTTP code.
|
3957
|
-
* Unit and functional tests added (see Rakefile).
|
3958
|
-
* Prompt before remote-installing dependencies during gem installation.
|
3959
|
-
* Config file for storing preferences for 'gem' command usage.
|
3960
|
-
* Generally improved error messages (still more work to do)
|
3961
|
-
* Rearranged gem directory structure for cleanliness.
|
3962
|
-
|
3963
|
-
=== 0.2.0 / 2004-03-14
|
3964
|
-
|
3965
|
-
* Initial public release
|