rubygems-update 3.2.0.rc.1 → 3.2.0.rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +23 -8
- data/History.txt +208 -143
- data/Manifest.txt +26 -50
- data/Rakefile +11 -49
- data/bundler/CHANGELOG.md +725 -687
- data/bundler/UPGRADING.md +2 -2
- data/bundler/lib/bundler.rb +6 -3
- data/bundler/lib/bundler/build_metadata.rb +4 -12
- data/bundler/lib/bundler/cli.rb +27 -14
- data/bundler/lib/bundler/cli/add.rb +1 -1
- data/bundler/lib/bundler/cli/cache.rb +1 -7
- data/bundler/lib/bundler/cli/clean.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +14 -0
- data/bundler/lib/bundler/cli/doctor.rb +1 -1
- data/bundler/lib/bundler/cli/exec.rb +1 -1
- data/bundler/lib/bundler/cli/fund.rb +36 -0
- data/bundler/lib/bundler/cli/gem.rb +1 -1
- data/bundler/lib/bundler/cli/info.rb +2 -1
- data/bundler/lib/bundler/cli/init.rb +1 -1
- data/bundler/lib/bundler/cli/inject.rb +1 -1
- data/bundler/lib/bundler/cli/install.rb +4 -2
- data/bundler/lib/bundler/cli/list.rb +1 -1
- data/bundler/lib/bundler/cli/outdated.rb +1 -1
- data/bundler/lib/bundler/cli/pristine.rb +1 -1
- data/bundler/lib/bundler/cli/show.rb +1 -1
- data/bundler/lib/bundler/cli/update.rb +2 -0
- data/bundler/lib/bundler/compact_index_client.rb +1 -1
- data/bundler/lib/bundler/compact_index_client/cache.rb +1 -1
- data/bundler/lib/bundler/definition.rb +28 -37
- data/bundler/lib/bundler/dep_proxy.rb +1 -1
- data/bundler/lib/bundler/dsl.rb +4 -4
- data/bundler/lib/bundler/endpoint_specification.rb +1 -1
- data/bundler/lib/bundler/fetcher.rb +3 -3
- data/bundler/lib/bundler/fetcher/base.rb +1 -1
- data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
- data/bundler/lib/bundler/fetcher/downloader.rb +1 -1
- data/bundler/lib/bundler/fetcher/index.rb +1 -1
- data/bundler/lib/bundler/friendly_errors.rb +3 -3
- data/bundler/lib/bundler/gem_helper.rb +17 -9
- data/bundler/lib/bundler/gem_helpers.rb +6 -1
- data/bundler/lib/bundler/gem_version_promoter.rb +1 -1
- data/bundler/lib/bundler/graph.rb +1 -1
- data/bundler/lib/bundler/index.rb +1 -1
- data/bundler/lib/bundler/injector.rb +1 -1
- data/bundler/lib/bundler/installer.rb +1 -1
- data/bundler/lib/bundler/installer/gem_installer.rb +1 -1
- data/bundler/lib/bundler/installer/parallel_installer.rb +1 -1
- data/bundler/lib/bundler/installer/standalone.rb +2 -2
- data/bundler/lib/bundler/lazy_specification.rb +3 -3
- data/bundler/lib/bundler/lockfile_generator.rb +1 -1
- data/bundler/lib/bundler/lockfile_parser.rb +1 -1
- data/bundler/lib/bundler/mirror.rb +2 -2
- data/bundler/lib/bundler/plugin.rb +5 -6
- data/bundler/lib/bundler/plugin/index.rb +1 -1
- data/bundler/lib/bundler/plugin/installer.rb +1 -1
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
- data/bundler/lib/bundler/plugin/source_list.rb +1 -1
- data/bundler/lib/bundler/remote_specification.rb +1 -1
- data/bundler/lib/bundler/resolver.rb +4 -4
- data/bundler/lib/bundler/resolver/spec_group.rb +2 -2
- data/bundler/lib/bundler/retry.rb +1 -1
- data/bundler/lib/bundler/ruby_version.rb +1 -1
- data/bundler/lib/bundler/rubygems_ext.rb +46 -1
- data/bundler/lib/bundler/rubygems_gem_installer.rb +2 -2
- data/bundler/lib/bundler/rubygems_integration.rb +18 -6
- data/bundler/lib/bundler/runtime.rb +2 -2
- data/bundler/lib/bundler/settings.rb +49 -42
- data/bundler/lib/bundler/shared_helpers.rb +1 -1
- data/bundler/lib/bundler/similarity_detector.rb +1 -1
- data/bundler/lib/bundler/source.rb +1 -1
- data/bundler/lib/bundler/source/git.rb +1 -1
- data/bundler/lib/bundler/source/git/git_proxy.rb +4 -2
- data/bundler/lib/bundler/source/path.rb +2 -2
- data/bundler/lib/bundler/source/path/installer.rb +1 -1
- data/bundler/lib/bundler/source/rubygems.rb +2 -2
- data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
- data/bundler/lib/bundler/source_list.rb +2 -2
- data/bundler/lib/bundler/spec_set.rb +1 -1
- data/bundler/lib/bundler/stub_specification.rb +1 -1
- data/bundler/lib/bundler/templates/newgem/README.md.tt +1 -1
- data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -2
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +2 -2
- data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +0 -1
- data/bundler/lib/bundler/ui/shell.rb +5 -5
- data/bundler/lib/bundler/uri_credentials_filter.rb +1 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +7 -4
- data/bundler/lib/bundler/vendored_persistent.rb +0 -7
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler/worker.rb +1 -1
- data/bundler/lib/bundler/yaml_serializer.rb +1 -1
- data/bundler/man/bundle-add.1 +1 -1
- data/bundler/man/{bundle-add.ronn → bundle-add.1.ronn} +0 -0
- data/bundler/man/bundle-binstubs.1 +5 -3
- data/bundler/man/{bundle-binstubs.ronn → bundle-binstubs.1.ronn} +2 -4
- data/bundler/man/bundle-cache.1 +1 -1
- data/bundler/man/{bundle-cache.ronn → bundle-cache.1.ronn} +0 -0
- data/bundler/man/bundle-check.1 +1 -1
- data/bundler/man/{bundle-check.ronn → bundle-check.1.ronn} +0 -0
- data/bundler/man/bundle-clean.1 +1 -1
- data/bundler/man/{bundle-clean.ronn → bundle-clean.1.ronn} +0 -0
- data/bundler/man/bundle-config.1 +14 -14
- data/bundler/man/{bundle-config.ronn → bundle-config.1.ronn} +14 -13
- data/bundler/man/bundle-doctor.1 +1 -1
- data/bundler/man/{bundle-doctor.ronn → bundle-doctor.1.ronn} +0 -0
- data/bundler/man/bundle-exec.1 +1 -1
- data/bundler/man/{bundle-exec.ronn → bundle-exec.1.ronn} +0 -0
- data/bundler/man/bundle-gem.1 +1 -1
- data/bundler/man/{bundle-gem.ronn → bundle-gem.1.ronn} +0 -0
- data/bundler/man/bundle-info.1 +1 -1
- data/bundler/man/{bundle-info.ronn → bundle-info.1.ronn} +0 -0
- data/bundler/man/bundle-init.1 +1 -1
- data/bundler/man/{bundle-init.ronn → bundle-init.1.ronn} +0 -0
- data/bundler/man/bundle-inject.1 +1 -1
- data/bundler/man/{bundle-inject.ronn → bundle-inject.1.ronn} +0 -0
- data/bundler/man/bundle-install.1 +29 -2
- data/bundler/man/{bundle-install.ronn → bundle-install.1.ronn} +24 -2
- data/bundler/man/bundle-list.1 +1 -1
- data/bundler/man/{bundle-list.ronn → bundle-list.1.ronn} +0 -0
- data/bundler/man/bundle-lock.1 +1 -1
- data/bundler/man/{bundle-lock.ronn → bundle-lock.1.ronn} +0 -0
- data/bundler/man/bundle-open.1 +1 -1
- data/bundler/man/{bundle-open.ronn → bundle-open.1.ronn} +0 -0
- data/bundler/man/bundle-outdated.1 +1 -1
- data/bundler/man/{bundle-outdated.ronn → bundle-outdated.1.ronn} +0 -0
- data/bundler/man/bundle-platform.1 +1 -1
- data/bundler/man/{bundle-platform.ronn → bundle-platform.1.ronn} +0 -0
- data/bundler/man/bundle-pristine.1 +1 -1
- data/bundler/man/{bundle-pristine.ronn → bundle-pristine.1.ronn} +0 -0
- data/bundler/man/bundle-remove.1 +1 -1
- data/bundler/man/{bundle-remove.ronn → bundle-remove.1.ronn} +0 -0
- data/bundler/man/bundle-show.1 +1 -1
- data/bundler/man/{bundle-show.ronn → bundle-show.1.ronn} +0 -0
- data/bundler/man/bundle-update.1 +1 -1
- data/bundler/man/{bundle-update.ronn → bundle-update.1.ronn} +0 -0
- data/bundler/man/bundle-viz.1 +1 -1
- data/bundler/man/{bundle-viz.ronn → bundle-viz.1.ronn} +0 -0
- data/bundler/man/bundle.1 +1 -1
- data/bundler/man/{bundle.ronn → bundle.1.ronn} +0 -0
- data/bundler/man/gemfile.5 +4 -4
- data/bundler/man/gemfile.5.ronn +4 -4
- data/lib/rubygems.rb +3 -6
- data/lib/rubygems/available_set.rb +0 -2
- data/lib/rubygems/basic_specification.rb +0 -4
- data/lib/rubygems/command.rb +0 -2
- data/lib/rubygems/command_manager.rb +0 -2
- data/lib/rubygems/commands/build_command.rb +4 -1
- data/lib/rubygems/commands/cert_command.rb +0 -8
- data/lib/rubygems/commands/check_command.rb +0 -2
- data/lib/rubygems/commands/cleanup_command.rb +8 -4
- data/lib/rubygems/commands/contents_command.rb +0 -2
- data/lib/rubygems/commands/dependency_command.rb +0 -2
- data/lib/rubygems/commands/environment_command.rb +1 -3
- data/lib/rubygems/commands/fetch_command.rb +0 -2
- data/lib/rubygems/commands/generate_index_command.rb +0 -2
- data/lib/rubygems/commands/help_command.rb +0 -2
- data/lib/rubygems/commands/info_command.rb +0 -2
- data/lib/rubygems/commands/install_command.rb +0 -2
- data/lib/rubygems/commands/list_command.rb +0 -2
- data/lib/rubygems/commands/lock_command.rb +0 -2
- data/lib/rubygems/commands/mirror_command.rb +0 -2
- data/lib/rubygems/commands/open_command.rb +0 -2
- data/lib/rubygems/commands/outdated_command.rb +0 -2
- data/lib/rubygems/commands/owner_command.rb +0 -2
- data/lib/rubygems/commands/pristine_command.rb +0 -2
- data/lib/rubygems/commands/push_command.rb +0 -2
- data/lib/rubygems/commands/query_command.rb +0 -2
- data/lib/rubygems/commands/rdoc_command.rb +0 -2
- data/lib/rubygems/commands/search_command.rb +0 -2
- data/lib/rubygems/commands/server_command.rb +0 -2
- data/lib/rubygems/commands/setup_command.rb +10 -13
- data/lib/rubygems/commands/signin_command.rb +0 -2
- data/lib/rubygems/commands/signout_command.rb +0 -2
- data/lib/rubygems/commands/sources_command.rb +0 -2
- data/lib/rubygems/commands/specification_command.rb +0 -2
- data/lib/rubygems/commands/stale_command.rb +0 -2
- data/lib/rubygems/commands/uninstall_command.rb +0 -2
- data/lib/rubygems/commands/unpack_command.rb +0 -2
- data/lib/rubygems/commands/update_command.rb +20 -5
- data/lib/rubygems/commands/which_command.rb +0 -2
- data/lib/rubygems/commands/yank_command.rb +0 -2
- data/lib/rubygems/config_file.rb +0 -2
- data/lib/rubygems/core_ext/kernel_warn.rb +6 -6
- data/lib/rubygems/dependency.rb +0 -2
- data/lib/rubygems/dependency_installer.rb +0 -2
- data/lib/rubygems/dependency_list.rb +0 -2
- data/lib/rubygems/doctor.rb +0 -2
- data/lib/rubygems/errors.rb +0 -12
- data/lib/rubygems/exceptions.rb +0 -20
- data/lib/rubygems/ext/builder.rb +0 -2
- data/lib/rubygems/ext/cmake_builder.rb +0 -2
- data/lib/rubygems/ext/configure_builder.rb +0 -2
- data/lib/rubygems/ext/ext_conf_builder.rb +0 -2
- data/lib/rubygems/ext/rake_builder.rb +0 -2
- data/lib/rubygems/gem_runner.rb +0 -2
- data/lib/rubygems/indexer.rb +0 -2
- data/lib/rubygems/installer.rb +4 -8
- data/lib/rubygems/installer_test_case.rb +0 -4
- data/lib/rubygems/mock_gem_ui.rb +0 -6
- data/lib/rubygems/name_tuple.rb +0 -2
- data/lib/rubygems/openssl.rb +7 -0
- data/lib/rubygems/package.rb +3 -10
- data/lib/rubygems/package/digest_io.rb +0 -2
- data/lib/rubygems/package/file_source.rb +0 -2
- data/lib/rubygems/package/io_source.rb +0 -2
- data/lib/rubygems/package/old.rb +0 -2
- data/lib/rubygems/package/tar_header.rb +0 -2
- data/lib/rubygems/package/tar_reader.rb +0 -2
- data/lib/rubygems/package/tar_reader/entry.rb +0 -2
- data/lib/rubygems/package/tar_test_case.rb +0 -2
- data/lib/rubygems/package/tar_writer.rb +0 -6
- data/lib/rubygems/package_task.rb +0 -2
- data/lib/rubygems/path_support.rb +0 -2
- data/lib/rubygems/platform.rb +0 -2
- data/lib/rubygems/psych_tree.rb +0 -2
- data/lib/rubygems/remote_fetcher.rb +4 -6
- data/lib/rubygems/request.rb +1 -9
- data/lib/rubygems/request/connection_pools.rb +0 -4
- data/lib/rubygems/request/http_pool.rb +0 -2
- data/lib/rubygems/request/https_pool.rb +0 -2
- data/lib/rubygems/request_set.rb +0 -2
- data/lib/rubygems/request_set/gem_dependency_api.rb +0 -2
- data/lib/rubygems/request_set/lockfile.rb +0 -4
- data/lib/rubygems/request_set/lockfile/parser.rb +0 -2
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +0 -2
- data/lib/rubygems/requirement.rb +7 -7
- data/lib/rubygems/resolver.rb +0 -2
- data/lib/rubygems/resolver/activation_request.rb +0 -2
- data/lib/rubygems/resolver/api_set.rb +0 -2
- data/lib/rubygems/resolver/api_specification.rb +15 -6
- data/lib/rubygems/resolver/best_set.rb +0 -2
- data/lib/rubygems/resolver/composed_set.rb +0 -2
- data/lib/rubygems/resolver/conflict.rb +0 -2
- data/lib/rubygems/resolver/current_set.rb +0 -2
- data/lib/rubygems/resolver/dependency_request.rb +0 -2
- data/lib/rubygems/resolver/git_set.rb +0 -2
- data/lib/rubygems/resolver/git_specification.rb +0 -2
- data/lib/rubygems/resolver/index_set.rb +0 -2
- data/lib/rubygems/resolver/index_specification.rb +0 -2
- data/lib/rubygems/resolver/installed_specification.rb +0 -2
- data/lib/rubygems/resolver/installer_set.rb +0 -2
- data/lib/rubygems/resolver/local_specification.rb +0 -2
- data/lib/rubygems/resolver/lock_set.rb +0 -2
- data/lib/rubygems/resolver/lock_specification.rb +0 -2
- data/lib/rubygems/resolver/requirement_list.rb +0 -2
- data/lib/rubygems/resolver/set.rb +0 -2
- data/lib/rubygems/resolver/source_set.rb +0 -2
- data/lib/rubygems/resolver/spec_specification.rb +0 -2
- data/lib/rubygems/resolver/specification.rb +0 -2
- data/lib/rubygems/resolver/stats.rb +0 -2
- data/lib/rubygems/resolver/vendor_set.rb +0 -2
- data/lib/rubygems/resolver/vendor_specification.rb +0 -2
- data/lib/rubygems/s3_uri_signer.rb +1 -7
- data/lib/rubygems/security.rb +1 -7
- data/lib/rubygems/security/policy.rb +0 -4
- data/lib/rubygems/security/signer.rb +0 -2
- data/lib/rubygems/security/trust_dir.rb +0 -2
- data/lib/rubygems/server.rb +0 -2
- data/lib/rubygems/source.rb +4 -4
- data/lib/rubygems/source/git.rb +0 -2
- data/lib/rubygems/source/installed.rb +0 -2
- data/lib/rubygems/source/local.rb +0 -2
- data/lib/rubygems/source/lock.rb +0 -2
- data/lib/rubygems/source/specific_file.rb +0 -2
- data/lib/rubygems/source/vendor.rb +0 -2
- data/lib/rubygems/source_list.rb +0 -2
- data/lib/rubygems/spec_fetcher.rb +0 -2
- data/lib/rubygems/specification.rb +19 -11
- data/lib/rubygems/specification_policy.rb +0 -2
- data/lib/rubygems/stub_specification.rb +0 -4
- data/lib/rubygems/syck_hack.rb +0 -2
- data/lib/rubygems/test_case.rb +5 -16
- data/lib/rubygems/test_utilities.rb +0 -8
- data/lib/rubygems/uninstaller.rb +0 -2
- data/lib/rubygems/uri_formatter.rb +0 -2
- data/lib/rubygems/uri_parser.rb +0 -2
- data/lib/rubygems/user_interaction.rb +0 -16
- data/lib/rubygems/util.rb +0 -2
- data/lib/rubygems/util/licenses.rb +0 -2
- data/lib/rubygems/util/list.rb +0 -2
- data/lib/rubygems/validator.rb +0 -2
- data/lib/rubygems/version.rb +0 -2
- data/rubygems-update.gemspec +1 -1
- data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -2
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
- data/test/rubygems/rubygems_plugin.rb +0 -2
- data/test/rubygems/test_bundled_ca.rb +38 -41
- data/test/rubygems/test_config.rb +0 -2
- data/test/rubygems/test_deprecate.rb +0 -6
- data/test/rubygems/test_gem.rb +0 -2
- data/test/rubygems/test_gem_available_set.rb +0 -2
- data/test/rubygems/test_gem_bundler_version_finder.rb +0 -2
- data/test/rubygems/test_gem_command.rb +0 -4
- data/test/rubygems/test_gem_command_manager.rb +0 -2
- data/test/rubygems/test_gem_commands_build_command.rb +29 -8
- data/test/rubygems/test_gem_commands_cert_command.rb +0 -2
- data/test/rubygems/test_gem_commands_check_command.rb +0 -2
- data/test/rubygems/test_gem_commands_cleanup_command.rb +12 -3
- data/test/rubygems/test_gem_commands_contents_command.rb +0 -2
- data/test/rubygems/test_gem_commands_dependency_command.rb +0 -2
- data/test/rubygems/test_gem_commands_environment_command.rb +0 -2
- data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
- data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -2
- data/test/rubygems/test_gem_commands_help_command.rb +0 -2
- data/test/rubygems/test_gem_commands_info_command.rb +0 -2
- data/test/rubygems/test_gem_commands_install_command.rb +0 -2
- data/test/rubygems/test_gem_commands_list_command.rb +0 -2
- data/test/rubygems/test_gem_commands_lock_command.rb +0 -2
- data/test/rubygems/test_gem_commands_mirror.rb +0 -2
- data/test/rubygems/test_gem_commands_open_command.rb +0 -2
- data/test/rubygems/test_gem_commands_outdated_command.rb +0 -2
- data/test/rubygems/test_gem_commands_owner_command.rb +0 -2
- data/test/rubygems/test_gem_commands_pristine_command.rb +0 -2
- data/test/rubygems/test_gem_commands_push_command.rb +0 -2
- data/test/rubygems/test_gem_commands_query_command.rb +0 -4
- data/test/rubygems/test_gem_commands_search_command.rb +0 -2
- data/test/rubygems/test_gem_commands_server_command.rb +0 -2
- data/test/rubygems/test_gem_commands_setup_command.rb +14 -20
- data/test/rubygems/test_gem_commands_signin_command.rb +0 -2
- data/test/rubygems/test_gem_commands_signout_command.rb +0 -2
- data/test/rubygems/test_gem_commands_sources_command.rb +0 -2
- data/test/rubygems/test_gem_commands_specification_command.rb +0 -2
- data/test/rubygems/test_gem_commands_stale_command.rb +0 -2
- data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -2
- data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
- data/test/rubygems/test_gem_commands_update_command.rb +48 -2
- data/test/rubygems/test_gem_commands_which_command.rb +0 -2
- data/test/rubygems/test_gem_commands_yank_command.rb +0 -2
- data/test/rubygems/test_gem_config_file.rb +0 -2
- data/test/rubygems/test_gem_dependency.rb +0 -2
- data/test/rubygems/test_gem_dependency_installer.rb +2 -2
- data/test/rubygems/test_gem_dependency_list.rb +0 -2
- data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -2
- data/test/rubygems/test_gem_doctor.rb +0 -2
- data/test/rubygems/test_gem_ext_builder.rb +2 -8
- data/test/rubygems/test_gem_ext_cmake_builder.rb +0 -2
- data/test/rubygems/test_gem_ext_configure_builder.rb +0 -2
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -2
- data/test/rubygems/test_gem_ext_rake_builder.rb +0 -2
- data/test/rubygems/test_gem_gem_runner.rb +2 -2
- data/test/rubygems/test_gem_gemcutter_utilities.rb +0 -2
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
- data/test/rubygems/test_gem_indexer.rb +0 -2
- data/test/rubygems/test_gem_install_update_options.rb +0 -2
- data/test/rubygems/test_gem_installer.rb +34 -4
- data/test/rubygems/test_gem_local_remote_options.rb +0 -2
- data/test/rubygems/test_gem_name_tuple.rb +0 -2
- data/test/rubygems/test_gem_package.rb +17 -11
- data/test/rubygems/test_gem_package_old.rb +0 -2
- data/test/rubygems/test_gem_package_tar_header.rb +0 -2
- data/test/rubygems/test_gem_package_tar_reader.rb +0 -2
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -2
- data/test/rubygems/test_gem_package_tar_writer.rb +0 -2
- data/test/rubygems/test_gem_package_task.rb +0 -2
- data/test/rubygems/test_gem_path_support.rb +0 -2
- data/test/rubygems/test_gem_platform.rb +0 -2
- data/test/rubygems/test_gem_rdoc.rb +0 -2
- data/test/rubygems/test_gem_remote_fetcher.rb +4 -5
- data/test/rubygems/test_gem_request.rb +0 -4
- data/test/rubygems/test_gem_request_connection_pools.rb +0 -4
- data/test/rubygems/test_gem_request_set.rb +0 -2
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -2
- data/test/rubygems/test_gem_request_set_lockfile.rb +0 -2
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -2
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -2
- data/test/rubygems/test_gem_requirement.rb +8 -2
- data/test/rubygems/test_gem_resolver.rb +0 -2
- data/test/rubygems/test_gem_resolver_activation_request.rb +0 -2
- data/test/rubygems/test_gem_resolver_api_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_api_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_best_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_composed_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_conflict.rb +0 -2
- data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -2
- data/test/rubygems/test_gem_resolver_git_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_git_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_index_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_index_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_installer_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_local_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_lock_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -2
- data/test/rubygems/test_gem_resolver_specification.rb +0 -4
- data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -2
- data/test/rubygems/test_gem_security.rb +0 -2
- data/test/rubygems/test_gem_security_policy.rb +0 -2
- data/test/rubygems/test_gem_security_signer.rb +0 -2
- data/test/rubygems/test_gem_security_trust_dir.rb +0 -2
- data/test/rubygems/test_gem_server.rb +0 -4
- data/test/rubygems/test_gem_silent_ui.rb +0 -2
- data/test/rubygems/test_gem_source.rb +0 -2
- data/test/rubygems/test_gem_source_fetch_problem.rb +0 -2
- data/test/rubygems/test_gem_source_git.rb +0 -2
- data/test/rubygems/test_gem_source_installed.rb +0 -2
- data/test/rubygems/test_gem_source_list.rb +1 -2
- data/test/rubygems/test_gem_source_local.rb +0 -2
- data/test/rubygems/test_gem_source_lock.rb +0 -2
- data/test/rubygems/test_gem_source_specific_file.rb +0 -2
- data/test/rubygems/test_gem_source_vendor.rb +0 -2
- data/test/rubygems/test_gem_spec_fetcher.rb +0 -2
- data/test/rubygems/test_gem_specification.rb +10 -10
- data/test/rubygems/test_gem_stream_ui.rb +0 -2
- data/test/rubygems/test_gem_stub_specification.rb +4 -6
- data/test/rubygems/test_gem_text.rb +0 -2
- data/test/rubygems/test_gem_uninstaller.rb +0 -2
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -2
- data/test/rubygems/test_gem_uri_formatter.rb +0 -2
- data/test/rubygems/test_gem_util.rb +0 -2
- data/test/rubygems/test_gem_validator.rb +0 -2
- data/test/rubygems/test_gem_version.rb +0 -2
- data/test/rubygems/test_gem_version_option.rb +0 -2
- data/test/rubygems/test_kernel.rb +0 -2
- data/test/rubygems/test_project_sanity.rb +0 -2
- data/test/rubygems/test_remote_fetch_error.rb +0 -2
- data/test/rubygems/test_require.rb +0 -8
- metadata +29 -53
- data/bundler/man/bundle-add.1.txt +0 -58
- data/bundler/man/bundle-binstubs.1.txt +0 -48
- data/bundler/man/bundle-cache.1.txt +0 -78
- data/bundler/man/bundle-check.1.txt +0 -33
- data/bundler/man/bundle-clean.1.txt +0 -26
- data/bundler/man/bundle-config.1.txt +0 -527
- data/bundler/man/bundle-doctor.1.txt +0 -44
- data/bundler/man/bundle-exec.1.txt +0 -181
- data/bundler/man/bundle-gem.1.txt +0 -117
- data/bundler/man/bundle-info.1.txt +0 -21
- data/bundler/man/bundle-init.1.txt +0 -34
- data/bundler/man/bundle-inject.1.txt +0 -32
- data/bundler/man/bundle-install.1.txt +0 -401
- data/bundler/man/bundle-list.1.txt +0 -44
- data/bundler/man/bundle-lock.1.txt +0 -93
- data/bundler/man/bundle-open.1.txt +0 -29
- data/bundler/man/bundle-outdated.1.txt +0 -131
- data/bundler/man/bundle-platform.1.txt +0 -57
- data/bundler/man/bundle-pristine.1.txt +0 -44
- data/bundler/man/bundle-remove.1.txt +0 -34
- data/bundler/man/bundle-show.1.txt +0 -27
- data/bundler/man/bundle-update.1.txt +0 -391
- data/bundler/man/bundle-viz.1.txt +0 -39
- data/bundler/man/bundle.1.txt +0 -116
- data/bundler/man/gemfile.5.txt +0 -651
- data/bundler/man/index.txt +0 -25
data/Manifest.txt
CHANGED
@@ -32,6 +32,7 @@ bundler/lib/bundler/cli/config.rb
|
|
32
32
|
bundler/lib/bundler/cli/console.rb
|
33
33
|
bundler/lib/bundler/cli/doctor.rb
|
34
34
|
bundler/lib/bundler/cli/exec.rb
|
35
|
+
bundler/lib/bundler/cli/fund.rb
|
35
36
|
bundler/lib/bundler/cli/gem.rb
|
36
37
|
bundler/lib/bundler/cli/info.rb
|
37
38
|
bundler/lib/bundler/cli/init.rb
|
@@ -252,81 +253,55 @@ bundler/lib/bundler/vlad.rb
|
|
252
253
|
bundler/lib/bundler/worker.rb
|
253
254
|
bundler/lib/bundler/yaml_serializer.rb
|
254
255
|
bundler/man/bundle-add.1
|
255
|
-
bundler/man/bundle-add.1.
|
256
|
-
bundler/man/bundle-add.ronn
|
256
|
+
bundler/man/bundle-add.1.ronn
|
257
257
|
bundler/man/bundle-binstubs.1
|
258
|
-
bundler/man/bundle-binstubs.1.
|
259
|
-
bundler/man/bundle-binstubs.ronn
|
258
|
+
bundler/man/bundle-binstubs.1.ronn
|
260
259
|
bundler/man/bundle-cache.1
|
261
|
-
bundler/man/bundle-cache.1.
|
262
|
-
bundler/man/bundle-cache.ronn
|
260
|
+
bundler/man/bundle-cache.1.ronn
|
263
261
|
bundler/man/bundle-check.1
|
264
|
-
bundler/man/bundle-check.1.
|
265
|
-
bundler/man/bundle-check.ronn
|
262
|
+
bundler/man/bundle-check.1.ronn
|
266
263
|
bundler/man/bundle-clean.1
|
267
|
-
bundler/man/bundle-clean.1.
|
268
|
-
bundler/man/bundle-clean.ronn
|
264
|
+
bundler/man/bundle-clean.1.ronn
|
269
265
|
bundler/man/bundle-config.1
|
270
|
-
bundler/man/bundle-config.1.
|
271
|
-
bundler/man/bundle-config.ronn
|
266
|
+
bundler/man/bundle-config.1.ronn
|
272
267
|
bundler/man/bundle-doctor.1
|
273
|
-
bundler/man/bundle-doctor.1.
|
274
|
-
bundler/man/bundle-doctor.ronn
|
268
|
+
bundler/man/bundle-doctor.1.ronn
|
275
269
|
bundler/man/bundle-exec.1
|
276
|
-
bundler/man/bundle-exec.1.
|
277
|
-
bundler/man/bundle-exec.ronn
|
270
|
+
bundler/man/bundle-exec.1.ronn
|
278
271
|
bundler/man/bundle-gem.1
|
279
|
-
bundler/man/bundle-gem.1.
|
280
|
-
bundler/man/bundle-gem.ronn
|
272
|
+
bundler/man/bundle-gem.1.ronn
|
281
273
|
bundler/man/bundle-info.1
|
282
|
-
bundler/man/bundle-info.1.
|
283
|
-
bundler/man/bundle-info.ronn
|
274
|
+
bundler/man/bundle-info.1.ronn
|
284
275
|
bundler/man/bundle-init.1
|
285
|
-
bundler/man/bundle-init.1.
|
286
|
-
bundler/man/bundle-init.ronn
|
276
|
+
bundler/man/bundle-init.1.ronn
|
287
277
|
bundler/man/bundle-inject.1
|
288
|
-
bundler/man/bundle-inject.1.
|
289
|
-
bundler/man/bundle-inject.ronn
|
278
|
+
bundler/man/bundle-inject.1.ronn
|
290
279
|
bundler/man/bundle-install.1
|
291
|
-
bundler/man/bundle-install.1.
|
292
|
-
bundler/man/bundle-install.ronn
|
280
|
+
bundler/man/bundle-install.1.ronn
|
293
281
|
bundler/man/bundle-list.1
|
294
|
-
bundler/man/bundle-list.1.
|
295
|
-
bundler/man/bundle-list.ronn
|
282
|
+
bundler/man/bundle-list.1.ronn
|
296
283
|
bundler/man/bundle-lock.1
|
297
|
-
bundler/man/bundle-lock.1.
|
298
|
-
bundler/man/bundle-lock.ronn
|
284
|
+
bundler/man/bundle-lock.1.ronn
|
299
285
|
bundler/man/bundle-open.1
|
300
|
-
bundler/man/bundle-open.1.
|
301
|
-
bundler/man/bundle-open.ronn
|
286
|
+
bundler/man/bundle-open.1.ronn
|
302
287
|
bundler/man/bundle-outdated.1
|
303
|
-
bundler/man/bundle-outdated.1.
|
304
|
-
bundler/man/bundle-outdated.ronn
|
288
|
+
bundler/man/bundle-outdated.1.ronn
|
305
289
|
bundler/man/bundle-platform.1
|
306
|
-
bundler/man/bundle-platform.1.
|
307
|
-
bundler/man/bundle-platform.ronn
|
290
|
+
bundler/man/bundle-platform.1.ronn
|
308
291
|
bundler/man/bundle-pristine.1
|
309
|
-
bundler/man/bundle-pristine.1.
|
310
|
-
bundler/man/bundle-pristine.ronn
|
292
|
+
bundler/man/bundle-pristine.1.ronn
|
311
293
|
bundler/man/bundle-remove.1
|
312
|
-
bundler/man/bundle-remove.1.
|
313
|
-
bundler/man/bundle-remove.ronn
|
294
|
+
bundler/man/bundle-remove.1.ronn
|
314
295
|
bundler/man/bundle-show.1
|
315
|
-
bundler/man/bundle-show.1.
|
316
|
-
bundler/man/bundle-show.ronn
|
296
|
+
bundler/man/bundle-show.1.ronn
|
317
297
|
bundler/man/bundle-update.1
|
318
|
-
bundler/man/bundle-update.1.
|
319
|
-
bundler/man/bundle-update.ronn
|
298
|
+
bundler/man/bundle-update.1.ronn
|
320
299
|
bundler/man/bundle-viz.1
|
321
|
-
bundler/man/bundle-viz.1.
|
322
|
-
bundler/man/bundle-viz.ronn
|
300
|
+
bundler/man/bundle-viz.1.ronn
|
323
301
|
bundler/man/bundle.1
|
324
|
-
bundler/man/bundle.1.
|
325
|
-
bundler/man/bundle.ronn
|
302
|
+
bundler/man/bundle.1.ronn
|
326
303
|
bundler/man/gemfile.5
|
327
304
|
bundler/man/gemfile.5.ronn
|
328
|
-
bundler/man/gemfile.5.txt
|
329
|
-
bundler/man/index.txt
|
330
305
|
hide_lib_for_update/note.txt
|
331
306
|
lib/rubygems.rb
|
332
307
|
lib/rubygems/available_set.rb
|
@@ -401,6 +376,7 @@ lib/rubygems/installer_uninstaller_utils.rb
|
|
401
376
|
lib/rubygems/local_remote_options.rb
|
402
377
|
lib/rubygems/mock_gem_ui.rb
|
403
378
|
lib/rubygems/name_tuple.rb
|
379
|
+
lib/rubygems/openssl.rb
|
404
380
|
lib/rubygems/package.rb
|
405
381
|
lib/rubygems/package/digest_io.rb
|
406
382
|
lib/rubygems/package/file_source.rb
|
data/Rakefile
CHANGED
@@ -100,7 +100,7 @@ end
|
|
100
100
|
|
101
101
|
desc "Install rubygems to local system"
|
102
102
|
task :install => [:clear_package, :package] do
|
103
|
-
sh "ruby -Ilib bin/gem install --no-document pkg/rubygems-update-#{v}.gem && update_rubygems --no-document
|
103
|
+
sh "ruby -Ilib bin/gem install --no-document pkg/rubygems-update-#{v}.gem && update_rubygems --no-document"
|
104
104
|
end
|
105
105
|
|
106
106
|
desc "Clears previously built package"
|
@@ -108,6 +108,13 @@ task :clear_package do
|
|
108
108
|
rm_rf "pkg"
|
109
109
|
end
|
110
110
|
|
111
|
+
desc "Generates the changelog for a specific target version"
|
112
|
+
task :generate_changelog, [:version] do |_t, opts|
|
113
|
+
require_relative "util/changelog"
|
114
|
+
|
115
|
+
Changelog.for_rubygems(opts[:version]).cut!
|
116
|
+
end
|
117
|
+
|
111
118
|
desc "Release rubygems-#{v}"
|
112
119
|
task :release => :prerelease do
|
113
120
|
Rake::Task["package"].invoke
|
@@ -271,50 +278,7 @@ namespace 'blog' do
|
|
271
278
|
name = `git config --get user.name`.strip
|
272
279
|
email = `git config --get user.email`.strip
|
273
280
|
|
274
|
-
history =
|
275
|
-
|
276
|
-
history.force_encoding Encoding::UTF_8
|
277
|
-
|
278
|
-
_, change_log, = history.split %r{^===\s*\d.*}, 3
|
279
|
-
|
280
|
-
change_types = []
|
281
|
-
|
282
|
-
lines = change_log.strip.lines
|
283
|
-
change_log = []
|
284
|
-
|
285
|
-
while line = lines.shift do
|
286
|
-
case line
|
287
|
-
when /(^[A-Z].*)/ then
|
288
|
-
change_types << $1
|
289
|
-
change_log << "_#{$1}_\n"
|
290
|
-
when /^\*/ then
|
291
|
-
entry = [line.strip]
|
292
|
-
|
293
|
-
while /^ \S/ =~ lines.first do
|
294
|
-
entry << lines.shift.strip
|
295
|
-
end
|
296
|
-
|
297
|
-
change_log << "#{entry.join ' '}\n"
|
298
|
-
else
|
299
|
-
change_log << line
|
300
|
-
end
|
301
|
-
end
|
302
|
-
|
303
|
-
change_log = change_log.join
|
304
|
-
|
305
|
-
change_types = change_types.map do |change_type|
|
306
|
-
change_type.downcase.tr '^a-z ', ''
|
307
|
-
end
|
308
|
-
|
309
|
-
last_change_type = change_types.pop
|
310
|
-
|
311
|
-
if change_types.empty?
|
312
|
-
change_types = ''
|
313
|
-
else
|
314
|
-
change_types = change_types.join(', ') << ' and '
|
315
|
-
end
|
316
|
-
|
317
|
-
change_types << last_change_type
|
281
|
+
history = Changelog.for_rubygems(v.to_s)
|
318
282
|
|
319
283
|
require 'tempfile'
|
320
284
|
|
@@ -327,7 +291,7 @@ author: #{name}
|
|
327
291
|
author_email: #{email}
|
328
292
|
---
|
329
293
|
|
330
|
-
RubyGems #{v} includes #{
|
294
|
+
RubyGems #{v} includes #{history.change_types_for_blog}.
|
331
295
|
|
332
296
|
To update to the latest RubyGems you can run:
|
333
297
|
|
@@ -337,7 +301,7 @@ If you need to upgrade or downgrade please follow the [how to upgrade/downgrade
|
|
337
301
|
RubyGems][upgrading] instructions. To install RubyGems by hand see the
|
338
302
|
[Download RubyGems][download] page.
|
339
303
|
|
340
|
-
#{
|
304
|
+
#{history.release_notes_for_blog.join("\n")}
|
341
305
|
|
342
306
|
SHA256 Checksums:
|
343
307
|
|
@@ -383,7 +347,6 @@ end
|
|
383
347
|
|
384
348
|
module Rubygems
|
385
349
|
class ProjectFiles
|
386
|
-
|
387
350
|
def self.all
|
388
351
|
files = []
|
389
352
|
exclude = %r{\A(?:\.|dev_gems|bundler/(?!lib|man|exe|[^/]+\.md|bundler.gemspec)|util/)}
|
@@ -397,7 +360,6 @@ module Rubygems
|
|
397
360
|
|
398
361
|
files.sort
|
399
362
|
end
|
400
|
-
|
401
363
|
end
|
402
364
|
end
|
403
365
|
|
data/bundler/CHANGELOG.md
CHANGED
@@ -1,11 +1,58 @@
|
|
1
|
-
|
1
|
+
# 2.2.0.rc.2 (October 6, 2020)
|
2
2
|
|
3
|
-
|
3
|
+
## Minor enhancements:
|
4
|
+
|
5
|
+
- Fix ls-files matching regexp [#3845](https://github.com/rubygems/rubygems/pull/3845)
|
6
|
+
- Remove redundant `bundler/setup` require from `spec_helper.rb` generated by `bundle gem` [#3791](https://github.com/rubygems/rubygems/pull/3791)
|
7
|
+
|
8
|
+
## Bug fixes:
|
9
|
+
|
10
|
+
- Deduplicate spec groups [#3965](https://github.com/rubygems/rubygems/pull/3965)
|
11
|
+
- Fix some cases of running `bundler` on a path including brackets [#3854](https://github.com/rubygems/rubygems/pull/3854)
|
12
|
+
- Don't warn when deinit'ing submodules [#3969](https://github.com/rubygems/rubygems/pull/3969)
|
13
|
+
- Make `bundle clean --force` leave default gem executables untouched [#3907](https://github.com/rubygems/rubygems/pull/3907)
|
14
|
+
- Prioritize `path.system` over `path` when it makes sense [#3933](https://github.com/rubygems/rubygems/pull/3933)
|
15
|
+
- Sort requirements in Gem::Requirement to succeed comparison with different order [#3889](https://github.com/rubygems/rubygems/pull/3889)
|
16
|
+
- Print bug report template to standard error [#3924](https://github.com/rubygems/rubygems/pull/3924)
|
17
|
+
- Restore `bundle cache --all` in all cases [#3914](https://github.com/rubygems/rubygems/pull/3914)
|
18
|
+
- Move shebang to the top of `bin/console` template [#3927](https://github.com/rubygems/rubygems/pull/3927)
|
19
|
+
- Fix platform issues when running under a frozen bundle [#3909](https://github.com/rubygems/rubygems/pull/3909)
|
20
|
+
- Fix deprecation messages for `bundle install` flags, the config should be --local as before [#3917](https://github.com/rubygems/rubygems/pull/3917)
|
21
|
+
- Look for absolute path when removing bundler/setup from RUBYOPT in Bundler.unbundled_env method [#3877](https://github.com/rubygems/rubygems/pull/3877)
|
22
|
+
- Fix incorrect re-resolution when path gem excluded and not available [#3902](https://github.com/rubygems/rubygems/pull/3902)
|
23
|
+
- Fix error when building error message in `bundler/inline` [#3901](https://github.com/rubygems/rubygems/pull/3901)
|
24
|
+
- Fix regression related to locked ruby [#3900](https://github.com/rubygems/rubygems/pull/3900)
|
25
|
+
- Expand load paths in standalone setup.rb file [#3522](https://github.com/rubygems/rubygems/pull/3522)
|
26
|
+
- Fix broken exception recovery code when installing plugins [#3487](https://github.com/rubygems/rubygems/pull/3487)
|
27
|
+
- Fix incorrect build info on development versions of bundler, and on bundler versions installed as a default gem [#3778](https://github.com/rubygems/rubygems/pull/3778)
|
28
|
+
- Avoid autoloading `openssl` to try help with jruby load service issues [#3809](https://github.com/rubygems/rubygems/pull/3809)
|
29
|
+
- Fix `rake release` pushing all local tags instead of only the release tag [#3785](https://github.com/rubygems/rubygems/pull/3785)
|
30
|
+
- Fix `rake release` aborting when credentials file is missing, even if properly configured through XDG [#3783](https://github.com/rubygems/rubygems/pull/3783)
|
31
|
+
|
32
|
+
## Deprecations:
|
33
|
+
|
34
|
+
- Deprecate `bundle cache --all` flag [#3932](https://github.com/rubygems/rubygems/pull/3932)
|
35
|
+
|
36
|
+
## Features:
|
37
|
+
|
38
|
+
- Add `bundle fund` command [#3390](https://github.com/rubygems/rubygems/pull/3390)
|
39
|
+
|
40
|
+
## Documentation:
|
41
|
+
|
42
|
+
- Correct grammar in Gemfile docs [#3990](https://github.com/rubygems/rubygems/pull/3990)
|
43
|
+
- Fix typo in `bundle pristine` warning message [#3959](https://github.com/rubygems/rubygems/pull/3959)
|
44
|
+
- Improve human readable fallback version of CLI help messages [#3921](https://github.com/rubygems/rubygems/pull/3921)
|
45
|
+
- Note CLI flag deprecations in documentation [#3915](https://github.com/rubygems/rubygems/pull/3915)
|
46
|
+
- Update man page and deprecation warning for binstubs --all [#3872](https://github.com/rubygems/rubygems/pull/3872)
|
47
|
+
|
48
|
+
# 2.2.0.rc.1 (July 2, 2020)
|
49
|
+
|
50
|
+
## Major enhancements:
|
4
51
|
|
5
52
|
- Windows support. There's still gotchas and unimplemented features, but a Windows CI is now enforced.
|
6
53
|
- Full multiplatform support. Bundler should now seamlessly handle multiplatform `Gemfile` or `gems.rb` files.
|
7
54
|
|
8
|
-
Features:
|
55
|
+
## Features:
|
9
56
|
|
10
57
|
- `bundle info` now includes gem metadata [#7376](https://github.com/rubygems/bundler/pull/7376)
|
11
58
|
- `bundle list --without-group` and `bundle list --only-group` now support space separated list of groups in addition to single groups [#7404](https://github.com/rubygems/bundler/pull/7404)
|
@@ -17,7 +64,7 @@ Features:
|
|
17
64
|
- `bundle gem` now supports a `--ci` flag and a `gem.ci` configuration that adds CI config files for the main CI providers to the generated gem skeleton [#3667](https://github.com/rubygems/rubygems/pull/3667)
|
18
65
|
- Allow setting a tag prefix to be used by release tasks [#3766](https://github.com/rubygems/rubygems/pull/3766)
|
19
66
|
|
20
|
-
|
67
|
+
## Minor enhancements:
|
21
68
|
|
22
69
|
- `bundle outdated` now prints output in columns for better readability [#4474](https://github.com/rubygems/bundler/pull/4474)
|
23
70
|
- bundler's `release` rake task now prints a better message when not being logged in and trying to push a gem [#7513](https://github.com/rubygems/bundler/pull/7513)
|
@@ -35,7 +82,7 @@ Improvements:
|
|
35
82
|
- Remove some requires that might workaround some autoloading issues on jruby [#3771](https://github.com/rubygems/rubygems/pull/3771)
|
36
83
|
- Unswallow an error that should make some random crashes on jruby easier to troubleshoot [#3774](https://github.com/rubygems/rubygems/pull/3774)
|
37
84
|
|
38
|
-
|
85
|
+
## Bug fixes:
|
39
86
|
|
40
87
|
- Fix `bundle pristine` removing gems with local overrides. Be conservative by printing a warning and skipping the removal [#7423](https://github.com/rubygems/bundler/pull/7423)
|
41
88
|
- Fix multiplaform resolution edge cases [#7522](https://github.com/rubygems/bundler/pull/7522) and [#7578](https://github.com/rubygems/bundler/pull/7578)
|
@@ -63,38 +110,38 @@ Bugfixes:
|
|
63
110
|
- Fix `--no-cache` to `bundle install` being unintentionally deprecated [#3688](https://github.com/rubygems/rubygems/pull/3688)
|
64
111
|
- Avoid calling `LoadError#message` to fix performance regression in future ruby 2.8 [#3762](https://github.com/rubygems/rubygems/pull/3762)
|
65
112
|
|
66
|
-
|
113
|
+
# 2.1.4 (January 5, 2020)
|
67
114
|
|
68
|
-
|
115
|
+
## Bug fixes:
|
69
116
|
|
70
117
|
- Fix `net-http-pipeline` no longer being allowed in Gemfiles if already installed in the system due to our vendored version of `net-http-persistent` optionally requiring it [#7529](https://github.com/bundler/bundler/pull/7529)
|
71
118
|
- Fix inline gems no longer being requirable if no Gemfile is present in the directory hierarchy [#7537](https://github.com/bundler/bundler/pull/7537)
|
72
119
|
|
73
|
-
|
120
|
+
# 2.1.3 (January 2, 2020)
|
74
121
|
|
75
|
-
|
122
|
+
## Bug fixes:
|
76
123
|
|
77
124
|
- Fix `rake build` when path has spaces on it [#7514](https://github.com/bundler/bundler/pull/7514)
|
78
125
|
- Fix `rake release` git push tasks when the running shell has `git` as an alias of another command (like `hub`) [#7510](https://github.com/bundler/bundler/pull/7510)
|
79
126
|
- Fix some circular require warnings [#7520](https://github.com/bundler/bundler/pull/7520)
|
80
127
|
- Fix `bundle config set deployment true` recommended alternative to `bundle config --deployment` to behave in the same way as the `--deployment` flag [#7519](https://github.com/bundler/bundler/pull/7519)
|
81
128
|
|
82
|
-
|
129
|
+
# 2.1.2 (December 20, 2019)
|
83
130
|
|
84
|
-
|
131
|
+
## Bug fixes:
|
85
132
|
|
86
133
|
- Restore an explicit `require "rubygems"` on top `rubygems_integration.rb` to avoid some missing constant errors under some convoluted setups [#7505](https://github.com/rubygems/bundler/pull/7505)
|
87
134
|
|
88
|
-
|
135
|
+
# 2.1.1 (December 17, 2019)
|
89
136
|
|
90
|
-
|
137
|
+
## Bug fixes:
|
91
138
|
|
92
139
|
- Fix some cases of shelling out to `rubygems` still being silent [#7493](https://github.com/rubygems/bundler/pull/7493)
|
93
140
|
- Restore compatibility with `rubygems-bundler` so that binstubs work under `RVM` [#7498](https://github.com/rubygems/bundler/pull/7498)
|
94
141
|
|
95
|
-
|
142
|
+
# 2.1.0 (December 15, 2019)
|
96
143
|
|
97
|
-
Features:
|
144
|
+
## Features:
|
98
145
|
|
99
146
|
- Add support for new default gems. In particular,
|
100
147
|
|
@@ -104,27 +151,27 @@ Features:
|
|
104
151
|
|
105
152
|
plus other PRs removing or lazily loading usages of these gems from other places to not interfere with user's choice, such as [#7471](https://github.com/rubygems/bundler/pull/7471) or [#7473](https://github.com/bundler/bundler/pull/7473)
|
106
153
|
|
107
|
-
|
154
|
+
## Bug fixes:
|
108
155
|
|
109
156
|
- Fix `bundle exec rake install` failing [#7474](https://github.com/rubygems/bundler/pull/7474)
|
110
157
|
- Fix `bundle exec`'ing to rubygems being silent [#7442](https://github.com/rubygems/bundler/pull/7442)
|
111
158
|
- Restore previous `BUNDLE_GEMFILE` in `bundler/inline` [#7418](https://github.com/rubygems/bundler/pull/7418)
|
112
159
|
- Fix error when using `gem` DSL's `:glob` option for selecting gemspecs from a specific source [#7419](https://github.com/rubygems/bundler/pull/7419)
|
113
160
|
|
114
|
-
|
161
|
+
## Minor enhancements:
|
115
162
|
|
116
163
|
- `bundle config` no longer warns when using "old interface" (might be deprecated again in the future) [#7475](https://github.com/rubygems/bundler/pull/7475)
|
117
164
|
- `bundle update` no longer warns when used without arguments (might be deprecated again in the future) [#7475](https://github.com/rubygems/bundler/pull/7475)
|
118
165
|
|
119
|
-
|
166
|
+
# 2.1.0.pre.3 (November 12, 2019)
|
120
167
|
|
121
|
-
Features:
|
168
|
+
## Features:
|
122
169
|
|
123
170
|
- Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/rubygems/bundler/pull/7361)
|
124
171
|
- Reconcile `bundle cache` vs `bundle package` everywhere. Now in docs, CLI help and everywhere else `bundle cache` is the preferred version and `bundle package` remains as an alias [#7389](https://github.com/rubygems/bundler/pull/7389)
|
125
172
|
- Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/rubygems/bundler/pull/7394)
|
126
173
|
|
127
|
-
|
174
|
+
## Bug fixes:
|
128
175
|
|
129
176
|
- Fix typos deprecation message and upgrading docs [#7374](https://github.com/rubygems/bundler/pull/7374)
|
130
177
|
- Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/rubygems/bundler/pull/7385)
|
@@ -133,44 +180,44 @@ Bugfixes:
|
|
133
180
|
- Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/rubygems/bundler/pull/7416)
|
134
181
|
- Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/rubygems/bundler/pull/7417)
|
135
182
|
|
136
|
-
|
183
|
+
# 2.1.0.pre.2 (September 15, 2019)
|
137
184
|
|
138
|
-
|
185
|
+
## Bug fixes:
|
139
186
|
|
140
187
|
- Fix `bundle clean` trying to delete non-existent directory ([#7340](https://github.com/rubygems/bundler/pull/7340))
|
141
188
|
- Fix warnings about keyword argument separation on ruby 2.7 ([#7337](https://github.com/rubygems/bundler/pull/7337))
|
142
189
|
|
143
|
-
|
144
|
-
|
145
|
-
One of the biggest changes in bundler 2.1.0 is that deprecations for upcoming
|
146
|
-
breaking changes in bundler 3 will be turned on by default. We do this to grab
|
147
|
-
feedback and communicate early to our users the kind of changes we're intending
|
148
|
-
to ship with bundler 3. See
|
149
|
-
[#6965](https://github.com/rubygems/bundler/pull/6965).
|
150
|
-
|
151
|
-
Another important improvement is a better coexistence between bundler
|
152
|
-
installations and the default copy of bundler that comes with ruby installed as
|
153
|
-
a default gem. Since bundler is shipped as a default gem with ruby, a number of
|
154
|
-
users have been affected by issues where bundler ends up failing due to version
|
155
|
-
mismatches, because at some point of the execution, bundler switches to run the
|
156
|
-
default copy instead of the expected version. A number of PRs have been focused
|
157
|
-
on minimizing (hopefully eliminating) this, such as
|
158
|
-
[#7100](https://github.com/rubygems/bundler/pull/7100),
|
159
|
-
[#7137](https://github.com/rubygems/bundler/pull/7137),
|
160
|
-
[#6996](https://github.com/rubygems/bundler/pull/6996),
|
161
|
-
[#7056](https://github.com/rubygems/bundler/pull/7056),
|
162
|
-
[#7062](https://github.com/rubygems/bundler/pull/7062),
|
163
|
-
[#7193](https://github.com/rubygems/bundler/pull/7193),
|
164
|
-
[#7216](https://github.com/rubygems/bundler/pull/7216),
|
165
|
-
[#7274](https://github.com/rubygems/bundler/pull/7274)
|
166
|
-
|
167
|
-
Deprecations:
|
190
|
+
# 2.1.0.pre.1 (August 28, 2019)
|
191
|
+
|
192
|
+
One of the biggest changes in bundler 2.1.0 is that deprecations for upcoming
|
193
|
+
breaking changes in bundler 3 will be turned on by default. We do this to grab
|
194
|
+
feedback and communicate early to our users the kind of changes we're intending
|
195
|
+
to ship with bundler 3. See
|
196
|
+
[#6965](https://github.com/rubygems/bundler/pull/6965).
|
197
|
+
|
198
|
+
Another important improvement is a better coexistence between bundler
|
199
|
+
installations and the default copy of bundler that comes with ruby installed as
|
200
|
+
a default gem. Since bundler is shipped as a default gem with ruby, a number of
|
201
|
+
users have been affected by issues where bundler ends up failing due to version
|
202
|
+
mismatches, because at some point of the execution, bundler switches to run the
|
203
|
+
default copy instead of the expected version. A number of PRs have been focused
|
204
|
+
on minimizing (hopefully eliminating) this, such as
|
205
|
+
[#7100](https://github.com/rubygems/bundler/pull/7100),
|
206
|
+
[#7137](https://github.com/rubygems/bundler/pull/7137),
|
207
|
+
[#6996](https://github.com/rubygems/bundler/pull/6996),
|
208
|
+
[#7056](https://github.com/rubygems/bundler/pull/7056),
|
209
|
+
[#7062](https://github.com/rubygems/bundler/pull/7062),
|
210
|
+
[#7193](https://github.com/rubygems/bundler/pull/7193),
|
211
|
+
[#7216](https://github.com/rubygems/bundler/pull/7216),
|
212
|
+
[#7274](https://github.com/rubygems/bundler/pull/7274)
|
213
|
+
|
214
|
+
## Deprecations:
|
168
215
|
|
169
216
|
* See the [the upgrading document](UPGRADING.md) for a detailed explanation of
|
170
217
|
the deprecations that are getting enabled in bundler 2.1, and the future
|
171
218
|
breaking changes in bundler 3.
|
172
219
|
|
173
|
-
Features:
|
220
|
+
## Features:
|
174
221
|
|
175
222
|
- Reimplement `config` command using subcommands ([#5981](https://github.com/rubygems/bundler/pull/5981))
|
176
223
|
- Add `bundle plugin list` command ([#6120](https://github.com/rubygems/bundler/pull/6120))
|
@@ -188,7 +235,7 @@ Features:
|
|
188
235
|
- Several improvements on new gem templates ([#6924](https://github.com/rubygems/bundler/pull/6924), [#6968](https://github.com/bundler/bundler/pull/6968), [#7209](https://github.com/bundler/bundler/pull/7209), [#7222](https://github.com/bundler/bundler/pull/7222), [#7238](https://github.com/bundler/bundler/pull/7238))
|
189
236
|
- Add `--[no-]git` option to `bundle gem` to generate non source control gems. Useful for monorepos, for example ([#7263](https://github.com/rubygems/bundler/pull/7263))
|
190
237
|
|
191
|
-
|
238
|
+
## Bug fixes:
|
192
239
|
|
193
240
|
- Raise when the same gem is available in multiple sources, and show a suggestion to solve it ([#5985](https://github.com/rubygems/bundler/pull/5985))
|
194
241
|
- Validate that bundler has permissions to write to the tmp directory, and raise with a meaningful error otherwise ([#5954](https://github.com/rubygems/bundler/pull/5954))
|
@@ -226,7 +273,7 @@ Bugfixes:
|
|
226
273
|
- Fix `bundle doctor` command ([#7309](https://github.com/rubygems/bundler/pull/7309))
|
227
274
|
- Fix bundler giving an unclear recommendation when duplicated gems are found in the Gemfile ([#7302](https://github.com/rubygems/bundler/pull/7302))
|
228
275
|
|
229
|
-
Documentation:
|
276
|
+
## Documentation:
|
230
277
|
|
231
278
|
- Fix typo on a file extension in `bundle.ronn` [#7146](https://github.com/rubygems/bundler/pull/7146)
|
232
279
|
- Fix incorrect default value for `cache_path` configuration ([#7229](https://github.com/rubygems/bundler/pull/7229))
|
@@ -234,13 +281,13 @@ Documentation:
|
|
234
281
|
- Fix incorrect sections when explaining `:git`, `:branch`, and `:ref` options ([#7265](https://github.com/rubygems/bundler/pull/7265))
|
235
282
|
- Fix mentions to remembered options in docs to explain the current state ([#7242](https://github.com/rubygems/bundler/pull/7242))
|
236
283
|
|
237
|
-
Internally, there's also been a bunch of improvements in our development
|
238
|
-
environment, test suite, policies, contributing docs, and a bunch of cleanups of
|
239
|
-
old compatibility code.
|
284
|
+
Internally, there's also been a bunch of improvements in our development
|
285
|
+
environment, test suite, policies, contributing docs, and a bunch of cleanups of
|
286
|
+
old compatibility code.
|
240
287
|
|
241
|
-
|
288
|
+
# 2.0.2 (June 13, 2019)
|
242
289
|
|
243
|
-
|
290
|
+
## Minor enhancements:
|
244
291
|
|
245
292
|
- Fixes for Bundler integration with ruby-src ([#6941](https://github.com/rubygems/bundler/pull/6941), [#6973](https://github.com/bundler/bundler/pull/6973), [#6977](https://github.com/bundler/bundler/pull/6977), [#6315](https://github.com/bundler/bundler/pull/6315), [#7061](https://github.com/bundler/bundler/pull/7061))
|
246
293
|
- Use `__dir__` instead of `__FILE__` when generating a gem with `bundle gem` ([#6503](https://github.com/rubygems/bundler/pull/6503))
|
@@ -259,37 +306,40 @@ Changes:
|
|
259
306
|
- Fixed an issue where the `github` source was not using `https` by default that we mentioned in the 2.0 release ([#7182](https://github.com/rubygems/bundler/pull/7182))
|
260
307
|
- Fixed an issue where `rake release` was not outputting the message to users asking for a 2fa token ([#7199](https://github.com/rubygems/bundler/pull/7199))
|
261
308
|
|
262
|
-
Documentation:
|
309
|
+
## Documentation:
|
263
310
|
|
264
311
|
- Fix incorrect documented `BUNDLE_PATH_RELATIVE_TO_CWD` env var ([#6751](https://github.com/rubygems/bundler/pull/6751))
|
265
312
|
- Update URLs in Bundler's documentation to use `https` ([#6935](https://github.com/rubygems/bundler/pull/6935))
|
266
313
|
|
267
|
-
|
314
|
+
# 2.0.1 (January 4, 2019)
|
268
315
|
|
269
|
-
|
316
|
+
## Bug fixes:
|
270
317
|
|
271
318
|
- Relaxed RubyGems requirement to `>= 2.5.0` ([#6867](https://github.com/rubygems/bundler/pull/6867))
|
272
319
|
|
273
|
-
|
320
|
+
# 2.0.0 (January 3, 2019)
|
274
321
|
|
275
|
-
No
|
322
|
+
No changes.
|
276
323
|
|
277
|
-
|
324
|
+
# 2.0.0.pre.3 (December 30, 2018)
|
278
325
|
|
279
|
-
Breaking
|
326
|
+
## Breaking changes:
|
280
327
|
|
281
328
|
- Bundler 2 now requires RubyGems 3.0.0 at minimum
|
282
329
|
|
283
|
-
|
330
|
+
## Bug fixes:
|
284
331
|
|
285
332
|
- Ruby 2.6 compatibility fixes (@segiddins)
|
333
|
+
|
334
|
+
## Minor enhancements:
|
335
|
+
|
286
336
|
- Import changes from Bundler 1.17.3 release
|
287
337
|
|
288
|
-
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
338
|
+
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
289
339
|
|
290
|
-
|
340
|
+
# 2.0.0.pre.2 (November 27, 2018)
|
291
341
|
|
292
|
-
Breaking
|
342
|
+
## Breaking changes:
|
293
343
|
|
294
344
|
- `:github` source in the Gemfile now defaults to using HTTPS
|
295
345
|
|
@@ -297,44 +347,44 @@ Changes
|
|
297
347
|
|
298
348
|
- Add compatibility for Bundler merge into ruby-src
|
299
349
|
|
300
|
-
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
350
|
+
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
301
351
|
|
302
|
-
|
352
|
+
# 2.0.0.pre.1 (November 9, 2018)
|
303
353
|
|
304
|
-
Breaking
|
354
|
+
## Breaking changes:
|
305
355
|
|
306
356
|
- Dropped support for versions of Ruby under 2.3
|
307
357
|
- Dropped support for version of RubyGems under 2.5
|
308
358
|
- Moved error messages from STDOUT to STDERR
|
309
359
|
|
310
|
-
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
360
|
+
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
311
361
|
|
312
|
-
|
362
|
+
# 1.17.3 (December 27, 2018)
|
313
363
|
|
314
|
-
|
364
|
+
## Bug fixes:
|
315
365
|
|
316
366
|
- Fix a Bundler error when installing gems on old versions of RubyGems ([#6839](https://github.com/rubygems/bundler/issues/6839), @colby-swandale)
|
317
367
|
- Fix a rare issue where Bundler was removing itself after a `bundle clean` ([#6829](https://github.com/rubygems/bundler/issues/6829), @colby-swandale)
|
318
368
|
|
319
|
-
Documentation:
|
369
|
+
## Documentation:
|
320
370
|
|
321
371
|
- Add entry for the `bundle remove` command to the main Bundler manual page
|
322
372
|
|
323
|
-
|
373
|
+
# 1.17.2 (December 11, 2018)
|
324
374
|
|
325
375
|
- Add compatibility for bundler merge with Ruby 2.6
|
326
376
|
|
327
|
-
|
377
|
+
# 1.17.1 (October 25, 2018)
|
328
378
|
|
329
379
|
- Convert `Pathname`s to `String`s before sorting them, fixing #6760 and #6758 ([#6761](https://github.com/rubygems/bundler/pull/6761), @alexggordon)
|
330
380
|
|
331
|
-
|
381
|
+
# 1.17.0 (October 25, 2018)
|
332
382
|
|
333
|
-
No
|
383
|
+
No changes.
|
334
384
|
|
335
|
-
|
385
|
+
# 1.17.0.pre.2 (October 13, 2018)
|
336
386
|
|
337
|
-
Features:
|
387
|
+
## Features:
|
338
388
|
|
339
389
|
- Configure Bundler home, cache, config and plugin directories with `BUNDLE_USER_HOME`, `BUNDLE_USER_CACHE`, `BUNDLE_USER_CONFIG` and `BUNDLE_USER_PLUGIN` env vars ([#4333](https://github.com/rubygems/bundler/issues/4333), @gwerbin)
|
340
390
|
- Add `--all` option to `bundle binstubs` that will generate an executable file for all gems with commands in the bundle
|
@@ -343,14 +393,14 @@ Features:
|
|
343
393
|
- Add error message to `bundle add` to check adding duplicate gems to the Gemfile
|
344
394
|
- When asking for `sudo`, Bundler will show a list of folders/files that require elevated permissions to write to.
|
345
395
|
|
346
|
-
The following new features are available but are not enabled by default. These are intended to be tested by users for the upcoming release of Bundler 2.
|
396
|
+
The following new features are available but are not enabled by default. These are intended to be tested by users for the upcoming release of Bundler 2.
|
347
397
|
|
348
398
|
- Improve deprecation warning message for `bundle show` command
|
349
399
|
- Improve deprecation warning message for the `--force` option in `bundle install`
|
350
400
|
|
351
|
-
|
401
|
+
# 1.17.0.pre.1 (September 24, 2018)
|
352
402
|
|
353
|
-
Features:
|
403
|
+
## Features:
|
354
404
|
|
355
405
|
- Check folder/file permissions of the Bundle home directory in the `bundle doctor` command ([#5786](https://github.com/rubygems/bundler/issues/5786), @ajwann)
|
356
406
|
- Remove compiled gem extensions when running `bundle clean` ([#5596](https://github.com/rubygems/bundler/issues/5596), @akhramov)
|
@@ -367,21 +417,21 @@ Features:
|
|
367
417
|
- Add `--without-group` and `--only-group` options to `bundle list` ([#6564](https://github.com/rubygems/bundler/issues/6564), @agrim123)
|
368
418
|
- Add `--gemfile` option to the `bundle exec` command ([#5924](https://github.com/rubygems/bundler/issues/5924), @ankitkataria)
|
369
419
|
|
370
|
-
The following new features are available but are not enabled by default. These are intended to be tested by users for the upcoming release of Bundler 2.
|
420
|
+
The following new features are available but are not enabled by default. These are intended to be tested by users for the upcoming release of Bundler 2.
|
371
421
|
|
372
422
|
- Make `install --path` relative to the current working directory ([#2048](https://github.com/rubygems/bundler/issues/2048), @igorbozato)
|
373
423
|
- Auto-configure job count ([#5808](https://github.com/rubygems/bundler/issues/5808), @segiddins)
|
374
424
|
- Use the Gem Version Promoter for major gem updates ([#5993](https://github.com/rubygems/bundler/issues/5993), @segiddins)
|
375
425
|
- Add config option to add the Ruby scope to `bundle config path` when configured globally (@segiddins)
|
376
426
|
|
377
|
-
|
427
|
+
# 1.16.6 (October 5, 2018)
|
378
428
|
|
379
|
-
|
429
|
+
## Minor enhancements:
|
380
430
|
|
381
431
|
- Add an error message when adding a gem with `bundle add` that's already in the bundle ([#6341](https://github.com/rubygems/bundler/issues/6341), @agrim123)
|
382
432
|
- Add Homepage, Source Code and Changelog URI metadata fields to the `bundle gem` gemspec template (@walf443)
|
383
433
|
|
384
|
-
|
434
|
+
## Bug fixes:
|
385
435
|
|
386
436
|
- Fix issue where updating a gem resulted in the gem's version being downgraded when `BUNDLE_ONLY_UPDATE_TO_NEWER_VERSIONS` was set ([#6529](https://github.com/rubygems/bundler/issues/6529), @theflow)
|
387
437
|
- Fix some rescue calls that don't specifiy error type (@utilum)
|
@@ -390,19 +440,19 @@ Bugfixes:
|
|
390
440
|
- Refactor check for OpenSSL in `bundle env` (@voxik)
|
391
441
|
- Remove an unnecessary assignment in Metadata (@voxik)
|
392
442
|
|
393
|
-
Documentation:
|
443
|
+
## Documentation:
|
394
444
|
|
395
445
|
- Update docs to reflect revised guidance to check in Gemfile.lock into version control for gems ([#5879](https://github.com/rubygems/bundler/issues/5879), @arbonap)
|
396
446
|
- Add documentation for the `--all` flag in `bundle update` (@agrim123)
|
397
447
|
- Update README to use `bundle add` in usage examples (@hdf1986)
|
398
448
|
|
399
|
-
|
449
|
+
# 1.16.5 (September 18, 2018)
|
400
450
|
|
401
|
-
|
451
|
+
## Minor enhancements:
|
402
452
|
|
403
453
|
- Add support for TruffleRuby (@eregon)
|
404
454
|
|
405
|
-
|
455
|
+
## Bug fixes:
|
406
456
|
|
407
457
|
- Avoid printing git errors when checking the version on incorrectly packaged versions of Bundler ([#6453](https://github.com/rubygems/bundler/issues/6453), @greysteil)
|
408
458
|
- Fix issue where Bundler does not check the given class when comparing equality in DepProxy (@ChrisBr)
|
@@ -412,15 +462,15 @@ Bugfixes:
|
|
412
462
|
- Check that Bundler::Deprecate is not an autoload constant ([#6163](https://github.com/rubygems/bundler/issues/6163), @eregon)
|
413
463
|
- Prefer non-pre-release versions when performing a `bundle update --patch` ([#6684](https://github.com/rubygems/bundler/issues/6684), @segiddins)
|
414
464
|
|
415
|
-
|
465
|
+
# 1.16.4 (August 17, 2018)
|
416
466
|
|
417
|
-
|
467
|
+
## Minor enhancements:
|
418
468
|
|
419
469
|
- Welcome new members to the Bundler core team (@indirect)
|
420
470
|
- Don't mutate original error trees when determining version_conflict_message (@greysteil)
|
421
471
|
- Update vendored Molinillo to 0.6.6 (@segiddins)
|
422
472
|
|
423
|
-
|
473
|
+
## Bug fixes:
|
424
474
|
|
425
475
|
- Reword bundle update regression message to be more clear to the user when a gem's version is downgraded ([#6584](https://github.com/rubygems/bundler/issues/6584), @ralphbolo)
|
426
476
|
- Respect --conservative flag when updating a dependency group ([#6560](https://github.com/rubygems/bundler/issues/6560), @greysteil)
|
@@ -429,17 +479,17 @@ Bugfixes:
|
|
429
479
|
- Use UTF-8 for reading files including Gemfile ([#6660](https://github.com/rubygems/bundler/issues/6660), @eregon)
|
430
480
|
- Remove unnecessary `while` loop in path resolver helper (@ojab)
|
431
481
|
|
432
|
-
Documentation:
|
482
|
+
## Documentation:
|
433
483
|
|
434
484
|
- Document that `bundle show [--paths]` sorts results by name (@kemitchell)
|
435
485
|
|
436
|
-
|
486
|
+
# 1.16.3 (July 17, 2018)
|
437
487
|
|
438
|
-
Features:
|
488
|
+
## Features:
|
439
489
|
|
440
490
|
- Support URI::File of Ruby 2.6 (@hsbt)
|
441
491
|
|
442
|
-
|
492
|
+
## Bug fixes:
|
443
493
|
|
444
494
|
- Expand symlinks during setup to allow Bundler to load correctly when using symlinks in $GEM_HOME ([#6465](https://github.com/rubygems/bundler/issues/6465), @ojab, @indirect)
|
445
495
|
- Dont let Bundler create temporary folders for gem installs which are owned by root ([#6258](https://github.com/rubygems/bundler/issues/6258), @colby-swandale)
|
@@ -449,14 +499,14 @@ Bugfixes:
|
|
449
499
|
- Handle Errno::ENOTSUP in the Bundler Process Lock to prevent exceptions when using NFS mounts ([#6566](https://github.com/rubygems/bundler/issues/6566), @colby-swandale)
|
450
500
|
- Respect encodings when reading gemspecs ([#6598](https://github.com/rubygems/bundler/issues/6598), @deivid-rodriguez)
|
451
501
|
|
452
|
-
Documentation:
|
502
|
+
## Documentation:
|
453
503
|
|
454
504
|
- Fix links between manual pages (@BanzaiMan)
|
455
505
|
- Add warning to Gemfile documentation for the use of the `source` option when declaring gems ([#6280](https://github.com/rubygems/bundler/issues/6280), @forestgagnon)
|
456
506
|
|
457
|
-
|
507
|
+
# 1.16.2 (April 20, 2018)
|
458
508
|
|
459
|
-
|
509
|
+
## Minor enhancements:
|
460
510
|
|
461
511
|
- Include the gem's source in the gem install error message when available (@papanikge)
|
462
512
|
- Remove unnecessary executable bit from gem template (@voxik)
|
@@ -465,7 +515,7 @@ Changes:
|
|
465
515
|
- Use `Bundler.rubygems.inflate` instead of the Gem::Util method directly (@segiddins)
|
466
516
|
- Remove unused instance variable (@segiddins)
|
467
517
|
|
468
|
-
|
518
|
+
## Bug fixes:
|
469
519
|
|
470
520
|
- Only trap INT signal and have Ruby's signal default handler be invoked (@shayonj)
|
471
521
|
- Fix warning about the use of `__FILE__` in RubyGems integration testing (@MSP-Greg)
|
@@ -491,7 +541,7 @@ Bugfixes:
|
|
491
541
|
- Support Bundler installing on a readonly filesystem without a home directory ([#6461](https://github.com/rubygems/bundler/issues/6461), @grosser)
|
492
542
|
- Filter git uri credentials in source description (@segiddins)
|
493
543
|
|
494
|
-
Documentation:
|
544
|
+
## Documentation:
|
495
545
|
|
496
546
|
- Correct typos in `bundle binstubs` man page (@erikj, @samueloph)
|
497
547
|
- Update links in `bundle gem` command documentation to use https (@KrauseFx)
|
@@ -504,9 +554,9 @@ Documentation:
|
|
504
554
|
- Added license info to main README (@rubymorillo)
|
505
555
|
- Document parameters and return value of Injector#inject (@tobias-grasse)
|
506
556
|
|
507
|
-
|
557
|
+
# 1.16.1 (December 12, 2017)
|
508
558
|
|
509
|
-
|
559
|
+
## Bug fixes:
|
510
560
|
|
511
561
|
- avoid hanging on complex resolver errors ([#6114](https://github.com/rubygems/bundler/issues/6114), @halfbyte)
|
512
562
|
- avoid an error when running `bundle update --group` ([#6156](https://github.com/rubygems/bundler/issues/6156), @mattbrictson)
|
@@ -517,9 +567,9 @@ Bugfixes:
|
|
517
567
|
- fail gracefully when loading a bundler-generated binstub when `bin/bundle` was not generated by bundler ([#6149](https://github.com/rubygems/bundler/issues/6149), @hsbt)
|
518
568
|
- allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/rubygems/bundler/issues/6205), @colby-swandale)
|
519
569
|
|
520
|
-
|
570
|
+
# 1.16.0 (October 31, 2017)
|
521
571
|
|
522
|
-
|
572
|
+
## Bug fixes:
|
523
573
|
|
524
574
|
- avoid new RubyGems warning about unsafe YAML loading (to keep output consistent) (@segiddins)
|
525
575
|
- load digest subclasses in a thread-safe manner (@segiddins, @colby-swandale)
|
@@ -531,30 +581,30 @@ Bugfixes:
|
|
531
581
|
- reduce memory usage during dependency resolution ([#6114](https://github.com/rubygems/bundler/issues/6114), @greysteil)
|
532
582
|
- ensure that the default bundler gem is not accidentally activated on ruby 2.5 when using local git overrides (@segiddins)
|
533
583
|
|
534
|
-
|
584
|
+
# 1.16.0.pre.3 (October 4, 2017)
|
535
585
|
|
536
|
-
Features:
|
586
|
+
## Features:
|
537
587
|
|
538
588
|
- the output from `bundle env` includes more information, particularly both the compiled & loaded versions of OpenSSL (@indirect)
|
539
589
|
|
540
|
-
|
590
|
+
## Bug fixes:
|
541
591
|
|
542
592
|
- fix a bug where installing on FreeBSD would accidentally raise an error ([#6013](https://github.com/rubygems/bundler/issues/6013), @olleolleolle)
|
543
593
|
- fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
|
544
594
|
- bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
|
545
595
|
- the outdated bundler version message is disabled by default until the message has been fine-tuned ([#6004](https://github.com/rubygems/bundler/issues/6004), @segiddins)
|
546
596
|
|
547
|
-
|
597
|
+
# 1.16.0.pre.2 (September 6, 2017)
|
548
598
|
|
549
|
-
|
599
|
+
## Bug fixes:
|
550
600
|
|
551
601
|
- handle when a connection is missing a socket when warning about OpenSSL version (@greysteil)
|
552
602
|
- the description for the `rake release` task now reflects `$RUBYGEMS_HOST` (@wadetandy)
|
553
603
|
- fix a bug where `bundle update` would regress transitive dependencies (@greysteil)
|
554
604
|
|
555
|
-
|
605
|
+
# 1.16.0.pre.1 (September 4, 2017)
|
556
606
|
|
557
|
-
Features:
|
607
|
+
## Features:
|
558
608
|
|
559
609
|
- allow using non-branch symbolic refs in a git source ([#4845](https://github.com/rubygems/bundler/issues/4845), @segiddins)
|
560
610
|
- allow absolute paths in the `cache path` setting ([#5627](https://github.com/rubygems/bundler/issues/5627), @mal)
|
@@ -573,7 +623,7 @@ Features:
|
|
573
623
|
- allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
|
574
624
|
- making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)
|
575
625
|
|
576
|
-
|
626
|
+
## Bug fixes:
|
577
627
|
|
578
628
|
- allow configuring a mirror fallback timeout without a trailing slash ([#4830](https://github.com/rubygems/bundler/issues/4830), @segiddins)
|
579
629
|
- fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
|
@@ -595,29 +645,29 @@ Bugfixes:
|
|
595
645
|
- allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
|
596
646
|
- fix support for bundle paths that include jars or wars on jruby ([#5975](https://github.com/rubygems/bundler/issues/5975), @torcido)
|
597
647
|
|
598
|
-
|
648
|
+
# 1.15.4 (August 19, 2017)
|
599
649
|
|
600
|
-
|
650
|
+
## Bug fixes:
|
601
651
|
|
602
652
|
- handle file conflicts gracefully in `bundle gem` (@rafaelfranca, @segiddins)
|
603
653
|
- bundler will fail gracefully when the bundle path contains the system path separator ([#5485](https://github.com/rubygems/bundler/issues/5485), ajwann)
|
604
654
|
- failed gem downloads will be retried consistently across different RubyGems versions (@shayonj)
|
605
655
|
- `bundle pristine` will respect build options while re-building native extensions (@NickLaMuro)
|
606
656
|
|
607
|
-
|
657
|
+
# 1.15.3 (July 21, 2017)
|
608
658
|
|
609
|
-
|
659
|
+
## Bug fixes:
|
610
660
|
|
611
661
|
- ensure that empty strings passed to `bundle config` are serialized & parsed properly ([#5881](https://github.com/rubygems/bundler/issues/5881), @segiddins)
|
612
662
|
- avoid printing an outdated version warning when running a parseable command (@segiddins)
|
613
663
|
|
614
|
-
|
664
|
+
# 1.15.2 (July 17, 2017)
|
615
665
|
|
616
|
-
Features:
|
666
|
+
## Features:
|
617
667
|
|
618
668
|
- new gemfiles created by bundler will include an explicit `github` git source that uses `https` (@segiddins)
|
619
669
|
|
620
|
-
|
670
|
+
## Bug fixes:
|
621
671
|
|
622
672
|
- inline gemfiles work when `BUNDLE_BIN` is set ([#5847](https://github.com/rubygems/bundler/issues/5847), @segiddins)
|
623
673
|
- avoid using the old dependency API when there are no changes to the compact index files ([#5373](https://github.com/rubygems/bundler/issues/5373), @greysteil)
|
@@ -629,29 +679,29 @@ Bugfixes:
|
|
629
679
|
- allow `bundle viz` to work when another gem has a requirable `grapviz` file ([#5707](https://github.com/rubygems/bundler/issues/5707), @segiddins)
|
630
680
|
- ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order ([#5696](https://github.com/rubygems/bundler/issues/5696), @segiddins)
|
631
681
|
|
632
|
-
|
682
|
+
# 1.15.1 (June 2, 2017)
|
633
683
|
|
634
|
-
|
684
|
+
## Bug fixes:
|
635
685
|
|
636
686
|
- `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile ([#5693](https://github.com/rubygems/bundler/issues/5693), @segiddins)
|
637
687
|
- `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
|
638
688
|
- `bundle install --force` works when the gemfile contains git gems ([#5678](https://github.com/rubygems/bundler/issues/5678), @segiddins)
|
639
689
|
- `bundle env` will print well-formed markdown when there are no settings ([#5677](https://github.com/rubygems/bundler/issues/5677), @segiddins)
|
640
690
|
|
641
|
-
|
691
|
+
# 1.15.0 (May 19, 2017)
|
642
692
|
|
643
|
-
|
693
|
+
No changes.
|
644
694
|
|
645
|
-
|
695
|
+
# 1.15.0.pre.4 (May 10, 2017)
|
646
696
|
|
647
|
-
|
697
|
+
## Bug fixes:
|
648
698
|
|
649
699
|
- avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
|
650
700
|
- ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it ([#5592](https://github.com/rubygems/bundler/issues/5592), @jules2689)
|
651
701
|
|
652
|
-
|
702
|
+
# 1.15.0.pre.3 (April 30, 2017)
|
653
703
|
|
654
|
-
|
704
|
+
## Bug fixes:
|
655
705
|
|
656
706
|
- avoid redundant blank lines in the readme generated by `bundle gem` (@koic)
|
657
707
|
- ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
|
@@ -659,17 +709,17 @@ Bugfixes:
|
|
659
709
|
a gem in the gemfile (@segiddins)
|
660
710
|
- only shorten `ref` option for git gems when it is a SHA ([#5620](https://github.com/rubygems/bundler/issues/5620), @segiddins)
|
661
711
|
|
662
|
-
|
712
|
+
# 1.15.0.pre.2 (April 23, 2017)
|
663
713
|
|
664
|
-
|
714
|
+
## Bug fixes:
|
665
715
|
|
666
716
|
- ensure pre-existing fit caches are updated from remote sources ([#5423](https://github.com/rubygems/bundler/issues/5423), @alextaylor000)
|
667
717
|
- avoid duplicating specs in the lockfile after updating with the gem uninstalled ([#5599](https://github.com/rubygems/bundler/issues/5599), @segiddins)
|
668
718
|
- ensure git gems have their extensions available at runtime ([#5594](https://github.com/rubygems/bundler/issues/5594), @jules2689, @segiddins)
|
669
719
|
|
670
|
-
|
720
|
+
# 1.15.0.pre.1 (April 16, 2017)
|
671
721
|
|
672
|
-
Features:
|
722
|
+
## Features:
|
673
723
|
|
674
724
|
- print a notification when a newer version of bundler is available ([#4683](https://github.com/rubygems/bundler/issues/4683), @segiddins)
|
675
725
|
- add man pages for all bundler commands ([#4988](https://github.com/rubygems/bundler/issues/4988), @feministy)
|
@@ -685,7 +735,7 @@ Features:
|
|
685
735
|
- add the `bundle pristine` command to re-install gems from cached `.gem` files ([#4509](https://github.com/rubygems/bundler/issues/4509), @denniss)
|
686
736
|
- add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)
|
687
737
|
|
688
|
-
Performance:
|
738
|
+
## Performance:
|
689
739
|
|
690
740
|
- speed up gemfile initialization by storing locked dependencies as a hash (@jules2689)
|
691
741
|
- speed up gemfile initialization by making locked dependency comparison lazy, avoiding object allocation (@jules2689)
|
@@ -694,7 +744,7 @@ Performance:
|
|
694
744
|
- avoid diffing large arrays when no sources in the gemfile have changed (@segiddins)
|
695
745
|
- avoid evaluating full gemspecs when running with RubyGems 2.5+ (@segiddins)
|
696
746
|
|
697
|
-
|
747
|
+
## Bug fixes:
|
698
748
|
|
699
749
|
- fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems ([#5031](https://github.com/rubygems/bundler/issues/5031), [#5095](https://github.com/bundler/bundler/issues/5095), @segiddins)
|
700
750
|
- print out a stack trace after an interrupt when running in debug mode (@segiddins)
|
@@ -711,9 +761,9 @@ Bugfixes:
|
|
711
761
|
- print the underlying error when downloading gem metadata fails ([#5579](https://github.com/rubygems/bundler/issues/5579), @segiddins)
|
712
762
|
- avoid deadlocking when installing with a lockfile that is missing dependencies ([#5378](https://github.com/rubygems/bundler/issues/5378), [#5480](https://github.com/bundler/bundler/issues/5480), [#5519](https://github.com/bundler/bundler/issues/5519), [#5526](https://github.com/bundler/bundler/issues/5526), [#5529](https://github.com/bundler/bundler/issues/5529), [#5549](https://github.com/bundler/bundler/issues/5549), [#5572](https://github.com/bundler/bundler/issues/5572), @segiddins)
|
713
763
|
|
714
|
-
|
764
|
+
# 1.14.6 (March 3, 2017)
|
715
765
|
|
716
|
-
|
766
|
+
## Bug fixes:
|
717
767
|
|
718
768
|
- avoid undefined constant `Bundler::Plugin::API::Source` exception ([#5409](https://github.com/rubygems/bundler/issues/5409), @segiddins)
|
719
769
|
- avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
|
@@ -721,9 +771,9 @@ Bugfixes:
|
|
721
771
|
- ensure `bundle outdated --local` shows all outdated gems ([#5430](https://github.com/rubygems/bundler/issues/5430), @denniss)
|
722
772
|
- fix a case where ruby version requirements could lead to incorrect resolver conflicts ([#5425](https://github.com/rubygems/bundler/issues/5425), @segiddins)
|
723
773
|
|
724
|
-
|
774
|
+
# 1.14.5 (February 22, 2017)
|
725
775
|
|
726
|
-
|
776
|
+
## Bug fixes:
|
727
777
|
|
728
778
|
- avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
|
729
779
|
- improve resolver performance when dependencies have zero or one total possibilities ignoring requirements ([#5444](https://github.com/rubygems/bundler/issues/5444), [#5457](https://github.com/bundler/bundler/issues/5457), @segiddins)
|
@@ -736,9 +786,9 @@ Bugfixes:
|
|
736
786
|
- avoid gem version conflicts on openssl using Ruby 2.5 ([#5235](https://github.com/rubygems/bundler/issues/5235), @rhenium)
|
737
787
|
- fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated ([#5264](https://github.com/rubygems/bundler/issues/5264), @segiddins)
|
738
788
|
|
739
|
-
|
789
|
+
# 1.14.4 (February 12, 2017)
|
740
790
|
|
741
|
-
|
791
|
+
## Bug fixes:
|
742
792
|
|
743
793
|
- fail gracefully when attempting to overwrite an existing directory with `bundle gem` ([#5358](https://github.com/rubygems/bundler/issues/5358), @nodo)
|
744
794
|
- fix a resolver bug that would cause bundler to report conflicts that it could resolve ([#5359](https://github.com/rubygems/bundler/issues/5359), [#5362](https://github.com/bundler/bundler/issues/5362), @segiddins)
|
@@ -749,46 +799,46 @@ Bugfixes:
|
|
749
799
|
- stop `bundle show --outdated` from implicitly running `bundle update` ([#5375](https://github.com/rubygems/bundler/issues/5375), @colby-swandale)
|
750
800
|
- allow the temporary home directory fallback to work for multiple users (@svoop)
|
751
801
|
|
752
|
-
|
802
|
+
# 1.14.3 (January 24, 2017)
|
753
803
|
|
754
|
-
|
804
|
+
## Bug fixes:
|
755
805
|
|
756
806
|
- fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms ([#5349](https://github.com/rubygems/bundler/issues/5349), [#5356](https://github.com/bundler/bundler/issues/5356), @segiddins)
|
757
807
|
- avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies ([#5349](https://github.com/rubygems/bundler/issues/5349), @segiddins)
|
758
808
|
|
759
|
-
|
809
|
+
# 1.14.2 (January 22, 2017)
|
760
810
|
|
761
|
-
|
811
|
+
## Bug fixes:
|
762
812
|
|
763
813
|
- fix using `force_ruby_platform` on windows ([#5344](https://github.com/rubygems/bundler/issues/5344), @segiddins)
|
764
814
|
- fix an incorrect version conflict error when using `gemspec` on multiple platforms ([#5340](https://github.com/rubygems/bundler/issues/5340), @segiddins)
|
765
815
|
|
766
|
-
|
816
|
+
# 1.14.1 (January 21, 2017)
|
767
817
|
|
768
|
-
|
818
|
+
## Bug fixes:
|
769
819
|
|
770
820
|
- work around a ruby 2.2.2 bug that caused a stack consistency error during installation ([#5342](https://github.com/rubygems/bundler/issues/5342), @segiddins)
|
771
821
|
|
772
|
-
|
822
|
+
# 1.14.0 (January 20, 2017)
|
773
823
|
|
774
|
-
|
824
|
+
## Bug fixes:
|
775
825
|
|
776
826
|
- ensure `Settings::Mirror` is autoloaded under the `Settings` namespace
|
777
827
|
([#5238](https://github.com/rubygems/bundler/issues/5238), @segiddins)
|
778
828
|
- fix `bundler/inline` when `BUNDLE_GEMFILE=""` ([#5079](https://github.com/rubygems/bundler/issues/5079), @segiddins)
|
779
829
|
|
780
|
-
|
830
|
+
# 1.14.0.pre.2 (January 11, 2017)
|
781
831
|
|
782
|
-
|
832
|
+
## Bug fixes:
|
783
833
|
|
784
834
|
- allow not selecting a gem when running `bundle open` ([#5301](https://github.com/rubygems/bundler/issues/5301), @segiddins)
|
785
835
|
- support installing gems from git branches that contain shell metacharacters ([#5295](https://github.com/rubygems/bundler/issues/5295), @segiddins)
|
786
836
|
- fix a resolver error that could leave dependencies unresolved ([#5294](https://github.com/rubygems/bundler/issues/5294), @segiddins)
|
787
837
|
- fix a stack overflow error when invoking commands ([#5296](https://github.com/rubygems/bundler/issues/5296), @segiddins)
|
788
838
|
|
789
|
-
|
839
|
+
# 1.14.0.pre.1 (December 29, 2016)
|
790
840
|
|
791
|
-
Features:
|
841
|
+
## Features:
|
792
842
|
|
793
843
|
- `bundle doctor` first runs `bundle check` (@segiddins)
|
794
844
|
- the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
|
@@ -808,12 +858,12 @@ Features:
|
|
808
858
|
- add support for the `ruby_25` gemfile filter (@amatsuda)
|
809
859
|
- when installing with a lockfile that is missing dependencies, allow installation to proceed (but without parallelism) (@segiddins)
|
810
860
|
|
811
|
-
Performance:
|
861
|
+
## Performance:
|
812
862
|
|
813
863
|
- improve `require "bundler"` performance by ~5x (@segiddins)
|
814
864
|
- allow install gems in parallel when running on rubygems 2+
|
815
865
|
|
816
|
-
|
866
|
+
## Bug fixes:
|
817
867
|
|
818
868
|
- config files with CRLF line endings can be read ([#4435](https://github.com/rubygems/bundler/issues/4435), @segiddins)
|
819
869
|
- `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency ([#4896](https://github.com/rubygems/bundler/issues/4896), @segiddins)
|
@@ -843,42 +893,42 @@ Bugfixes:
|
|
843
893
|
- fail gracefully when creating threads fails (@segiddins)
|
844
894
|
- avoid downloading metadata for gems that are only development dependencies (@Paxa)
|
845
895
|
|
846
|
-
|
896
|
+
# 1.13.7 (December 25, 2016)
|
847
897
|
|
848
|
-
Features:
|
898
|
+
## Features:
|
849
899
|
|
850
900
|
- add support for the `ruby_24` gemfile filter ([#5281](https://github.com/rubygems/bundler/issues/5281), @amatsuda)
|
851
901
|
|
852
|
-
|
902
|
+
# 1.13.6 (October 22, 2016)
|
853
903
|
|
854
|
-
|
904
|
+
## Bug fixes:
|
855
905
|
|
856
906
|
- make the `gem` method public again, fixing a regression in 1.13.4 ([#5102](https://github.com/rubygems/bundler/issues/5102), @segiddins)
|
857
907
|
|
858
|
-
|
908
|
+
# 1.13.5 (October 15, 2016)
|
859
909
|
|
860
|
-
|
910
|
+
## Bug fixes:
|
861
911
|
|
862
912
|
- Ensure a locked pre-release spec can always be re-resolved ([#5089](https://github.com/rubygems/bundler/issues/5089), @segiddins)
|
863
913
|
|
864
|
-
|
914
|
+
# 1.13.4 (October 11, 2016)
|
865
915
|
|
866
|
-
|
916
|
+
## Bug fixes:
|
867
917
|
|
868
918
|
- stop printing warning when compact index versions file is rewritten ([#5064](https://github.com/rubygems/bundler/issues/5064), @indirect)
|
869
919
|
- fix `parent directory is world writable but not sticky` error on install ([#5043](https://github.com/rubygems/bundler/issues/5043), @indirect)
|
870
920
|
- fix for `uninitialized constant Bundler::Plugin::API::Source` error ([#5010](https://github.com/rubygems/bundler/issues/5010), @hsbt, @aycabta)
|
871
921
|
- make `update` options for major, minor, and patch updates consistent ([#4934](https://github.com/rubygems/bundler/issues/4934), @chrismo)
|
872
922
|
|
873
|
-
|
923
|
+
# 1.13.3 (October 10, 2016)
|
874
924
|
|
875
|
-
|
925
|
+
## Bug fixes:
|
876
926
|
|
877
927
|
- add support for weak etags to the new index (@segiddins)
|
878
928
|
|
879
|
-
|
929
|
+
# 1.13.2 (September 30, 2016)
|
880
930
|
|
881
|
-
|
931
|
+
## Bug fixes:
|
882
932
|
|
883
933
|
- allow `Settings` to be initialized without a root directory (@m1k3)
|
884
934
|
- allow specifying ruby engines in the gemfile as a symbol ([#4919](https://github.com/rubygems/bundler/issues/4919), @JuanitoFatas)
|
@@ -888,24 +938,24 @@ Bugfixes:
|
|
888
938
|
- fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
|
889
939
|
- fix system gems not being copied to --path on bundle install (e.g. --deployment) ([#4974](https://github.com/rubygems/bundler/issues/4974), @chrismo)
|
890
940
|
|
891
|
-
Performance:
|
941
|
+
## Performance:
|
892
942
|
|
893
943
|
- avoid parsing the lockfile twice when evaluating gemfiles (@segiddins)
|
894
944
|
|
895
|
-
|
945
|
+
# 1.13.1 (September 13, 2016)
|
896
946
|
|
897
|
-
|
947
|
+
## Bug fixes:
|
898
948
|
|
899
949
|
- ensure that `Gem::Source` is available, fixing several exceptions ([#4944](https://github.com/rubygems/bundler/issues/4944), @dekellum)
|
900
950
|
- ensure that dependency resolution works when multiple gems have the same dependency ([#4961](https://github.com/rubygems/bundler/issues/4961), @segiddins)
|
901
951
|
|
902
|
-
|
952
|
+
# 1.13.0 (September 5, 2016)
|
903
953
|
|
904
|
-
|
954
|
+
No changes.
|
905
955
|
|
906
|
-
|
956
|
+
# 1.13.0.rc.2 (August 21, 2016)
|
907
957
|
|
908
|
-
Features:
|
958
|
+
## Features:
|
909
959
|
|
910
960
|
- add setting `exec_disable_load` to force `exec` to spawn a new Ruby process (@segiddins)
|
911
961
|
- add `doctor` command to help with issues like unlinked compiled gems ([#4765](https://github.com/rubygems/bundler/issues/4765), @mistydemeo)
|
@@ -918,7 +968,7 @@ Features:
|
|
918
968
|
- add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
|
919
969
|
- expanded experimental plugin support to include hooks and sources (@asutoshpalai)
|
920
970
|
|
921
|
-
|
971
|
+
## Bug fixes:
|
922
972
|
|
923
973
|
- retry gem downloads ([#4846](https://github.com/rubygems/bundler/issues/4846), @jkeiser)
|
924
974
|
- improve the CompactIndex to handle capitalized legacy gems ([#4867](https://github.com/rubygems/bundler/issues/4867), @segiddins)
|
@@ -935,14 +985,14 @@ Bugfixes:
|
|
935
985
|
- show help only when `-h` or `--help` is passed to Bundler, not to `exec` ([#4801](https://github.com/rubygems/bundler/issues/4801), @segiddins)
|
936
986
|
- handle symlinks to binstubs created by `--standalone` ([#4782](https://github.com/rubygems/bundler/issues/4782), @terinjokes)
|
937
987
|
|
938
|
-
|
988
|
+
# 1.13.0.rc.1 (June 27, 2016)
|
939
989
|
|
940
|
-
Features:
|
990
|
+
## Features:
|
941
991
|
|
942
992
|
- when `bundle config major_deprecations` or `BUNDLE_MAJOR_DEPRECATIONS` is set, deprecation warnings for bundler 2 will be printed (@segiddins)
|
943
993
|
- when running with `--verbose`, bundler will print the reason it is re-resolving a gemfile (@segiddins)
|
944
994
|
|
945
|
-
|
995
|
+
## Bug fixes:
|
946
996
|
|
947
997
|
- fix support for running RubyGems 1.x on Ruby 2.3 ([#4698](https://github.com/rubygems/bundler/issues/4698), @segiddins)
|
948
998
|
- fix bundle exec'ing to a ruby file when gems are installed into a path ([#4592](https://github.com/rubygems/bundler/issues/4592), @chrismo)
|
@@ -952,16 +1002,16 @@ Bugfixes:
|
|
952
1002
|
- fix re-resolving when there are multiple unchanged path sources (@segiddins)
|
953
1003
|
- de-init submodules when running git 2.9 and requesting a git gem without submodules (@segiddins)
|
954
1004
|
|
955
|
-
|
1005
|
+
# 1.13.0.pre.1 (June 20, 2016)
|
956
1006
|
|
957
|
-
Performance:
|
1007
|
+
## Performance:
|
958
1008
|
|
959
1009
|
- speed up gemfile resolution during `bundle install` by between 4x-100x ([#4376](https://github.com/rubygems/bundler/issues/4376), @segiddins)
|
960
1010
|
- generally reduce object allocations when using bundler (@segiddins)
|
961
1011
|
- speed up bin generation for path gems with many files ([#2846](https://github.com/rubygems/bundler/issues/2846), @segiddins)
|
962
1012
|
- fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
|
963
1013
|
|
964
|
-
Features:
|
1014
|
+
## Features:
|
965
1015
|
|
966
1016
|
- automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
|
967
1017
|
- laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
|
@@ -979,7 +1029,7 @@ Features:
|
|
979
1029
|
- add `--add-platform` option to `bundle lock` (@segiddins)
|
980
1030
|
- fail gracefully when a resolved spec's `required_ruby_version` or `required_rubygems_version` is incompatible (@segiddins)
|
981
1031
|
|
982
|
-
|
1032
|
+
## Bug fixes:
|
983
1033
|
|
984
1034
|
- implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version ([#4595](https://github.com/rubygems/bundler/issues/4595), [#4627](https://github.com/bundler/bundler/issues/4627), @segiddins)
|
985
1035
|
- add support for quoted paths in `$PATH` ([#4323](https://github.com/rubygems/bundler/issues/4323), @segiddins)
|
@@ -994,99 +1044,99 @@ Bugfixes:
|
|
994
1044
|
- allow running `bundle install --deployment` after `bundle package --all` with path gems ([#2175](https://github.com/rubygems/bundler/issues/2175), @allenzhao)
|
995
1045
|
- add support for patchlevels in ruby versions in the gemfile and gemspecs ([#4593](https://github.com/rubygems/bundler/issues/4593), @chalkos)
|
996
1046
|
|
997
|
-
|
1047
|
+
# 1.12.6 (October 10, 2016)
|
998
1048
|
|
999
|
-
|
1049
|
+
## Bug fixes:
|
1000
1050
|
- add support for weak etags to the new index (@segiddins)
|
1001
1051
|
|
1002
|
-
|
1052
|
+
# 1.12.5 (May 25, 2016)
|
1003
1053
|
|
1004
|
-
|
1054
|
+
## Bug fixes:
|
1005
1055
|
- only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` ([#4596](https://github.com/rubygems/bundler/issues/4596), @segiddins)
|
1006
1056
|
- don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
|
1007
1057
|
- reduce the number of threads used simultaneously by bundler ([#4367](https://github.com/rubygems/bundler/issues/4367), @will-in-wi)
|
1008
1058
|
|
1009
|
-
|
1059
|
+
# 1.12.4 (May 16, 2016)
|
1010
1060
|
|
1011
|
-
|
1061
|
+
## Bug fixes:
|
1012
1062
|
- ensure concurrent use of the new index can't corrupt the cache ([#4519](https://github.com/rubygems/bundler/issues/4519), @domcleal)
|
1013
1063
|
- allow missing rubygems credentials when pushing a gem with a custom host ([#4437](https://github.com/rubygems/bundler/issues/4437), @Cohen-Carlisle)
|
1014
1064
|
- fix installing built-in specs with `--standalone` ([#4557](https://github.com/rubygems/bundler/issues/4557), @segiddins)
|
1015
1065
|
- fix `bundle show` when a gem has a prerelease version that includes a `-` ([#4385](https://github.com/rubygems/bundler/issues/4385), @segiddins)
|
1016
1066
|
|
1017
|
-
|
1067
|
+
# 1.12.3 (May 6, 2016)
|
1018
1068
|
|
1019
|
-
|
1069
|
+
## Bug fixes:
|
1020
1070
|
- fix uncoditionally writing `.bundle/config` when running `bundle install` (@segiddins)
|
1021
1071
|
- fall back to the dependency API and the full index when the home directory is not writable (@segiddins)
|
1022
1072
|
|
1023
|
-
|
1073
|
+
# 1.12.2 (May 4, 2016)
|
1024
1074
|
|
1025
|
-
|
1075
|
+
## Bug fixes:
|
1026
1076
|
- fix modifying a frozen string when the resolver conflicts on dependencies with requirements ([#4520](https://github.com/rubygems/bundler/issues/4520), @grzuy)
|
1027
1077
|
- fix `bundle exec foo --help` not showing the invoked command's help ([#4480](https://github.com/rubygems/bundler/issues/4480), @b-ggs)
|
1028
1078
|
|
1029
|
-
|
1079
|
+
# 1.12.1 (April 30, 2016)
|
1030
1080
|
|
1031
|
-
|
1081
|
+
## Bug fixes:
|
1032
1082
|
- automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
|
1033
1083
|
- fix computation of new index file local checksums on Windows ([#4472](https://github.com/rubygems/bundler/issues/4472), @mwrock)
|
1034
1084
|
- properly handle certain resolver backtracking cases without erroring (@segiddins, [#4484](https://github.com/rubygems/bundler/issues/4484))
|
1035
1085
|
- ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, [#4482](https://github.com/rubygems/bundler/issues/4482))
|
1036
1086
|
|
1037
|
-
|
1087
|
+
# 1.12.0 (April 28, 2016)
|
1038
1088
|
|
1039
|
-
|
1089
|
+
No changes.
|
1040
1090
|
|
1041
|
-
|
1091
|
+
# 1.12.0.rc.4 (April 21, 2016)
|
1042
1092
|
|
1043
|
-
|
1093
|
+
## Bug fixes:
|
1044
1094
|
|
1045
1095
|
- don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions ([#4438](https://github.com/rubygems/bundler/issues/4438), @RochesterinNYC)
|
1046
1096
|
|
1047
|
-
|
1097
|
+
# 1.12.0.rc.3 (April 19, 2016)
|
1048
1098
|
|
1049
|
-
|
1099
|
+
## Bug fixes:
|
1050
1100
|
|
1051
1101
|
- don't allow new attributes to dirty a lockfile when running `bundle exec`, `-rbundler/setup`, or `bundle check` (@segiddins)
|
1052
1102
|
|
1053
|
-
|
1103
|
+
# 1.12.0.rc.2 (April 15, 2016)
|
1054
1104
|
|
1055
|
-
Features:
|
1105
|
+
## Features:
|
1056
1106
|
|
1057
1107
|
- `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` ([#4396](https://github.com/rubygems/bundler/issues/4396), @RochesterinNYC)
|
1058
1108
|
|
1059
|
-
|
1109
|
+
## Bug fixes:
|
1060
1110
|
|
1061
1111
|
- prevent endless recursive copy for `bundle package --all` ([#4392](https://github.com/rubygems/bundler/issues/4392), @RochesterinNYC)
|
1062
1112
|
- allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
|
1063
1113
|
- nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
|
1064
1114
|
|
1065
|
-
|
1115
|
+
# 1.12.0.rc (March 13, 2016)
|
1066
1116
|
|
1067
|
-
Performance:
|
1117
|
+
## Performance:
|
1068
1118
|
|
1069
1119
|
- Download gem metadata from globally distributed CDN endpoints ([#4358](https://github.com/rubygems/bundler/issues/4358), @segiddins)
|
1070
1120
|
|
1071
|
-
|
1121
|
+
## Bug fixes:
|
1072
1122
|
|
1073
1123
|
- handle Ruby pre-releases built from source ([#4324](https://github.com/rubygems/bundler/issues/4324), @RochesterinNYC)
|
1074
1124
|
- support binstubs from RubyGems 2.6 ([#4341](https://github.com/rubygems/bundler/issues/4341), @segiddins)
|
1075
1125
|
- handle quotes present in in PATH ([#4326](https://github.com/rubygems/bundler/issues/4326), @segiddins)
|
1076
1126
|
|
1077
|
-
|
1127
|
+
# 1.12.0.pre.2 (February 26, 2016)
|
1078
1128
|
|
1079
|
-
Performance:
|
1129
|
+
## Performance:
|
1080
1130
|
|
1081
1131
|
- speed up `bundle exec` by `load`ing the executable whenever possible, saving roughly .2 seconds per invocation (@segiddins)
|
1082
1132
|
|
1083
|
-
Features:
|
1133
|
+
## Features:
|
1084
1134
|
|
1085
1135
|
- add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
|
1086
1136
|
- add `Bundler.clean_env` and `Bundler.original_env` ([#4232](https://github.com/rubygems/bundler/issues/4232), @njam)
|
1087
1137
|
- add `--frozen` support to `bundle package` ([#3356](https://github.com/rubygems/bundler/issues/3356), @RochesterinNYC)
|
1088
1138
|
|
1089
|
-
|
1139
|
+
## Bug fixes:
|
1090
1140
|
|
1091
1141
|
- place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
|
1092
1142
|
- give a better error message when filesystem access raises an `EPROTO` error ([#3581](https://github.com/rubygems/bundler/issues/3581), [#3932](https://github.com/bundler/bundler/issues/3932), [#4163](https://github.com/bundler/bundler/issues/4163), @RochesterinNYC)
|
@@ -1101,14 +1151,14 @@ Bugfixes:
|
|
1101
1151
|
- skip rebuilding extensions for git gems if they are already built ([#4082](https://github.com/rubygems/bundler/issues/4082), @csfrancis, @indirect, @segiddins)
|
1102
1152
|
- fix `bundle install` not installing when the `no_install` setting is set ([#3966](https://github.com/rubygems/bundler/issues/3966), @chulkilee, @segiddins)
|
1103
1153
|
|
1104
|
-
|
1154
|
+
# 1.12.0.pre.1 (February 9, 2016)
|
1105
1155
|
|
1106
|
-
Performance:
|
1156
|
+
## Performance:
|
1107
1157
|
|
1108
1158
|
- speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
|
1109
1159
|
- speed up `bundle exec` by avoiding loading the gemfile twice ([#2951](https://github.com/rubygems/bundler/issues/2951), [#2952](https://github.com/bundler/bundler/issues/2952), @segiddins)
|
1110
1160
|
|
1111
|
-
Features:
|
1161
|
+
## Features:
|
1112
1162
|
|
1113
1163
|
- add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
|
1114
1164
|
- redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
|
@@ -1120,7 +1170,7 @@ Features:
|
|
1120
1170
|
- add support for ruby 2.4 ([#4266](https://github.com/rubygems/bundler/issues/4266), @segiddins)
|
1121
1171
|
- add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
|
1122
1172
|
|
1123
|
-
|
1173
|
+
## Bug fixes:
|
1124
1174
|
|
1125
1175
|
- fix `bundle package --all` recursing endlessly ([#4158](https://github.com/rubygems/bundler/issues/4158), @RochesterinNYC)
|
1126
1176
|
- fail fast on more errors when fetching remote resources ([#4154](https://github.com/rubygems/bundler/issues/4154), @RochesterinNYC)
|
@@ -1143,35 +1193,35 @@ Bugfixes:
|
|
1143
1193
|
- preserve the original `PATH` in `Bundler.with_clean_env` ([#4251](https://github.com/rubygems/bundler/issues/4251), @segiddins)
|
1144
1194
|
- ensure standalone file paths are relative to the project root ([#4144](https://github.com/rubygems/bundler/issues/4144), @glennpratt)
|
1145
1195
|
|
1146
|
-
|
1196
|
+
# 1.11.2 (December 15, 2015)
|
1147
1197
|
|
1148
|
-
|
1198
|
+
## Bug fixes:
|
1149
1199
|
|
1150
1200
|
- _really_ stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/rubygems/bundler/issues/4147), @indirect)
|
1151
1201
|
|
1152
|
-
|
1202
|
+
# 1.11.1 (December 15, 2015)
|
1153
1203
|
|
1154
|
-
|
1204
|
+
## Bug fixes:
|
1155
1205
|
|
1156
1206
|
- lazy-load Psych, again ([#4149](https://github.com/rubygems/bundler/issues/4149), @indirect)
|
1157
1207
|
- allow gemspec gems on other platforms ([#4150](https://github.com/rubygems/bundler/issues/4150), @indirect)
|
1158
1208
|
- fix --no-coc and --no-mit flags on `gem` ([#4148](https://github.com/rubygems/bundler/issues/4148), @RochesterinNYC)
|
1159
1209
|
- stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/rubygems/bundler/issues/4147), @indirect)
|
1160
1210
|
|
1161
|
-
|
1211
|
+
# 1.11.0 (December 12, 2015)
|
1162
1212
|
|
1163
|
-
|
1213
|
+
No changes.
|
1164
1214
|
|
1165
|
-
|
1215
|
+
# 1.11.0.pre.2 (December 6, 2015)
|
1166
1216
|
|
1167
|
-
|
1217
|
+
## Bug fixes:
|
1168
1218
|
|
1169
1219
|
- fail gracefully when trying to execute a non-executable file ([#4081](https://github.com/rubygems/bundler/issues/4081), @fotanus)
|
1170
1220
|
- fix a crash when pushing a gem via `rake release` (@segiddins)
|
1171
1221
|
|
1172
|
-
|
1222
|
+
# 1.11.0.pre.1 (November 29, 2015)
|
1173
1223
|
|
1174
|
-
Features:
|
1224
|
+
## Features:
|
1175
1225
|
|
1176
1226
|
- actual Gemfile and lockfile filenames are used in messages ([#3672](https://github.com/rubygems/bundler/issues/3672), @segiddins)
|
1177
1227
|
- the git remote for `rake release` is now customizable (@skateman)
|
@@ -1195,7 +1245,7 @@ Features:
|
|
1195
1245
|
- add `pkg` to rake's clobber list ([#3676](https://github.com/rubygems/bundler/issues/3676), @jasonkarns)
|
1196
1246
|
- retry fetching specs when fetching version metadata fails (@jingweno)
|
1197
1247
|
|
1198
|
-
|
1248
|
+
## Bug fixes:
|
1199
1249
|
|
1200
1250
|
- avoid showing bundler version warning messages twice (@fotanus)
|
1201
1251
|
- fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
|
@@ -1227,102 +1277,93 @@ Bugfixes:
|
|
1227
1277
|
- fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
|
1228
1278
|
- restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/rubygems/bundler/issues/4102), @smellsblue)
|
1229
1279
|
|
1230
|
-
Performance:
|
1280
|
+
## Performance:
|
1231
1281
|
|
1232
1282
|
- speed up dependency resolution in pathological cases by 25x ([#3803](https://github.com/rubygems/bundler/issues/3803), @segiddins)
|
1233
1283
|
- drop string allocations when searching for gems (@jrafanie)
|
1234
1284
|
|
1235
|
-
|
1285
|
+
# 1.10.6 (July 22, 2015)
|
1236
1286
|
|
1237
|
-
|
1287
|
+
## Bug fixes:
|
1238
1288
|
|
1239
1289
|
- only warn on invalid gemspecs (@indirect)
|
1240
|
-
|
1241
|
-
Bugfixes:
|
1242
|
-
|
1243
1290
|
- fix installing dependencies in the correct order ([#3799](https://github.com/rubygems/bundler/issues/3799), @pducks32)
|
1244
1291
|
- fix sorting of mixed DependencyLists ([#3762](https://github.com/rubygems/bundler/issues/3762), @tony-spataro-rs)
|
1245
1292
|
- fix `install_if` conditionals when using the block form (@danieltdt)
|
1246
1293
|
|
1247
|
-
|
1294
|
+
# 1.10.5 (June 24, 2015)
|
1248
1295
|
|
1249
|
-
|
1296
|
+
## Bug fixes:
|
1250
1297
|
|
1251
1298
|
- don't add or update BUNDLED WITH during `install` with no changes (@segiddins)
|
1252
|
-
|
1253
|
-
Bugfixes:
|
1254
|
-
|
1255
1299
|
- fix sorting of mixed DependencyLists with RubyGems >= 2.23 ([#3762](https://github.com/rubygems/bundler/issues/3762), @tony-spataro-rs)
|
1256
1300
|
- speed up resolver for path and git gems (@segiddins)
|
1257
1301
|
- fix `install --force` to not reinstall Bundler ([#3743](https://github.com/rubygems/bundler/issues/3743), @karlo57)
|
1258
1302
|
|
1259
|
-
|
1303
|
+
# 1.10.4 (June 16, 2015)
|
1260
1304
|
|
1261
|
-
|
1305
|
+
## Bug fixes:
|
1262
1306
|
|
1263
1307
|
- don't add BUNDLED WITH to the lock when Spring runs `check` over and over (@indirect)
|
1264
|
-
|
1265
|
-
Bugfixes:
|
1266
|
-
|
1267
1308
|
- display "with native extensions" log output correctly (@ivantsepp)
|
1268
1309
|
- alias `i` to `install`, `c` to `check`, and `e` to `exec` (@indirect)
|
1269
1310
|
|
1270
|
-
|
1311
|
+
# 1.10.3 (June 3, 2015)
|
1271
1312
|
|
1272
|
-
|
1313
|
+
## Bug fixes:
|
1273
1314
|
|
1274
1315
|
- allow missing gemspec files when validating path and git gems ([#3686](https://github.com/rubygems/bundler/issues/3686), [#3698](https://github.com/bundler/bundler/issues/3698), @segiddins)
|
1275
1316
|
- fix regression in `rake install` ([#3701](https://github.com/rubygems/bundler/issues/3701), [#3705](https://github.com/bundler/bundler/issues/3705), @segiddins)
|
1276
1317
|
- fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` ([#3699](https://github.com/rubygems/bundler/issues/3699), @segiddins)
|
1277
1318
|
- fix `bundler/inline` requiring a newly-installed gem ([#3693](https://github.com/rubygems/bundler/issues/3693), @indirect, @segiddins)
|
1278
1319
|
|
1279
|
-
|
1320
|
+
# 1.10.2 (May 29, 2015)
|
1280
1321
|
|
1281
|
-
|
1322
|
+
## Bug fixes:
|
1282
1323
|
|
1283
1324
|
- fix regression in `bundle update GEM` performance introduced in 1.10.0 ([#3687](https://github.com/rubygems/bundler/issues/3687), @segiddins)
|
1284
1325
|
|
1285
|
-
|
1326
|
+
# 1.10.1 (May 28, 2015)
|
1286
1327
|
|
1287
|
-
|
1328
|
+
## Bug fixes:
|
1288
1329
|
|
1289
1330
|
- silence ruby warning when running CLI commands (@segiddins)
|
1290
1331
|
- validate gemspecs in non-packaging mode ([#3681](https://github.com/rubygems/bundler/issues/3681), @segiddins)
|
1291
1332
|
- ensure the same chdir mutex as RubyGems is used ([#3680](https://github.com/rubygems/bundler/issues/3680), @segiddins)
|
1292
1333
|
|
1293
|
-
|
1334
|
+
# 1.10.0 (May 28, 2015)
|
1294
1335
|
|
1295
|
-
|
1336
|
+
No changes.
|
1296
1337
|
|
1297
|
-
|
1338
|
+
# 1.10.0.rc (May 16, 2015)
|
1298
1339
|
|
1299
|
-
Features:
|
1340
|
+
## Features:
|
1300
1341
|
|
1301
1342
|
- dramatically speed up resolving some slow Gemfiles ([#3635](https://github.com/rubygems/bundler/issues/3635), @segiddins)
|
1302
1343
|
- track CI platforms running Bundler ([#3646](https://github.com/rubygems/bundler/issues/3646), @fotanus)
|
1303
1344
|
|
1304
|
-
|
1345
|
+
## Bug fixes:
|
1305
1346
|
|
1306
1347
|
- allow `viz` to work with prereleases ([#3621](https://github.com/rubygems/bundler/issues/3621), [#3217](https://github.com/bundler/bundler/issues/3217), @aprescott)
|
1307
1348
|
- validate gemspecs used in path and git gems ([#3639](https://github.com/rubygems/bundler/issues/3639), @segiddins, @indirect)
|
1308
1349
|
- stop printing config warnings when config is unchanged ([#3649](https://github.com/rubygems/bundler/issues/3649), @fotanus, @indirect)
|
1309
1350
|
- Without groups saved via `config` are no longer ignored when the `--without` flag is used
|
1310
1351
|
|
1311
|
-
|
1352
|
+
# 1.10.0.pre.2 (May 7, 2015)
|
1312
1353
|
|
1313
|
-
|
1354
|
+
## Bug fixes:
|
1314
1355
|
|
1315
1356
|
- make BUNDLED WITH backwards compatible ([#3623](https://github.com/rubygems/bundler/issues/3623), @segiddins)
|
1316
1357
|
|
1317
|
-
|
1358
|
+
# 1.10.0.pre.1 (May 5, 2015)
|
1318
1359
|
|
1319
|
-
|
1360
|
+
## Bug fixes:
|
1320
1361
|
|
1321
1362
|
- always clean up tmp dirs ([#3277](https://github.com/rubygems/bundler/issues/3277), @hone, @indirect, @segiddins)
|
1322
1363
|
|
1323
|
-
|
1364
|
+
# 1.10.0.pre (May 3, 2015)
|
1324
1365
|
|
1325
|
-
Features:
|
1366
|
+
## Features:
|
1326
1367
|
|
1327
1368
|
- support gem extensions built into any directory on RubyGems 2.2+ ([#3582](https://github.com/rubygems/bundler/issues/3582), @voxik)
|
1328
1369
|
- add 'bundler/inline' which provides a `gemfile` method ([#3440](https://github.com/rubygems/bundler/issues/3440), @segiddins)
|
@@ -1337,77 +1378,77 @@ Features:
|
|
1337
1378
|
- make timeouts and retries configurable via `config` ([#3601](https://github.com/rubygems/bundler/issues/3601), @pducks32)
|
1338
1379
|
- add `install_if` Gemfile method for conditional installs ([#3611](https://github.com/rubygems/bundler/issues/3611), @segiddins)
|
1339
1380
|
|
1340
|
-
|
1381
|
+
## Bug fixes:
|
1341
1382
|
|
1342
1383
|
- standalone mode now uses builtin gems correctly ([#3610](https://github.com/rubygems/bundler/issues/3610), @segiddins)
|
1343
1384
|
- fix `rake spec:deps` on MinGW Ruby 2.0+ ([#3487](https://github.com/rubygems/bundler/issues/3487), @marutosi)
|
1344
1385
|
- remember all y/n answers when generating gems ([#3579](https://github.com/rubygems/bundler/issues/3579), @pducks32)
|
1345
1386
|
|
1346
|
-
Performance:
|
1387
|
+
## Performance:
|
1347
1388
|
|
1348
1389
|
- use RubyGems stub specifications when possible ([#3580](https://github.com/rubygems/bundler/issues/3580), @segiddins)
|
1349
1390
|
|
1350
|
-
Deprecations:
|
1391
|
+
## Deprecations:
|
1351
1392
|
|
1352
1393
|
- deprecated the (never enabled) `bundle_ruby` binary (@smlance)
|
1353
1394
|
|
1354
|
-
|
1395
|
+
# 1.9.10 (June 22, 2015)
|
1355
1396
|
|
1356
|
-
Features:
|
1397
|
+
## Features:
|
1357
1398
|
|
1358
1399
|
- the `BUNDLED WITH` section of lockfiles generated by 1.10+ will be preserved (@segiddins)
|
1359
1400
|
|
1360
|
-
|
1401
|
+
# 1.9.9 (May 16, 2015)
|
1361
1402
|
|
1362
|
-
|
1403
|
+
## Bug fixes:
|
1363
1404
|
|
1364
1405
|
- read mirror and credential settings from older versions ([#3557](https://github.com/rubygems/bundler/issues/3557), @Strech)
|
1365
1406
|
|
1366
|
-
|
1407
|
+
# 1.9.8 (May 12, 2015)
|
1367
1408
|
|
1368
|
-
|
1409
|
+
## Bug fixes:
|
1369
1410
|
|
1370
1411
|
- fix regression in sudo mode introduced by 1.9.7 ([#3642](https://github.com/rubygems/bundler/issues/3642), @segiddins)
|
1371
1412
|
|
1372
|
-
|
1413
|
+
# 1.9.7 (May 11, 2015)
|
1373
1414
|
|
1374
|
-
|
1415
|
+
## Bug fixes:
|
1375
1416
|
|
1376
1417
|
- always clean up tmp dirs ([#3277](https://github.com/rubygems/bundler/issues/3277), @hone, @indirect, @segiddins)
|
1377
1418
|
|
1378
|
-
|
1419
|
+
# 1.9.6 (May 2, 2015)
|
1379
1420
|
|
1380
|
-
|
1421
|
+
## Bug fixes:
|
1381
1422
|
|
1382
1423
|
- use RubyGems spec stubs if available (@segiddins)
|
1383
1424
|
- allow creating gems with names containing two dashes ([#3483](https://github.com/rubygems/bundler/issues/3483), @janlelis)
|
1384
1425
|
- allow creating gems with names extending constants ([#3603](https://github.com/rubygems/bundler/issues/3603), @amatsuda)
|
1385
1426
|
|
1386
|
-
|
1427
|
+
# 1.9.5 (April 29, 2015)
|
1387
1428
|
|
1388
|
-
|
1429
|
+
## Bug fixes:
|
1389
1430
|
|
1390
1431
|
- respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/rubygems/bundler/issues/3585), @tmoore)
|
1391
1432
|
|
1392
|
-
|
1433
|
+
# 1.9.4 (April 13, 2015)
|
1393
1434
|
|
1394
|
-
|
1435
|
+
## Bug fixes:
|
1395
1436
|
|
1396
1437
|
- fix regression in installing x86 and universal gems ([#3565](https://github.com/rubygems/bundler/issues/3565), @jdmundrawala)
|
1397
1438
|
- improve error when gems are missing ([#3564](https://github.com/rubygems/bundler/issues/3564), @sealocal)
|
1398
1439
|
|
1399
|
-
|
1440
|
+
# 1.9.3 (April 12, 2015)
|
1400
1441
|
|
1401
|
-
|
1442
|
+
## Bug fixes:
|
1402
1443
|
|
1403
1444
|
- handle removal of `specs` from rubygems/rubygems@620910 ([#3558](https://github.com/rubygems/bundler/issues/3558), @indirect)
|
1404
1445
|
- install 'universal' gems on Windows ([#3066](https://github.com/rubygems/bundler/issues/3066), @jdmundrawala)
|
1405
1446
|
- stop passing --local during `rake install` task ([#3236](https://github.com/rubygems/bundler/issues/3236), @indirect)
|
1406
1447
|
- guard against all possible accidental public gem pushes ([#3533](https://github.com/rubygems/bundler/issues/3533), @indirect)
|
1407
1448
|
|
1408
|
-
|
1449
|
+
# 1.9.2 (March 30, 2015)
|
1409
1450
|
|
1410
|
-
|
1451
|
+
## Bug fixes:
|
1411
1452
|
|
1412
1453
|
- ensure gem executables are executable ([#3517](https://github.com/rubygems/bundler/issues/3517), [#3511](https://github.com/bundler/bundler/issues/3511), @indirect)
|
1413
1454
|
- fix warnings in Molinillo ([#3516](https://github.com/rubygems/bundler/issues/3516), @segiddins)
|
@@ -1415,95 +1456,95 @@ Bugfixes:
|
|
1415
1456
|
- keep gems locked when updating another gem from the same source ([#3520](https://github.com/rubygems/bundler/issues/3520), @indirect)
|
1416
1457
|
- resolve race that could build gems without saved arguments ([#3404](https://github.com/rubygems/bundler/issues/3404), @indirect)
|
1417
1458
|
|
1418
|
-
|
1459
|
+
# 1.9.1 (March 21, 2015)
|
1419
1460
|
|
1420
|
-
|
1461
|
+
## Bug fixes:
|
1421
1462
|
|
1422
1463
|
- avoid exception in 'bundler/gem_tasks' ([#3492](https://github.com/rubygems/bundler/issues/3492), @segiddins)
|
1423
1464
|
|
1424
|
-
|
1465
|
+
# 1.9.0 (March 20, 2015)
|
1425
1466
|
|
1426
|
-
|
1467
|
+
# 1.9.0.rc (March 13, 2015)
|
1427
1468
|
|
1428
|
-
|
1469
|
+
## Bug fixes:
|
1429
1470
|
|
1430
1471
|
- make Bundler.which stop finding directories (@nohoho)
|
1431
1472
|
- handle Bundler prereleases correctly ([#3470](https://github.com/rubygems/bundler/issues/3470), @segiddins)
|
1432
1473
|
- add before_install to .travis.yml template for new gems (@kodnin)
|
1433
1474
|
|
1434
|
-
|
1475
|
+
# 1.9.0.pre.1 (March 11, 2015)
|
1435
1476
|
|
1436
|
-
|
1477
|
+
## Bug fixes:
|
1437
1478
|
|
1438
1479
|
- make `gem` command work again (@arthurnn)
|
1439
1480
|
|
1440
|
-
|
1481
|
+
# 1.9.0.pre (March 11, 2015)
|
1441
1482
|
|
1442
|
-
Features:
|
1483
|
+
## Features:
|
1443
1484
|
|
1444
1485
|
- prefer gemspecs closest to the directory root ([#3428](https://github.com/rubygems/bundler/issues/3428), @segiddins)
|
1445
1486
|
- debug log for API request limits ([#3452](https://github.com/rubygems/bundler/issues/3452), @neerfri)
|
1446
1487
|
|
1447
|
-
|
1488
|
+
## Minor enhancements:
|
1448
1489
|
|
1449
1490
|
- Molinillo resolver, shared with CocoaPods (@segiddins)
|
1450
1491
|
- updated Thor to v0.19.1 (@segiddins)
|
1451
1492
|
|
1452
|
-
|
1493
|
+
# 1.8.9 (May 2, 2015)
|
1453
1494
|
|
1454
|
-
|
1495
|
+
## Bug fixes:
|
1455
1496
|
|
1456
1497
|
- Use RubyGems spec stubs if available (@segiddins)
|
1457
1498
|
|
1458
|
-
|
1499
|
+
# 1.8.8 (April 29, 2015)
|
1459
1500
|
|
1460
|
-
|
1501
|
+
## Bug fixes:
|
1461
1502
|
|
1462
1503
|
- Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/rubygems/bundler/issues/3585), @tmoore)
|
1463
1504
|
|
1464
|
-
|
1505
|
+
# 1.8.7 (April 7, 2015)
|
1465
1506
|
|
1466
|
-
|
1507
|
+
## Bug fixes:
|
1467
1508
|
|
1468
1509
|
- stop suppressing errors inside gems that get required ([#3549](https://github.com/rubygems/bundler/issues/3549), @indirect)
|
1469
1510
|
|
1470
|
-
|
1511
|
+
# 1.8.6 (March 30, 2015)
|
1471
1512
|
|
1472
|
-
|
1513
|
+
## Bug fixes:
|
1473
1514
|
|
1474
1515
|
- keep gems locked when updating another gem from the same source ([#3250](https://github.com/rubygems/bundler/issues/3250), @indirect)
|
1475
1516
|
- resolve race that could build gems without saved arguments ([#3404](https://github.com/rubygems/bundler/issues/3404), @indirect)
|
1476
1517
|
|
1477
|
-
|
1518
|
+
# 1.8.5 (March 11, 2015)
|
1478
1519
|
|
1479
|
-
|
1520
|
+
## Bug fixes:
|
1480
1521
|
|
1481
1522
|
- remove MIT license from gemspec when removing license file (@indirect)
|
1482
1523
|
- respect 'no' immediately as well as saving it in `gem` config (@kirs)
|
1483
1524
|
|
1484
|
-
|
1525
|
+
# 1.8.4 (March 5, 2015)
|
1485
1526
|
|
1486
|
-
|
1527
|
+
## Bug fixes:
|
1487
1528
|
|
1488
1529
|
- document --all-platforms option ([#3449](https://github.com/rubygems/bundler/issues/3449), @moeffju)
|
1489
1530
|
- find gems from all sources on exec after install ([#3450](https://github.com/rubygems/bundler/issues/3450), @TimMoore)
|
1490
1531
|
|
1491
|
-
|
1532
|
+
# 1.8.3 (February 24, 2015)
|
1492
1533
|
|
1493
|
-
|
1534
|
+
## Bug fixes:
|
1494
1535
|
|
1495
1536
|
- handle boolean values for gem settings (@EduardoBautista)
|
1496
1537
|
- stop always looking for updated `path` gems ([#3414](https://github.com/rubygems/bundler/issues/3414), [#3417](https://github.com/bundler/bundler/issues/3417), [#3429](https://github.com/bundler/bundler/issues/3429), @TimMoore)
|
1497
1538
|
|
1498
|
-
|
1539
|
+
# 1.8.2 (February 14, 2015)
|
1499
1540
|
|
1500
|
-
|
1541
|
+
## Bug fixes:
|
1501
1542
|
|
1502
1543
|
- allow config settings for gems with 'http' in the name again ([#3398](https://github.com/rubygems/bundler/issues/3398), @TimMoore)
|
1503
1544
|
|
1504
|
-
|
1545
|
+
# 1.8.1 (February 13, 2015)
|
1505
1546
|
|
1506
|
-
|
1547
|
+
## Bug fixes:
|
1507
1548
|
|
1508
1549
|
- synchronize building git gem native extensions ([#3385](https://github.com/rubygems/bundler/issues/3385), @antifuchs & @indirect)
|
1509
1550
|
- set gemspec bindir correctly ([#3392](https://github.com/rubygems/bundler/issues/3392), @TimMoore)
|
@@ -1512,35 +1553,32 @@ Bugfixes:
|
|
1512
1553
|
- explain problem when caching causes permission error ([#3390](https://github.com/rubygems/bundler/issues/3390), @indirect)
|
1513
1554
|
- normalize URLs in config keys ([#3391](https://github.com/rubygems/bundler/issues/3391), @indirect)
|
1514
1555
|
|
1515
|
-
|
1556
|
+
# 1.8.0 (February 10, 2015)
|
1516
1557
|
|
1517
|
-
|
1558
|
+
## Bug fixes:
|
1518
1559
|
|
1519
1560
|
- gemfile `github` blocks now work ([#3379](https://github.com/rubygems/bundler/issues/3379), @indirect)
|
1520
|
-
|
1521
|
-
Bugfixes from v1.7.13:
|
1522
|
-
|
1523
1561
|
- look up installed gems in remote sources ([#3300](https://github.com/rubygems/bundler/issues/3300), [#3368](https://github.com/bundler/bundler/issues/3368), [#3377](https://github.com/bundler/bundler/issues/3377), [#3380](https://github.com/bundler/bundler/issues/3380), [#3381](https://github.com/bundler/bundler/issues/3381), @indirect)
|
1524
1562
|
- look up gems across all sources to satisfy dependencies ([#3365](https://github.com/rubygems/bundler/issues/3365), @keiths-osc)
|
1525
1563
|
- request dependencies for no more than 100 gems at a time ([#3367](https://github.com/rubygems/bundler/issues/3367), @segiddins)
|
1526
1564
|
|
1527
|
-
|
1565
|
+
# 1.8.0.rc (January 26, 2015)
|
1528
1566
|
|
1529
|
-
Features:
|
1567
|
+
## Features:
|
1530
1568
|
|
1531
1569
|
- add `config disable_multisource` option to ensure sources can't compete (@indirect)
|
1532
1570
|
|
1533
|
-
|
1571
|
+
## Bug fixes:
|
1534
1572
|
|
1535
1573
|
- don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/rubygems/bundler/issues/3338))
|
1536
1574
|
|
1537
|
-
Security:
|
1575
|
+
## Security fixes:
|
1538
1576
|
|
1539
1577
|
- warn when more than one top-level source is present (@indirect)
|
1540
1578
|
|
1541
|
-
|
1579
|
+
# 1.8.0.pre (January 26, 2015)
|
1542
1580
|
|
1543
|
-
Features:
|
1581
|
+
## Features:
|
1544
1582
|
|
1545
1583
|
- add metadata allowed_push_host to new gem template ([#3002](https://github.com/rubygems/bundler/issues/3002), @juanitofatas)
|
1546
1584
|
- adds a `--no-install` flag to `bundle package` (@d-reinhold)
|
@@ -1562,165 +1600,165 @@ Features:
|
|
1562
1600
|
- add `config gemfile /path` for other Gemfile locations (@dholdren)
|
1563
1601
|
- add `github` method alonside the `git` method (@BenMorganIO)
|
1564
1602
|
|
1565
|
-
|
1603
|
+
## Bug fixes:
|
1566
1604
|
|
1567
1605
|
- reduce memory usage with threaded parallel workers (@Who828)
|
1568
1606
|
- support read-only git gems (@pmahoney)
|
1569
1607
|
- various resolver performance improvements (@dubek)
|
1570
1608
|
- untaint git gem paths for Rubygems compatibility (@tdtds)
|
1571
1609
|
|
1572
|
-
Documentation:
|
1610
|
+
## Documentation:
|
1573
1611
|
|
1574
1612
|
- add missing Gemfile global `path` explanation (@agenteo)
|
1575
1613
|
|
1576
|
-
|
1614
|
+
# 1.7.15 (April 29, 2015)
|
1577
1615
|
|
1578
|
-
|
1616
|
+
## Bug fixes:
|
1579
1617
|
|
1580
1618
|
- Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/rubygems/bundler/issues/3585), @tmoore)
|
1581
1619
|
|
1582
|
-
|
1620
|
+
# 1.7.14 (March 30, 2015)
|
1583
1621
|
|
1584
|
-
|
1622
|
+
## Bug fixes:
|
1585
1623
|
|
1586
1624
|
- Keep gems locked when updating another gem from the same source ([#3250](https://github.com/rubygems/bundler/issues/3250), @indirect)
|
1587
1625
|
- Don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/rubygems/bundler/issues/3338))
|
1588
1626
|
|
1589
|
-
|
1627
|
+
# 1.7.13 (February 7, 2015)
|
1590
1628
|
|
1591
|
-
|
1629
|
+
## Bug fixes:
|
1592
1630
|
|
1593
1631
|
- Look up installed gems in remote sources ([#3300](https://github.com/rubygems/bundler/issues/3300), [#3368](https://github.com/bundler/bundler/issues/3368), [#3377](https://github.com/bundler/bundler/issues/3377), [#3380](https://github.com/bundler/bundler/issues/3380), [#3381](https://github.com/bundler/bundler/issues/3381), @indirect)
|
1594
1632
|
- Look up gems across all sources to satisfy dependencies ([#3365](https://github.com/rubygems/bundler/issues/3365), @keiths-osc)
|
1595
1633
|
- Request dependencies for no more than 100 gems at a time ([#3367](https://github.com/rubygems/bundler/issues/3367), @segiddins)
|
1596
1634
|
|
1597
|
-
|
1635
|
+
# 1.7.12 (January 8, 2015)
|
1598
1636
|
|
1599
|
-
|
1637
|
+
## Bug fixes:
|
1600
1638
|
|
1601
1639
|
- Always send credentials for sources, fixing private Gemfury gems ([#3342](https://github.com/rubygems/bundler/issues/3342), @TimMoore)
|
1602
1640
|
|
1603
|
-
|
1641
|
+
# 1.7.11 (January 4, 2015)
|
1604
1642
|
|
1605
|
-
|
1643
|
+
## Bug fixes:
|
1606
1644
|
|
1607
1645
|
- Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` ([#3328](https://github.com/rubygems/bundler/issues/3328), @myabc)
|
1608
1646
|
|
1609
|
-
|
1647
|
+
# 1.7.10 (December 29, 2014)
|
1610
1648
|
|
1611
|
-
|
1649
|
+
## Bug fixes:
|
1612
1650
|
|
1613
1651
|
- Fix source blocks sometimes causing deployment mode to fail wrongly ([#3298](https://github.com/rubygems/bundler/issues/3298), @TimMoore)
|
1614
1652
|
|
1615
|
-
Features
|
1653
|
+
## Features:
|
1616
1654
|
|
1617
1655
|
- Support `platform :mri_22` and related version bits ([#3309](https://github.com/rubygems/bundler/issues/3309), @thomasfedb)
|
1618
1656
|
|
1619
|
-
|
1657
|
+
# 1.7.9 (December 9, 2014)
|
1620
1658
|
|
1621
|
-
|
1659
|
+
## Bug fixes:
|
1622
1660
|
|
1623
1661
|
- Fix an issue where bundler sometime spams one gem in Gemfile.lock ([#3216](https://github.com/rubygems/bundler/issues/3216), @Who828)
|
1624
1662
|
- Ensure bundle update installs the newer version of the gem ([#3089](https://github.com/rubygems/bundler/issues/3089), @Who828)
|
1625
1663
|
- Fix an regression which stopped Bundler from resolving some Gemfiles ([#3059](https://github.com/rubygems/bundler/issues/3059), [#3248](https://github.com/bundler/bundler/issues/3248), @Who828)
|
1626
1664
|
|
1627
|
-
|
1665
|
+
# 1.7.8 (December 6, 2014)
|
1628
1666
|
|
1629
|
-
|
1667
|
+
## Bug fixes:
|
1630
1668
|
|
1631
1669
|
- Hide credentials while warning about gems with ambiguous sources ([#3256](https://github.com/rubygems/bundler/issues/3256), @TimMoore)
|
1632
1670
|
|
1633
|
-
|
1671
|
+
# 1.7.7 (November 19, 2014)
|
1634
1672
|
|
1635
|
-
|
1673
|
+
## Bug fixes:
|
1636
1674
|
|
1637
1675
|
- Ensure server credentials stored in config or ENV will be used ([#3180](https://github.com/rubygems/bundler/issues/3180), @arronmabrey)
|
1638
1676
|
- Fix race condition causing errors while installing git-based gems ([#3174](https://github.com/rubygems/bundler/issues/3174), @Who828)
|
1639
1677
|
- Use single quotes in config so YAML won't add more quotes ([#3261](https://github.com/rubygems/bundler/issues/3261), @indirect)
|
1640
1678
|
|
1641
|
-
|
1679
|
+
# 1.7.6 (November 11, 2014)
|
1642
1680
|
|
1643
|
-
|
1681
|
+
## Bug fixes:
|
1644
1682
|
|
1645
1683
|
- CA certificates that work with all OpenSSLs (@luislavena, @indirect)
|
1646
1684
|
|
1647
|
-
|
1685
|
+
# 1.7.5 (November 10, 2014)
|
1648
1686
|
|
1649
|
-
|
1687
|
+
## Bug fixes:
|
1650
1688
|
|
1651
1689
|
- Fix --deployment with source blocks and non-alphabetical gems ([#3224](https://github.com/rubygems/bundler/issues/3224), @TimMoore)
|
1652
1690
|
- Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
|
1653
1691
|
|
1654
|
-
|
1692
|
+
# 1.7.4 (October 19, 2014)
|
1655
1693
|
|
1656
|
-
|
1694
|
+
## Bug fixes:
|
1657
1695
|
|
1658
1696
|
- Allow --deployment after `pack` while using source blocks ([#3167](https://github.com/rubygems/bundler/issues/3167), @TimMoore)
|
1659
1697
|
- Use dependency API even when HTTP credentials are in ENV ([#3191](https://github.com/rubygems/bundler/issues/3191), @fvaleur)
|
1660
1698
|
- Silence warnings (including root warning) in --quiet mode ([#3186](https://github.com/rubygems/bundler/issues/3186), @indirect)
|
1661
1699
|
- Stop asking gem servers for gems already found locally ([#2909](https://github.com/rubygems/bundler/issues/2909), @dubek)
|
1662
1700
|
|
1663
|
-
|
1701
|
+
# 1.7.3 (September 14, 2014)
|
1664
1702
|
|
1665
|
-
|
1703
|
+
## Bug fixes:
|
1666
1704
|
|
1667
1705
|
- `extconf.rb` is now generated with the right path for `create_makefile` (@andremedeiros)
|
1668
1706
|
- Fix various Ruby warnings (@piotrsanarki, @indirect)
|
1669
1707
|
|
1670
|
-
|
1708
|
+
# 1.7.2 (August 23, 2014)
|
1671
1709
|
|
1672
|
-
|
1710
|
+
## Bug fixes:
|
1673
1711
|
|
1674
1712
|
- Revert gem source sorting in lock files (@indirect)
|
1675
1713
|
|
1676
|
-
|
1714
|
+
# 1.7.1 (August 20, 2014)
|
1677
1715
|
|
1678
|
-
|
1716
|
+
## Bug fixes:
|
1679
1717
|
|
1680
1718
|
- Install gems from one source needed by gems in another source (@indirect)
|
1681
1719
|
- Install the same gem versions even after some are installed (@TimMoore)
|
1682
1720
|
- Download specs only when installing from servers (@indirect)
|
1683
1721
|
|
1684
|
-
|
1722
|
+
# 1.7.0 (August 13, 2014)
|
1685
1723
|
|
1686
|
-
Security:
|
1724
|
+
## Security fixes:
|
1687
1725
|
|
1688
1726
|
- Fix for CVE-2013-0334, installing gems from an unexpected source (@TimMoore)
|
1689
1727
|
|
1690
|
-
Features:
|
1728
|
+
## Features:
|
1691
1729
|
|
1692
1730
|
- Gemfile `source` calls now take a block containing gems from that source (@TimMoore)
|
1693
1731
|
- Added the `:source` option to `gem` to specify a source (@TimMoore)
|
1694
1732
|
|
1695
|
-
|
1733
|
+
## Bug fixes:
|
1696
1734
|
|
1697
1735
|
- Warn on ambiguous gems available from more than one source (@TimMoore)
|
1698
1736
|
|
1699
|
-
|
1737
|
+
# 1.6.7 (October 19, 2014)
|
1700
1738
|
|
1701
|
-
Features:
|
1739
|
+
## Features:
|
1702
1740
|
|
1703
1741
|
- warn to upgrade when using useless source blocks (@danfinnie)
|
1704
1742
|
|
1705
|
-
Documentation:
|
1743
|
+
## Documentation:
|
1706
1744
|
|
1707
1745
|
- explain how to use gem server credentials via ENV (@hwartig)
|
1708
1746
|
|
1709
|
-
|
1747
|
+
# 1.6.6 (August 23, 2014)
|
1710
1748
|
|
1711
|
-
|
1749
|
+
## Bug fixes:
|
1712
1750
|
|
1713
1751
|
- restore Gemfile credentials to Gemfile.lock (@indirect)
|
1714
1752
|
|
1715
|
-
|
1753
|
+
# 1.6.5 (July 23, 2014)
|
1716
1754
|
|
1717
|
-
|
1755
|
+
## Bug fixes:
|
1718
1756
|
|
1719
1757
|
- require openssl explicitly to fix rare HTTPS request failures (@indirect, [#3107](https://github.com/rubygems/bundler/issues/3107))
|
1720
1758
|
|
1721
|
-
|
1759
|
+
# 1.6.4 (July 17, 2014)
|
1722
1760
|
|
1723
|
-
|
1761
|
+
## Bug fixes:
|
1724
1762
|
|
1725
1763
|
- fix undefined constant error when can't find gem during binstubs ([#3095](https://github.com/rubygems/bundler/issues/3095), @jetaggart)
|
1726
1764
|
- work when installed git gems are not writable ([#3092](https://github.com/rubygems/bundler/issues/3092), @pmahoney)
|
@@ -1730,18 +1768,18 @@ Bugfixes:
|
|
1730
1768
|
- skip dependencies from other platforms (@mvz)
|
1731
1769
|
- work when Rubygems was built without SSL (@andremedeiros)
|
1732
1770
|
|
1733
|
-
|
1771
|
+
# 1.6.3 (June 16, 2014)
|
1734
1772
|
|
1735
|
-
|
1773
|
+
## Bug fixes:
|
1736
1774
|
|
1737
1775
|
- fix regression when resolving many conflicts ([#2994](https://github.com/rubygems/bundler/issues/2994), @Who828)
|
1738
1776
|
- use local gemspec for builtin gems during install --local ([#3041](https://github.com/rubygems/bundler/issues/3041), @Who828)
|
1739
1777
|
- don't warn about sudo when installing on Windows ([#2984](https://github.com/rubygems/bundler/issues/2984), @indirect)
|
1740
1778
|
- shell escape `bundle open` arguments (@indirect)
|
1741
1779
|
|
1742
|
-
|
1780
|
+
# 1.6.2 (April 13, 2014)
|
1743
1781
|
|
1744
|
-
|
1782
|
+
## Bug fixes:
|
1745
1783
|
|
1746
1784
|
- fix an exception when using builtin gems ([#2915](https://github.com/rubygems/bundler/issues/2915), [#2963](https://github.com/bundler/bundler/issues/2963), @gnufied)
|
1747
1785
|
- cache gems that are built in to the running ruby ([#2975](https://github.com/rubygems/bundler/issues/2975), @indirect)
|
@@ -1749,23 +1787,23 @@ Bugfixes:
|
|
1749
1787
|
- keep standalone working even with builtin gems (@indirect)
|
1750
1788
|
- don't update vendor/cache in deployment mode ([#2921](https://github.com/rubygems/bundler/issues/2921), @indirect)
|
1751
1789
|
|
1752
|
-
Features:
|
1790
|
+
## Features:
|
1753
1791
|
|
1754
1792
|
- warn informatively when `bundle install` is run as root ([#2936](https://github.com/rubygems/bundler/issues/2936), @1337807)
|
1755
1793
|
|
1756
|
-
|
1794
|
+
# 1.6.1 (April 2, 2014)
|
1757
1795
|
|
1758
|
-
|
1796
|
+
## Bug fixes:
|
1759
1797
|
|
1760
1798
|
- update C extensions when git gem versions change ([#2948](https://github.com/rubygems/bundler/issues/2948), @dylanahsmith)
|
1761
1799
|
|
1762
|
-
Features:
|
1800
|
+
## Features:
|
1763
1801
|
|
1764
1802
|
- add support for C extensions in sudo mode on Rubygems 2.2
|
1765
1803
|
|
1766
|
-
|
1804
|
+
# 1.6.0 (March 28, 2014)
|
1767
1805
|
|
1768
|
-
|
1806
|
+
## Bug fixes:
|
1769
1807
|
|
1770
1808
|
- many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
|
1771
1809
|
- redirects across hosts now work on rubies without OpenSSL ([#2686](https://github.com/rubygems/bundler/issues/2686), @grddev)
|
@@ -1780,7 +1818,7 @@ Bugfixes:
|
|
1780
1818
|
- handle exception installing when build_info owned by root (@Who828)
|
1781
1819
|
- skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
|
1782
1820
|
|
1783
|
-
Features:
|
1821
|
+
## Features:
|
1784
1822
|
|
1785
1823
|
- resolver rewritten to avoid recursion (@Who828)
|
1786
1824
|
- add `git_source` for custom options like :github and :gist (@strzalek)
|
@@ -1795,20 +1833,20 @@ Features:
|
|
1795
1833
|
- Avoid using threequals operator where possible (@as-cii)
|
1796
1834
|
- Add `bundle update --group` to update specific group ([#2731](https://github.com/rubygems/bundler/issues/2731) @banyan)
|
1797
1835
|
|
1798
|
-
Documentation:
|
1836
|
+
## Documentation:
|
1799
1837
|
|
1800
1838
|
- Add missing switches for bundle-install(1) and bundle-update(1) (@as-cii)
|
1801
1839
|
|
1802
|
-
|
1840
|
+
# 1.5.3 (February 6, 2014)
|
1803
1841
|
|
1804
|
-
|
1842
|
+
## Bug fixes:
|
1805
1843
|
|
1806
1844
|
- find "missing" gems that are actually present ([#2780](https://github.com/rubygems/bundler/issues/2780), [#2818](https://github.com/bundler/bundler/issues/2818), [#2854](https://github.com/bundler/bundler/issues/2854))
|
1807
1845
|
- use n-1 cores when given n jobs for parallel install (@jdickey)
|
1808
1846
|
|
1809
|
-
|
1847
|
+
# 1.5.2 (January 10, 2014)
|
1810
1848
|
|
1811
|
-
|
1849
|
+
## Bug fixes:
|
1812
1850
|
|
1813
1851
|
- fix integration with Rubygems 1.8.0-1.8.19
|
1814
1852
|
- handle ENETDOWN exception during network requests
|
@@ -1817,36 +1855,36 @@ Bugfixes:
|
|
1817
1855
|
- set git binstub permissions by umask (@v-yarotsky)
|
1818
1856
|
- remove parallel install debug log
|
1819
1857
|
|
1820
|
-
|
1858
|
+
# 1.5.1 (December 28, 2013)
|
1821
1859
|
|
1822
|
-
|
1860
|
+
## Bug fixes:
|
1823
1861
|
|
1824
1862
|
- correctly find gems installed with Ruby by default
|
1825
1863
|
|
1826
|
-
|
1864
|
+
# 1.5.0 (December 26, 2013)
|
1827
1865
|
|
1828
|
-
Features:
|
1866
|
+
## Features:
|
1829
1867
|
|
1830
1868
|
- install missing gems if their specs are present (@hone)
|
1831
1869
|
|
1832
|
-
|
1870
|
+
## Bug fixes:
|
1833
1871
|
|
1834
1872
|
- use print for "Installing…" so messages are thread-safe (@TimMoore)
|
1835
1873
|
|
1836
|
-
|
1874
|
+
# 1.5.0.rc.2 (December 18, 2013)
|
1837
1875
|
|
1838
|
-
|
1876
|
+
## Features:
|
1839
1877
|
|
1840
1878
|
- Support threaded installation on Rubygems 2.0.7+
|
1841
1879
|
- Debug installation logs in .bundle/install.log
|
1842
1880
|
|
1843
|
-
|
1881
|
+
## Bug fixes:
|
1844
1882
|
|
1845
1883
|
- Try to catch gem installation race conditions
|
1846
1884
|
|
1847
|
-
|
1885
|
+
# 1.5.0.rc.1 (November 9, 2013)
|
1848
1886
|
|
1849
|
-
Features:
|
1887
|
+
## Features:
|
1850
1888
|
|
1851
1889
|
- bundle update also accepts --jobs ([#2692](https://github.com/rubygems/bundler/issues/2692), @mrkn)
|
1852
1890
|
- add fork URL to README for new `bundle gem` ([#2665](https://github.com/rubygems/bundler/issues/2665), @zzak)
|
@@ -1855,7 +1893,7 @@ Features:
|
|
1855
1893
|
- don't redownload installed specs for `bundle install` ([#2680](https://github.com/rubygems/bundler/issues/2680), @cainlevy)
|
1856
1894
|
- override gem sources with mirrors ([#2650](https://github.com/rubygems/bundler/issues/2650), @danielsdeleo, @mkristian)
|
1857
1895
|
|
1858
|
-
|
1896
|
+
## Bug fixes:
|
1859
1897
|
|
1860
1898
|
- fix sharing same SSL socket when forking workers for parallel install ([#2632](https://github.com/rubygems/bundler/issues/2632))
|
1861
1899
|
- fix msg typo in GitNotAllowedError ([#2654](https://github.com/rubygems/bundler/issues/2654), @joyicecloud)
|
@@ -1865,9 +1903,9 @@ Bugfixes:
|
|
1865
1903
|
- fix the bug that downloads every spec when API fetcher encouters an error
|
1866
1904
|
- only retry network requests
|
1867
1905
|
|
1868
|
-
|
1906
|
+
# 1.4.0.rc.1 (September 29, 2013)
|
1869
1907
|
|
1870
|
-
Features:
|
1908
|
+
## Features:
|
1871
1909
|
|
1872
1910
|
- add support for the x64-mingw32 platform ([#2356](https://github.com/rubygems/bundler/issues/2356), [#2590](https://github.com/bundler/bundler/issues/2590), @larskanis)
|
1873
1911
|
- add :patchlevel option to ruby DSL
|
@@ -1882,16 +1920,16 @@ Features:
|
|
1882
1920
|
- add `--retry` to retry failed network and git commands (@schneems)
|
1883
1921
|
- include command and versions in User-Agent (@indirect, @joyicecloud)
|
1884
1922
|
|
1885
|
-
|
1923
|
+
## Bug fixes:
|
1886
1924
|
|
1887
1925
|
- allow passwordless Basic Auth ([#2606](https://github.com/rubygems/bundler/issues/2606), @rykov)
|
1888
1926
|
- don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
|
1889
1927
|
- revert [#2569](https://github.com/rubygems/bundler/issues/2569), staying compatible with git: instead of https: for :github gems
|
1890
1928
|
- handle exceptions while installing gems in parallel (@gnufied)
|
1891
1929
|
|
1892
|
-
|
1930
|
+
# 1.4.0.pre.1 (August 4, 2013)
|
1893
1931
|
|
1894
|
-
Features:
|
1932
|
+
## Features:
|
1895
1933
|
|
1896
1934
|
- retry network requests while installing gems ([#2561](https://github.com/rubygems/bundler/issues/2561), @ascherger)
|
1897
1935
|
- faster installs using gemspecs from the local system cache ([#2497](https://github.com/rubygems/bundler/issues/2497), @mipearson)
|
@@ -1908,16 +1946,16 @@ Features:
|
|
1908
1946
|
- add quiet option to `bundle package` ([#2573](https://github.com/rubygems/bundler/issues/2573), @shtirlic)
|
1909
1947
|
- use RUBYLIB instead of RUBYOPT for better Windows support ([#2536](https://github.com/rubygems/bundler/issues/2536), @equinux)
|
1910
1948
|
|
1911
|
-
|
1949
|
+
## Bug fixes:
|
1912
1950
|
|
1913
1951
|
- reduce stack size while resolving to fix JRuby overflow ([#2510](https://github.com/rubygems/bundler/issues/2510), @headius)
|
1914
1952
|
- display GitErrors while loading specs in --verbose mode ([#2461](https://github.com/rubygems/bundler/issues/2461))
|
1915
1953
|
- allow the same options hash to be passed to multiple gems ([#2447](https://github.com/rubygems/bundler/issues/2447))
|
1916
1954
|
- handle missing binaries without an exception ([#2019](https://github.com/rubygems/bundler/issues/2019), @luismreis)
|
1917
1955
|
|
1918
|
-
|
1956
|
+
# 1.3.6 (January 8, 2014)
|
1919
1957
|
|
1920
|
-
|
1958
|
+
## Bug fixes:
|
1921
1959
|
|
1922
1960
|
- make gemspec path option preserve relative paths in lock file (@bwillis)
|
1923
1961
|
- use umask when creating binstubs ([#1618](https://github.com/rubygems/bundler/issues/1618), @v-yarotsky)
|
@@ -1935,60 +1973,60 @@ Bugfixes:
|
|
1935
1973
|
- reinstall gems if they are missing with spec present
|
1936
1974
|
- set binstub permissions using umask ([#1618](https://github.com/rubygems/bundler/issues/1618), @v-yarotsky)
|
1937
1975
|
|
1938
|
-
|
1976
|
+
# 1.3.5 (April 3, 2013)
|
1939
1977
|
|
1940
|
-
Features:
|
1978
|
+
## Features:
|
1941
1979
|
|
1942
1980
|
- progress indicator while resolver is running (@chief)
|
1943
1981
|
|
1944
|
-
|
1982
|
+
## Bug fixes:
|
1945
1983
|
|
1946
1984
|
- update local overrides with orphaned revisions (@jamesferguson)
|
1947
1985
|
- revert to working quoting of RUBYOPT on Windows (@ogra)
|
1948
1986
|
- use basic auth even when SSL is not available (@jayniz)
|
1949
1987
|
- installing git gems without dependencies in deployment now works
|
1950
1988
|
|
1951
|
-
|
1989
|
+
# 1.3.4 (March 15, 2013)
|
1952
1990
|
|
1953
|
-
|
1991
|
+
## Bug fixes:
|
1954
1992
|
|
1955
1993
|
- load YAML on Rubygems versions that define module YAML
|
1956
1994
|
- fix regression that broke --without on ruby 1.8.7
|
1957
1995
|
|
1958
|
-
|
1996
|
+
# 1.3.3 (March 13, 2013)
|
1959
1997
|
|
1960
|
-
Features:
|
1998
|
+
## Features:
|
1961
1999
|
|
1962
2000
|
- compatible with Rubygems 2.0.2 (higher and lower already work)
|
1963
2001
|
- mention skipped groups in bundle install and bundle update output (@simi)
|
1964
2002
|
- `gem` creates rake tasks for minitest (@coop) and rspec
|
1965
2003
|
|
1966
|
-
|
2004
|
+
## Bug fixes:
|
1967
2005
|
|
1968
2006
|
- require rbconfig for standalone mode
|
1969
2007
|
|
1970
|
-
|
2008
|
+
# 1.3.2 (March 7, 2013)
|
1971
2009
|
|
1972
|
-
Features:
|
2010
|
+
## Features:
|
1973
2011
|
|
1974
2012
|
- include rubygems.org CA chain
|
1975
2013
|
|
1976
|
-
|
2014
|
+
## Bug fixes:
|
1977
2015
|
|
1978
2016
|
- don't store --dry-run as a Bundler setting
|
1979
2017
|
|
1980
|
-
|
2018
|
+
# 1.3.1 (March 3, 2013)
|
1981
2019
|
|
1982
|
-
|
2020
|
+
## Bug fixes:
|
1983
2021
|
|
1984
2022
|
- include manpages in gem, restoring many help pages
|
1985
2023
|
- handle more SSL certificate verification failures
|
1986
2024
|
- check for the full version of SSL, which we need (@alup)
|
1987
2025
|
- gem rake task 'install' now depends on task 'build' (@sunaku)
|
1988
2026
|
|
1989
|
-
|
2027
|
+
# 1.3.0 (February 24, 2013)
|
1990
2028
|
|
1991
|
-
Features:
|
2029
|
+
## Features:
|
1992
2030
|
|
1993
2031
|
- raise a useful error when the lockfile contains a merge conflict (@zofrex)
|
1994
2032
|
- ensure `rake release` checks for uncommitted as well as unstaged (@benmoss)
|
@@ -1996,22 +2034,22 @@ Features:
|
|
1996
2034
|
- set $MANPATH inside `exec` for gems with man pages (@sunaku)
|
1997
2035
|
- partial gem names for `open` and `update` now return a list (@takkanm)
|
1998
2036
|
|
1999
|
-
|
2037
|
+
## Bug fixes:
|
2000
2038
|
|
2001
2039
|
- `update` now (again) finds gems that aren't listed in the Gemfile
|
2002
2040
|
- `install` now (again) updates cached gems that aren't in the Gemfile
|
2003
2041
|
- install Gemfiles with HTTP sources even without OpenSSL present
|
2004
2042
|
- display CerficateFailureError message in full
|
2005
2043
|
|
2006
|
-
|
2044
|
+
# 1.3.0.pre.8 (February 12, 2013)
|
2007
2045
|
|
2008
|
-
Security:
|
2046
|
+
## Security fixes:
|
2009
2047
|
|
2010
2048
|
- validate SSL certificate chain during HTTPS network requests
|
2011
2049
|
- don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
|
2012
2050
|
- add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, [#2293](https://github.com/rubygems/bundler/issues/2293))
|
2013
2051
|
|
2014
|
-
Features:
|
2052
|
+
## Features:
|
2015
2053
|
|
2016
2054
|
- optimize resolver when too new of a gem is already activated (@rykov, [#2248](https://github.com/rubygems/bundler/issues/2248))
|
2017
2055
|
- update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
|
@@ -2024,7 +2062,7 @@ Features:
|
|
2024
2062
|
- inform users when the resolver starts
|
2025
2063
|
- disable reverse DNS to speed up API requests (@raggi)
|
2026
2064
|
|
2027
|
-
|
2065
|
+
## Bug fixes:
|
2028
2066
|
|
2029
2067
|
- raise errors while requiring dashed gems ([#1807](https://github.com/rubygems/bundler/issues/1807))
|
2030
2068
|
- quote the Bundler path on Windows (@jgeiger, [#1862](https://github.com/rubygems/bundler/issues/1862), [#1856](https://github.com/bundler/bundler/issues/1856))
|
@@ -2034,16 +2072,16 @@ Bugfixes:
|
|
2034
2072
|
- don't scare users with an error message during API fallback
|
2035
2073
|
- `install --binstubs` is back to overwriting. thanks, SemVer.
|
2036
2074
|
|
2037
|
-
|
2075
|
+
# 1.3.0.pre.7 (January 22, 2013)
|
2038
2076
|
|
2039
|
-
|
2077
|
+
## Bug fixes:
|
2040
2078
|
|
2041
2079
|
- stubs for gems with dev deps no longer cause exceptions ([#2272](https://github.com/rubygems/bundler/issues/2272))
|
2042
2080
|
- don't suggest binstubs to --binstubs users
|
2043
2081
|
|
2044
|
-
|
2082
|
+
# 1.3.0.pre.6 (January 22, 2013)
|
2045
2083
|
|
2046
|
-
Features:
|
2084
|
+
## Features:
|
2047
2085
|
|
2048
2086
|
- `binstubs` lists child gem bins if a gem has no binstubs
|
2049
2087
|
- `bundle gem --edit` will open the new gemspec (@ndbroadbent)
|
@@ -2051,47 +2089,47 @@ Features:
|
|
2051
2089
|
- `bundle env` prints info about bundler's environment (@peeja)
|
2052
2090
|
- add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
|
2053
2091
|
|
2054
|
-
|
2092
|
+
## Bug fixes:
|
2055
2093
|
|
2056
2094
|
- don't overwrite custom binstubs during `install --binstubs`
|
2057
2095
|
- don't throw an exception if `binstubs` gem doesn't exist
|
2058
2096
|
- `bundle config` now works in directories without a Gemfile
|
2059
2097
|
|
2060
|
-
|
2098
|
+
# 1.3.0.pre.5 (January 9, 2013)
|
2061
2099
|
|
2062
|
-
Features:
|
2100
|
+
## Features:
|
2063
2101
|
|
2064
2102
|
- make `--standalone` require lines ruby engine/version agnostic
|
2065
2103
|
- add `--dry-run` to `bundle clean` (@wfarr, [#2237](https://github.com/rubygems/bundler/issues/2237))
|
2066
2104
|
|
2067
|
-
|
2105
|
+
## Bug fixes:
|
2068
2106
|
|
2069
2107
|
- don't skip writing binstubs when doing `bundle install`
|
2070
2108
|
- distinguish between ruby 1.9/2.0 when using :platforms (@spastorino)
|
2071
2109
|
|
2072
|
-
|
2110
|
+
# 1.3.0.pre.4 (January 3, 2013)
|
2073
2111
|
|
2074
|
-
Features:
|
2112
|
+
## Features:
|
2075
2113
|
|
2076
2114
|
- `bundle binstubs <gem>` to setup individual binstubs
|
2077
2115
|
- `bundle install --binstubs ""` will remove binstubs option
|
2078
2116
|
- `bundle clean --dry-run` will print out gems instead of removing them
|
2079
2117
|
|
2080
|
-
|
2118
|
+
## Bug fixes:
|
2081
2119
|
|
2082
2120
|
- Avoid stack traces when Ctrl+C during bundle command (@mitchellh)
|
2083
2121
|
- fix YAML parsing in in ruby-preview2
|
2084
2122
|
|
2085
|
-
|
2123
|
+
# 1.3.0.pre.3 (December 21, 2012)
|
2086
2124
|
|
2087
|
-
Features:
|
2125
|
+
## Features:
|
2088
2126
|
|
2089
2127
|
- pushing gems during `rake release` can be disabled (@trans)
|
2090
2128
|
- installing gems with `rake install` is much faster (@utkarshkukreti)
|
2091
2129
|
- added platforms :ruby_20 and :mri_20, since the ABI has changed
|
2092
2130
|
- added '--edit' option to open generated gemspec in editor
|
2093
2131
|
|
2094
|
-
|
2132
|
+
## Bug fixes:
|
2095
2133
|
|
2096
2134
|
- :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
|
2097
2135
|
- revert SemVer breaking change to :github
|
@@ -2099,24 +2137,24 @@ Bugfixes:
|
|
2099
2137
|
- https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
|
2100
2138
|
- namespaced gems no longer generate a superfluous directory (@banyan)
|
2101
2139
|
|
2102
|
-
|
2140
|
+
# 1.3.0.pre.2 (December 9, 2012)
|
2103
2141
|
|
2104
|
-
Features:
|
2142
|
+
## Features:
|
2105
2143
|
|
2106
2144
|
- `config` expands local overrides like `local.rack .` (@gkop, [#2205](https://github.com/rubygems/bundler/issues/2205))
|
2107
2145
|
- `gem` generates files correctly for names like `jquery-rails` (@banyan, [#2201](https://github.com/rubygems/bundler/issues/2201))
|
2108
2146
|
- use gems from gists with the :gist option in the Gemfile (@jgaskins)
|
2109
2147
|
|
2110
|
-
|
2148
|
+
## Bug fixes:
|
2111
2149
|
|
2112
2150
|
- Gemfile sources other than rubygems.org work even when .gemrc contains sources
|
2113
2151
|
- caching git gems now caches specs, fixing e.g. git ls-files (@bison, [#2039](https://github.com/rubygems/bundler/issues/2039))
|
2114
2152
|
- `show GEM` now warns if the directory has been deleted (@rohit, [#2070](https://github.com/rubygems/bundler/issues/2070))
|
2115
2153
|
- git output hidden when running in --quiet mode (@rohit)
|
2116
2154
|
|
2117
|
-
|
2155
|
+
# 1.3.0.pre (November 29, 2012)
|
2118
2156
|
|
2119
|
-
Features:
|
2157
|
+
## Features:
|
2120
2158
|
|
2121
2159
|
- compatible with Ruby 2.0.0-preview2
|
2122
2160
|
- compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
|
@@ -2132,7 +2170,7 @@ Features:
|
|
2132
2170
|
- `gem` command generates MIT license (@BrentWheeldon)
|
2133
2171
|
- gem rake task 'release' resuses existing tags (@shtirlic)
|
2134
2172
|
|
2135
|
-
|
2173
|
+
## Bug fixes:
|
2136
2174
|
|
2137
2175
|
- JRuby new works with HTTPS gem sources (@davidcelis)
|
2138
2176
|
- `install` installs both rake rake-built gems at once (@crowbot, [#2107](https://github.com/rubygems/bundler/issues/2107))
|
@@ -2144,22 +2182,22 @@ Bugfixes:
|
|
2144
2182
|
- `gem` generates gemspecs that block double-requires
|
2145
2183
|
- `gem` generates gemspecs that admit they depend on rake
|
2146
2184
|
|
2147
|
-
|
2185
|
+
# 1.2.5 (February 24, 2013)
|
2148
2186
|
|
2149
|
-
|
2187
|
+
## Bug fixes:
|
2150
2188
|
|
2151
2189
|
- install Gemfiles with HTTP sources even without OpenSSL present
|
2152
2190
|
- display CerficateFailureError message in full
|
2153
2191
|
|
2154
|
-
|
2192
|
+
# 1.2.4 (February 12, 2013)
|
2155
2193
|
|
2156
|
-
Features:
|
2194
|
+
## Features:
|
2157
2195
|
|
2158
2196
|
- warn about Ruby 2.0 and Rubygems 2.0
|
2159
2197
|
- inform users when the resolver starts
|
2160
2198
|
- disable reverse DNS to speed up API requests (@raggi)
|
2161
2199
|
|
2162
|
-
|
2200
|
+
## Bug fixes:
|
2163
2201
|
|
2164
2202
|
- don't send user/pass when redirected to another host (@perplexes)
|
2165
2203
|
- load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/rubygems/bundler/issues/2301))
|
@@ -2167,46 +2205,46 @@ Bugfixes:
|
|
2167
2205
|
- resolve some ruby -w warnings (@chastell, [#2193](https://github.com/rubygems/bundler/issues/2193))
|
2168
2206
|
- don't scare users with an error message during API fallback
|
2169
2207
|
|
2170
|
-
|
2208
|
+
# 1.2.3 (November 29, 2012)
|
2171
2209
|
|
2172
|
-
|
2210
|
+
## Bug fixes:
|
2173
2211
|
|
2174
2212
|
- fix exceptions while loading some gemspecs
|
2175
2213
|
|
2176
|
-
|
2214
|
+
# 1.2.2 (November 14, 2012)
|
2177
2215
|
|
2178
|
-
|
2216
|
+
## Bug fixes:
|
2179
2217
|
|
2180
2218
|
- support new Psych::SyntaxError for Ruby 2.0.0 (@tenderlove, @sol)
|
2181
2219
|
- `bundle viz` works with git gems again (@hirochachacha)
|
2182
2220
|
- recognize more cases when OpenSSL is not present
|
2183
2221
|
|
2184
|
-
|
2222
|
+
# 1.2.1 (September 19, 2012)
|
2185
2223
|
|
2186
|
-
|
2224
|
+
## Bug fixes:
|
2187
2225
|
|
2188
2226
|
- `bundle clean` now works with BUNDLE_WITHOUT groups again
|
2189
2227
|
- have a net/http read timeout around the Gemcutter API Endpoint
|
2190
2228
|
|
2191
|
-
|
2229
|
+
# 1.2.0 (August 30, 2012)
|
2192
2230
|
|
2193
|
-
|
2231
|
+
## Bug fixes:
|
2194
2232
|
|
2195
2233
|
- raise original error message from LoadError's
|
2196
2234
|
|
2197
|
-
Documentation:
|
2235
|
+
## Documentation:
|
2198
2236
|
|
2199
2237
|
- `platform` man pages
|
2200
2238
|
|
2201
|
-
|
2239
|
+
# 1.2.0.rc.2 (August 8, 2012)
|
2202
2240
|
|
2203
|
-
|
2241
|
+
## Bug fixes:
|
2204
2242
|
|
2205
2243
|
- `clean` doesn't remove gems that are included in the lockfile
|
2206
2244
|
|
2207
|
-
|
2245
|
+
# 1.2.0.rc (July 17, 2012)
|
2208
2246
|
|
2209
|
-
Features:
|
2247
|
+
## Features:
|
2210
2248
|
|
2211
2249
|
- `check` now has a `--dry-run` option (@svenfuchs, [#1811](https://github.com/rubygems/bundler/issues/1811))
|
2212
2250
|
- loosen ruby directive for engines
|
@@ -2217,26 +2255,26 @@ Features:
|
|
2217
2255
|
- fall back on the full index when experiencing syck errors ([#1419](https://github.com/rubygems/bundler/issues/1419))
|
2218
2256
|
- handle syntax errors in Ruby gemspecs ([#1974](https://github.com/rubygems/bundler/issues/1974))
|
2219
2257
|
|
2220
|
-
|
2258
|
+
## Bug fixes:
|
2221
2259
|
|
2222
2260
|
- fix `pack`/`cache` with `--all` (@josevalim, [#1989](https://github.com/rubygems/bundler/issues/1989))
|
2223
2261
|
- don't display warning message when `cache_all` is set
|
2224
2262
|
- check for `nil` PATH ([#2006](https://github.com/rubygems/bundler/issues/2006))
|
2225
2263
|
- Always try to keep original GEM_PATH (@drogus, [#1920](https://github.com/rubygems/bundler/issues/1920))
|
2226
2264
|
|
2227
|
-
|
2265
|
+
# 1.2.0.pre.1 (May 27, 2012)
|
2228
2266
|
|
2229
|
-
Features:
|
2267
|
+
## Features:
|
2230
2268
|
|
2231
2269
|
- Git gems import submodules of submodules recursively (@nwwatson, [#1935](https://github.com/rubygems/bundler/issues/1935))
|
2232
2270
|
|
2233
|
-
|
2271
|
+
## Bug fixes:
|
2234
2272
|
|
2235
2273
|
- Exit from `check` with a non-zero status when frozen with no lock
|
2236
2274
|
- Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/rubygems/bundler/issues/1264))
|
2237
2275
|
- Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
|
2238
2276
|
|
2239
|
-
Documentation:
|
2277
|
+
## Documentation:
|
2240
2278
|
|
2241
2279
|
- Add instructions for local git repos to the `config` manpage
|
2242
2280
|
- Update the `Gemfile` manpage to include ruby versions (@stevenh512)
|
@@ -2244,9 +2282,9 @@ Documentation:
|
|
2244
2282
|
- Unknown exceptions now link to ISSUES for help instead of a new ticket
|
2245
2283
|
- Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/rubygems/bundler/issues/1911))
|
2246
2284
|
|
2247
|
-
|
2285
|
+
# 1.2.0.pre (May 4, 2012)
|
2248
2286
|
|
2249
|
-
Features:
|
2287
|
+
## Features:
|
2250
2288
|
|
2251
2289
|
- bundle package now accepts --all to package git and path dependencies
|
2252
2290
|
- bundle config now accepts --local, --global and --delete options
|
@@ -2262,31 +2300,31 @@ Features:
|
|
2262
2300
|
- add ruby to DSL, to specify version of ruby
|
2263
2301
|
- error out if the ruby version doesn't match
|
2264
2302
|
|
2265
|
-
Performance:
|
2303
|
+
## Performance:
|
2266
2304
|
|
2267
2305
|
- bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, [#1598](https://github.com/rubygems/bundler/issues/1598))
|
2268
2306
|
|
2269
|
-
|
2307
|
+
## Bug fixes:
|
2270
2308
|
|
2271
2309
|
- Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, [#1604](https://github.com/rubygems/bundler/issues/1604))
|
2272
2310
|
- Use the same ruby to run subprocesses as is running rake (@brixen)
|
2273
2311
|
|
2274
|
-
Documentation:
|
2312
|
+
## Documentation:
|
2275
2313
|
|
2276
2314
|
- Add :github documentation in DSL (@zofrex, [#1848](https://github.com/rubygems/bundler/issues/1848), [#1851](https://github.com/bundler/bundler/issues/1851), [#1852](https://github.com/bundler/bundler/issues/1852))
|
2277
2315
|
- Add docs for the --no-cache option (@fluxx, [#1796](https://github.com/rubygems/bundler/issues/1796))
|
2278
2316
|
- Add basic documentation for bin_path and bundle_path (@radar)
|
2279
2317
|
- Add documentation for the run method in Bundler::Installer
|
2280
2318
|
|
2281
|
-
|
2319
|
+
# 1.1.5 (July 17, 2012)
|
2282
2320
|
|
2283
|
-
Features:
|
2321
|
+
## Features:
|
2284
2322
|
|
2285
2323
|
- Special case `ruby` directive from 1.2.0, so you can install Gemfiles that use it
|
2286
2324
|
|
2287
|
-
|
2325
|
+
# 1.1.4 (May 27, 2012)
|
2288
2326
|
|
2289
|
-
|
2327
|
+
## Bug fixes:
|
2290
2328
|
|
2291
2329
|
- Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/rubygems/bundler/issues/1264))
|
2292
2330
|
- Unknown exceptions now link to ISSUES for help instead of a new ticket
|
@@ -2294,21 +2332,21 @@ Bugfixes:
|
|
2294
2332
|
- Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/rubygems/bundler/issues/1911))
|
2295
2333
|
- Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
|
2296
2334
|
|
2297
|
-
|
2335
|
+
# 1.1.3 (March 23, 2012)
|
2298
2336
|
|
2299
|
-
|
2337
|
+
## Bug fixes:
|
2300
2338
|
|
2301
2339
|
- escape the bundler root path (@tenderlove, [#1789](https://github.com/rubygems/bundler/issues/1789))
|
2302
2340
|
|
2303
|
-
|
2341
|
+
# 1.1.2 (March 20, 2012)
|
2304
2342
|
|
2305
|
-
|
2343
|
+
## Bug fixes:
|
2306
2344
|
|
2307
2345
|
- Fix --deployment for multiple PATH sections of the same source ([#1782](https://github.com/rubygems/bundler/issues/1782))
|
2308
2346
|
|
2309
|
-
|
2347
|
+
# 1.1.1 (March 14, 2012)
|
2310
2348
|
|
2311
|
-
|
2349
|
+
## Bug fixes:
|
2312
2350
|
|
2313
2351
|
- Rescue EAGAIN so the fetcher works on JRuby on Windows
|
2314
2352
|
- Stop asking users to report gem installation errors
|
@@ -2317,78 +2355,78 @@ Bugfixes:
|
|
2317
2355
|
- URI-encode gem names for dependency API (@rohit, [#1672](https://github.com/rubygems/bundler/issues/1672))
|
2318
2356
|
- Fix `cache` edge case in rubygems 1.3.7 ([#1202](https://github.com/rubygems/bundler/issues/1202))
|
2319
2357
|
|
2320
|
-
Performance:
|
2358
|
+
## Performance:
|
2321
2359
|
|
2322
2360
|
- Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
|
2323
2361
|
|
2324
|
-
|
2362
|
+
# 1.1.0 (March 7, 2012)
|
2325
2363
|
|
2326
|
-
|
2364
|
+
## Bug fixes:
|
2327
2365
|
|
2328
2366
|
- Clean up corrupted lockfiles on bundle installs
|
2329
2367
|
- Prevent duplicate GIT sources
|
2330
2368
|
- Fix post_install_message when uing the endpoint API
|
2331
2369
|
|
2332
|
-
|
2370
|
+
# 1.1.rc.8 (March 3, 2012)
|
2333
2371
|
|
2334
|
-
Performance:
|
2372
|
+
## Performance:
|
2335
2373
|
|
2336
2374
|
- don't resolve if the Gemfile.lock and Gemfile haven't changed
|
2337
2375
|
|
2338
|
-
|
2376
|
+
## Bug fixes:
|
2339
2377
|
|
2340
2378
|
- Load gemspecs from git even when a released gem has the same version ([#1609](https://github.com/rubygems/bundler/issues/1609))
|
2341
2379
|
- Declare an accurate Ruby version requirement of 1.8.7 or newer ([#1619](https://github.com/rubygems/bundler/issues/1619))
|
2342
2380
|
- handle gemspec development dependencies correctly (@raggi, [#1639](https://github.com/rubygems/bundler/issues/1639))
|
2343
2381
|
- Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, [#1604](https://github.com/rubygems/bundler/issues/1604))
|
2344
2382
|
|
2345
|
-
|
2383
|
+
# 1.1.rc.7 (December 29, 2011)
|
2346
2384
|
|
2347
|
-
|
2385
|
+
## Bug fixes:
|
2348
2386
|
|
2349
2387
|
- Fix bug where `clean` would break when using :path with no gemspec
|
2350
2388
|
|
2351
|
-
|
2389
|
+
# 1.1.rc.6 (December 22, 2011)
|
2352
2390
|
|
2353
|
-
|
2391
|
+
## Bug fixes:
|
2354
2392
|
|
2355
2393
|
- Fix performance regression from 1.0 (@spastorino, [#1511](https://github.com/rubygems/bundler/issues/1511), [#1591](https://github.com/bundler/bundler/issues/1591), [#1592](https://github.com/bundler/bundler/issues/1592))
|
2356
2394
|
- Load gems correctly when GEM_HOME is blank
|
2357
2395
|
- Refresh gems so Bundler works from inside a bundle
|
2358
2396
|
- Handle empty .bundle/config files without an error
|
2359
2397
|
|
2360
|
-
|
2398
|
+
# 1.1.rc.5 (December 14, 2011)
|
2361
2399
|
|
2362
|
-
|
2400
|
+
## Bug fixes:
|
2363
2401
|
|
2364
2402
|
- Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
|
2365
2403
|
|
2366
|
-
|
2404
|
+
# 1.1.rc.4 (December 14, 2011)
|
2367
2405
|
|
2368
|
-
Features:
|
2406
|
+
## Features:
|
2369
2407
|
|
2370
2408
|
- `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, [#683](https://github.com/rubygems/bundler/issues/683))
|
2371
2409
|
|
2372
|
-
|
2410
|
+
## Bug fixes:
|
2373
2411
|
|
2374
2412
|
- Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, [#1588](https://github.com/rubygems/bundler/issues/1588))
|
2375
2413
|
- fix `bundle viz` (@hirochachacha, [#1586](https://github.com/rubygems/bundler/issues/1586))
|
2376
2414
|
|
2377
|
-
|
2415
|
+
# 1.1.rc.3 (December 8, 2011)
|
2378
2416
|
|
2379
|
-
|
2417
|
+
## Bug fixes:
|
2380
2418
|
|
2381
2419
|
- fix relative_path so it checks Bundler.root is actually in the beginning of the path ([#1582](https://github.com/rubygems/bundler/issues/1582))
|
2382
2420
|
- fix bundle outdated doesn't list all gems (@joelmoss, [#1521](https://github.com/rubygems/bundler/issues/1521))
|
2383
2421
|
|
2384
|
-
|
2422
|
+
# 1.1.rc.2 (December 6, 2011)
|
2385
2423
|
|
2386
|
-
Features:
|
2424
|
+
## Features:
|
2387
2425
|
|
2388
2426
|
- Added README.md to `newgem` (@ognevsky, [#1574](https://github.com/rubygems/bundler/issues/1574))
|
2389
2427
|
- Added LICENSE (MIT) to newgem (@ognevsky, [#1571](https://github.com/rubygems/bundler/issues/1571))
|
2390
2428
|
|
2391
|
-
|
2429
|
+
## Bug fixes:
|
2392
2430
|
|
2393
2431
|
- only auto-namespace requires for implied requires ([#1531](https://github.com/rubygems/bundler/issues/1531))
|
2394
2432
|
- fix bundle clean output for git repos ([#1473](https://github.com/rubygems/bundler/issues/1473))
|
@@ -2403,38 +2441,38 @@ Bugfixes:
|
|
2403
2441
|
- `bundle init` now uses https://rubygems.org (@jjb, [#1522](https://github.com/rubygems/bundler/issues/1522))
|
2404
2442
|
- `bundle install/update` does not autoclean when using --path for semver
|
2405
2443
|
|
2406
|
-
Documentation:
|
2444
|
+
## Documentation:
|
2407
2445
|
|
2408
2446
|
- added documentation for --shebang option for `bundle install` (@lunks, [#1475](https://github.com/rubygems/bundler/issues/1475), [#1558](https://github.com/bundler/bundler/issues/1558))
|
2409
2447
|
|
2410
|
-
|
2448
|
+
# 1.1.rc (October 3, 2011)
|
2411
2449
|
|
2412
|
-
Features:
|
2450
|
+
## Features:
|
2413
2451
|
|
2414
2452
|
- add `--shebang` option to bundle install (@bensie, [#1467](https://github.com/rubygems/bundler/issues/1467))
|
2415
2453
|
- build passes on ruby 1.9.3rc1 ([#1458](https://github.com/rubygems/bundler/issues/1458), [#1469](https://github.com/bundler/bundler/issues/1469))
|
2416
2454
|
- hide basic auth credentials for custom sources ([#1440](https://github.com/rubygems/bundler/issues/1440), [#1463](https://github.com/bundler/bundler/issues/1463))
|
2417
2455
|
|
2418
|
-
|
2456
|
+
## Bug fixes:
|
2419
2457
|
|
2420
2458
|
- fix index search result caching ([#1446](https://github.com/rubygems/bundler/issues/1446), [#1466](https://github.com/bundler/bundler/issues/1466))
|
2421
2459
|
- fix fetcher prints multiple times during install ([#1445](https://github.com/rubygems/bundler/issues/1445), [#1462](https://github.com/bundler/bundler/issues/1462))
|
2422
2460
|
- don't mention API errors from non-rubygems.org sources
|
2423
2461
|
- fix autoclean so it doesn't remove bins that are used ([#1459](https://github.com/rubygems/bundler/issues/1459), [#1460](https://github.com/bundler/bundler/issues/1460))
|
2424
2462
|
|
2425
|
-
Documentation:
|
2463
|
+
## Documentation:
|
2426
2464
|
|
2427
2465
|
- add :require => [...] to the gemfile(5) manpage (@nono, [#1468](https://github.com/rubygems/bundler/issues/1468))
|
2428
2466
|
|
2429
|
-
|
2467
|
+
# 1.1.pre.10 (September 27, 2011)
|
2430
2468
|
|
2431
|
-
Features:
|
2469
|
+
## Features:
|
2432
2470
|
|
2433
2471
|
- `config system_bindir foo` added, works like "-n foo" in your .gemrc file
|
2434
2472
|
|
2435
|
-
|
2473
|
+
# 1.1.pre.9 (September 18, 2011)
|
2436
2474
|
|
2437
|
-
Features:
|
2475
|
+
## Features:
|
2438
2476
|
|
2439
2477
|
- `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
|
2440
2478
|
- `clean` will be automatically run after bundle install and update when using `--path` ([#1420](https://github.com/rubygems/bundler/issues/1420), [#1425](https://github.com/bundler/bundler/issues/1425))
|
@@ -2446,7 +2484,7 @@ Features:
|
|
2446
2484
|
- load rubygems plugins in the bundle binary (@tpope, [#1364](https://github.com/rubygems/bundler/issues/1364))
|
2447
2485
|
- make `--standalone` respect `--path` (@cowboyd, [#1361](https://github.com/rubygems/bundler/issues/1361))
|
2448
2486
|
|
2449
|
-
|
2487
|
+
## Bug fixes:
|
2450
2488
|
|
2451
2489
|
- Fix `clean` to handle nested gems in a git repo ([#1329](https://github.com/rubygems/bundler/issues/1329))
|
2452
2490
|
- Fix conflict from revert of benchmark tool (@boffbowsh, [#1355](https://github.com/rubygems/bundler/issues/1355))
|
@@ -2457,32 +2495,32 @@ Bugfixes:
|
|
2457
2495
|
- Fix caching issue in the resolver ([#1353](https://github.com/rubygems/bundler/issues/1353), [#1421](https://github.com/bundler/bundler/issues/1421))
|
2458
2496
|
- Fix :github DSL option
|
2459
2497
|
|
2460
|
-
|
2498
|
+
# 1.1.pre.8 (August 13, 2011)
|
2461
2499
|
|
2462
|
-
|
2500
|
+
## Bug fixes:
|
2463
2501
|
|
2464
2502
|
- Fix `bundle check` to not print fatal error message (@cldwalker, [#1347](https://github.com/rubygems/bundler/issues/1347))
|
2465
2503
|
- Fix require_sudo when Gem.bindir isn't writeable ([#1352](https://github.com/rubygems/bundler/issues/1352))
|
2466
2504
|
- Fix not asking Gemcutter API for dependency chain of git gems in --deployment ([#1254](https://github.com/rubygems/bundler/issues/1254))
|
2467
2505
|
- Fix `install --binstubs` when using --path ([#1332](https://github.com/rubygems/bundler/issues/1332))
|
2468
2506
|
|
2469
|
-
|
2507
|
+
# 1.1.pre.7 (August 8, 2011)
|
2470
2508
|
|
2471
|
-
|
2509
|
+
## Bug fixes:
|
2472
2510
|
|
2473
2511
|
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/rubygems/bundler/issues/1341))
|
2474
2512
|
- Fixed exception when sudo was needed to install gems (@spastorino)
|
2475
2513
|
|
2476
|
-
|
2514
|
+
# 1.1.pre.6 (August 8, 2011)
|
2477
2515
|
|
2478
|
-
|
2516
|
+
## Bug fixes:
|
2479
2517
|
|
2480
2518
|
- Fix cross repository dependencies ([#1138](https://github.com/rubygems/bundler/issues/1138))
|
2481
2519
|
- Fix git dependency fetching from API endpoint ([#1254](https://github.com/rubygems/bundler/issues/1254))
|
2482
2520
|
- Fixes for bundle outdated (@joelmoss, [#1238](https://github.com/rubygems/bundler/issues/1238))
|
2483
2521
|
- Fix bundle standalone when using the endpoint ([#1240](https://github.com/rubygems/bundler/issues/1240))
|
2484
2522
|
|
2485
|
-
Features:
|
2523
|
+
## Features:
|
2486
2524
|
|
2487
2525
|
- Implement `to_ary` to avoid calls to method_missing (@tenderlove, [#1274](https://github.com/rubygems/bundler/issues/1274))
|
2488
2526
|
- bundle clean removes old .gem files (@cldwalker, [#1293](https://github.com/rubygems/bundler/issues/1293))
|
@@ -2490,14 +2528,14 @@ Features:
|
|
2490
2528
|
- Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, [#1120](https://github.com/rubygems/bundler/issues/1120))
|
2491
2529
|
- create Gemfile.lock for empty Gemfile ([#1218](https://github.com/rubygems/bundler/issues/1218))
|
2492
2530
|
|
2493
|
-
|
2531
|
+
# 1.1.pre.5 (June 11, 2011)
|
2494
2532
|
|
2495
|
-
|
2533
|
+
## Bug fixes:
|
2496
2534
|
|
2497
2535
|
- Fix LazySpecification on Ruby 1.9 (@dpiddy, [#1232](https://github.com/rubygems/bundler/issues/1232))
|
2498
2536
|
- Fix HTTP proxy support (@leobessa, [#878](https://github.com/rubygems/bundler/issues/878))
|
2499
2537
|
|
2500
|
-
Features:
|
2538
|
+
## Features:
|
2501
2539
|
|
2502
2540
|
- Speed up `install --deployment` by using the API endpoint
|
2503
2541
|
- Support Basic HTTP Auth for the API endpoint (@dpiddy, [#1229](https://github.com/rubygems/bundler/issues/1229))
|
@@ -2508,42 +2546,42 @@ Features:
|
|
2508
2546
|
- Reduce memory use by removing Specification.new inside method_missing (@tenderlove, [#1222](https://github.com/rubygems/bundler/issues/1222))
|
2509
2547
|
- Allow `check --path`
|
2510
2548
|
|
2511
|
-
|
2549
|
+
# 1.1.pre.4 (May 5, 2011)
|
2512
2550
|
|
2513
|
-
|
2551
|
+
## Bug fixes:
|
2514
2552
|
|
2515
2553
|
- Fix bug that could prevent installing new gems
|
2516
2554
|
|
2517
|
-
|
2555
|
+
# 1.1.pre.3 (May 4, 2011)
|
2518
2556
|
|
2519
|
-
Features:
|
2557
|
+
## Features:
|
2520
2558
|
|
2521
2559
|
- Add `bundle outdated` to show outdated gems (@joelmoss)
|
2522
2560
|
- Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
|
2523
2561
|
- Add Bundler.clean_system, and clean_exec (@wuputah)
|
2524
2562
|
- Use git config for gem author name and email (@krekoten)
|
2525
2563
|
|
2526
|
-
|
2564
|
+
## Bug fixes:
|
2527
2565
|
|
2528
2566
|
- Fix error calling Bundler.rubygems.gem_path
|
2529
2567
|
- Fix error when Gem.path returns Gem::FS instead of String
|
2530
2568
|
|
2531
|
-
|
2569
|
+
# 1.1.pre.2 (April 28, 2011)
|
2532
2570
|
|
2533
|
-
Features:
|
2571
|
+
## Features:
|
2534
2572
|
|
2535
2573
|
- Add :github option to Gemfile DSL for easy git repos
|
2536
2574
|
- Merge all fixes from 1.0.12 and 1.0.13
|
2537
2575
|
|
2538
|
-
|
2576
|
+
# 1.1.pre.1 (February 2, 2011)
|
2539
2577
|
|
2540
|
-
|
2578
|
+
## Bug fixes:
|
2541
2579
|
|
2542
2580
|
- Compatibility with changes made by Rubygems 1.5
|
2543
2581
|
|
2544
|
-
|
2582
|
+
# 1.1.pre (January 21, 2011)
|
2545
2583
|
|
2546
|
-
Features:
|
2584
|
+
## Features:
|
2547
2585
|
|
2548
2586
|
- Add bundle clean. Removes unused gems from --path directory
|
2549
2587
|
- Initial Gemcutter Endpoint API work, BAI Fetching source index
|
@@ -2552,42 +2590,42 @@ Features:
|
|
2552
2590
|
- Make it possible to override a .gemspec dependency's source in the
|
2553
2591
|
Gemfile
|
2554
2592
|
|
2555
|
-
|
2593
|
+
## Breaking changes:
|
2556
2594
|
|
2557
2595
|
- Removed bundle lock
|
2558
2596
|
- Removed bundle install <path>
|
2559
2597
|
- Removed bundle install --production
|
2560
2598
|
- Removed bundle install --disable-shared-gems
|
2561
2599
|
|
2562
|
-
|
2600
|
+
# 1.0.21 (September 30, 2011)
|
2563
2601
|
|
2564
|
-
|
2602
|
+
No changes.
|
2565
2603
|
|
2566
|
-
|
2604
|
+
# 1.0.21.rc (September 29, 2011)
|
2567
2605
|
|
2568
|
-
|
2606
|
+
## Bug fixes:
|
2569
2607
|
|
2570
2608
|
- Load Psych unless Syck is defined, because 1.9.2 defines YAML
|
2571
2609
|
|
2572
|
-
|
2610
|
+
# 1.0.20 (September 27, 2011)
|
2573
2611
|
|
2574
|
-
Features:
|
2612
|
+
## Features:
|
2575
2613
|
|
2576
2614
|
- Add platform :maglev (@timfel, [#1444](https://github.com/rubygems/bundler/issues/1444))
|
2577
2615
|
|
2578
|
-
|
2616
|
+
## Bug fixes:
|
2579
2617
|
|
2580
2618
|
- Ensure YAML is required even if Psych is found
|
2581
2619
|
- Handle directory names that contain invalid regex characters
|
2582
2620
|
|
2583
|
-
|
2621
|
+
# 1.0.20.rc (September 18, 2011)
|
2584
2622
|
|
2585
|
-
Features:
|
2623
|
+
## Features:
|
2586
2624
|
|
2587
2625
|
- Rescue interrupts to `bundle` while loading bundler.rb ([#1395](https://github.com/rubygems/bundler/issues/1395))
|
2588
2626
|
- Allow clearing without groups by passing `--without ''` ([#1259](https://github.com/rubygems/bundler/issues/1259))
|
2589
2627
|
|
2590
|
-
|
2628
|
+
## Bug fixes:
|
2591
2629
|
|
2592
2630
|
- Manually sort requirements in the lockfile ([#1375](https://github.com/rubygems/bundler/issues/1375))
|
2593
2631
|
- Remove several warnings generated by ruby -w (@stephencelis)
|
@@ -2595,51 +2633,51 @@ Bugfixes:
|
|
2595
2633
|
- Name modules for gems like 'test-foo_bar' correctly ([#1303](https://github.com/rubygems/bundler/issues/1303))
|
2596
2634
|
- Don't require Psych if Syck is already loaded ([#1239](https://github.com/rubygems/bundler/issues/1239))
|
2597
2635
|
|
2598
|
-
|
2636
|
+
# 1.0.19.rc (September 13, 2011)
|
2599
2637
|
|
2600
|
-
Features:
|
2638
|
+
## Features:
|
2601
2639
|
|
2602
2640
|
- Compatibility with Rubygems 1.8.10 installer changes
|
2603
2641
|
- Report gem installation failures clearly (@rwilcox, [#1380](https://github.com/rubygems/bundler/issues/1380))
|
2604
2642
|
- Useful error for cap and vlad on first deploy (@nexmat, @kirs)
|
2605
2643
|
|
2606
|
-
|
2644
|
+
## Bug fixes:
|
2607
2645
|
|
2608
2646
|
- `exec` now works when the command contains 'exec'
|
2609
2647
|
- Only touch lock after changes on Windows (@robertwahler, [#1358](https://github.com/rubygems/bundler/issues/1358))
|
2610
2648
|
- Keep load paths when #setup is called multiple times (@radsaq, [#1379](https://github.com/rubygems/bundler/issues/1379))
|
2611
2649
|
|
2612
|
-
|
2650
|
+
# 1.0.18 (August 16, 2011)
|
2613
2651
|
|
2614
|
-
|
2652
|
+
## Bug fixes:
|
2615
2653
|
|
2616
2654
|
- Fix typo in DEBUG_RESOLVER (@geemus)
|
2617
2655
|
- Fixes rake 0.9.x warning (@mtylty, [#1333](https://github.com/rubygems/bundler/issues/1333))
|
2618
2656
|
- Fix `bundle cache` again for rubygems 1.3.x
|
2619
2657
|
|
2620
|
-
Features:
|
2658
|
+
## Features:
|
2621
2659
|
|
2622
2660
|
- Run the bundle install earlier in a Capistrano deployment (@cgriego, [#1300](https://github.com/rubygems/bundler/issues/1300))
|
2623
2661
|
- Support hidden gemspec (@trans, @cldwalker, [#827](https://github.com/rubygems/bundler/issues/827))
|
2624
2662
|
- Make fetch_specs faster (@zeha, [#1294](https://github.com/rubygems/bundler/issues/1294))
|
2625
2663
|
- Allow overriding development deps loaded by #gemspec (@lgierth, [#1245](https://github.com/rubygems/bundler/issues/1245))
|
2626
2664
|
|
2627
|
-
|
2665
|
+
# 1.0.17 (August 8, 2011)
|
2628
2666
|
|
2629
|
-
|
2667
|
+
## Bug fixes:
|
2630
2668
|
|
2631
2669
|
- Fix rake issues with rubygems 1.3.x ([#1342](https://github.com/rubygems/bundler/issues/1342))
|
2632
2670
|
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/rubygems/bundler/issues/1341))
|
2633
2671
|
|
2634
|
-
|
2672
|
+
# 1.0.16 (August 8, 2011)
|
2635
2673
|
|
2636
|
-
Features:
|
2674
|
+
## Features:
|
2637
2675
|
|
2638
2676
|
- Performance fix for MRI 1.9 (@efficientcloud, [#1288](https://github.com/rubygems/bundler/issues/1288))
|
2639
2677
|
- Shortcuts (like `bundle i`) for all commands (@amatsuda)
|
2640
2678
|
- Correcly identify missing child dependency in error message
|
2641
2679
|
|
2642
|
-
|
2680
|
+
## Bug fixes:
|
2643
2681
|
|
2644
2682
|
- Allow Windows network share paths with forward slashes (@mtscout6, [#1253](https://github.com/rubygems/bundler/issues/1253))
|
2645
2683
|
- Check for rubygems.org credentials so `rake release` doesn't hang ([#980](https://github.com/rubygems/bundler/issues/980))
|
@@ -2647,30 +2685,30 @@ Bugfixes:
|
|
2647
2685
|
- Fix `bundle install --without` on kiji (@tmm1, [#1287](https://github.com/rubygems/bundler/issues/1287))
|
2648
2686
|
- Get rid of warning in ruby 1.9.3 (@smartinez87, [#1231](https://github.com/rubygems/bundler/issues/1231))
|
2649
2687
|
|
2650
|
-
Documentation:
|
2688
|
+
## Documentation:
|
2651
2689
|
|
2652
2690
|
- Documentation for `gem ..., :require => false` (@kmayer, [#1292](https://github.com/rubygems/bundler/issues/1292))
|
2653
2691
|
- Gems provide "executables", they are rarely also binaries (@fxn, [#1242](https://github.com/rubygems/bundler/issues/1242))
|
2654
2692
|
|
2655
|
-
|
2693
|
+
# 1.0.15 (June 9, 2011)
|
2656
2694
|
|
2657
|
-
Features:
|
2695
|
+
## Features:
|
2658
2696
|
|
2659
2697
|
- Improved Rubygems integration, removed many deprecation notices
|
2660
2698
|
|
2661
|
-
|
2699
|
+
## Bug fixes:
|
2662
2700
|
|
2663
2701
|
- Escape URL arguments to git correctly on Windows (1.0.14 regression)
|
2664
2702
|
|
2665
|
-
|
2703
|
+
# 1.0.14 (May 27, 2011)
|
2666
2704
|
|
2667
|
-
Features:
|
2705
|
+
## Features:
|
2668
2706
|
|
2669
2707
|
- Rubinius platform :rbx (@rkbodenner)
|
2670
2708
|
- Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
|
2671
2709
|
- Include user name and email from git config in new gemspec (@ognevsky)
|
2672
2710
|
|
2673
|
-
|
2711
|
+
## Bug fixes:
|
2674
2712
|
|
2675
2713
|
- Set file permissions after checking out git repos (@tissak)
|
2676
2714
|
- Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
|
@@ -2683,30 +2721,30 @@ Bugfixes:
|
|
2683
2721
|
- Handle certain directories already existing (@raggi)
|
2684
2722
|
- Escape filenames containing regex characters (@indirect)
|
2685
2723
|
|
2686
|
-
|
2724
|
+
# 1.0.13 (May 4, 2011)
|
2687
2725
|
|
2688
|
-
Features:
|
2726
|
+
## Features:
|
2689
2727
|
|
2690
2728
|
- Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
|
2691
2729
|
- Informative error when --path points to a broken symlink
|
2692
2730
|
- Support Rake 0.9 and greater (@e2)
|
2693
2731
|
- Output full errors for non-TTYs e.g. pow (@josh)
|
2694
2732
|
|
2695
|
-
|
2733
|
+
## Bug fixes:
|
2696
2734
|
|
2697
2735
|
- Allow spaces in gem path names for gem tasks (@rslifka)
|
2698
2736
|
- Have cap run bundle install from release_path (@martinjagusch)
|
2699
2737
|
- Quote git refspec so zsh doesn't expand it (@goneflyin)
|
2700
2738
|
|
2701
|
-
|
2739
|
+
# 1.0.12 (April 8, 2011)
|
2702
2740
|
|
2703
|
-
Features:
|
2741
|
+
## Features:
|
2704
2742
|
|
2705
2743
|
- Add --no-deployment option to `install` for disabling it on dev machines
|
2706
2744
|
- Better error message when git fails and cache is present (@parndt)
|
2707
2745
|
- Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
|
2708
2746
|
|
2709
|
-
|
2747
|
+
## Bug fixes:
|
2710
2748
|
|
2711
2749
|
- Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
|
2712
2750
|
- Fix changing gem order in lock (@gucki)
|
@@ -2715,38 +2753,38 @@ Bugfixes:
|
|
2715
2753
|
- Fix gems without a gemspec and directories in bin/ (@epall)
|
2716
2754
|
- Fix --no-prune option for `bundle install` (@cmeiklejohn)
|
2717
2755
|
|
2718
|
-
|
2756
|
+
# 1.0.11 (April 1, 2011)
|
2719
2757
|
|
2720
|
-
Features:
|
2758
|
+
## Features:
|
2721
2759
|
|
2722
2760
|
- Compatibility with Rubygems 1.6 and 1.7
|
2723
2761
|
- Better error messages when a git command fails
|
2724
2762
|
|
2725
|
-
|
2763
|
+
## Bug fixes:
|
2726
2764
|
|
2727
2765
|
- Don't always update gemspec gems (@carllerche)
|
2728
2766
|
- Remove ivar warnings (@jackdempsey)
|
2729
2767
|
- Fix occasional git failures in zsh (@jonah-carbonfive)
|
2730
2768
|
- Consistent lock for gems with double deps like Cap (@akahn)
|
2731
2769
|
|
2732
|
-
|
2770
|
+
# 1.0.10 (February 1, 2011)
|
2733
2771
|
|
2734
|
-
|
2772
|
+
## Bug fixes:
|
2735
2773
|
|
2736
2774
|
- Fix a regression loading YAML gemspecs from :git and :path gems
|
2737
2775
|
- Requires, namespaces, etc. to work with changes in Rubygems 1.5
|
2738
2776
|
|
2739
|
-
|
2777
|
+
# 1.0.9 (January 19, 2011)
|
2740
2778
|
|
2741
|
-
|
2779
|
+
## Bug fixes:
|
2742
2780
|
|
2743
2781
|
- Fix a bug where Bundler.require could remove gems from the load
|
2744
2782
|
path. In Rails apps with a default application.rb, this removed
|
2745
2783
|
all gems in groups other than :default and Rails.env
|
2746
2784
|
|
2747
|
-
|
2785
|
+
# 1.0.8 (January 18, 2011)
|
2748
2786
|
|
2749
|
-
Features:
|
2787
|
+
## Features:
|
2750
2788
|
|
2751
2789
|
- Allow overriding gemspec() deps with :git deps
|
2752
2790
|
- Add --local option to `bundle update`
|
@@ -2754,7 +2792,7 @@ Features:
|
|
2754
2792
|
- Use `less` as help pager instead of `more`
|
2755
2793
|
- Run `bundle exec rake` instead of `rake` in Capistrano tasks
|
2756
2794
|
|
2757
|
-
|
2795
|
+
## Bug fixes:
|
2758
2796
|
|
2759
2797
|
- Fix --no-cache option for `bundle install`
|
2760
2798
|
- Allow Vlad deploys to work without Capistrano gem installed
|
@@ -2766,21 +2804,21 @@ Bugfixes:
|
|
2766
2804
|
- Check git process exit status correctly
|
2767
2805
|
- Fix some warnings in 1.9.3-trunk (thanks tenderlove)
|
2768
2806
|
|
2769
|
-
|
2807
|
+
# 1.0.7 (November 17, 2010)
|
2770
2808
|
|
2771
|
-
|
2809
|
+
## Bug fixes:
|
2772
2810
|
|
2773
2811
|
- Remove Bundler version from the lockfile because it broke
|
2774
2812
|
backwards compatibility with 1.0.0-1.0.5. Sorry. :(
|
2775
2813
|
|
2776
|
-
|
2814
|
+
# 1.0.6 (November 16, 2010)
|
2777
2815
|
|
2778
|
-
|
2816
|
+
## Bug fixes:
|
2779
2817
|
|
2780
2818
|
- Fix regression in `update` that caused long/wrong results
|
2781
2819
|
- Allow git gems on other platforms while installing ([#579](https://github.com/rubygems/bundler/issues/579))
|
2782
2820
|
|
2783
|
-
Features:
|
2821
|
+
## Features:
|
2784
2822
|
|
2785
2823
|
- Speed up `install` command using various optimizations
|
2786
2824
|
- Significantly increase performance of resolver
|
@@ -2788,15 +2826,15 @@ Features:
|
|
2788
2826
|
- Warn if the lockfile was generated by a newer version
|
2789
2827
|
- Set generated gems' homepage to "", so Rubygems will warn
|
2790
2828
|
|
2791
|
-
|
2829
|
+
# 1.0.5 (November 13, 2010)
|
2792
2830
|
|
2793
|
-
|
2831
|
+
## Bug fixes:
|
2794
2832
|
|
2795
2833
|
- Fix regression disabling all operations that employ sudo
|
2796
2834
|
|
2797
|
-
|
2835
|
+
# 1.0.4 (November 12, 2010)
|
2798
2836
|
|
2799
|
-
|
2837
|
+
## Bug fixes:
|
2800
2838
|
|
2801
2839
|
- Expand relative :paths from Bundler.root (eg ./foogem)
|
2802
2840
|
- Allow git gems in --without groups while --frozen
|
@@ -2810,7 +2848,7 @@ Bugfixes:
|
|
2810
2848
|
- Disable colored output in --deployment
|
2811
2849
|
- Preserve line endings in lock file
|
2812
2850
|
|
2813
|
-
Features:
|
2851
|
+
## Features:
|
2814
2852
|
|
2815
2853
|
- Add support for 'mingw32' platform (aka RubyInstaller)
|
2816
2854
|
- Large speed increase when Gemfile.lock is already present
|
@@ -2819,9 +2857,9 @@ Features:
|
|
2819
2857
|
- Remove Open3 from GemHelper (now it works on Windows™®©)
|
2820
2858
|
- Allow setting roles in built-in cap and vlad tasks
|
2821
2859
|
|
2822
|
-
|
2860
|
+
# 1.0.3 (October 15, 2010)
|
2823
2861
|
|
2824
|
-
|
2862
|
+
## Bug fixes:
|
2825
2863
|
|
2826
2864
|
- Use bitwise or in #hash to reduce the chance of overflow
|
2827
2865
|
- `bundle update` now works with :git + :tag updates
|
@@ -2835,15 +2873,15 @@ Bugfixes:
|
|
2835
2873
|
- Improve output when installing to a path
|
2836
2874
|
- The tests all pass! Yay!
|
2837
2875
|
|
2838
|
-
|
2876
|
+
# 1.0.2 (October 2, 2010)
|
2839
2877
|
|
2840
|
-
|
2878
|
+
## Bug fixes:
|
2841
2879
|
|
2842
2880
|
- Actually include the man pages in the gem, so help works
|
2843
2881
|
|
2844
|
-
|
2882
|
+
# 1.0.1 (October 1, 2010)
|
2845
2883
|
|
2846
|
-
Features:
|
2884
|
+
## Features:
|
2847
2885
|
|
2848
2886
|
- Vlad deployment recipe, `require 'bundler/vlad'`
|
2849
2887
|
- Prettier bundle graphs
|
@@ -2853,7 +2891,7 @@ Features:
|
|
2853
2891
|
- Allow subclassing of GemHelper for custom tasks
|
2854
2892
|
- Chdir to gem directory during `bundle open`
|
2855
2893
|
|
2856
|
-
|
2894
|
+
## Bug fixes:
|
2857
2895
|
|
2858
2896
|
- Allow gemspec requirements with a list of versions
|
2859
2897
|
- Accept lockfiles with windows line endings
|
@@ -2863,13 +2901,13 @@ Bugfixes:
|
|
2863
2901
|
- Flesh out gem_helper tasks, raise errors correctly
|
2864
2902
|
- Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
|
2865
2903
|
|
2866
|
-
|
2904
|
+
# 1.0.0 (August 29, 2010)
|
2867
2905
|
|
2868
|
-
Features:
|
2906
|
+
## Features:
|
2869
2907
|
|
2870
2908
|
- You can now define `:bundle_cmd` in the capistrano task
|
2871
2909
|
|
2872
|
-
|
2910
|
+
## Bug fixes:
|
2873
2911
|
|
2874
2912
|
- Various bugfixes to the built-in rake helpers
|
2875
2913
|
- Fix a bug where shortrefs weren't unique enough and were
|
@@ -2885,14 +2923,14 @@ Bugfixes:
|
|
2885
2923
|
- Detect new Rubygems sources in the Gemfile and update
|
2886
2924
|
the lockfile
|
2887
2925
|
|
2888
|
-
|
2926
|
+
# 1.0.0.rc.6 (August 23, 2010)
|
2889
2927
|
|
2890
|
-
Features:
|
2928
|
+
## Features:
|
2891
2929
|
|
2892
2930
|
- Much better documentation for most of the commands and Gemfile
|
2893
2931
|
format
|
2894
2932
|
|
2895
|
-
|
2933
|
+
## Bug fixes:
|
2896
2934
|
|
2897
2935
|
- Don't attempt to create directories if they already exist
|
2898
2936
|
- Fix the capistrano task so that it actually runs
|
@@ -2903,20 +2941,20 @@ Bugfixes:
|
|
2903
2941
|
- Expand paths in Gemfile relative to the Gemfile and not the current
|
2904
2942
|
working directory.
|
2905
2943
|
|
2906
|
-
|
2944
|
+
# 1.0.0.rc.5 (August 10, 2010)
|
2907
2945
|
|
2908
|
-
Features:
|
2946
|
+
## Features:
|
2909
2947
|
|
2910
2948
|
- Make the Capistrano task more concise.
|
2911
2949
|
|
2912
|
-
|
2950
|
+
## Bug fixes:
|
2913
2951
|
|
2914
2952
|
- Fix a regression with determining whether or not to use sudo
|
2915
2953
|
- Allow using the --gemfile flag with the --deployment flag
|
2916
2954
|
|
2917
|
-
|
2955
|
+
# 1.0.0.rc.4 (August 9, 2010)
|
2918
2956
|
|
2919
|
-
Features:
|
2957
|
+
## Features:
|
2920
2958
|
|
2921
2959
|
- `bundle gem NAME` command to generate a new gem with Gemfile
|
2922
2960
|
- Bundle config file location can be specified by BUNDLE_APP_CONFIG
|
@@ -2924,7 +2962,7 @@ Features:
|
|
2924
2962
|
(default with --deployment)
|
2925
2963
|
- Basic Capistrano task now added as 'bundler/capistrano'
|
2926
2964
|
|
2927
|
-
|
2965
|
+
## Bug fixes:
|
2928
2966
|
|
2929
2967
|
- Multiple bundler process no longer share a tmp directory
|
2930
2968
|
- `bundle update GEM` always updates dependencies of GEM as well
|
@@ -2935,9 +2973,9 @@ Bugfixes:
|
|
2935
2973
|
- Fetch gems from vendor/cache, even without --local
|
2936
2974
|
- Sort lockfile by platform as well as spec
|
2937
2975
|
|
2938
|
-
|
2976
|
+
# 1.0.0.rc.3 (August 3, 2010)
|
2939
2977
|
|
2940
|
-
Features:
|
2978
|
+
## Features:
|
2941
2979
|
|
2942
2980
|
- Deprecate --production flag for --deployment, since the former
|
2943
2981
|
was causing confusion with the :production group
|
@@ -2946,14 +2984,14 @@ Features:
|
|
2946
2984
|
- Improve message from `bundle check` under various conditions
|
2947
2985
|
- Better error when a changed Gemfile conflicts with Gemfile.lock
|
2948
2986
|
|
2949
|
-
|
2987
|
+
## Bug fixes:
|
2950
2988
|
|
2951
2989
|
- Create bin/ directory if it is missing, then install binstubs
|
2952
2990
|
- Error nicely on the edge case of a pinned gem with no spec
|
2953
2991
|
- Do not require gems for other platforms
|
2954
2992
|
- Update git sources along with the gems they contain
|
2955
2993
|
|
2956
|
-
|
2994
|
+
# 1.0.0.rc.2 (July 29, 2010)
|
2957
2995
|
|
2958
2996
|
- `bundle install path` was causing confusion, so we now print
|
2959
2997
|
a clarifying warning. The preferred way to install to a path
|
@@ -2981,31 +3019,31 @@ Bugfixes:
|
|
2981
3019
|
would always say "the git source is not checked out" when
|
2982
3020
|
running `bundle install`
|
2983
3021
|
|
2984
|
-
NOTE: We received several reports of "the git source has not
|
2985
|
-
been checked out. Please run bundle install". As far as we
|
2986
|
-
can tell, these problems have two possible causes:
|
3022
|
+
NOTE: We received several reports of "the git source has not
|
3023
|
+
been checked out. Please run bundle install". As far as we
|
3024
|
+
can tell, these problems have two possible causes:
|
2987
3025
|
|
2988
|
-
1. `bundle install ~/.bundle` in one user, but actually running
|
2989
|
-
|
2990
|
-
|
2991
|
-
2. A bug that happened when changing a gem to a git source.
|
3026
|
+
1. `bundle install ~/.bundle` in one user, but actually running
|
3027
|
+
the application as another user. Never install gems to a
|
3028
|
+
directory scoped to a user (`~` or `$HOME`) in deployment.
|
3029
|
+
2. A bug that happened when changing a gem to a git source.
|
2992
3030
|
|
2993
|
-
To mitigate several common causes of `(1)`, please use the
|
2994
|
-
new `--production` flag. This flag is simply a roll-up of
|
2995
|
-
the best practices we have been encouraging people to use
|
2996
|
-
for deployment.
|
3031
|
+
To mitigate several common causes of `(1)`, please use the
|
3032
|
+
new `--production` flag. This flag is simply a roll-up of
|
3033
|
+
the best practices we have been encouraging people to use
|
3034
|
+
for deployment.
|
2997
3035
|
|
2998
|
-
If you want to share gems across deployments, and you use
|
2999
|
-
Capistrano, symlink release_path/current/vendor/bundle to
|
3000
|
-
release_path/shared/bundle. This will keep deployments
|
3001
|
-
snappy while maintaining the benefits of clean, deploy-time
|
3002
|
-
isolation.
|
3036
|
+
If you want to share gems across deployments, and you use
|
3037
|
+
Capistrano, symlink release_path/current/vendor/bundle to
|
3038
|
+
release_path/shared/bundle. This will keep deployments
|
3039
|
+
snappy while maintaining the benefits of clean, deploy-time
|
3040
|
+
isolation.
|
3003
3041
|
|
3004
|
-
|
3042
|
+
# 1.0.0.rc.1 (July 26, 2010)
|
3005
3043
|
|
3006
3044
|
- Fixed a bug with `bundle install` on multiple machines and git
|
3007
3045
|
|
3008
|
-
|
3046
|
+
# 1.0.0.beta.10 (July 25, 2010)
|
3009
3047
|
|
3010
3048
|
- Last release before 1.0.0.rc.1
|
3011
3049
|
- Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
|
@@ -3020,7 +3058,7 @@ isolation.
|
|
3020
3058
|
- Add build options
|
3021
3059
|
- `bundle config build.mysql --with-mysql-config=/path/to/config`
|
3022
3060
|
|
3023
|
-
|
3061
|
+
# 1.0.0.beta.9 (July 21, 2010)
|
3024
3062
|
|
3025
3063
|
- Fix install failure when switching from a path to git source
|
3026
3064
|
- Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
|
@@ -3028,15 +3066,15 @@ isolation.
|
|
3028
3066
|
- Shim Gem.refresh. This is used by Unicorn
|
3029
3067
|
- Fix install failure when a path's dependencies changed
|
3030
3068
|
|
3031
|
-
|
3069
|
+
# 1.0.0.beta.8 (July 20, 2010)
|
3032
3070
|
|
3033
3071
|
- Fix a Beta 7 bug involving Ruby 1.9
|
3034
3072
|
|
3035
|
-
|
3073
|
+
# 1.0.0.beta.7 (July 20, 2010, yanked)
|
3036
3074
|
|
3037
3075
|
- Running `bundle install` twice in a row with a git source always crashed
|
3038
3076
|
|
3039
|
-
|
3077
|
+
# 1.0.0.beta.6 (July 20, 2010, yanked)
|
3040
3078
|
|
3041
3079
|
- Create executables with bundle install --binstubs
|
3042
3080
|
- You can customize the location (default is app/bin) with --binstubs other/location
|
@@ -3058,29 +3096,29 @@ isolation.
|
|
3058
3096
|
- Fix cases where the same dependency appeared several times in the Gemfile.lock
|
3059
3097
|
- Fix a bug where require errors were being swallowed during Bundler.require
|
3060
3098
|
|
3061
|
-
|
3099
|
+
# 1.0.0.beta.1
|
3062
3100
|
|
3063
3101
|
- No `bundle lock` command. Locking happens automatically on install or update
|
3064
3102
|
- No .bundle/environment.rb. Require 'bundler/setup' instead.
|
3065
3103
|
- $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
|
3066
3104
|
- Remove lockfiles generated by 0.9
|
3067
3105
|
|
3068
|
-
|
3106
|
+
# 0.9.26
|
3069
3107
|
|
3070
|
-
Features:
|
3108
|
+
## Features:
|
3071
3109
|
|
3072
3110
|
- error nicely on incompatible 0.10 lockfiles
|
3073
3111
|
|
3074
|
-
|
3112
|
+
# 0.9.25 (May 3, 2010)
|
3075
3113
|
|
3076
|
-
|
3114
|
+
## Bug fixes:
|
3077
3115
|
|
3078
3116
|
- explicitly coerce Pathname objects to Strings for Ruby 1.9
|
3079
3117
|
- fix some newline weirdness in output from install command
|
3080
3118
|
|
3081
|
-
|
3119
|
+
# 0.9.24 (April 22, 2010)
|
3082
3120
|
|
3083
|
-
Features:
|
3121
|
+
## Features:
|
3084
3122
|
|
3085
3123
|
- fetch submodules for git sources
|
3086
3124
|
- limit the bundled version of bundler to the same as the one installing
|
@@ -3089,7 +3127,7 @@ Features:
|
|
3089
3127
|
- raise Bundler::GemNotFound instead of calling exit! inside library code
|
3090
3128
|
- Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
|
3091
3129
|
|
3092
|
-
|
3130
|
+
## Bug fixes:
|
3093
3131
|
|
3094
3132
|
- don't try to regenerate environment.rb if it is read-only
|
3095
3133
|
- prune outdated gems with the platform "ruby"
|
@@ -3097,16 +3135,16 @@ Bugfixes:
|
|
3097
3135
|
- don't re-write environment.rb if running after it has been loaded
|
3098
3136
|
- do not monkeypatch Specification#load_paths twice when inside a bundle
|
3099
3137
|
|
3100
|
-
|
3138
|
+
# 0.9.23 (April 20, 2010)
|
3101
3139
|
|
3102
|
-
|
3140
|
+
## Bug fixes:
|
3103
3141
|
|
3104
3142
|
- cache command no longer prunes gems created by an older rubygems version
|
3105
3143
|
- cache command no longer prunes gems that are for other platforms
|
3106
3144
|
|
3107
|
-
|
3145
|
+
# 0.9.22 (April 20, 2010)
|
3108
3146
|
|
3109
|
-
Features:
|
3147
|
+
## Features:
|
3110
3148
|
|
3111
3149
|
- cache command now prunes stale .gem files from vendor/cache
|
3112
3150
|
- init --gemspec command now generates development dependencies
|
@@ -3114,7 +3152,7 @@ Features:
|
|
3114
3152
|
- remove .gem files generated after installing a gem from a :path ([#286](https://github.com/rubygems/bundler/issues/286))
|
3115
3153
|
- improve install/lock messaging ([#284](https://github.com/rubygems/bundler/issues/284))
|
3116
3154
|
|
3117
|
-
|
3155
|
+
## Bug fixes:
|
3118
3156
|
|
3119
3157
|
- ignore cached gems that are for another platform ([#288](https://github.com/rubygems/bundler/issues/288))
|
3120
3158
|
- install Windows gems that have no architecture set, like rcov ([#277](https://github.com/rubygems/bundler/issues/277))
|
@@ -3123,72 +3161,72 @@ Bugfixes:
|
|
3123
3161
|
- add GemspecError so it can be raised without (further) error ([#292](https://github.com/rubygems/bundler/issues/292))
|
3124
3162
|
- create a parent directory before cloning for git 1.5 compatibility ([#285](https://github.com/rubygems/bundler/issues/285))
|
3125
3163
|
|
3126
|
-
|
3164
|
+
# 0.9.21 (April 16, 2010)
|
3127
3165
|
|
3128
|
-
|
3166
|
+
## Bug fixes:
|
3129
3167
|
|
3130
3168
|
- don't raise 'omg wtf' when lockfile is outdated
|
3131
3169
|
|
3132
|
-
|
3170
|
+
# 0.9.20 (April 15, 2010)
|
3133
3171
|
|
3134
|
-
Features:
|
3172
|
+
## Features:
|
3135
3173
|
|
3136
3174
|
- load YAML format gemspecs
|
3137
3175
|
- no backtraces when calling Bundler.setup if gems are missing
|
3138
3176
|
- no backtraces when trying to exec a file without the executable bit
|
3139
3177
|
|
3140
|
-
|
3178
|
+
## Bug fixes:
|
3141
3179
|
|
3142
3180
|
- fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
|
3143
3181
|
- request install instead of lock when env.rb is out of sync with Gemfile.lock
|
3144
3182
|
|
3145
|
-
|
3183
|
+
# 0.9.19 (April 12, 2010)
|
3146
3184
|
|
3147
|
-
Features:
|
3185
|
+
## Features:
|
3148
3186
|
|
3149
3187
|
- suggest `bundle install --relock` when the Gemfile has changed ([#272](https://github.com/rubygems/bundler/issues/272))
|
3150
3188
|
- source support for Rubygems servers without prerelease gem indexes ([#262](https://github.com/rubygems/bundler/issues/262))
|
3151
3189
|
|
3152
|
-
|
3190
|
+
## Bug fixes:
|
3153
3191
|
|
3154
3192
|
- don't set up all groups every time Bundler.setup is called while locked ([#263](https://github.com/rubygems/bundler/issues/263))
|
3155
3193
|
- fix #full_gem_path for git gems while locked ([#268](https://github.com/rubygems/bundler/issues/268))
|
3156
3194
|
- eval gemspecs at the top level, not inside the Bundler class ([#269](https://github.com/rubygems/bundler/issues/269))
|
3157
3195
|
|
3158
3196
|
|
3159
|
-
|
3197
|
+
# 0.9.18 (April 8, 2010)
|
3160
3198
|
|
3161
|
-
Features:
|
3199
|
+
## Features:
|
3162
3200
|
|
3163
3201
|
- console command that runs irb with bundle (and optional group) already loaded
|
3164
3202
|
|
3165
|
-
|
3203
|
+
## Bug fixes:
|
3166
3204
|
|
3167
3205
|
- Bundler.setup now fully disables system gems, even when unlocked ([#266](https://github.com/rubygems/bundler/issues/266), [#246](https://github.com/bundler/bundler/issues/246))
|
3168
3206
|
- fixes Yard, which found plugins in Gem.source_index that it could not load
|
3169
3207
|
- makes behaviour of `Bundler.require` consistent between locked and unlocked loads
|
3170
3208
|
|
3171
|
-
|
3209
|
+
# 0.9.17 (April 7, 2010)
|
3172
3210
|
|
3173
|
-
Features:
|
3211
|
+
## Features:
|
3174
3212
|
|
3175
3213
|
- Bundler.require now calls Bundler.setup automatically
|
3176
3214
|
- Gem::Specification#add_bundler_dependencies added for gemspecs
|
3177
3215
|
|
3178
|
-
|
3216
|
+
## Bug fixes:
|
3179
3217
|
|
3180
3218
|
- Gem paths are not longer duplicated while loading bundler
|
3181
3219
|
- exec no longer duplicates RUBYOPT if it is already set correctly
|
3182
3220
|
|
3183
|
-
|
3221
|
+
# 0.9.16 (April 3, 2010)
|
3184
3222
|
|
3185
|
-
Features:
|
3223
|
+
## Features:
|
3186
3224
|
|
3187
3225
|
- exit gracefully on INT signal
|
3188
3226
|
- resolver output now indicates whether remote sources were checked
|
3189
3227
|
- print error instead of backtrace when exec cannot find a binary ([#241](https://github.com/rubygems/bundler/issues/241))
|
3190
3228
|
|
3191
|
-
|
3229
|
+
## Bug fixes:
|
3192
3230
|
|
3193
3231
|
- show, check, and open commands work again while locked (oops)
|
3194
3232
|
- show command for git gems
|
@@ -3199,9 +3237,9 @@ Bugfixes:
|
|
3199
3237
|
- fix Gem::Spec#git_version to not error on unloaded specs
|
3200
3238
|
- improve deprecation, Gemfile, and command error messages ([#242](https://github.com/rubygems/bundler/issues/242))
|
3201
3239
|
|
3202
|
-
|
3240
|
+
# 0.9.15 (April 1, 2010)
|
3203
3241
|
|
3204
|
-
Features:
|
3242
|
+
## Features:
|
3205
3243
|
|
3206
3244
|
- use the env_file if possible instead of doing a runtime resolve
|
3207
3245
|
- huge speedup when calling Bundler.setup while locked
|
@@ -3209,15 +3247,15 @@ Features:
|
|
3209
3247
|
- regenerates env_file if it was generated by an older version
|
3210
3248
|
- update cached/packed gems when you update gems via bundle install
|
3211
3249
|
|
3212
|
-
|
3250
|
+
## Bug fixes:
|
3213
3251
|
|
3214
3252
|
- prep for Rubygems 1.3.7 changes
|
3215
3253
|
- install command now pulls git branches correctly ([#211](https://github.com/rubygems/bundler/issues/211))
|
3216
3254
|
- raise errors on invalid options in the Gemfile
|
3217
3255
|
|
3218
|
-
|
3256
|
+
# 0.9.14 (March 30, 2010)
|
3219
3257
|
|
3220
|
-
Features:
|
3258
|
+
## Features:
|
3221
3259
|
|
3222
3260
|
- install command output vastly improved
|
3223
3261
|
- installation message now accurate, with 'using' and 'installing'
|
@@ -3228,31 +3266,31 @@ Features:
|
|
3228
3266
|
- show command now aliased as 'list'
|
3229
3267
|
- VISUAL env var respected for GUI editors
|
3230
3268
|
|
3231
|
-
|
3269
|
+
## Bug fixes:
|
3232
3270
|
|
3233
3271
|
- exec command now finds binaries from gems with no gemspec
|
3234
3272
|
- note source of Gemfile resolver errors
|
3235
3273
|
- don't blow up if git urls are changed
|
3236
3274
|
|
3237
|
-
|
3275
|
+
# 0.9.13 (March 23, 2010)
|
3238
3276
|
|
3239
|
-
|
3277
|
+
## Bug fixes:
|
3240
3278
|
|
3241
3279
|
- exec command now finds binaries from gems installed via :path
|
3242
3280
|
- gem dependencies are pulled in even if their type is nil
|
3243
3281
|
- paths with spaces have double-quotes to work on Windows
|
3244
3282
|
- set GEM_PATH in environment.rb so generators work with Rails 2
|
3245
3283
|
|
3246
|
-
|
3284
|
+
# 0.9.12 (March 17, 2010)
|
3247
3285
|
|
3248
3286
|
- refactoring, internal cleanup, more solid specs
|
3249
3287
|
|
3250
|
-
Features:
|
3288
|
+
## Features:
|
3251
3289
|
|
3252
3290
|
- check command takes a --without option
|
3253
3291
|
- check command exits 1 if the check fails
|
3254
3292
|
|
3255
|
-
|
3293
|
+
## Bug fixes:
|
3256
3294
|
|
3257
3295
|
- perform a topological sort on resolved gems ([#191](https://github.com/rubygems/bundler/issues/191))
|
3258
3296
|
- gems from git work even when paths or repos have spaces ([#196](https://github.com/rubygems/bundler/issues/196))
|
@@ -3261,11 +3299,11 @@ Bugfixes:
|
|
3261
3299
|
- virtual gemspecs are now saved in environment.rb for use when loading
|
3262
3300
|
- unify the Installer's local index and the runtime index ([#204](https://github.com/rubygems/bundler/issues/204))
|
3263
3301
|
|
3264
|
-
|
3302
|
+
# 0.9.11 (March 9, 2010)
|
3265
3303
|
|
3266
3304
|
- added roadmap with future development plans
|
3267
3305
|
|
3268
|
-
Features:
|
3306
|
+
## Features:
|
3269
3307
|
|
3270
3308
|
- install command can take the path to the gemfile with --gemfile ([#125](https://github.com/rubygems/bundler/issues/125))
|
3271
3309
|
- unknown command line options are now rejected ([#163](https://github.com/rubygems/bundler/issues/163))
|
@@ -3277,7 +3315,7 @@ Features:
|
|
3277
3315
|
- improve backtraces when a gemspec is invalid
|
3278
3316
|
- improve performance by installing gems from the cache if present
|
3279
3317
|
|
3280
|
-
|
3318
|
+
## Bug fixes:
|
3281
3319
|
|
3282
3320
|
- normalize parameters to Bundler.require ([#153](https://github.com/rubygems/bundler/issues/153))
|
3283
3321
|
- check now checks installed gems rather than cached gems ([#162](https://github.com/rubygems/bundler/issues/162))
|
@@ -3289,26 +3327,26 @@ Bugfixes:
|
|
3289
3327
|
- don't reinstall packed gems
|
3290
3328
|
- fix gems with git sources that are private repositories
|
3291
3329
|
|
3292
|
-
|
3330
|
+
# 0.9.10 (March 1, 2010)
|
3293
3331
|
|
3294
3332
|
- depends on Rubygems 1.3.6
|
3295
3333
|
|
3296
|
-
|
3334
|
+
## Bug fixes:
|
3297
3335
|
|
3298
3336
|
- support locking after install --without
|
3299
3337
|
- don't reinstall gems from the cache if they're already in the bundle
|
3300
3338
|
- fixes for Ruby 1.8.7 and 1.9
|
3301
3339
|
|
3302
|
-
|
3340
|
+
# 0.9.9 (February 25, 2010)
|
3303
3341
|
|
3304
|
-
|
3342
|
+
## Bug fixes:
|
3305
3343
|
|
3306
3344
|
- don't die if GEM_HOME is an empty string
|
3307
3345
|
- fixes for Ruby 1.8.6 and 1.9
|
3308
3346
|
|
3309
|
-
|
3347
|
+
# 0.9.8 (February 23, 2010)
|
3310
3348
|
|
3311
|
-
Features:
|
3349
|
+
## Features:
|
3312
3350
|
|
3313
3351
|
- pack command which both caches and locks
|
3314
3352
|
- descriptive error if a cached gem is missing
|
@@ -3320,27 +3358,27 @@ Features:
|
|
3320
3358
|
- print a useful warning if building a gem fails
|
3321
3359
|
- allow manual configuration via BUNDLE_PATH
|
3322
3360
|
|
3323
|
-
|
3361
|
+
## Bug fixes:
|
3324
3362
|
|
3325
3363
|
- eval gemspecs in the gem directory so relative paths work
|
3326
3364
|
- make default spec for git sources valid
|
3327
3365
|
- don't reinstall gems that are already packed
|
3328
3366
|
|
3329
|
-
|
3367
|
+
# 0.9.7 (February 17, 2010)
|
3330
3368
|
|
3331
|
-
|
3369
|
+
## Bug fixes:
|
3332
3370
|
|
3333
3371
|
- don't say that a gem from an excluded group is "installing"
|
3334
3372
|
- improve crippling rubygems in locked scenarios
|
3335
3373
|
|
3336
|
-
|
3374
|
+
# 0.9.6 (February 16, 2010)
|
3337
3375
|
|
3338
|
-
Features:
|
3376
|
+
## Features:
|
3339
3377
|
|
3340
3378
|
- allow String group names
|
3341
3379
|
- a number of improvements in the documentation and error messages
|
3342
3380
|
|
3343
|
-
|
3381
|
+
## Bug fixes:
|
3344
3382
|
|
3345
3383
|
- set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
|
3346
3384
|
- ensure Rubygems is fully loaded in Ruby 1.9 before patching it
|
@@ -3349,9 +3387,9 @@ Bugfixes:
|
|
3349
3387
|
- make the tests platform agnostic so we can confirm that they're green on JRuby
|
3350
3388
|
- fixes for Ruby 1.9
|
3351
3389
|
|
3352
|
-
|
3390
|
+
# 0.9.5 (February 12, 2010)
|
3353
3391
|
|
3354
|
-
Features:
|
3392
|
+
## Features:
|
3355
3393
|
|
3356
3394
|
- added support for :path => "relative/path"
|
3357
3395
|
- added support for older versions of git
|
@@ -3359,7 +3397,7 @@ Features:
|
|
3359
3397
|
- Bundler.require fails silently if a library does not have a file on the load path with its name
|
3360
3398
|
- Basic support for multiple rubies by namespacing the default bundle path using the version and engine
|
3361
3399
|
|
3362
|
-
|
3400
|
+
## Bug fixes:
|
3363
3401
|
|
3364
3402
|
- if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
|
3365
3403
|
- same if it's not present with `bundle check`
|