bundler 2.0.2 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +735 -574
- data/LICENSE.md +18 -19
- data/README.md +8 -7
- data/bundler.gemspec +5 -23
- data/exe/bundle +19 -3
- data/lib/bundler.rb +202 -87
- data/lib/bundler/build_metadata.rb +3 -3
- data/lib/bundler/capistrano.rb +5 -5
- data/lib/bundler/cli.rb +179 -143
- data/lib/bundler/cli/add.rb +28 -16
- data/lib/bundler/cli/cache.rb +25 -13
- data/lib/bundler/cli/common.rb +10 -11
- data/lib/bundler/cli/config.rb +161 -86
- data/lib/bundler/cli/console.rb +2 -2
- data/lib/bundler/cli/doctor.rb +4 -4
- data/lib/bundler/cli/exec.rb +15 -18
- data/lib/bundler/cli/gem.rb +5 -5
- data/lib/bundler/cli/info.rb +17 -5
- data/lib/bundler/cli/init.rb +1 -1
- data/lib/bundler/cli/install.rb +3 -3
- data/lib/bundler/cli/issue.rb +1 -1
- data/lib/bundler/cli/open.rb +10 -6
- data/lib/bundler/cli/outdated.rb +85 -81
- data/lib/bundler/cli/plugin.rb +9 -2
- data/lib/bundler/cli/pristine.rb +1 -1
- data/lib/bundler/cli/show.rb +1 -1
- data/lib/bundler/cli/update.rb +31 -11
- data/lib/bundler/compact_index_client.rb +25 -9
- data/lib/bundler/compact_index_client/updater.rb +2 -6
- data/lib/bundler/current_ruby.rb +8 -7
- data/lib/bundler/definition.rb +33 -26
- data/lib/bundler/dependency.rb +16 -4
- data/lib/bundler/deployment.rb +2 -2
- data/lib/bundler/dsl.rb +19 -43
- data/lib/bundler/env.rb +6 -5
- data/lib/bundler/environment_preserver.rb +0 -1
- data/lib/bundler/feature_flag.rb +1 -13
- data/lib/bundler/fetcher.rb +16 -13
- data/lib/bundler/fetcher/compact_index.rb +26 -12
- data/lib/bundler/fetcher/dependency.rb +1 -1
- data/lib/bundler/fetcher/downloader.rb +4 -1
- data/lib/bundler/fetcher/index.rb +5 -3
- data/lib/bundler/friendly_errors.rb +6 -7
- data/lib/bundler/gem_helper.rb +14 -14
- data/lib/bundler/gem_helpers.rb +2 -4
- data/lib/bundler/gem_tasks.rb +1 -1
- data/lib/bundler/gem_version_promoter.rb +3 -3
- data/lib/bundler/graph.rb +2 -2
- data/lib/bundler/injector.rb +3 -1
- data/lib/bundler/inline.rb +40 -30
- data/lib/bundler/installer.rb +7 -14
- data/lib/bundler/installer/gem_installer.rb +5 -1
- data/lib/bundler/installer/parallel_installer.rb +4 -4
- data/lib/bundler/installer/standalone.rb +1 -2
- data/lib/bundler/lazy_specification.rb +2 -3
- data/lib/bundler/lockfile_parser.rb +14 -21
- data/lib/bundler/match_platform.rb +1 -1
- data/lib/bundler/mirror.rb +3 -3
- data/lib/bundler/plugin.rb +29 -18
- data/lib/bundler/plugin/api.rb +1 -1
- data/lib/bundler/plugin/api/source.rb +4 -6
- data/lib/bundler/plugin/index.rb +10 -2
- data/lib/bundler/plugin/installer.rb +28 -15
- data/lib/bundler/psyched_yaml.rb +1 -1
- data/lib/bundler/remote_specification.rb +0 -2
- data/lib/bundler/resolver.rb +72 -24
- data/lib/bundler/resolver/spec_group.rb +3 -2
- data/lib/bundler/retry.rb +2 -2
- data/lib/bundler/ruby_version.rb +4 -19
- data/lib/bundler/rubygems_ext.rb +11 -66
- data/lib/bundler/rubygems_gem_installer.rb +1 -1
- data/lib/bundler/rubygems_integration.rb +133 -410
- data/lib/bundler/runtime.rb +2 -9
- data/lib/bundler/settings.rb +22 -52
- data/lib/bundler/setup.rb +7 -13
- data/lib/bundler/shared_helpers.rb +46 -74
- data/lib/bundler/similarity_detector.rb +2 -2
- data/lib/bundler/source.rb +5 -5
- data/lib/bundler/source/git.rb +24 -17
- data/lib/bundler/source/git/git_proxy.rb +38 -41
- data/lib/bundler/source/metadata.rb +7 -2
- data/lib/bundler/source/path.rb +13 -8
- data/lib/bundler/source/rubygems.rb +14 -8
- data/lib/bundler/source/rubygems/remote.rb +2 -3
- data/lib/bundler/source_list.rb +9 -12
- data/lib/bundler/spec_set.rb +1 -6
- data/lib/bundler/stub_specification.rb +18 -30
- data/lib/bundler/templates/Executable.bundler +22 -13
- data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +3 -3
- data/lib/bundler/templates/newgem/Gemfile.tt +8 -0
- data/lib/bundler/templates/newgem/README.md.tt +4 -3
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +2 -18
- data/lib/bundler/templates/newgem/test/test_helper.rb.tt +0 -4
- data/lib/bundler/templates/newgem/travis.yml.tt +0 -1
- data/lib/bundler/ui.rb +3 -3
- data/lib/bundler/ui/rg_proxy.rb +1 -1
- data/lib/bundler/ui/shell.rb +4 -8
- data/lib/bundler/uri_credentials_filter.rb +7 -3
- data/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +161 -0
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb +66 -0
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +176 -0
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +3 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +134 -111
- data/lib/bundler/vendor/molinillo/lib/molinillo.rb +6 -6
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +2 -2
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +6 -6
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +30 -8
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +1 -1
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +4 -4
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +2 -2
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +273 -304
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +40 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +53 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +79 -0
- data/lib/bundler/vendor/thor/lib/thor.rb +19 -4
- data/lib/bundler/vendor/thor/lib/thor/actions.rb +17 -12
- data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +7 -17
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +5 -5
- data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +19 -8
- data/lib/bundler/vendor/thor/lib/thor/base.rb +51 -39
- data/lib/bundler/vendor/thor/lib/thor/command.rb +21 -14
- data/lib/bundler/vendor/thor/lib/thor/error.rb +14 -18
- data/lib/bundler/vendor/thor/lib/thor/group.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/invocation.rb +1 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor.rb +2 -2
- data/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +6 -6
- data/lib/bundler/vendor/thor/lib/thor/nested_context.rb +29 -0
- data/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -4
- data/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +2 -2
- data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +20 -7
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +13 -3
- data/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +1 -0
- data/lib/bundler/vendor/thor/lib/thor/runner.rb +13 -12
- data/lib/bundler/vendor/thor/lib/thor/shell.rb +3 -3
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +10 -1
- data/lib/bundler/vendor/thor/lib/thor/shell/color.rb +6 -2
- data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +3 -3
- data/lib/bundler/vendor/thor/lib/thor/util.rb +18 -2
- data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/bundler/vendor/uri/lib/uri.rb +104 -0
- data/lib/bundler/vendor/uri/lib/uri/common.rb +744 -0
- data/lib/bundler/vendor/uri/lib/uri/file.rb +94 -0
- data/lib/bundler/vendor/uri/lib/uri/ftp.rb +267 -0
- data/lib/bundler/vendor/uri/lib/uri/generic.rb +1568 -0
- data/lib/bundler/vendor/uri/lib/uri/http.rb +88 -0
- data/lib/bundler/vendor/uri/lib/uri/https.rb +23 -0
- data/lib/bundler/vendor/uri/lib/uri/ldap.rb +261 -0
- data/lib/bundler/vendor/uri/lib/uri/ldaps.rb +21 -0
- data/lib/bundler/vendor/uri/lib/uri/mailto.rb +294 -0
- data/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +546 -0
- data/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +125 -0
- data/lib/bundler/vendor/uri/lib/uri/version.rb +6 -0
- data/lib/bundler/vendored_fileutils.rb +1 -6
- data/lib/bundler/vendored_molinillo.rb +1 -1
- data/lib/bundler/vendored_persistent.rb +7 -5
- data/lib/bundler/vendored_thor.rb +2 -2
- data/lib/bundler/vendored_uri.rb +4 -0
- data/lib/bundler/version.rb +1 -20
- data/lib/bundler/version_ranges.rb +51 -5
- data/lib/bundler/vlad.rb +3 -3
- data/lib/bundler/worker.rb +1 -3
- data/lib/bundler/yaml_serializer.rb +2 -3
- data/man/bundle-add.1 +10 -2
- data/man/bundle-add.1.txt +11 -5
- data/man/bundle-add.ronn +7 -1
- data/man/bundle-binstubs.1 +2 -2
- data/man/bundle-binstubs.1.txt +2 -2
- data/man/bundle-binstubs.ronn +1 -1
- data/man/bundle-cache.1 +55 -0
- data/man/bundle-cache.1.txt +78 -0
- data/man/{bundle-package.ronn → bundle-cache.ronn} +15 -15
- data/man/bundle-check.1 +1 -1
- data/man/bundle-check.1.txt +6 -6
- data/man/bundle-clean.1 +1 -1
- data/man/bundle-clean.1.txt +1 -1
- data/man/bundle-config.1 +35 -35
- data/man/bundle-config.1.txt +65 -66
- data/man/bundle-config.ronn +41 -39
- data/man/bundle-doctor.1 +1 -1
- data/man/bundle-doctor.1.txt +1 -1
- data/man/bundle-exec.1 +2 -2
- data/man/bundle-exec.1.txt +2 -2
- data/man/bundle-exec.ronn +1 -1
- data/man/bundle-gem.1 +1 -1
- data/man/bundle-gem.1.txt +3 -3
- data/man/bundle-info.1 +1 -1
- data/man/bundle-info.1.txt +1 -1
- data/man/bundle-init.1 +1 -1
- data/man/bundle-init.1.txt +1 -1
- data/man/bundle-inject.1 +1 -1
- data/man/bundle-inject.1.txt +1 -1
- data/man/bundle-install.1 +8 -5
- data/man/bundle-install.1.txt +56 -51
- data/man/bundle-install.ronn +9 -4
- data/man/bundle-list.1 +1 -1
- data/man/bundle-list.1.txt +1 -1
- data/man/bundle-lock.1 +1 -1
- data/man/bundle-lock.1.txt +16 -16
- data/man/bundle-open.1 +1 -1
- data/man/bundle-open.1.txt +1 -1
- data/man/bundle-outdated.1 +1 -1
- data/man/bundle-outdated.1.txt +1 -1
- data/man/bundle-platform.1 +1 -1
- data/man/bundle-platform.1.txt +1 -1
- data/man/bundle-pristine.1 +1 -1
- data/man/bundle-pristine.1.txt +1 -1
- data/man/bundle-remove.1 +1 -1
- data/man/bundle-remove.1.txt +1 -1
- data/man/bundle-show.1 +1 -1
- data/man/bundle-show.1.txt +1 -1
- data/man/bundle-update.1 +4 -4
- data/man/bundle-update.1.txt +64 -65
- data/man/bundle-update.ronn +3 -3
- data/man/bundle-viz.1 +1 -1
- data/man/bundle-viz.1.txt +1 -1
- data/man/bundle.1 +2 -2
- data/man/bundle.1.txt +7 -7
- data/man/bundle.ronn +1 -1
- data/man/gemfile.5 +12 -15
- data/man/gemfile.5.ronn +9 -13
- data/man/gemfile.5.txt +103 -107
- data/man/index.txt +1 -1
- metadata +30 -120
- data/exe/bundle_ruby +0 -60
- data/lib/bundler/cli/package.rb +0 -49
- data/lib/bundler/compatibility_guard.rb +0 -13
- data/lib/bundler/gem_remote_fetcher.rb +0 -43
- data/lib/bundler/ssl_certs/.document +0 -1
- data/lib/bundler/ssl_certs/certificate_manager.rb +0 -66
- data/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +0 -21
- data/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
- data/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
- data/lib/bundler/vendor/fileutils/lib/fileutils/version.rb +0 -5
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +0 -27
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +0 -129
- data/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +0 -12
- data/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +0 -129
- data/man/bundle-package.1 +0 -55
- data/man/bundle-package.1.txt +0 -79
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1b0f254fde45e5334d616c37efb448b0c3213d5681d141a3652fe6aa59e3f4a
|
4
|
+
data.tar.gz: 3c6f21c091483b75be54095df2449cc31f12dce5800473b57fabe7efa1536368
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d55cf58680c59ed903fa27d6b90e73d9609b9373ccf51041bbfdd31b56449ee40eb1d927c0ef1278aa977d85a912e06f90accaa958a36376abee465c11ad846b
|
7
|
+
data.tar.gz: 67860aa75e4883107d5c8c3afd76a388bea176a6b39382e1258ceafec35afa993aed49b82d2cce92da64e41739dafbbc65fba01ce9ca80470490d44474fabf7e
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,150 @@
|
|
1
|
-
## 2.0
|
1
|
+
## 2.1.0 (December 15, 2019)
|
2
|
+
|
3
|
+
Features:
|
4
|
+
|
5
|
+
- Add support for new default gems. In particular,
|
6
|
+
|
7
|
+
* `open3` [#7455](https://github.com/bundler/bundler/pull/7455)
|
8
|
+
* `cgi`: [#7456](https://github.com/bundler/bundler/pull/7456)
|
9
|
+
* `uri` [#7460](https://github.com/bundler/bundler/pull/7460)
|
10
|
+
|
11
|
+
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/bundler/bundler/pull/7471) or [#7473](https://github.com/bundler/bundler/pull/7473)
|
12
|
+
|
13
|
+
Bugfixes:
|
14
|
+
|
15
|
+
- Fix `bundle exec rake install` failing [#7474](https://github.com/bundler/bundler/pull/7474)
|
16
|
+
- Fix `bundle exec`'ing to rubygems being silent [#7442](https://github.com/bundler/bundler/pull/7442)
|
17
|
+
- Restore previous `BUNDLE_GEMFILE` in `bundler/inline` [#7418](https://github.com/bundler/bundler/pull/7418)
|
18
|
+
- Fix error when using `gem` DSL's `:glob` option for selecting gemspecs from a specific source [#7419](https://github.com/bundler/bundler/pull/7419)
|
19
|
+
|
20
|
+
Changes:
|
21
|
+
|
22
|
+
- `bundle config` no longer warns when using "old interface" (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
|
23
|
+
- `bundle update` no longer warns when used without arguments (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
|
24
|
+
|
25
|
+
## 2.1.0.pre.3 (November 12, 2019)
|
26
|
+
|
27
|
+
Features:
|
28
|
+
|
29
|
+
- Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/bundler/bundler/pull/7361)
|
30
|
+
- 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/bundler/bundler/pull/7389)
|
31
|
+
- Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/bundler/bundler/pull/7394)
|
32
|
+
|
33
|
+
Bugfixes:
|
34
|
+
|
35
|
+
- Fix typos deprecation message and upgrading docs [#7374](https://github.com/bundler/bundler/pull/7374)
|
36
|
+
- Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/bundler/bundler/pull/7385)
|
37
|
+
- Fix `--help` flag not correctly delegating to `man` when used with command aliases [#7388](https://github.com/bundler/bundler/pull/7388)
|
38
|
+
- `bundle add` should cache newly added gems if an application cache exists [#7393](https://github.com/bundler/bundler/pull/7393)
|
39
|
+
- Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/bundler/bundler/pull/7416)
|
40
|
+
- Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/bundler/bundler/pull/7417)
|
41
|
+
|
42
|
+
## 2.1.0.pre.2 (September 15, 2019)
|
43
|
+
|
44
|
+
Bugfixes:
|
45
|
+
|
46
|
+
- Fix `bundle clean` trying to delete non-existent directory ([#7340](https://github.com/bundler/bundler/pull/7340))
|
47
|
+
- Fix warnings about keyword argument separation on ruby 2.7 ([#7337](https://github.com/bundler/bundler/pull/7337))
|
48
|
+
|
49
|
+
## 2.1.0.pre.1 (August 28, 2019)
|
50
|
+
|
51
|
+
One of the biggest changes in bundler 2.1.0 is that deprecations for upcoming
|
52
|
+
breaking changes in bundler 3 will be turned on by default. We do this to grab
|
53
|
+
feedback and communicate early to our users the kind of changes we're intending
|
54
|
+
to ship with bundler 3. See
|
55
|
+
[#6965](https://github.com/bundler/bundler/pull/6965).
|
56
|
+
|
57
|
+
Another important improvement is a better coexistence between bundler
|
58
|
+
installations and the default copy of bundler that comes with ruby installed as
|
59
|
+
a default gem. Since bundler is shipped as a default gem with ruby, a number of
|
60
|
+
users have been affected by issues where bundler ends up failing due to version
|
61
|
+
mismatches, because at some point of the execution, bundler switches to run the
|
62
|
+
default copy instead of the expected version. A number of PRs have been focused
|
63
|
+
on minimizing (hopefully eliminating) this, such as
|
64
|
+
[#7100](https://github.com/bundler/bundler/pull/7100),
|
65
|
+
[#7137](https://github.com/bundler/bundler/pull/7137),
|
66
|
+
[#6996](https://github.com/bundler/bundler/pull/6996),
|
67
|
+
[#7056](https://github.com/bundler/bundler/pull/7056),
|
68
|
+
[#7062](https://github.com/bundler/bundler/pull/7062),
|
69
|
+
[#7193](https://github.com/bundler/bundler/pull/7193),
|
70
|
+
[#7216](https://github.com/bundler/bundler/pull/7216),
|
71
|
+
[#7274](https://github.com/bundler/bundler/pull/7274)
|
72
|
+
|
73
|
+
Deprecations:
|
74
|
+
|
75
|
+
* See the [the upgrading document](UPGRADING.md) for a detailed explanation of
|
76
|
+
the deprecations that are getting enabled in bundler 2.1, and the future
|
77
|
+
breaking changes in bundler 3.
|
78
|
+
|
79
|
+
Features:
|
80
|
+
|
81
|
+
- Reimplement `config` command using subcommands ([#5981](https://github.com/bundler/bundler/pull/5981))
|
82
|
+
- Add `bundle plugin list` command ([#6120](https://github.com/bundler/bundler/pull/6120))
|
83
|
+
- Introduce a `bundle lock --gemfile` flag ([#6748](https://github.com/bundler/bundler/pull/6748))
|
84
|
+
- Add local git repository source option (`--local_git`) to plugin installation ([#6749](https://github.com/bundler/bundler/pull/6749))
|
85
|
+
- Add `quiet` flag to inline bundler ([#6828](https://github.com/bundler/bundler/pull/6828))
|
86
|
+
- Introduce a `prefer_patch` configuration that makes `bundle update` behave like `bundle update --patch` ([#6931](https://github.com/bundler/bundler/pull/6931))
|
87
|
+
- Introduce `Bundler.original_system` and `Bundler.original_exec` to shell out or exec to external programs using the original environment before bundler was loaded ([#7052](https://github.com/bundler/bundler/pull/7052))
|
88
|
+
- Add feature parity to `bundle info GEM` with respect to the old deprecated command `bundle show GEM` [#7026](https://github.com/bundler/bundler/pull/7026)
|
89
|
+
- Introduce `bundle list` to list groups of gems in your Gemfile. This command was actually documented, but was working as an alias to `bundle show` so this could also be considered a bug fix :) [#7072](https://github.com/bundler/bundler/pull/7072)
|
90
|
+
- Introduce `bundle outdated --filter-strict` as an alias to `bundle outdated --strict` [#6030](https://github.com/bundler/bundler/pull/6030)
|
91
|
+
- Add `:git` and `:branch` options to `bundle add` ([#7127](https://github.com/bundler/bundler/pull/7127))
|
92
|
+
- Add `:ruby_26` as a valid value to the `:platform(s)` dsl ([#7155](https://github.com/bundler/bundler/pull/7155))
|
93
|
+
- Let the `bundle cache` command include all features currently provided by `bundle package` ([#7249](https://github.com/bundler/bundler/pull/7249))
|
94
|
+
- Several improvements on new gem templates ([#6924](https://github.com/bundler/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))
|
95
|
+
- Add `--[no-]git` option to `bundle gem` to generate non source control gems. Useful for monorepos, for example ([#7263](https://github.com/bundler/bundler/pull/7263))
|
96
|
+
|
97
|
+
Bugfixes:
|
98
|
+
|
99
|
+
- Raise when the same gem is available in multiple sources, and show a suggestion to solve it ([#5985](https://github.com/bundler/bundler/pull/5985))
|
100
|
+
- Validate that bundler has permissions to write to the tmp directory, and raise with a meaningful error otherwise ([#5954](https://github.com/bundler/bundler/pull/5954))
|
101
|
+
- Remove downloaded `.gem` file from the cache if it's corrupted ([#6010](https://github.com/bundler/bundler/pull/6010))
|
102
|
+
- Fix generated README in new gems to explicitly suggest running `bundle install`, so that the outcome is independent from the major version of bundler being run ([#6068](https://github.com/bundler/bundler/pull/6068))
|
103
|
+
- Fix `bundle outdated --group NAME` when the group is listed second in the Gemfile ([#6116](https://github.com/bundler/bundler/pull/6116))
|
104
|
+
- Improve conflict resolution messages by not calling "ruby" a gem when conflict happens in the `required_ruby_version`, and by filtering out requirements that didn't contribute to the conflict ([#6647](https://github.com/bundler/bundler/pull/6647))
|
105
|
+
- Avoid fetching and rebuilding git gems whenever any gem is changed in the Gemfile ([#6711](https://github.com/bundler/bundler/pull/6711))
|
106
|
+
- Include the exact bundler version in the lock file in the suggested command when bundler warns about version mismatches of itself [#6971](https://github.com/bundler/bundler/pull/6971)
|
107
|
+
- Fix plugins being installed every time a command is run #[#6978](https://github.com/bundler/bundler/pull/6978)
|
108
|
+
- Fallback to sequentially fetching specs on 429s [#6728](https://github.com/bundler/bundler/pull/6728)
|
109
|
+
- Make `bundle clean` also clean native extensions for gems with a git source [#7058](https://github.com/bundler/bundler/pull/7058)
|
110
|
+
- Fix `bundle info bundler` to show the correct path to the bundler gem [#7026](https://github.com/bundler/bundler/pull/7026)
|
111
|
+
- Fix `bundle config build.<gem>` not sending multiple parameters to `extconf.rb` correctly [#7023](https://github.com/bundler/bundler/pull/7023)
|
112
|
+
- Fix bad error message on Gemfile errors under ruby 2.7 (still unreleased, but it's a bugfix for beta testers after all) [#7038](https://github.com/bundler/bundler/pull/7038)
|
113
|
+
- Warn about situations where multiple gems provide the same executable ([#7075](https://github.com/bundler/bundler/pull/7075))
|
114
|
+
- Ignore `frozen` setting in inline mode ([#7125](https://github.com/bundler/bundler/pull/7125))
|
115
|
+
- Fix incorrect "bundler attempted to update GEM but version stayed the same" message when updating git sourced gems ([#6325](https://github.com/bundler/bundler/pull/6325))
|
116
|
+
- Don't check for existence of a writable home directory if `BUNDLE_USER_HOME` is set ([#6885](https://github.com/bundler/bundler/pull/6885))
|
117
|
+
- Fix error message when server would respond to a bad username/password requiest with a 401 ([#6928](https://github.com/bundler/bundler/pull/6928))
|
118
|
+
- Fix `bundle outdated` pluralization when multiple groups are requested ([#7063](https://github.com/bundler/bundler/pull/7063))
|
119
|
+
- Fix `bundle install` not updating conservatively when gemspec is changed ([#7143](https://github.com/bundler/bundler/pull/7143))
|
120
|
+
- Fix `bundle exec` not respecting custom process titles inside scripts ([#7140](https://github.com/bundler/bundler/pull/7140))
|
121
|
+
- Fix `bundle update` message about exclude groups saying "installed" instead of "updated" ([#7150](https://github.com/bundler/bundler/pull/7150))
|
122
|
+
- Fix `bundle licenses` not showing correct information about bundler itself ([#7147](https://github.com/bundler/bundler/pull/7147))
|
123
|
+
- Fix installation path not including ruby scope when `BUNDLE_PATH` was set ([#7163](https://github.com/bundler/bundler/pull/7163))
|
124
|
+
- Fix `bundle clean` incorrectly removing git depedencies present in the Gemfile when rubygems 3.0+ was used and path involved a symlink ([#7211](https://github.com/bundler/bundler/pull/7211))
|
125
|
+
- Fix platform specific gems always being re-resolved when bundler was not running under that platform ([#7212](https://github.com/bundler/bundler/pull/7212))
|
126
|
+
- Fix `bundle package --all-platforms` causing `bundle install` to ignore `--with` and `--without` ([#6113](https://github.com/bundler/bundler/pull/6113))
|
127
|
+
- Fix `MissingRevision` git errors to include the specific `git` command that failed under the hood ([#7225](https://github.com/bundler/bundler/pull/7225))
|
128
|
+
- Fix using gemspec & `force_ruby_platform` on Windows ([#6809](https://github.com/bundler/bundler/pull/6809))
|
129
|
+
- Make bundler's binstub checks on bundler version consistent with rubygems `BundlerVersionFinder` ([#7259](https://github.com/bundler/bundler/pull/7259))
|
130
|
+
- Fix `bundle install` and `bundle update` generating different lockfiles when `path:` gems with relative paths starting with "./" were used ([#7264](https://github.com/bundler/bundler/pull/7264))
|
131
|
+
- Give a proper error when user tries to `bundle open` a default gem ([#7288](https://github.com/bundler/bundler/pull/7288))
|
132
|
+
- Fix `bundle doctor` command ([#7309](https://github.com/bundler/bundler/pull/7309))
|
133
|
+
- Fix bundler giving an unclear recommendation when duplicated gems are found in the Gemfile ([#7302](https://github.com/bundler/bundler/pull/7302))
|
134
|
+
|
135
|
+
Documentation:
|
136
|
+
|
137
|
+
- Fix typo on a file extension in `bundle.ronn` [#7146](https://github.com/bundler/bundler/pull/7146)
|
138
|
+
- Fix incorrect default value for `cache_path` configuration ([#7229](https://github.com/bundler/bundler/pull/7229))
|
139
|
+
- Binstubs documentation has been improved ([#5889](https://github.com/bundler/bundler/pull/5889))
|
140
|
+
- Fix incorrect sections when explaining `:git`, `:branch`, and `:ref` options ([#7265](https://github.com/bundler/bundler/pull/7265))
|
141
|
+
- Fix mentions to remembered options in docs to explain the current state ([#7242](https://github.com/bundler/bundler/pull/7242))
|
142
|
+
|
143
|
+
Internally, there's also been a bunch of improvements in our development
|
144
|
+
environment, test suite, policies, contributing docs, and a bunch of cleanups of
|
145
|
+
old compatibility code.
|
146
|
+
|
147
|
+
## 2.0.2 (2019-06-13)
|
2
148
|
|
3
149
|
Changes:
|
4
150
|
|
@@ -12,7 +158,7 @@ Changes:
|
|
12
158
|
- Fixed an issue where plugins could register for the same Bundler hook multiple times ([#6775](https://github.com/bundler/bundler/pull/6775))
|
13
159
|
- Changed the "multiple sources" message in `bundle install` to be a warning instead of an error ([#6790](https://github.com/bundler/bundler/pull/6790))
|
14
160
|
- Fixed a bug where path gems would break when using `only_update_to_newer_versions` ([#6774](https://github.com/bundler/bundler/pull/6774))
|
15
|
-
- Fixed a bug where installing plugins with the `--
|
161
|
+
- Fixed a bug where installing plugins with the `--deployment` setting would fail ([#6805](https://github.com/bundler/bundler/pull/6805))
|
16
162
|
- Fixed an issue where `bundle update` couldn't update & install a gem when `no_install` was set (a `bundle package` config) ([#7078](https://github.com/bundler/bundler/pull/7078))
|
17
163
|
- Fixed an issue where users could not run `bundle exec` on default gems ([#6963](https://github.com/bundler/bundler/pull/6963))
|
18
164
|
- Updated vendor libraries to their latest version ([#7076](https://github.com/bundler/bundler/pull/7067), [#7068](https://github.com/bundler/bundler/pull/7068))
|
@@ -63,12 +209,27 @@ Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update -
|
|
63
209
|
|
64
210
|
Breaking Changes:
|
65
211
|
|
66
|
-
- Dropped support for versions of Ruby
|
67
|
-
- Dropped support for version of RubyGems
|
212
|
+
- Dropped support for versions of Ruby under 2.3
|
213
|
+
- Dropped support for version of RubyGems under 2.5
|
68
214
|
- Moved error messages from STDOUT to STDERR
|
69
215
|
|
70
216
|
Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
|
71
217
|
|
218
|
+
## 1.17.3 (2018-12-27)
|
219
|
+
|
220
|
+
Bugfixes:
|
221
|
+
|
222
|
+
- Fix a Bundler error when installing gems on old versions of RubyGems ([#6839](https://github.com/bundler/bundler/issues/6839), @colby-swandale)
|
223
|
+
- Fix a rare issue where Bundler was removing itself after a `bundle clean` ([#6829](https://github.com/bundler/bundler/issues/6829), @colby-swandale)
|
224
|
+
|
225
|
+
Documentation:
|
226
|
+
|
227
|
+
- Add entry for the `bundle remove` command to the main Bundler manual page
|
228
|
+
|
229
|
+
## 1.17.2 (2018-12-11)
|
230
|
+
|
231
|
+
- Add compatibility for bundler merge with Ruby 2.6
|
232
|
+
|
72
233
|
## 1.17.1 (2018-10-25)
|
73
234
|
|
74
235
|
- Convert `Pathname`s to `String`s before sorting them, fixing #6760 and #6758 ([#6761](https://github.com/bundler/bundler/pull/6761), @alexggordon)
|
@@ -124,14 +285,14 @@ The following new features are available but are not enabled by default. These a
|
|
124
285
|
Changes:
|
125
286
|
|
126
287
|
- Add an error message when adding a gem with `bundle add` that's already in the bundle ([#6341](https://github.com/bundler/bundler/issues/6341), @agrim123)
|
127
|
-
- Add Homepage, Source Code and
|
288
|
+
- Add Homepage, Source Code and Changelog URI metadata fields to the `bundle gem` gemspec template (@walf443)
|
128
289
|
|
129
290
|
Bugfixes:
|
130
291
|
|
131
292
|
- 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/bundler/bundler/issues/6529), @theflow)
|
132
293
|
- Fix some rescue calls that don't specifiy error type (@utilum)
|
133
294
|
- Fix an issue when the Lockfile would contain platform-specific gems that it didn't need ([#6491](https://github.com/bundler/bundler/issues/6491), @segiddins)
|
134
|
-
- Improve
|
295
|
+
- Improve handling of adding new gems with only a single group to the Gemfile in `bundle add` (@agrim123)
|
135
296
|
- Refactor check for OpenSSL in `bundle env` (@voxik)
|
136
297
|
- Remove an unnecessary assignment in Metadata (@voxik)
|
137
298
|
|
@@ -257,7 +418,7 @@ Bugfixes:
|
|
257
418
|
- avoid an error when running `bundle update --group` ([#6156](https://github.com/bundler/bundler/issues/6156), @mattbrictson)
|
258
419
|
- ensure the resolver prefers non-pre-release gems when possible ([#6181](https://github.com/bundler/bundler/issues/6181), @greysteil)
|
259
420
|
- include bundler's gemspec in the built gem ([#6165](https://github.com/bundler/bundler/issues/6165), @dr-itz)
|
260
|
-
- ensure locally installed specs are not
|
421
|
+
- ensure locally installed specs are not overridden by those in remote sources during dependency resolution ([#6072](https://github.com/bundler/bundler/issues/6072), @indirect)
|
261
422
|
- ensure custom gemfiles are respected in generated binstubs (@pftg)
|
262
423
|
- fail gracefully when loading a bundler-generated binstub when `bin/bundle` was not generated by bundler ([#6149](https://github.com/bundler/bundler/issues/6149), @hsbt)
|
263
424
|
- allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/bundler/bundler/issues/6205), @colby-swandale)
|
@@ -284,10 +445,10 @@ Features:
|
|
284
445
|
|
285
446
|
Bugfixes:
|
286
447
|
|
287
|
-
- fix a bug where installing on FreeBSD would accidentally raise an error (#6013, @olleolleolle)
|
448
|
+
- fix a bug where installing on FreeBSD would accidentally raise an error ([#6013](https://github.com/bundler/bundler/issues/6013), @olleolleolle)
|
288
449
|
- fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
|
289
450
|
- bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
|
290
|
-
- the outdated bundler version message is disabled by default until the message has been fine-tuned (#6004, @segiddins)
|
451
|
+
- the outdated bundler version message is disabled by default until the message has been fine-tuned ([#6004](https://github.com/bundler/bundler/issues/6004), @segiddins)
|
291
452
|
|
292
453
|
## 1.16.0.pre.2 (2017-09-06)
|
293
454
|
|
@@ -301,51 +462,51 @@ Bugfixes:
|
|
301
462
|
|
302
463
|
Features:
|
303
464
|
|
304
|
-
- allow using non-branch symbolic refs in a git source (#4845, @segiddins)
|
305
|
-
- allow absolute paths in the `cache path` setting (#5627, @mal)
|
465
|
+
- allow using non-branch symbolic refs in a git source ([#4845](https://github.com/bundler/bundler/issues/4845), @segiddins)
|
466
|
+
- allow absolute paths in the `cache path` setting ([#5627](https://github.com/bundler/bundler/issues/5627), @mal)
|
306
467
|
- gems created via `bundle gem` with rspec have `--require spec_helper` in their `.rspec` file (@koic)
|
307
|
-
- `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match (#5616, @segiddins)
|
468
|
+
- `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match ([#5616](https://github.com/bundler/bundler/issues/5616), @segiddins)
|
308
469
|
- allow passing gem names to `bundle pristine` (@segiddins)
|
309
|
-
- `bundle version` and `bundle env` include the commit and build date for the bundler gem (#5049, @segiddins)
|
310
|
-
- add the `--shebang` option to `bundle binstubs` (#4070, @segiddins, @Zorbash)
|
311
|
-
- gemfiles are `eval`ed one fewer time when running `bundle install` (#4952, #3096, #4417, @segiddins)
|
470
|
+
- `bundle version` and `bundle env` include the commit and build date for the bundler gem ([#5049](https://github.com/bundler/bundler/issues/5049), @segiddins)
|
471
|
+
- add the `--shebang` option to `bundle binstubs` ([#4070](https://github.com/bundler/bundler/issues/4070), @segiddins, @Zorbash)
|
472
|
+
- gemfiles are `eval`ed one fewer time when running `bundle install` ([#4952](https://github.com/bundler/bundler/issues/4952), [#3096](https://github.com/bundler/bundler/issues/3096), [#4417](https://github.com/bundler/bundler/issues/4417), @segiddins)
|
312
473
|
- the `fileutils` gem is now vendored so different versions of the gem can be activated (@segiddins)
|
313
|
-
- speed up no-op installations (#5842, @segiddins)
|
474
|
+
- speed up no-op installations ([#5842](https://github.com/bundler/bundler/issues/5842), @segiddins)
|
314
475
|
- default to keeping the lockfile in the default gem template (@deivid-rodriguez)
|
315
|
-
- add a special bundler binstub that ensures the correct version of bundler is activated (#5876, @segiddins)
|
476
|
+
- add a special bundler binstub that ensures the correct version of bundler is activated ([#5876](https://github.com/bundler/bundler/issues/5876), @segiddins)
|
316
477
|
- speed up dependency resolution and ensure that all resolvable gemfiles can be installed (@segiddins, @greysteil)
|
317
|
-
- add a `bundle list` command that prints the gems in use (#4754, @colby-swandale)
|
478
|
+
- add a `bundle list` command that prints the gems in use ([#4754](https://github.com/bundler/bundler/issues/4754), @colby-swandale)
|
318
479
|
- allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
|
319
480
|
- making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)
|
320
481
|
|
321
482
|
Bugfixes:
|
322
483
|
|
323
|
-
- allow configuring a mirror fallback timeout without a trailing slash (#4830, @segiddins)
|
484
|
+
- allow configuring a mirror fallback timeout without a trailing slash ([#4830](https://github.com/bundler/bundler/issues/4830), @segiddins)
|
324
485
|
- fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
|
325
486
|
- list the correct gem host for `rake release` when `allowed_push_host` has been set (@mdeering)
|
326
|
-
- ensure `Bundler.original_env` preserves all env keys that bundler sets (#5700, @segiddins)
|
487
|
+
- ensure `Bundler.original_env` preserves all env keys that bundler sets ([#5700](https://github.com/bundler/bundler/issues/5700), @segiddins)
|
327
488
|
- ensure `bundle pristine` removes files added to a git gem (@segiddins)
|
328
|
-
- load plugin files from path gems before gem installation (#5429, @segiddins)
|
329
|
-
- ensure gems containing manpages are properly set up (#5730, @segiddins)
|
489
|
+
- load plugin files from path gems before gem installation ([#5429](https://github.com/bundler/bundler/issues/5429), @segiddins)
|
490
|
+
- ensure gems containing manpages are properly set up ([#5730](https://github.com/bundler/bundler/issues/5730), @segiddins)
|
330
491
|
- avoid fetching remote specs when all effected gems are in groups that are not being installed (@segiddins)
|
331
|
-
- allow `BUNDLE_GEMFILE` to be a relative path (#5712, @gxespino)
|
332
|
-
- show a more helpful error message when a gem fails to install due to a corrupted lockfile (#5846, @segiddins)
|
333
|
-
- add a process lock to allow multiple concurrent `bundle install`s (#5851, @stefansedich)
|
492
|
+
- allow `BUNDLE_GEMFILE` to be a relative path ([#5712](https://github.com/bundler/bundler/issues/5712), @gxespino)
|
493
|
+
- show a more helpful error message when a gem fails to install due to a corrupted lockfile ([#5846](https://github.com/bundler/bundler/issues/5846), @segiddins)
|
494
|
+
- add a process lock to allow multiple concurrent `bundle install`s ([#5851](https://github.com/bundler/bundler/issues/5851), @stefansedich)
|
334
495
|
- ensure that specifications always return an array for `#extensions` (@greysteil)
|
335
496
|
- print a helpful error message when using a gem in the Gemfile with an empty name (@colby-swandale)
|
336
497
|
- ensure that all gemfiles are included in `bundle env` (@segiddins)
|
337
498
|
- use ssl client cert and ca cert settings from gem configuration as fallbacks (@stan3)
|
338
|
-
- avoid global namespace pollution when loading gems (#5958, @shyouhei)
|
499
|
+
- avoid global namespace pollution when loading gems ([#5958](https://github.com/bundler/bundler/issues/5958), @shyouhei)
|
339
500
|
- avoid running a complete re-resolve on `bundle update --bundler` (@segiddins)
|
340
501
|
- allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
|
341
|
-
- fix support for bundle paths that include jars or wars on jruby (#5975, @torcido)
|
502
|
+
- fix support for bundle paths that include jars or wars on jruby ([#5975](https://github.com/bundler/bundler/issues/5975), @torcido)
|
342
503
|
|
343
504
|
## 1.15.4 (2017-08-19)
|
344
505
|
|
345
506
|
Bugfixes:
|
346
507
|
|
347
508
|
- handle file conflicts gracefully in `bundle gem` (@rafaelfranca, @segiddins)
|
348
|
-
- bundler will fail gracefully when the bundle path contains the system path separator (#5485, ajwann)
|
509
|
+
- bundler will fail gracefully when the bundle path contains the system path separator ([#5485](https://github.com/bundler/bundler/issues/5485), ajwann)
|
349
510
|
- failed gem downloads will be retried consistently across different RubyGems versions (@shayonj)
|
350
511
|
- `bundle pristine` will respect build options while re-building native extensions (@NickLaMuro)
|
351
512
|
|
@@ -353,7 +514,7 @@ Bugfixes:
|
|
353
514
|
|
354
515
|
Bugfixes:
|
355
516
|
|
356
|
-
- ensure that empty strings passed to `bundle config` are serialized & parsed properly (#5881, @segiddins)
|
517
|
+
- ensure that empty strings passed to `bundle config` are serialized & parsed properly ([#5881](https://github.com/bundler/bundler/issues/5881), @segiddins)
|
357
518
|
- avoid printing an outdated version warning when running a parseable command (@segiddins)
|
358
519
|
|
359
520
|
## 1.15.2 (2017-07-17)
|
@@ -364,24 +525,24 @@ Features:
|
|
364
525
|
|
365
526
|
Bugfixes:
|
366
527
|
|
367
|
-
- inline gemfiles work when `BUNDLE_BIN` is set (#5847, @segiddins)
|
368
|
-
- avoid using the old dependency API when there are no changes to the compact index files (#5373, @greysteil)
|
369
|
-
- fail gracefully when the full index serves gemspecs with invalid dependencies (#5797, @segiddins)
|
528
|
+
- inline gemfiles work when `BUNDLE_BIN` is set ([#5847](https://github.com/bundler/bundler/issues/5847), @segiddins)
|
529
|
+
- avoid using the old dependency API when there are no changes to the compact index files ([#5373](https://github.com/bundler/bundler/issues/5373), @greysteil)
|
530
|
+
- fail gracefully when the full index serves gemspecs with invalid dependencies ([#5797](https://github.com/bundler/bundler/issues/5797), @segiddins)
|
370
531
|
- support installing gemfiles that use `eval_gemfile`, `:path` gems with relative paths, and `--deployment` simultaneously (@NickLaMuro)
|
371
532
|
- `bundle config` will print settings as the type they are interpreted as (@segiddins)
|
372
|
-
- respect the `no_proxy` environment variable when making network requests (#5781, @jakauppila)
|
533
|
+
- respect the `no_proxy` environment variable when making network requests ([#5781](https://github.com/bundler/bundler/issues/5781), @jakauppila)
|
373
534
|
- commands invoked with `--verbose` will not have default flags printed (@segiddins)
|
374
|
-
- allow `bundle viz` to work when another gem has a requirable `grapviz` file (#5707, @segiddins)
|
375
|
-
- ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order (#5696, @segiddins)
|
535
|
+
- allow `bundle viz` to work when another gem has a requirable `grapviz` file ([#5707](https://github.com/bundler/bundler/issues/5707), @segiddins)
|
536
|
+
- ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order ([#5696](https://github.com/bundler/bundler/issues/5696), @segiddins)
|
376
537
|
|
377
538
|
## 1.15.1 (2017-06-02)
|
378
539
|
|
379
540
|
Bugfixes:
|
380
541
|
|
381
|
-
- `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile (#5693, @segiddins)
|
542
|
+
- `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile ([#5693](https://github.com/bundler/bundler/issues/5693), @segiddins)
|
382
543
|
- `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
|
383
|
-
- `bundle install --force` works when the gemfile contains git gems (#5678, @segiddins)
|
384
|
-
- `bundle env` will print well-formed markdown when there are no settings (#5677, @segiddins)
|
544
|
+
- `bundle install --force` works when the gemfile contains git gems ([#5678](https://github.com/bundler/bundler/issues/5678), @segiddins)
|
545
|
+
- `bundle env` will print well-formed markdown when there are no settings ([#5677](https://github.com/bundler/bundler/issues/5677), @segiddins)
|
385
546
|
|
386
547
|
## 1.15.0 (2017-05-19)
|
387
548
|
|
@@ -392,7 +553,7 @@ This space intentionally left blank.
|
|
392
553
|
Bugfixes:
|
393
554
|
|
394
555
|
- avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
|
395
|
-
- ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (#5592, @jules2689)
|
556
|
+
- ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it ([#5592](https://github.com/bundler/bundler/issues/5592), @jules2689)
|
396
557
|
|
397
558
|
## 1.15.0.pre.3 (2017-04-30)
|
398
559
|
|
@@ -402,32 +563,32 @@ Bugfixes:
|
|
402
563
|
- ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
|
403
564
|
- print a helpful error message when an activated default gem conflicts with
|
404
565
|
a gem in the gemfile (@segiddins)
|
405
|
-
- only shorten `ref` option for git gems when it is a SHA (#5620, @segiddins)
|
566
|
+
- only shorten `ref` option for git gems when it is a SHA ([#5620](https://github.com/bundler/bundler/issues/5620), @segiddins)
|
406
567
|
|
407
568
|
## 1.15.0.pre.2 (2017-04-23)
|
408
569
|
|
409
570
|
Bugfixes:
|
410
571
|
|
411
|
-
- ensure pre-existing fit caches are updated from remote sources (#5423, @alextaylor000)
|
412
|
-
- avoid duplicating specs in the lockfile after updating with the gem uninstalled (#5599, @segiddins)
|
413
|
-
- ensure git gems have their extensions available at runtime (#5594, @jules2689, @segiddins)
|
572
|
+
- ensure pre-existing fit caches are updated from remote sources ([#5423](https://github.com/bundler/bundler/issues/5423), @alextaylor000)
|
573
|
+
- avoid duplicating specs in the lockfile after updating with the gem uninstalled ([#5599](https://github.com/bundler/bundler/issues/5599), @segiddins)
|
574
|
+
- ensure git gems have their extensions available at runtime ([#5594](https://github.com/bundler/bundler/issues/5594), @jules2689, @segiddins)
|
414
575
|
|
415
576
|
## 1.15.0.pre.1 (2017-04-16)
|
416
577
|
|
417
578
|
Features:
|
418
579
|
|
419
|
-
- print a notification when a newer version of bundler is available (#4683, @segiddins)
|
420
|
-
- add man pages for all bundler commands (#4988, @feministy)
|
580
|
+
- print a notification when a newer version of bundler is available ([#4683](https://github.com/bundler/bundler/issues/4683), @segiddins)
|
581
|
+
- add man pages for all bundler commands ([#4988](https://github.com/bundler/bundler/issues/4988), @feministy)
|
421
582
|
- add the `bundle info` command (@fredrb, @colby-swandale)
|
422
583
|
- all files created with `bundle gem` comply with the bundler style guide (@zachahn)
|
423
|
-
- if installing a gem fails, print out the reason the gem needed to be installed (#5078, @segiddins)
|
584
|
+
- if installing a gem fails, print out the reason the gem needed to be installed ([#5078](https://github.com/bundler/bundler/issues/5078), @segiddins)
|
424
585
|
- allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler)
|
425
|
-
- print gem versions that are regressing during `bundle update` in yellow (#5506, @brchristian)
|
586
|
+
- print gem versions that are regressing during `bundle update` in yellow ([#5506](https://github.com/bundler/bundler/issues/5506), @brchristian)
|
426
587
|
- avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins)
|
427
|
-
- add the `bundle issue` command that prints instructions for reporting issues (#4871, @jonathanpike)
|
428
|
-
- add `--source` and `--group` options to the `bundle inject` command (#5452, @Shekharrajak)
|
588
|
+
- add the `bundle issue` command that prints instructions for reporting issues ([#4871](https://github.com/bundler/bundler/issues/4871), @jonathanpike)
|
589
|
+
- add `--source` and `--group` options to the `bundle inject` command ([#5452](https://github.com/bundler/bundler/issues/5452), @Shekharrajak)
|
429
590
|
- add the `bundle add` command to add a gem to the gemfile (@denniss)
|
430
|
-
- add the `bundle pristine` command to re-install gems from cached `.gem` files (#4509, @denniss)
|
591
|
+
- add the `bundle pristine` command to re-install gems from cached `.gem` files ([#4509](https://github.com/bundler/bundler/issues/4509), @denniss)
|
431
592
|
- add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)
|
432
593
|
|
433
594
|
Performance:
|
@@ -441,95 +602,95 @@ Performance:
|
|
441
602
|
|
442
603
|
Bugfixes:
|
443
604
|
|
444
|
-
- fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems (#5031, #5095, @segiddins)
|
605
|
+
- fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems ([#5031](https://github.com/bundler/bundler/issues/5031), [#5095](https://github.com/bundler/bundler/issues/5095), @segiddins)
|
445
606
|
- print out a stack trace after an interrupt when running in debug mode (@segiddins)
|
446
607
|
- print out when bundler starts fetching a gem from a remote server (@segiddins)
|
447
|
-
- fix `bundle gem` failing when `git` is unavailable (#5458, @Shekharrajak, @colby-swandale)
|
448
|
-
- suggest the appropriate command to unfreeze a bundle (#5009, @denniss)
|
449
|
-
- ensure nested calls to `bundle exec` resolve default gems correctly (#5500, @segiddins)
|
608
|
+
- fix `bundle gem` failing when `git` is unavailable ([#5458](https://github.com/bundler/bundler/issues/5458), @Shekharrajak, @colby-swandale)
|
609
|
+
- suggest the appropriate command to unfreeze a bundle ([#5009](https://github.com/bundler/bundler/issues/5009), @denniss)
|
610
|
+
- ensure nested calls to `bundle exec` resolve default gems correctly ([#5500](https://github.com/bundler/bundler/issues/5500), @segiddins)
|
450
611
|
- ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit)
|
451
|
-
- ensure `socket` is required before being referenced (#5533, @rafaelfranca)
|
452
|
-
- allow running `bundle outdated` when gems aren't installed locally (#5553, @segiddins)
|
453
|
-
- print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle (#5487, @segiddins)
|
454
|
-
- print an error message when a non-git gem is given a `branch` option (#5530, @colby-swandale)
|
612
|
+
- ensure `socket` is required before being referenced ([#5533](https://github.com/bundler/bundler/issues/5533), @rafaelfranca)
|
613
|
+
- allow running `bundle outdated` when gems aren't installed locally ([#5553](https://github.com/bundler/bundler/issues/5553), @segiddins)
|
614
|
+
- print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle ([#5487](https://github.com/bundler/bundler/issues/5487), @segiddins)
|
615
|
+
- print an error message when a non-git gem is given a `branch` option ([#5530](https://github.com/bundler/bundler/issues/5530), @colby-swandale)
|
455
616
|
- allow interrupts to exit the process after gems have been installed (@segiddins)
|
456
|
-
- print the underlying error when downloading gem metadata fails (#5579, @segiddins)
|
457
|
-
- avoid deadlocking when installing with a lockfile that is missing dependencies (#5378, #5480, #5519, #5526, #5529, #5549, #5572, @segiddins)
|
617
|
+
- print the underlying error when downloading gem metadata fails ([#5579](https://github.com/bundler/bundler/issues/5579), @segiddins)
|
618
|
+
- avoid deadlocking when installing with a lockfile that is missing dependencies ([#5378](https://github.com/bundler/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)
|
458
619
|
|
459
620
|
## 1.14.6 (2017-03-03)
|
460
621
|
|
461
622
|
Bugfixes:
|
462
623
|
|
463
|
-
- avoid undefined constant `Bundler::Plugin::API::Source` exception (#5409, @segiddins)
|
624
|
+
- avoid undefined constant `Bundler::Plugin::API::Source` exception ([#5409](https://github.com/bundler/bundler/issues/5409), @segiddins)
|
464
625
|
- avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
|
465
|
-
- fail gracefully when the compact index does not send an ETag (#5463, @olleolleolle)
|
466
|
-
- ensure `bundle outdated --local` shows all outdated gems (#5430, @denniss)
|
467
|
-
- fix a case where ruby version requirements could lead to incorrect resolver conflicts (#5425, @segiddins)
|
626
|
+
- fail gracefully when the compact index does not send an ETag ([#5463](https://github.com/bundler/bundler/issues/5463), @olleolleolle)
|
627
|
+
- ensure `bundle outdated --local` shows all outdated gems ([#5430](https://github.com/bundler/bundler/issues/5430), @denniss)
|
628
|
+
- fix a case where ruby version requirements could lead to incorrect resolver conflicts ([#5425](https://github.com/bundler/bundler/issues/5425), @segiddins)
|
468
629
|
|
469
630
|
## 1.14.5 (2017-02-22)
|
470
631
|
|
471
632
|
Bugfixes:
|
472
633
|
|
473
634
|
- avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
|
474
|
-
- improve resolver performance when dependencies have zero or one total possibilities ignoring requirements (#5444, #5457, @segiddins)
|
475
|
-
- enable compact index when OpenSSL FIPS mode is enabled but not active (#5433, @wjordan)
|
476
|
-
- use github username instead of git name for the github url in `bundle gem` (#5438, @danielpclark)
|
635
|
+
- improve resolver performance when dependencies have zero or one total possibilities ignoring requirements ([#5444](https://github.com/bundler/bundler/issues/5444), [#5457](https://github.com/bundler/bundler/issues/5457), @segiddins)
|
636
|
+
- enable compact index when OpenSSL FIPS mode is enabled but not active ([#5433](https://github.com/bundler/bundler/issues/5433), @wjordan)
|
637
|
+
- use github username instead of git name for the github url in `bundle gem` ([#5438](https://github.com/bundler/bundler/issues/5438), @danielpclark)
|
477
638
|
- avoid a TypeError on RubyGems 2.6.8 when no build settings are set for native extensions (@okkez)
|
478
639
|
- fail gracefully when the dependency api is missing runtime dependencies for a gem (@segiddins)
|
479
|
-
- handle when a platform-specific gem has more dependencies than the ruby platform version (#5339, #5426, @segiddins)
|
480
|
-
- allow running bundler on a machine with no home directory where the temporary directory is not writable (#5371, @segiddins)
|
481
|
-
- avoid gem version conflicts on openssl using Ruby 2.5 (#5235, @rhenium)
|
482
|
-
- fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated (#5264, @segiddins)
|
640
|
+
- handle when a platform-specific gem has more dependencies than the ruby platform version ([#5339](https://github.com/bundler/bundler/issues/5339), [#5426](https://github.com/bundler/bundler/issues/5426), @segiddins)
|
641
|
+
- allow running bundler on a machine with no home directory where the temporary directory is not writable ([#5371](https://github.com/bundler/bundler/issues/5371), @segiddins)
|
642
|
+
- avoid gem version conflicts on openssl using Ruby 2.5 ([#5235](https://github.com/bundler/bundler/issues/5235), @rhenium)
|
643
|
+
- fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated ([#5264](https://github.com/bundler/bundler/issues/5264), @segiddins)
|
483
644
|
|
484
645
|
## 1.14.4 (2017-02-12)
|
485
646
|
|
486
647
|
Bugfixes:
|
487
648
|
|
488
|
-
- fail gracefully when attempting to overwrite an existing directory with `bundle gem` (#5358, @nodo)
|
489
|
-
- fix a resolver bug that would cause bundler to report conflicts that it could resolve (#5359, #5362, @segiddins)
|
490
|
-
- set native extension build arguments for git gems (#5401, @segiddins)
|
649
|
+
- fail gracefully when attempting to overwrite an existing directory with `bundle gem` ([#5358](https://github.com/bundler/bundler/issues/5358), @nodo)
|
650
|
+
- fix a resolver bug that would cause bundler to report conflicts that it could resolve ([#5359](https://github.com/bundler/bundler/issues/5359), [#5362](https://github.com/bundler/bundler/issues/5362), @segiddins)
|
651
|
+
- set native extension build arguments for git gems ([#5401](https://github.com/bundler/bundler/issues/5401), @segiddins)
|
491
652
|
- fix the suggested `bundle lock` command printed when a dependency is unused on any platform (@5t111111)
|
492
|
-
- ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing (#5380, @segiddins)
|
493
|
-
- show `bundle inject` usage when too many arguments are passed (#5384, @Shekharrajak)
|
494
|
-
- stop `bundle show --outdated` from implicitly running `bundle update` (#5375, @colby-swandale)
|
653
|
+
- ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing ([#5380](https://github.com/bundler/bundler/issues/5380), @segiddins)
|
654
|
+
- show `bundle inject` usage when too many arguments are passed ([#5384](https://github.com/bundler/bundler/issues/5384), @Shekharrajak)
|
655
|
+
- stop `bundle show --outdated` from implicitly running `bundle update` ([#5375](https://github.com/bundler/bundler/issues/5375), @colby-swandale)
|
495
656
|
- allow the temporary home directory fallback to work for multiple users (@svoop)
|
496
657
|
|
497
658
|
## 1.14.3 (2017-01-24)
|
498
659
|
|
499
660
|
Bugfixes:
|
500
661
|
|
501
|
-
- fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms (#5349, #5356, @segiddins)
|
502
|
-
- avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies (#5349, @segiddins)
|
662
|
+
- fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms ([#5349](https://github.com/bundler/bundler/issues/5349), [#5356](https://github.com/bundler/bundler/issues/5356), @segiddins)
|
663
|
+
- avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies ([#5349](https://github.com/bundler/bundler/issues/5349), @segiddins)
|
503
664
|
|
504
665
|
## 1.14.2 (2017-01-22)
|
505
666
|
|
506
667
|
Bugfixes:
|
507
668
|
|
508
|
-
- fix using `force_ruby_platform` on windows (#5344, @segiddins)
|
509
|
-
- fix an incorrect version conflict error when using `gemspec` on multiple platforms (#5340, @segiddins)
|
669
|
+
- fix using `force_ruby_platform` on windows ([#5344](https://github.com/bundler/bundler/issues/5344), @segiddins)
|
670
|
+
- fix an incorrect version conflict error when using `gemspec` on multiple platforms ([#5340](https://github.com/bundler/bundler/issues/5340), @segiddins)
|
510
671
|
|
511
672
|
## 1.14.1 (2017-01-21)
|
512
673
|
|
513
674
|
Bugfixes:
|
514
675
|
|
515
|
-
- work around a ruby 2.2.2 bug that caused a stack consistency error during installation (#5342, @segiddins)
|
676
|
+
- work around a ruby 2.2.2 bug that caused a stack consistency error during installation ([#5342](https://github.com/bundler/bundler/issues/5342), @segiddins)
|
516
677
|
|
517
678
|
## 1.14.0 (2017-01-20)
|
518
679
|
|
519
680
|
Bugfixes:
|
520
681
|
|
521
682
|
- ensure `Settings::Mirror` is autoloaded under the `Settings` namespace
|
522
|
-
(#5238, @segiddins)
|
523
|
-
- fix `bundler/inline` when `BUNDLE_GEMFILE=""` (#5079, @segiddins)
|
683
|
+
([#5238](https://github.com/bundler/bundler/issues/5238), @segiddins)
|
684
|
+
- fix `bundler/inline` when `BUNDLE_GEMFILE=""` ([#5079](https://github.com/bundler/bundler/issues/5079), @segiddins)
|
524
685
|
|
525
686
|
## 1.14.0.pre.2 (2017-01-11)
|
526
687
|
|
527
688
|
Bugfixes:
|
528
689
|
|
529
|
-
- allow not selecting a gem when running `bundle open` (#5301, @segiddins)
|
530
|
-
- support installing gems from git branches that contain shell metacharacters (#5295, @segiddins)
|
531
|
-
- fix a resolver error that could leave dependencies unresolved (#5294, @segiddins)
|
532
|
-
- fix a stack overflow error when invoking commands (#5296, @segiddins)
|
690
|
+
- allow not selecting a gem when running `bundle open` ([#5301](https://github.com/bundler/bundler/issues/5301), @segiddins)
|
691
|
+
- support installing gems from git branches that contain shell metacharacters ([#5295](https://github.com/bundler/bundler/issues/5295), @segiddins)
|
692
|
+
- fix a resolver error that could leave dependencies unresolved ([#5294](https://github.com/bundler/bundler/issues/5294), @segiddins)
|
693
|
+
- fix a stack overflow error when invoking commands ([#5296](https://github.com/bundler/bundler/issues/5296), @segiddins)
|
533
694
|
|
534
695
|
## 1.14.0.pre.1 (2016-12-29)
|
535
696
|
|
@@ -537,17 +698,17 @@ Features:
|
|
537
698
|
|
538
699
|
- `bundle doctor` first runs `bundle check` (@segiddins)
|
539
700
|
- the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
|
540
|
-
- gem checksums returned by rubygems.org are validated when installing gems (#4464, @segiddins)
|
701
|
+
- gem checksums returned by rubygems.org are validated when installing gems ([#4464](https://github.com/bundler/bundler/issues/4464), @segiddins)
|
541
702
|
- use the git username as a github username when running `bundle gem` (@JuanitoFatas)
|
542
703
|
- show more context when the resolver conflicts on required ruby and rubygems versions (@segiddins)
|
543
|
-
- improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting (#4295, #4896, @segiddins)
|
544
|
-
- always prompt the user for a password when using `sudo` (#3006, @segiddins)
|
545
|
-
- support running without a home directory (#4778, @segiddins)
|
704
|
+
- improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting ([#4295](https://github.com/bundler/bundler/issues/4295), [#4896](https://github.com/bundler/bundler/issues/4896), @segiddins)
|
705
|
+
- always prompt the user for a password when using `sudo` ([#3006](https://github.com/bundler/bundler/issues/3006), @segiddins)
|
706
|
+
- support running without a home directory ([#4778](https://github.com/bundler/bundler/issues/4778), @segiddins)
|
546
707
|
- print a warning when the gemfile uses a platform conditional that will exclude the gem from all lockfile platforms (@segiddins)
|
547
|
-
- add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms (#4813, @segiddins)
|
548
|
-
- add conservative update options to `bundle lock` (#4912, @chrismo)
|
708
|
+
- add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms ([#4813](https://github.com/bundler/bundler/issues/4813), @segiddins)
|
709
|
+
- add conservative update options to `bundle lock` ([#4912](https://github.com/bundler/bundler/issues/4912), @chrismo)
|
549
710
|
- improve `bundle outdated` output to group gems by group (@ryanfox1985)
|
550
|
-
- add conservative update options to `bundle update` (#5065, #5076, @chrismo)
|
711
|
+
- add conservative update options to `bundle update` ([#5065](https://github.com/bundler/bundler/issues/5065), [#5076](https://github.com/bundler/bundler/issues/5076), @chrismo)
|
551
712
|
- print the output of `bundle env` as github-flavored markdown, making it easier to preserve formatting when copy-pasting into a new issue (@segiddins)
|
552
713
|
- configure the persistence file when using `bundle gem` with `rspec` (@segiddins)
|
553
714
|
- add support for the `ruby_25` gemfile filter (@amatsuda)
|
@@ -560,31 +721,31 @@ Performance:
|
|
560
721
|
|
561
722
|
Bugfixes:
|
562
723
|
|
563
|
-
- config files with CRLF line endings can be read (#4435, @segiddins)
|
564
|
-
- `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency (#4896, @segiddins)
|
724
|
+
- config files with CRLF line endings can be read ([#4435](https://github.com/bundler/bundler/issues/4435), @segiddins)
|
725
|
+
- `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/bundler/bundler/issues/4896), @segiddins)
|
565
726
|
- running `bundle env` in a directory without a gemfile no longer crashes (@segiddins)
|
566
|
-
- fail gracefully when attempting to use a source with an unknown URI scheme (#4953, @segiddins)
|
567
|
-
- store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` (#4966, @segiddins)
|
568
|
-
- `bundle lock` will not update without the `--update` flag (#4957, @segiddins)
|
727
|
+
- fail gracefully when attempting to use a source with an unknown URI scheme ([#4953](https://github.com/bundler/bundler/issues/4953), @segiddins)
|
728
|
+
- store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` ([#4966](https://github.com/bundler/bundler/issues/4966), @segiddins)
|
729
|
+
- `bundle lock` will not update without the `--update` flag ([#4957](https://github.com/bundler/bundler/issues/4957), @segiddins)
|
569
730
|
- the `console` binstub generated by `bundle gem` will load `.irbrc` files (@mattbrictson)
|
570
731
|
- print friendly filesystem access errors in the new index (@segiddins)
|
571
|
-
- print a helpful error when running out of memory on jruby (#4673, @segiddins)
|
572
|
-
- load all rubygems plugins when installing gems (#2824, @segiddins)
|
573
|
-
- `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set (#5027, @hmistry)
|
574
|
-
- local installs no longer print "this gem may have been yanked" (#5022, @hmistry)
|
732
|
+
- print a helpful error when running out of memory on jruby ([#4673](https://github.com/bundler/bundler/issues/4673), @segiddins)
|
733
|
+
- load all rubygems plugins when installing gems ([#2824](https://github.com/bundler/bundler/issues/2824), @segiddins)
|
734
|
+
- `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set ([#5027](https://github.com/bundler/bundler/issues/5027), @hmistry)
|
735
|
+
- local installs no longer print "this gem may have been yanked" ([#5022](https://github.com/bundler/bundler/issues/5022), @hmistry)
|
575
736
|
- avoid leaking `which` output when running `bundle doctor` (@colby-swandale)
|
576
|
-
- print a warning when attempting to `bundle exec` an empty program (#5084, @bronzdoc)
|
577
|
-
- ensure `bundle outdated` lists all outdated gems (#4979, @chrismo)
|
578
|
-
- fail gracefully when attempting to `bundle gem` with an invalid constant name (#5185, @segiddins)
|
579
|
-
- allow `bundler/inline` to work in a directory that contains a gemfile (#5117, @colby-swandale)
|
580
|
-
- ensure that the new index is thread-safe, allowing installation on rbx (#5142, @segiddins)
|
737
|
+
- print a warning when attempting to `bundle exec` an empty program ([#5084](https://github.com/bundler/bundler/issues/5084), @bronzdoc)
|
738
|
+
- ensure `bundle outdated` lists all outdated gems ([#4979](https://github.com/bundler/bundler/issues/4979), @chrismo)
|
739
|
+
- fail gracefully when attempting to `bundle gem` with an invalid constant name ([#5185](https://github.com/bundler/bundler/issues/5185), @segiddins)
|
740
|
+
- allow `bundler/inline` to work in a directory that contains a gemfile ([#5117](https://github.com/bundler/bundler/issues/5117), @colby-swandale)
|
741
|
+
- ensure that the new index is thread-safe, allowing installation on rbx ([#5142](https://github.com/bundler/bundler/issues/5142), @segiddins)
|
581
742
|
- remove deprecated `rspec` syntax in `bundle gem` output (@gearnode)
|
582
|
-
- fail gracefully when any system error is encountered when touching the filesystem (#5134, @segiddins)
|
583
|
-
- fix compatibility with a machine running with FIPS mode enabled (#4989, @segiddins)
|
584
|
-
- fix `bundle lock --add-platform ruby` (#5230, @segiddins)
|
743
|
+
- fail gracefully when any system error is encountered when touching the filesystem ([#5134](https://github.com/bundler/bundler/issues/5134), @segiddins)
|
744
|
+
- fix compatibility with a machine running with FIPS mode enabled ([#4989](https://github.com/bundler/bundler/issues/4989), @segiddins)
|
745
|
+
- fix `bundle lock --add-platform ruby` ([#5230](https://github.com/bundler/bundler/issues/5230), @segiddins)
|
585
746
|
- print gem post-install messages when running `bundle update` (@smathy)
|
586
747
|
- ensure errors due to a retries are all separated by a newline (@segiddins)
|
587
|
-
- print out the bundle path in gem not found errors (#4854, @diegosteiner)
|
748
|
+
- print out the bundle path in gem not found errors ([#4854](https://github.com/bundler/bundler/issues/4854), @diegosteiner)
|
588
749
|
- fail gracefully when creating threads fails (@segiddins)
|
589
750
|
- avoid downloading metadata for gems that are only development dependencies (@Paxa)
|
590
751
|
|
@@ -592,28 +753,28 @@ Bugfixes:
|
|
592
753
|
|
593
754
|
Features:
|
594
755
|
|
595
|
-
- add support for the `ruby_24` gemfile filter (#5281, @amatsuda)
|
756
|
+
- add support for the `ruby_24` gemfile filter ([#5281](https://github.com/bundler/bundler/issues/5281), @amatsuda)
|
596
757
|
|
597
758
|
## 1.13.6 (2016-10-22)
|
598
759
|
|
599
760
|
Bugfixes:
|
600
761
|
|
601
|
-
- make the `gem` method public again, fixing a regression in 1.13.4 (#5102, @segiddins)
|
762
|
+
- make the `gem` method public again, fixing a regression in 1.13.4 ([#5102](https://github.com/bundler/bundler/issues/5102), @segiddins)
|
602
763
|
|
603
764
|
## 1.13.5 (2016-10-15)
|
604
765
|
|
605
766
|
Bugfixes:
|
606
767
|
|
607
|
-
- Ensure a locked pre-release spec can always be re-resolved (#5089, @segiddins)
|
768
|
+
- Ensure a locked pre-release spec can always be re-resolved ([#5089](https://github.com/bundler/bundler/issues/5089), @segiddins)
|
608
769
|
|
609
770
|
## 1.13.4 (2016-10-11)
|
610
771
|
|
611
772
|
Bugfixes:
|
612
773
|
|
613
|
-
- stop printing warning when compact index versions file is rewritten (#5064, @indirect)
|
614
|
-
- fix `parent directory is world writable but not sticky` error on install (#5043, @indirect)
|
615
|
-
- fix for `uninitialized constant Bundler::Plugin::API::Source` error (#5010, @hsbt, @aycabta)
|
616
|
-
- make `update` options for major, minor, and patch updates consistent (#4934, @chrismo)
|
774
|
+
- stop printing warning when compact index versions file is rewritten ([#5064](https://github.com/bundler/bundler/issues/5064), @indirect)
|
775
|
+
- fix `parent directory is world writable but not sticky` error on install ([#5043](https://github.com/bundler/bundler/issues/5043), @indirect)
|
776
|
+
- fix for `uninitialized constant Bundler::Plugin::API::Source` error ([#5010](https://github.com/bundler/bundler/issues/5010), @hsbt, @aycabta)
|
777
|
+
- make `update` options for major, minor, and patch updates consistent ([#4934](https://github.com/bundler/bundler/issues/4934), @chrismo)
|
617
778
|
|
618
779
|
## 1.13.3 (2016-10-10)
|
619
780
|
|
@@ -626,12 +787,12 @@ Bugfixes:
|
|
626
787
|
Bugfixes:
|
627
788
|
|
628
789
|
- allow `Settings` to be initialized without a root directory (@m1k3)
|
629
|
-
- allow specifying ruby engines in the gemfile as a symbol (#4919, @JuanitoFatas)
|
790
|
+
- allow specifying ruby engines in the gemfile as a symbol ([#4919](https://github.com/bundler/bundler/issues/4919), @JuanitoFatas)
|
630
791
|
- avoid an exception when using `bundler/deployment` with Vlad (@srbaker)
|
631
|
-
- ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
|
632
|
-
- ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
|
792
|
+
- ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby ([#4975](https://github.com/bundler/bundler/issues/4975), @segiddins)
|
793
|
+
- ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile ([#5006](https://github.com/bundler/bundler/issues/5006), @segiddins)
|
633
794
|
- fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
|
634
|
-
- fix system gems not being copied to --path on bundle install (e.g. --deployment) (#4974, @chrismo)
|
795
|
+
- fix system gems not being copied to --path on bundle install (e.g. --deployment) ([#4974](https://github.com/bundler/bundler/issues/4974), @chrismo)
|
635
796
|
|
636
797
|
Performance:
|
637
798
|
|
@@ -641,8 +802,8 @@ Performance:
|
|
641
802
|
|
642
803
|
Bugfixes:
|
643
804
|
|
644
|
-
- ensure that `Gem::Source` is available, fixing several exceptions (#4944, @dekellum)
|
645
|
-
- ensure that dependency resolution works when multiple gems have the same dependency (#4961, @segiddins)
|
805
|
+
- ensure that `Gem::Source` is available, fixing several exceptions ([#4944](https://github.com/bundler/bundler/issues/4944), @dekellum)
|
806
|
+
- ensure that dependency resolution works when multiple gems have the same dependency ([#4961](https://github.com/bundler/bundler/issues/4961), @segiddins)
|
646
807
|
|
647
808
|
## 1.13.0 (2016-09-05)
|
648
809
|
|
@@ -653,32 +814,32 @@ This space deliberately left blank.
|
|
653
814
|
Features:
|
654
815
|
|
655
816
|
- add setting `exec_disable_load` to force `exec` to spawn a new Ruby process (@segiddins)
|
656
|
-
- add `doctor` command to help with issues like unlinked compiled gems (#4765, @mistydemeo)
|
657
|
-
- rework the `update` command, providing fine-grained control via flags (#4676, @chrismo)
|
658
|
-
- add URI to http response output in debug mode (#4808, @NickLaMuro)
|
659
|
-
- add manpage for `binstubs` command (#4847, @Zorbash)
|
817
|
+
- add `doctor` command to help with issues like unlinked compiled gems ([#4765](https://github.com/bundler/bundler/issues/4765), @mistydemeo)
|
818
|
+
- rework the `update` command, providing fine-grained control via flags ([#4676](https://github.com/bundler/bundler/issues/4676), @chrismo)
|
819
|
+
- add URI to http response output in debug mode ([#4808](https://github.com/bundler/bundler/issues/4808), @NickLaMuro)
|
820
|
+
- add manpage for `binstubs` command ([#4847](https://github.com/bundler/bundler/issues/4847), @Zorbash)
|
660
821
|
- support `mirror` settings for sources by hostname, not only full URL (@opiethehokie)
|
661
|
-
- print gem installation errors after other install output (#4834, @segiddins)
|
662
|
-
- add `lock --remove-platform` flag to remove platforms from the lock (#4877, @segiddins)
|
822
|
+
- print gem installation errors after other install output ([#4834](https://github.com/bundler/bundler/issues/4834), @segiddins)
|
823
|
+
- add `lock --remove-platform` flag to remove platforms from the lock ([#4877](https://github.com/bundler/bundler/issues/4877), @segiddins)
|
663
824
|
- add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
|
664
825
|
- expanded experimental plugin support to include hooks and sources (@asutoshpalai)
|
665
826
|
|
666
827
|
Bugfixes:
|
667
828
|
|
668
|
-
- retry gem downloads (#4846, @jkeiser)
|
669
|
-
- improve the CompactIndex to handle capitalized legacy gems (#4867, @segiddins)
|
829
|
+
- retry gem downloads ([#4846](https://github.com/bundler/bundler/issues/4846), @jkeiser)
|
830
|
+
- improve the CompactIndex to handle capitalized legacy gems ([#4867](https://github.com/bundler/bundler/issues/4867), @segiddins)
|
670
831
|
- re-use persistent HTTP connections for CompactIndex (@NickLaMuro)
|
671
832
|
- respect `required_ruby_version` when Gemfile contains `ruby` version (@indirect)
|
672
|
-
- allow `rake release` to sign git tags (#4743, @eagletmt)
|
833
|
+
- allow `rake release` to sign git tags ([#4743](https://github.com/bundler/bundler/issues/4743), @eagletmt)
|
673
834
|
- set process titles when using `#load` during `exec` (@yob)
|
674
835
|
- recognize JRuby shebangs for using `#load` during `exec` (@ojab)
|
675
|
-
- handle world-writable home directories (#4726, @allenzhao)
|
676
|
-
- support multi-platform gems via the `gemspec` Gemfile method (#4798, @segiddins)
|
836
|
+
- handle world-writable home directories ([#4726](https://github.com/bundler/bundler/issues/4726), @allenzhao)
|
837
|
+
- support multi-platform gems via the `gemspec` Gemfile method ([#4798](https://github.com/bundler/bundler/issues/4798), @segiddins)
|
677
838
|
- print dots correctly for CompactIndex fetcher (@NickLaMuro)
|
678
839
|
- set an `open_timeout` when requesting gem data via HTTP (@NickLaMuro)
|
679
840
|
- rename the BUNDLE\_ORIG\_ENV variable so it no longer shows up in `config` (@indirect)
|
680
|
-
- show help only when `-h` or `--help` is passed to Bundler, not to `exec` (#4801, @segiddins)
|
681
|
-
- handle symlinks to binstubs created by `--standalone` (#4782, @terinjokes)
|
841
|
+
- show help only when `-h` or `--help` is passed to Bundler, not to `exec` ([#4801](https://github.com/bundler/bundler/issues/4801), @segiddins)
|
842
|
+
- handle symlinks to binstubs created by `--standalone` ([#4782](https://github.com/bundler/bundler/issues/4782), @terinjokes)
|
682
843
|
|
683
844
|
## 1.13.0.rc.1 (2016-06-27)
|
684
845
|
|
@@ -689,9 +850,9 @@ Features:
|
|
689
850
|
|
690
851
|
Bugfixes:
|
691
852
|
|
692
|
-
- fix support for running RubyGems 1.x on Ruby 2.3 (#4698, @segiddins)
|
693
|
-
- fix bundle exec'ing to a ruby file when gems are installed into a path (#4592, @chrismo)
|
694
|
-
- when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem (#4705, @segiddins)
|
853
|
+
- fix support for running RubyGems 1.x on Ruby 2.3 ([#4698](https://github.com/bundler/bundler/issues/4698), @segiddins)
|
854
|
+
- fix bundle exec'ing to a ruby file when gems are installed into a path ([#4592](https://github.com/bundler/bundler/issues/4592), @chrismo)
|
855
|
+
- when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem ([#4705](https://github.com/bundler/bundler/issues/4705), @segiddins)
|
695
856
|
- stop changing the load path to require the vendored postit when trampolining (@segiddins)
|
696
857
|
- ensure relative paths are properly printed after completing an installation (@jenseng)
|
697
858
|
- fix re-resolving when there are multiple unchanged path sources (@segiddins)
|
@@ -701,9 +862,9 @@ Bugfixes:
|
|
701
862
|
|
702
863
|
Performance:
|
703
864
|
|
704
|
-
- speed up gemfile resolution during `bundle install` by between 4x-100x (#4376, @segiddins)
|
865
|
+
- speed up gemfile resolution during `bundle install` by between 4x-100x ([#4376](https://github.com/bundler/bundler/issues/4376), @segiddins)
|
705
866
|
- generally reduce object allocations when using bundler (@segiddins)
|
706
|
-
- speed up bin generation for path gems with many files (#2846, @segiddins)
|
867
|
+
- speed up bin generation for path gems with many files ([#2846](https://github.com/bundler/bundler/issues/2846), @segiddins)
|
707
868
|
- fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
|
708
869
|
|
709
870
|
Features:
|
@@ -711,14 +872,14 @@ Features:
|
|
711
872
|
- automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
|
712
873
|
- laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
|
713
874
|
- allow `bundle viz --without` to accept multiple `:`-delimited groups (@mobilutz)
|
714
|
-
- support for RubyGems 2.6.4 (#4368, @segiddins, @RochesterinNYC)
|
715
|
-
- colorize updated gem versions (#4334, @bronzdoc)
|
716
|
-
- add the `--standalone` flag to `bundle binstubs` (#4594, @b-ggs)
|
875
|
+
- support for RubyGems 2.6.4 ([#4368](https://github.com/bundler/bundler/issues/4368), @segiddins, @RochesterinNYC)
|
876
|
+
- colorize updated gem versions ([#4334](https://github.com/bundler/bundler/issues/4334), @bronzdoc)
|
877
|
+
- add the `--standalone` flag to `bundle binstubs` ([#4594](https://github.com/bundler/bundler/issues/4594), @b-ggs)
|
717
878
|
- update the `bundle gem` CoC to contributor covenant v1.4 (@cllns)
|
718
879
|
- use a custom YAML serializer to make config file consistent (@segiddins)
|
719
|
-
- filter credentials from error messages (bundler/bundler-features#111, @RochesterinNYC, @sandlerr)
|
720
|
-
- support relative paths used inside a nested invocation of `eval_gemfile` (#4584, @RochesterinNYC)
|
721
|
-
- fail gracefully when attempting to install a yanked gem (#4344, @allenzhao)
|
880
|
+
- filter credentials from error messages (bundler/bundler-features[#111](https://github.com/bundler/bundler/issues/111), @RochesterinNYC, @sandlerr)
|
881
|
+
- support relative paths used inside a nested invocation of `eval_gemfile` ([#4584](https://github.com/bundler/bundler/issues/4584), @RochesterinNYC)
|
882
|
+
- fail gracefully when attempting to install a yanked gem ([#4344](https://github.com/bundler/bundler/issues/4344), @allenzhao)
|
722
883
|
- automatically install an inline gemfile when gems are missing locally (@segiddins)
|
723
884
|
- allow conflicts for gems resolved via `gemspec` (@segiddins)
|
724
885
|
- add `--add-platform` option to `bundle lock` (@segiddins)
|
@@ -726,18 +887,18 @@ Features:
|
|
726
887
|
|
727
888
|
Bugfixes:
|
728
889
|
|
729
|
-
- implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version (#4595, #4627, @segiddins)
|
730
|
-
- add support for quoted paths in `$PATH` (#4323, @segiddins)
|
731
|
-
- check out missing git repos that are not being installed (#3981, @asutoshpalai)
|
890
|
+
- implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version ([#4595](https://github.com/bundler/bundler/issues/4595), [#4627](https://github.com/bundler/bundler/issues/4627), @segiddins)
|
891
|
+
- add support for quoted paths in `$PATH` ([#4323](https://github.com/bundler/bundler/issues/4323), @segiddins)
|
892
|
+
- check out missing git repos that are not being installed ([#3981](https://github.com/bundler/bundler/issues/3981), @asutoshpalai)
|
732
893
|
- write `bundler/setup.rb` to a consistent path (@glennpratt)
|
733
894
|
- open editor in `bundle open` with a clean environment (@sj26)
|
734
|
-
- resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile (#4392, #4430, @RochesterinNYC)
|
735
|
-
- fail gracefully when encountering an `Errno::ENOTSUP` (#4394, @segiddins)
|
736
|
-
- fail gracefully when encountering an `Errno::EHOSTUNREACH` (#4642, @allenzhao)
|
737
|
-
- fix loading config files with very long values (#4370, @segiddins)
|
738
|
-
- only show potential updates for gemfile platforms in `bundle outdated` (#4450, @RochesterinNYC)
|
739
|
-
- allow running `bundle install --deployment` after `bundle package --all` with path gems (#2175, @allenzhao)
|
740
|
-
- add support for patchlevels in ruby versions in the gemfile and gemspecs (#4593, @chalkos)
|
895
|
+
- resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile ([#4392](https://github.com/bundler/bundler/issues/4392), [#4430](https://github.com/bundler/bundler/issues/4430), @RochesterinNYC)
|
896
|
+
- fail gracefully when encountering an `Errno::ENOTSUP` ([#4394](https://github.com/bundler/bundler/issues/4394), @segiddins)
|
897
|
+
- fail gracefully when encountering an `Errno::EHOSTUNREACH` ([#4642](https://github.com/bundler/bundler/issues/4642), @allenzhao)
|
898
|
+
- fix loading config files with very long values ([#4370](https://github.com/bundler/bundler/issues/4370), @segiddins)
|
899
|
+
- only show potential updates for gemfile platforms in `bundle outdated` ([#4450](https://github.com/bundler/bundler/issues/4450), @RochesterinNYC)
|
900
|
+
- allow running `bundle install --deployment` after `bundle package --all` with path gems ([#2175](https://github.com/bundler/bundler/issues/2175), @allenzhao)
|
901
|
+
- add support for patchlevels in ruby versions in the gemfile and gemspecs ([#4593](https://github.com/bundler/bundler/issues/4593), @chalkos)
|
741
902
|
|
742
903
|
## 1.12.6 (2016-10-10)
|
743
904
|
|
@@ -747,17 +908,17 @@ Bugfixes:
|
|
747
908
|
## 1.12.5 (2016-05-25)
|
748
909
|
|
749
910
|
Bugfixes:
|
750
|
-
- only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` (#4596, @segiddins)
|
911
|
+
- only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` ([#4596](https://github.com/bundler/bundler/issues/4596), @segiddins)
|
751
912
|
- don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
|
752
|
-
- reduce the number of threads used simultaneously by bundler (#4367, @will-in-wi)
|
913
|
+
- reduce the number of threads used simultaneously by bundler ([#4367](https://github.com/bundler/bundler/issues/4367), @will-in-wi)
|
753
914
|
|
754
915
|
## 1.12.4 (2016-05-16)
|
755
916
|
|
756
917
|
Bugfixes:
|
757
|
-
- ensure concurrent use of the new index can't corrupt the cache (#4519, @domcleal)
|
758
|
-
- allow missing rubygems credentials when pushing a gem with a custom host (#4437, @Cohen-Carlisle)
|
759
|
-
- fix installing built-in specs with `--standalone` (#4557, @segiddins)
|
760
|
-
- fix `bundle show` when a gem has a prerelease version that includes a `-` (#4385, @segiddins)
|
918
|
+
- ensure concurrent use of the new index can't corrupt the cache ([#4519](https://github.com/bundler/bundler/issues/4519), @domcleal)
|
919
|
+
- allow missing rubygems credentials when pushing a gem with a custom host ([#4437](https://github.com/bundler/bundler/issues/4437), @Cohen-Carlisle)
|
920
|
+
- fix installing built-in specs with `--standalone` ([#4557](https://github.com/bundler/bundler/issues/4557), @segiddins)
|
921
|
+
- fix `bundle show` when a gem has a prerelease version that includes a `-` ([#4385](https://github.com/bundler/bundler/issues/4385), @segiddins)
|
761
922
|
|
762
923
|
## 1.12.3 (2016-05-06)
|
763
924
|
|
@@ -768,16 +929,16 @@ Bugfixes:
|
|
768
929
|
## 1.12.2 (2016-05-04)
|
769
930
|
|
770
931
|
Bugfixes:
|
771
|
-
- fix modifying a frozen string when the resolver conflicts on dependencies with requirements (#4520, @grzuy)
|
772
|
-
- fix `bundle exec foo --help` not showing the invoked command's help (#4480, @b-ggs)
|
932
|
+
- fix modifying a frozen string when the resolver conflicts on dependencies with requirements ([#4520](https://github.com/bundler/bundler/issues/4520), @grzuy)
|
933
|
+
- fix `bundle exec foo --help` not showing the invoked command's help ([#4480](https://github.com/bundler/bundler/issues/4480), @b-ggs)
|
773
934
|
|
774
935
|
## 1.12.1 (2016-04-30)
|
775
936
|
|
776
937
|
Bugfixes:
|
777
938
|
- automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
|
778
|
-
- fix computation of new index file local checksums on Windows (#4472, @mwrock)
|
779
|
-
- properly handle certain resolver backtracking cases without erroring (@segiddins, #4484)
|
780
|
-
- ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, #4482)
|
939
|
+
- fix computation of new index file local checksums on Windows ([#4472](https://github.com/bundler/bundler/issues/4472), @mwrock)
|
940
|
+
- properly handle certain resolver backtracking cases without erroring (@segiddins, [#4484](https://github.com/bundler/bundler/issues/4484))
|
941
|
+
- ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, [#4482](https://github.com/bundler/bundler/issues/4482))
|
781
942
|
|
782
943
|
## 1.12.0 (2016-04-28)
|
783
944
|
|
@@ -787,7 +948,7 @@ This space intentionally left blank.
|
|
787
948
|
|
788
949
|
Bugfixes:
|
789
950
|
|
790
|
-
- don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions (#4438, @RochesterinNYC)
|
951
|
+
- don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions ([#4438](https://github.com/bundler/bundler/issues/4438), @RochesterinNYC)
|
791
952
|
|
792
953
|
## 1.12.0.rc.3 (2016-04-19)
|
793
954
|
|
@@ -799,11 +960,11 @@ Bugfixes:
|
|
799
960
|
|
800
961
|
Features:
|
801
962
|
|
802
|
-
- `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` (#4396, @RochesterinNYC)
|
963
|
+
- `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` ([#4396](https://github.com/bundler/bundler/issues/4396), @RochesterinNYC)
|
803
964
|
|
804
965
|
Bugfixes:
|
805
966
|
|
806
|
-
- prevent endless recursive copy for `bundle package --all` (#4392, @RochesterinNYC)
|
967
|
+
- prevent endless recursive copy for `bundle package --all` ([#4392](https://github.com/bundler/bundler/issues/4392), @RochesterinNYC)
|
807
968
|
- allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
|
808
969
|
- nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
|
809
970
|
|
@@ -811,13 +972,13 @@ Bugfixes:
|
|
811
972
|
|
812
973
|
Performance:
|
813
974
|
|
814
|
-
- Download gem metadata from globally distributed CDN endpoints (#4358, @segiddins)
|
975
|
+
- Download gem metadata from globally distributed CDN endpoints ([#4358](https://github.com/bundler/bundler/issues/4358), @segiddins)
|
815
976
|
|
816
977
|
Bugfixes:
|
817
978
|
|
818
|
-
- handle Ruby pre-releases built from source (#4324, @RochesterinNYC)
|
819
|
-
- support binstubs from RubyGems 2.6 (#4341, @segiddins)
|
820
|
-
- handle quotes present in in PATH (#4326, @segiddins)
|
979
|
+
- handle Ruby pre-releases built from source ([#4324](https://github.com/bundler/bundler/issues/4324), @RochesterinNYC)
|
980
|
+
- support binstubs from RubyGems 2.6 ([#4341](https://github.com/bundler/bundler/issues/4341), @segiddins)
|
981
|
+
- handle quotes present in in PATH ([#4326](https://github.com/bundler/bundler/issues/4326), @segiddins)
|
821
982
|
|
822
983
|
## 1.12.0.pre.2 (2016-02-26)
|
823
984
|
|
@@ -828,80 +989,80 @@ Performance:
|
|
828
989
|
Features:
|
829
990
|
|
830
991
|
- add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
|
831
|
-
- add `Bundler.clean_env` and `Bundler.original_env` (#4232, @njam)
|
832
|
-
- add `--frozen` support to `bundle package` (#3356, @RochesterinNYC)
|
992
|
+
- add `Bundler.clean_env` and `Bundler.original_env` ([#4232](https://github.com/bundler/bundler/issues/4232), @njam)
|
993
|
+
- add `--frozen` support to `bundle package` ([#3356](https://github.com/bundler/bundler/issues/3356), @RochesterinNYC)
|
833
994
|
|
834
995
|
Bugfixes:
|
835
996
|
|
836
997
|
- place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
|
837
|
-
- give a better error message when filesystem access raises an `EPROTO` error (#3581, #3932, #4163, @RochesterinNYC)
|
998
|
+
- give a better error message when filesystem access raises an `EPROTO` error ([#3581](https://github.com/bundler/bundler/issues/3581), [#3932](https://github.com/bundler/bundler/issues/3932), [#4163](https://github.com/bundler/bundler/issues/4163), @RochesterinNYC)
|
838
999
|
- give a better error message when both `--deployment` and `--system` are used together (@RochesterinNYC)
|
839
|
-
- fix `$PATH` being preserved for use in `Bundler.with_clean_env` (#4251, @segiddins, @njam)
|
840
|
-
- give a better error message when running `bundle outdated` in frozen mode (#4287, @RochesterinNYC)
|
841
|
-
- handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration (#4294, @segiddins)
|
842
|
-
- give a better error message when authentication details aren't properly escaped (#4288, @RochesterinNYC)
|
1000
|
+
- fix `$PATH` being preserved for use in `Bundler.with_clean_env` ([#4251](https://github.com/bundler/bundler/issues/4251), @segiddins, @njam)
|
1001
|
+
- give a better error message when running `bundle outdated` in frozen mode ([#4287](https://github.com/bundler/bundler/issues/4287), @RochesterinNYC)
|
1002
|
+
- handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration ([#4294](https://github.com/bundler/bundler/issues/4294), @segiddins)
|
1003
|
+
- give a better error message when authentication details aren't properly escaped ([#4288](https://github.com/bundler/bundler/issues/4288), @RochesterinNYC)
|
843
1004
|
- fix `bundle outdated --minor` to only report updates that match the current minor version (@RochesterinNYC)
|
844
|
-
- fix extra dependencies being resolved unnecessarily (#4276, @segiddins)
|
845
|
-
- give a better error message when missing specs due to platform mis-matches (#4259, @RochesterinNYC)
|
846
|
-
- skip rebuilding extensions for git gems if they are already built (#4082, @csfrancis, @indirect, @segiddins)
|
847
|
-
- fix `bundle install` not installing when the `no_install` setting is set (#3966, @chulkilee, @segiddins)
|
1005
|
+
- fix extra dependencies being resolved unnecessarily ([#4276](https://github.com/bundler/bundler/issues/4276), @segiddins)
|
1006
|
+
- give a better error message when missing specs due to platform mis-matches ([#4259](https://github.com/bundler/bundler/issues/4259), @RochesterinNYC)
|
1007
|
+
- skip rebuilding extensions for git gems if they are already built ([#4082](https://github.com/bundler/bundler/issues/4082), @csfrancis, @indirect, @segiddins)
|
1008
|
+
- fix `bundle install` not installing when the `no_install` setting is set ([#3966](https://github.com/bundler/bundler/issues/3966), @chulkilee, @segiddins)
|
848
1009
|
|
849
1010
|
## 1.12.0.pre.1 (2016-02-09)
|
850
1011
|
|
851
1012
|
Performance:
|
852
1013
|
|
853
1014
|
- speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
|
854
|
-
- speed up `bundle exec` by avoiding loading the gemfile twice (#2951, #2952, @segiddins)
|
1015
|
+
- speed up `bundle exec` by avoiding loading the gemfile twice ([#2951](https://github.com/bundler/bundler/issues/2951), [#2952](https://github.com/bundler/bundler/issues/2952), @segiddins)
|
855
1016
|
|
856
1017
|
Features:
|
857
1018
|
|
858
1019
|
- add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
|
859
1020
|
- redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
|
860
|
-
- support probing a mirror with a fallback timeout (#4128, @pcarranza)
|
1021
|
+
- support probing a mirror with a fallback timeout ([#4128](https://github.com/bundler/bundler/issues/4128), @pcarranza)
|
861
1022
|
- add `--full-index` option to `bundle lock` (@segiddins)
|
862
1023
|
- support running with frozen string literals (@deepj, @segiddins)
|
863
|
-
- add `--major` and `--minor` options to `bundle outdated` (#3805, @cirdes)
|
1024
|
+
- add `--major` and `--minor` options to `bundle outdated` ([#3805](https://github.com/bundler/bundler/issues/3805), @cirdes)
|
864
1025
|
- allow passing a custom `ui` to `bundler/inline` (@lamont-granquist)
|
865
|
-
- add support for ruby 2.4 (#4266, @segiddins)
|
1026
|
+
- add support for ruby 2.4 ([#4266](https://github.com/bundler/bundler/issues/4266), @segiddins)
|
866
1027
|
- add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
|
867
1028
|
|
868
1029
|
Bugfixes:
|
869
1030
|
|
870
|
-
- fix `bundle package --all` recursing endlessly (#4158, @RochesterinNYC)
|
871
|
-
- fail fast on more errors when fetching remote resources (#4154, @RochesterinNYC)
|
872
|
-
- give a better error message when a given git commit can't be found (#4140, @doy)
|
873
|
-
- give a better error message when `bundle clean` doesn't have sufficient permissions (#4170, @RochesterinNYC)
|
1031
|
+
- fix `bundle package --all` recursing endlessly ([#4158](https://github.com/bundler/bundler/issues/4158), @RochesterinNYC)
|
1032
|
+
- fail fast on more errors when fetching remote resources ([#4154](https://github.com/bundler/bundler/issues/4154), @RochesterinNYC)
|
1033
|
+
- give a better error message when a given git commit can't be found ([#4140](https://github.com/bundler/bundler/issues/4140), @doy)
|
1034
|
+
- give a better error message when `bundle clean` doesn't have sufficient permissions ([#4170](https://github.com/bundler/bundler/issues/4170), @RochesterinNYC)
|
874
1035
|
- give a better error message when reading a bundler config file fails (@segiddins)
|
875
|
-
- restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, #4150, @smellsblue)
|
1036
|
+
- restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/bundler/bundler/issues/4102), [#4150](https://github.com/bundler/bundler/issues/4150), @smellsblue)
|
876
1037
|
- fix `bundle gem` with minitest to use the correct rake task (@kotoshenya)
|
877
|
-
- give a better error message when ssl isn't available (#4054, @RochesterinNYC)
|
878
|
-
- print the original `require` error when `Bundler.require` fails (#4182, @RochesterinNYC)
|
879
|
-
- give a better error message when certain resources are temporarily unavailable (#4183, @RochesterinNYC)
|
1038
|
+
- give a better error message when ssl isn't available ([#4054](https://github.com/bundler/bundler/issues/4054), @RochesterinNYC)
|
1039
|
+
- print the original `require` error when `Bundler.require` fails ([#4182](https://github.com/bundler/bundler/issues/4182), @RochesterinNYC)
|
1040
|
+
- give a better error message when certain resources are temporarily unavailable ([#4183](https://github.com/bundler/bundler/issues/4183), @RochesterinNYC)
|
880
1041
|
- fix returning case-sensitive gem mirror URIs on ruby 2.3 (@segiddins)
|
881
|
-
- ignore colorized output from `git` when determining the current branch (#4056, @agis-)
|
1042
|
+
- ignore colorized output from `git` when determining the current branch ([#4056](https://github.com/bundler/bundler/issues/4056), @agis-)
|
882
1043
|
- fix storing the shared gems config option as a boolean (@vassilevsky)
|
883
1044
|
- add support for running `bundle gem --exe` instead of using the `--bin` option (@christhekeele)
|
884
|
-
- fix `exec`-ing with 0 args in a directory with spaces (#4230, @segiddins)
|
885
|
-
- avoid installing extraneous gems when resolving to an older version of a spec (#4101, #4198, @segiddins)
|
886
|
-
- ensure paths resolved when parsing a gemfile are relative to that file (#3349, @dtognazzini)
|
887
|
-
- give a better error message when encountering an invalid gemspec (#4248, #4275, @RochesterinNYC)
|
888
|
-
- preserve the original `PATH` in `Bundler.with_clean_env` (#4251, @segiddins)
|
889
|
-
- ensure standalone file paths are relative to the project root (#4144, @glennpratt)
|
1045
|
+
- fix `exec`-ing with 0 args in a directory with spaces ([#4230](https://github.com/bundler/bundler/issues/4230), @segiddins)
|
1046
|
+
- avoid installing extraneous gems when resolving to an older version of a spec ([#4101](https://github.com/bundler/bundler/issues/4101), [#4198](https://github.com/bundler/bundler/issues/4198), @segiddins)
|
1047
|
+
- ensure paths resolved when parsing a gemfile are relative to that file ([#3349](https://github.com/bundler/bundler/issues/3349), @dtognazzini)
|
1048
|
+
- give a better error message when encountering an invalid gemspec ([#4248](https://github.com/bundler/bundler/issues/4248), [#4275](https://github.com/bundler/bundler/issues/4275), @RochesterinNYC)
|
1049
|
+
- preserve the original `PATH` in `Bundler.with_clean_env` ([#4251](https://github.com/bundler/bundler/issues/4251), @segiddins)
|
1050
|
+
- ensure standalone file paths are relative to the project root ([#4144](https://github.com/bundler/bundler/issues/4144), @glennpratt)
|
890
1051
|
|
891
1052
|
## 1.11.2 (2015-12-15)
|
892
1053
|
|
893
1054
|
Bugfixes:
|
894
1055
|
|
895
|
-
- _really_ stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
|
1056
|
+
- _really_ stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/bundler/bundler/issues/4147), @indirect)
|
896
1057
|
|
897
1058
|
## 1.11.1 (2015-12-15)
|
898
1059
|
|
899
1060
|
Bugfixes:
|
900
1061
|
|
901
|
-
- lazy-load Psych, again (#4149, @indirect)
|
902
|
-
- allow gemspec gems on other platforms (#4150, @indirect)
|
903
|
-
- fix --no-coc and --no-mit flags on `gem` (#4148, @RochesterinNYC)
|
904
|
-
- stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
|
1062
|
+
- lazy-load Psych, again ([#4149](https://github.com/bundler/bundler/issues/4149), @indirect)
|
1063
|
+
- allow gemspec gems on other platforms ([#4150](https://github.com/bundler/bundler/issues/4150), @indirect)
|
1064
|
+
- fix --no-coc and --no-mit flags on `gem` ([#4148](https://github.com/bundler/bundler/issues/4148), @RochesterinNYC)
|
1065
|
+
- stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/bundler/bundler/issues/4147), @indirect)
|
905
1066
|
|
906
1067
|
## 1.11.0 (2015-12-12)
|
907
1068
|
|
@@ -911,16 +1072,16 @@ Bugfixes:
|
|
911
1072
|
|
912
1073
|
Bugfixes:
|
913
1074
|
|
914
|
-
- fail gracefully when trying to execute a non-executable file (#4081, @fotanus)
|
1075
|
+
- fail gracefully when trying to execute a non-executable file ([#4081](https://github.com/bundler/bundler/issues/4081), @fotanus)
|
915
1076
|
- fix a crash when pushing a gem via `rake release` (@segiddins)
|
916
1077
|
|
917
1078
|
## 1.11.0.pre.1 (2015-11-29)
|
918
1079
|
|
919
1080
|
Features:
|
920
1081
|
|
921
|
-
- actual Gemfile and lockfile filenames are used in messages (#3672, @segiddins)
|
1082
|
+
- actual Gemfile and lockfile filenames are used in messages ([#3672](https://github.com/bundler/bundler/issues/3672), @segiddins)
|
922
1083
|
- the git remote for `rake release` is now customizable (@skateman)
|
923
|
-
- file access permissions errors are now much more friendly (#3703, #3735, #3858, #3988, #4009 @repinel, @Elffers, @segiddins, @agis-)
|
1084
|
+
- file access permissions errors are now much more friendly ([#3703](https://github.com/bundler/bundler/issues/3703), [#3735](https://github.com/bundler/bundler/issues/3735), [#3858](https://github.com/bundler/bundler/issues/3858), [#3988](https://github.com/bundler/bundler/issues/3988), [#4009](https://github.com/bundler/bundler/issues/4009) @repinel, @Elffers, @segiddins, @agis-)
|
924
1085
|
- add support for showing help for plugin commands (@tf)
|
925
1086
|
- send `X-Gemfile-Source` header to source mirrors (@agis-)
|
926
1087
|
- show what version upstream dependencies were resolved to in conflict messages (@segiddins)
|
@@ -932,12 +1093,12 @@ Features:
|
|
932
1093
|
- update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
|
933
1094
|
- add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
|
934
1095
|
- added support for MRI 2.3 (@amatsuda)
|
935
|
-
- show a helpful message when requiring a file in `bundler require` fails (#3960, @agis-)
|
936
|
-
- include git revision hash when printing a git source (#3433, @agis-)
|
1096
|
+
- show a helpful message when requiring a file in `bundler require` fails ([#3960](https://github.com/bundler/bundler/issues/3960), @agis-)
|
1097
|
+
- include git revision hash when printing a git source ([#3433](https://github.com/bundler/bundler/issues/3433), @agis-)
|
937
1098
|
- improve hint when a resolution conflict occurs (@seanlinsley)
|
938
|
-
- show a friendly error when a git ref is not found (#3879, @agis-)
|
939
|
-
- improve error message when sources are not absolute URIs (#3925, @agis-)
|
940
|
-
- add `pkg` to rake's clobber list (#3676, @jasonkarns)
|
1099
|
+
- show a friendly error when a git ref is not found ([#3879](https://github.com/bundler/bundler/issues/3879), @agis-)
|
1100
|
+
- improve error message when sources are not absolute URIs ([#3925](https://github.com/bundler/bundler/issues/3925), @agis-)
|
1101
|
+
- add `pkg` to rake's clobber list ([#3676](https://github.com/bundler/bundler/issues/3676), @jasonkarns)
|
941
1102
|
- retry fetching specs when fetching version metadata fails (@jingweno)
|
942
1103
|
|
943
1104
|
Bugfixes:
|
@@ -945,36 +1106,36 @@ Bugfixes:
|
|
945
1106
|
- avoid showing bundler version warning messages twice (@fotanus)
|
946
1107
|
- fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
|
947
1108
|
- fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
|
948
|
-
- fail more gracefully when an HTTP remote is unreachable (#3765, @steverob)
|
1109
|
+
- fail more gracefully when an HTTP remote is unreachable ([#3765](https://github.com/bundler/bundler/issues/3765), @steverob)
|
949
1110
|
- fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
|
950
1111
|
- fix the `bundle gem` readme when no tests are generated (@roseweixel)
|
951
|
-
- the dependencies on test gems in `bundle gem` are now locked to major versions (#3811, @indirect)
|
952
|
-
- fix the paths for native extensions generated by `--standalone` (#3813, @AlexanderPavlenko)
|
1112
|
+
- the dependencies on test gems in `bundle gem` are now locked to major versions ([#3811](https://github.com/bundler/bundler/issues/3811), @indirect)
|
1113
|
+
- fix the paths for native extensions generated by `--standalone` ([#3813](https://github.com/bundler/bundler/issues/3813), @AlexanderPavlenko)
|
953
1114
|
- fix trying to cache a gem that has no source (@EduardoBautista)
|
954
|
-
- fix `--source` option to `bundle update` causing incorrect gem unlocking (#3759, #3761, @neoeno)
|
955
|
-
- fix handling an empty `BUNDLE_GEMFILE` environment variables (#3678, @agis-)
|
1115
|
+
- fix `--source` option to `bundle update` causing incorrect gem unlocking ([#3759](https://github.com/bundler/bundler/issues/3759), [#3761](https://github.com/bundler/bundler/issues/3761), @neoeno)
|
1116
|
+
- fix handling an empty `BUNDLE_GEMFILE` environment variables ([#3678](https://github.com/bundler/bundler/issues/3678), @agis-)
|
956
1117
|
- avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
|
957
1118
|
- fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
|
958
|
-
- fix not retrying on zlib errors (#4047, @andremedeiros)
|
1119
|
+
- fix not retrying on zlib errors ([#4047](https://github.com/bundler/bundler/issues/4047), @andremedeiros)
|
959
1120
|
- fix a warning being shown for using `URI.encode` (@EduardoBautista)
|
960
|
-
- fix handling of fatal HTTP errors (#3830, @indirect)
|
961
|
-
- ensure all `sudo` access is done in a thread-safe manner (#3910, @agis-)
|
1121
|
+
- fix handling of fatal HTTP errors ([#3830](https://github.com/bundler/bundler/issues/3830), @indirect)
|
1122
|
+
- ensure all `sudo` access is done in a thread-safe manner ([#3910](https://github.com/bundler/bundler/issues/3910), @agis-)
|
962
1123
|
- fix caching gems with a path with the same prefix as the bundled application (@indirect)
|
963
|
-
- fix showing gemspec validation errors on `bundle exec` (#3895, @agis-)
|
964
|
-
- distinguish Gemfile syntax and evaluation errors (#3783, @agis-)
|
965
|
-
- fix nested Gemfile sources not restoring the previous source (#3974, @agis-)
|
966
|
-
- fix the `RUBYLIB` environment variable not being cleaned (#3982, @agis-)
|
967
|
-
- fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock (#4012, @lukaso)
|
1124
|
+
- fix showing gemspec validation errors on `bundle exec` ([#3895](https://github.com/bundler/bundler/issues/3895), @agis-)
|
1125
|
+
- distinguish Gemfile syntax and evaluation errors ([#3783](https://github.com/bundler/bundler/issues/3783), @agis-)
|
1126
|
+
- fix nested Gemfile sources not restoring the previous source ([#3974](https://github.com/bundler/bundler/issues/3974), @agis-)
|
1127
|
+
- fix the `RUBYLIB` environment variable not being cleaned ([#3982](https://github.com/bundler/bundler/issues/3982), @agis-)
|
1128
|
+
- fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock ([#4012](https://github.com/bundler/bundler/issues/4012), @lukaso)
|
968
1129
|
- also print gemspecs in `bundle env` output (@agis-)
|
969
|
-
- fix handling when a `path` source does not have a gemspec but a lockfile says there is (#4004, @segiddins)
|
970
|
-
- show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set (#3656, @agis-)
|
971
|
-
- fix handling invalid RubyGems configuration files (#4042, @agis-)
|
1130
|
+
- fix handling when a `path` source does not have a gemspec but a lockfile says there is ([#4004](https://github.com/bundler/bundler/issues/4004), @segiddins)
|
1131
|
+
- show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set ([#3656](https://github.com/bundler/bundler/issues/3656), @agis-)
|
1132
|
+
- fix handling invalid RubyGems configuration files ([#4042](https://github.com/bundler/bundler/issues/4042), @agis-)
|
972
1133
|
- fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
|
973
|
-
- restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, @smellsblue)
|
1134
|
+
- restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/bundler/bundler/issues/4102), @smellsblue)
|
974
1135
|
|
975
1136
|
Performance:
|
976
1137
|
|
977
|
-
- speed up dependency resolution in pathological cases by 25x (#3803, @segiddins)
|
1138
|
+
- speed up dependency resolution in pathological cases by 25x ([#3803](https://github.com/bundler/bundler/issues/3803), @segiddins)
|
978
1139
|
- drop string allocations when searching for gems (@jrafanie)
|
979
1140
|
|
980
1141
|
## 1.10.6 (2015-07-22)
|
@@ -985,8 +1146,8 @@ Workarounds:
|
|
985
1146
|
|
986
1147
|
Bugfixes:
|
987
1148
|
|
988
|
-
- fix installing dependencies in the correct order (#3799, @pducks32)
|
989
|
-
- fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
|
1149
|
+
- fix installing dependencies in the correct order ([#3799](https://github.com/bundler/bundler/issues/3799), @pducks32)
|
1150
|
+
- fix sorting of mixed DependencyLists ([#3762](https://github.com/bundler/bundler/issues/3762), @tony-spataro-rs)
|
990
1151
|
- fix `install_if` conditionals when using the block form (@danieltdt)
|
991
1152
|
|
992
1153
|
## 1.10.5 (2015-06-24)
|
@@ -997,9 +1158,9 @@ Workarounds:
|
|
997
1158
|
|
998
1159
|
Bugfixes:
|
999
1160
|
|
1000
|
-
- fix sorting of mixed DependencyLists with RubyGems >= 2.23 (#3762, @tony-spataro-rs)
|
1161
|
+
- fix sorting of mixed DependencyLists with RubyGems >= 2.23 ([#3762](https://github.com/bundler/bundler/issues/3762), @tony-spataro-rs)
|
1001
1162
|
- speed up resolver for path and git gems (@segiddins)
|
1002
|
-
- fix `install --force` to not reinstall Bundler (#3743, @karlo57)
|
1163
|
+
- fix `install --force` to not reinstall Bundler ([#3743](https://github.com/bundler/bundler/issues/3743), @karlo57)
|
1003
1164
|
|
1004
1165
|
## 1.10.4 (2015-06-16)
|
1005
1166
|
|
@@ -1016,24 +1177,24 @@ Bugfixes:
|
|
1016
1177
|
|
1017
1178
|
Bugfixes:
|
1018
1179
|
|
1019
|
-
- allow missing gemspec files when validating path and git gems (#3686, #3698, @segiddins)
|
1020
|
-
- fix regression in `rake install` (#3701, #3705, @segiddins)
|
1021
|
-
- fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` (#3699, @segiddins)
|
1022
|
-
- fix `bundler/inline` requiring a newly-installed gem (#3693, @indirect, @segiddins)
|
1180
|
+
- allow missing gemspec files when validating path and git gems ([#3686](https://github.com/bundler/bundler/issues/3686), [#3698](https://github.com/bundler/bundler/issues/3698), @segiddins)
|
1181
|
+
- fix regression in `rake install` ([#3701](https://github.com/bundler/bundler/issues/3701), [#3705](https://github.com/bundler/bundler/issues/3705), @segiddins)
|
1182
|
+
- fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` ([#3699](https://github.com/bundler/bundler/issues/3699), @segiddins)
|
1183
|
+
- fix `bundler/inline` requiring a newly-installed gem ([#3693](https://github.com/bundler/bundler/issues/3693), @indirect, @segiddins)
|
1023
1184
|
|
1024
1185
|
## 1.10.2 (2015-05-29)
|
1025
1186
|
|
1026
1187
|
Bugfixes:
|
1027
1188
|
|
1028
|
-
- fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
|
1189
|
+
- fix regression in `bundle update GEM` performance introduced in 1.10.0 ([#3687](https://github.com/bundler/bundler/issues/3687), @segiddins)
|
1029
1190
|
|
1030
1191
|
## 1.10.1 (2015-05-28)
|
1031
1192
|
|
1032
1193
|
Bugfixes:
|
1033
1194
|
|
1034
1195
|
- silence ruby warning when running CLI commands (@segiddins)
|
1035
|
-
- validate gemspecs in non-packaging mode (#3681, @segiddins)
|
1036
|
-
- ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
|
1196
|
+
- validate gemspecs in non-packaging mode ([#3681](https://github.com/bundler/bundler/issues/3681), @segiddins)
|
1197
|
+
- ensure the same chdir mutex as RubyGems is used ([#3680](https://github.com/bundler/bundler/issues/3680), @segiddins)
|
1037
1198
|
|
1038
1199
|
## 1.10.0 (2015-05-28)
|
1039
1200
|
|
@@ -1043,54 +1204,54 @@ Bugfixes:
|
|
1043
1204
|
|
1044
1205
|
Features:
|
1045
1206
|
|
1046
|
-
- dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
|
1047
|
-
- track CI platforms running Bundler (#3646, @fotanus)
|
1207
|
+
- dramatically speed up resolving some slow Gemfiles ([#3635](https://github.com/bundler/bundler/issues/3635), @segiddins)
|
1208
|
+
- track CI platforms running Bundler ([#3646](https://github.com/bundler/bundler/issues/3646), @fotanus)
|
1048
1209
|
|
1049
1210
|
Bugfixes:
|
1050
1211
|
|
1051
|
-
- allow `viz` to work with prereleases (#3621, #3217, @aprescott)
|
1052
|
-
- validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
|
1053
|
-
- stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
|
1212
|
+
- allow `viz` to work with prereleases ([#3621](https://github.com/bundler/bundler/issues/3621), [#3217](https://github.com/bundler/bundler/issues/3217), @aprescott)
|
1213
|
+
- validate gemspecs used in path and git gems ([#3639](https://github.com/bundler/bundler/issues/3639), @segiddins, @indirect)
|
1214
|
+
- stop printing config warnings when config is unchanged ([#3649](https://github.com/bundler/bundler/issues/3649), @fotanus, @indirect)
|
1054
1215
|
- Without groups saved via `config` are no longer ignored when the `--without` flag is used
|
1055
1216
|
|
1056
1217
|
## 1.10.0.pre.2 (2015-05-07)
|
1057
1218
|
|
1058
1219
|
Bugfixes:
|
1059
1220
|
|
1060
|
-
- make BUNDLED WITH backwards compatible (#3623, @segiddins)
|
1221
|
+
- make BUNDLED WITH backwards compatible ([#3623](https://github.com/bundler/bundler/issues/3623), @segiddins)
|
1061
1222
|
|
1062
1223
|
## 1.10.0.pre.1 (2015-05-05)
|
1063
1224
|
|
1064
1225
|
Bugfixes:
|
1065
1226
|
|
1066
|
-
- always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
|
1227
|
+
- always clean up tmp dirs ([#3277](https://github.com/bundler/bundler/issues/3277), @hone, @indirect, @segiddins)
|
1067
1228
|
|
1068
1229
|
## 1.10.0.pre (2015-05-03)
|
1069
1230
|
|
1070
1231
|
Features:
|
1071
1232
|
|
1072
|
-
- support gem extensions built into any directory on RubyGems 2.2+ (#3582, @voxik)
|
1073
|
-
- add 'bundler/inline' which provides a `gemfile` method (#3440, @segiddins)
|
1074
|
-
- improved error reports for Gemfile errors (#3480, @segiddins)
|
1075
|
-
- `lock` command (#3437, @segiddins)
|
1076
|
-
- add `ignore_messages` config to suppress post-install text (#3510, @pducks32)
|
1077
|
-
- improve `gem` minitest template (#3513, #3515, @arthurnn)
|
1078
|
-
- add `install --force` to re-install installed gems (#3519, @segiddins)
|
1233
|
+
- support gem extensions built into any directory on RubyGems 2.2+ ([#3582](https://github.com/bundler/bundler/issues/3582), @voxik)
|
1234
|
+
- add 'bundler/inline' which provides a `gemfile` method ([#3440](https://github.com/bundler/bundler/issues/3440), @segiddins)
|
1235
|
+
- improved error reports for Gemfile errors ([#3480](https://github.com/bundler/bundler/issues/3480), @segiddins)
|
1236
|
+
- `lock` command ([#3437](https://github.com/bundler/bundler/issues/3437), @segiddins)
|
1237
|
+
- add `ignore_messages` config to suppress post-install text ([#3510](https://github.com/bundler/bundler/issues/3510), @pducks32)
|
1238
|
+
- improve `gem` minitest template ([#3513](https://github.com/bundler/bundler/issues/3513), [#3515](https://github.com/bundler/bundler/issues/3515), @arthurnn)
|
1239
|
+
- add `install --force` to re-install installed gems ([#3519](https://github.com/bundler/bundler/issues/3519), @segiddins)
|
1079
1240
|
- show more `outdated` information, including groups (@smlance, @indirect)
|
1080
|
-
- add optional groups to the Gemfile (#3531, @jhass)
|
1081
|
-
- accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
|
1082
|
-
- make timeouts and retries configurable via `config` (#3601, @pducks32)
|
1083
|
-
- add `install_if` Gemfile method for conditional installs (#3611, @segiddins)
|
1241
|
+
- add optional groups to the Gemfile ([#3531](https://github.com/bundler/bundler/issues/3531), @jhass)
|
1242
|
+
- accept glob argument to `gemspec` in Gemfile ([#3464](https://github.com/bundler/bundler/issues/3464), @pjump)
|
1243
|
+
- make timeouts and retries configurable via `config` ([#3601](https://github.com/bundler/bundler/issues/3601), @pducks32)
|
1244
|
+
- add `install_if` Gemfile method for conditional installs ([#3611](https://github.com/bundler/bundler/issues/3611), @segiddins)
|
1084
1245
|
|
1085
1246
|
Bugfixes:
|
1086
1247
|
|
1087
|
-
- standalone mode now uses builtin gems correctly (#3610, @segiddins)
|
1088
|
-
- fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
|
1089
|
-
- remember all y/n answers when generating gems (#3579, @pducks32)
|
1248
|
+
- standalone mode now uses builtin gems correctly ([#3610](https://github.com/bundler/bundler/issues/3610), @segiddins)
|
1249
|
+
- fix `rake spec:deps` on MinGW Ruby 2.0+ ([#3487](https://github.com/bundler/bundler/issues/3487), @marutosi)
|
1250
|
+
- remember all y/n answers when generating gems ([#3579](https://github.com/bundler/bundler/issues/3579), @pducks32)
|
1090
1251
|
|
1091
1252
|
Performance:
|
1092
1253
|
|
1093
|
-
- use RubyGems stub specifications when possible (#3580, @segiddins)
|
1254
|
+
- use RubyGems stub specifications when possible ([#3580](https://github.com/bundler/bundler/issues/3580), @segiddins)
|
1094
1255
|
|
1095
1256
|
Deprecations:
|
1096
1257
|
|
@@ -1106,65 +1267,65 @@ Features:
|
|
1106
1267
|
|
1107
1268
|
Bugfixes:
|
1108
1269
|
|
1109
|
-
- read mirror and credential settings from older versions (#3557, @Strech)
|
1270
|
+
- read mirror and credential settings from older versions ([#3557](https://github.com/bundler/bundler/issues/3557), @Strech)
|
1110
1271
|
|
1111
1272
|
## 1.9.8 (2015-05-12)
|
1112
1273
|
|
1113
1274
|
Bugfixes:
|
1114
1275
|
|
1115
|
-
- fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
|
1276
|
+
- fix regression in sudo mode introduced by 1.9.7 ([#3642](https://github.com/bundler/bundler/issues/3642), @segiddins)
|
1116
1277
|
|
1117
1278
|
## 1.9.7 (2015-05-11)
|
1118
1279
|
|
1119
1280
|
Bugfixes:
|
1120
1281
|
|
1121
|
-
- always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
|
1282
|
+
- always clean up tmp dirs ([#3277](https://github.com/bundler/bundler/issues/3277), @hone, @indirect, @segiddins)
|
1122
1283
|
|
1123
1284
|
## 1.9.6 (2015-05-02)
|
1124
1285
|
|
1125
1286
|
Bugfixes:
|
1126
1287
|
|
1127
1288
|
- use RubyGems spec stubs if available (@segiddins)
|
1128
|
-
- allow creating gems with names containing two dashes (#3483, @janlelis)
|
1129
|
-
- allow creating gems with names extending constants (#3603, @amatsuda)
|
1289
|
+
- allow creating gems with names containing two dashes ([#3483](https://github.com/bundler/bundler/issues/3483), @janlelis)
|
1290
|
+
- allow creating gems with names extending constants ([#3603](https://github.com/bundler/bundler/issues/3603), @amatsuda)
|
1130
1291
|
|
1131
1292
|
## 1.9.5 (2015-04-29)
|
1132
1293
|
|
1133
1294
|
Bugfixes:
|
1134
1295
|
|
1135
|
-
- respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
|
1296
|
+
- respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
|
1136
1297
|
|
1137
1298
|
## 1.9.4 (2015-04-13)
|
1138
1299
|
|
1139
1300
|
Bugfixes:
|
1140
1301
|
|
1141
|
-
- fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
|
1142
|
-
- improve error when gems are missing (#3564, @sealocal)
|
1302
|
+
- fix regression in installing x86 and universal gems ([#3565](https://github.com/bundler/bundler/issues/3565), @jdmundrawala)
|
1303
|
+
- improve error when gems are missing ([#3564](https://github.com/bundler/bundler/issues/3564), @sealocal)
|
1143
1304
|
|
1144
1305
|
## 1.9.3 (2015-04-12)
|
1145
1306
|
|
1146
1307
|
Bugfixes:
|
1147
1308
|
|
1148
|
-
- handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
|
1149
|
-
- install 'universal' gems on Windows (#3066, @jdmundrawala)
|
1150
|
-
- stop passing --local during `rake install` task (#3236, @indirect)
|
1151
|
-
- guard against all possible accidental public gem pushes (#3533, @indirect)
|
1309
|
+
- handle removal of `specs` from rubygems/rubygems@620910 ([#3558](https://github.com/bundler/bundler/issues/3558), @indirect)
|
1310
|
+
- install 'universal' gems on Windows ([#3066](https://github.com/bundler/bundler/issues/3066), @jdmundrawala)
|
1311
|
+
- stop passing --local during `rake install` task ([#3236](https://github.com/bundler/bundler/issues/3236), @indirect)
|
1312
|
+
- guard against all possible accidental public gem pushes ([#3533](https://github.com/bundler/bundler/issues/3533), @indirect)
|
1152
1313
|
|
1153
1314
|
## 1.9.2 (2015-03-30)
|
1154
1315
|
|
1155
1316
|
Bugfixes:
|
1156
1317
|
|
1157
|
-
- ensure gem executables are executable (#3517, #3511, @indirect)
|
1158
|
-
- fix warnings in Molinillo (#3516, @segiddins)
|
1159
|
-
- ensure duplicate dependencies do not propagate (#3522, @segiddins)
|
1160
|
-
- keep gems locked when updating another gem from the same source (#3520, @indirect)
|
1161
|
-
- resolve race that could build gems without saved arguments (#3404, @indirect)
|
1318
|
+
- ensure gem executables are executable ([#3517](https://github.com/bundler/bundler/issues/3517), [#3511](https://github.com/bundler/bundler/issues/3511), @indirect)
|
1319
|
+
- fix warnings in Molinillo ([#3516](https://github.com/bundler/bundler/issues/3516), @segiddins)
|
1320
|
+
- ensure duplicate dependencies do not propagate ([#3522](https://github.com/bundler/bundler/issues/3522), @segiddins)
|
1321
|
+
- keep gems locked when updating another gem from the same source ([#3520](https://github.com/bundler/bundler/issues/3520), @indirect)
|
1322
|
+
- resolve race that could build gems without saved arguments ([#3404](https://github.com/bundler/bundler/issues/3404), @indirect)
|
1162
1323
|
|
1163
1324
|
## 1.9.1 (2015-03-21)
|
1164
1325
|
|
1165
1326
|
Bugfixes:
|
1166
1327
|
|
1167
|
-
- avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
|
1328
|
+
- avoid exception in 'bundler/gem_tasks' ([#3492](https://github.com/bundler/bundler/issues/3492), @segiddins)
|
1168
1329
|
|
1169
1330
|
## 1.9.0 (2015-03-20)
|
1170
1331
|
|
@@ -1173,7 +1334,7 @@ Bugfixes:
|
|
1173
1334
|
Bugfixes:
|
1174
1335
|
|
1175
1336
|
- make Bundler.which stop finding directories (@nohoho)
|
1176
|
-
- handle Bundler prereleases correctly (#3470, @segiddins)
|
1337
|
+
- handle Bundler prereleases correctly ([#3470](https://github.com/bundler/bundler/issues/3470), @segiddins)
|
1177
1338
|
- add before_install to .travis.yml template for new gems (@kodnin)
|
1178
1339
|
|
1179
1340
|
## 1.9.0.pre.1 (2015-03-11)
|
@@ -1186,8 +1347,8 @@ Bugfixes:
|
|
1186
1347
|
|
1187
1348
|
Features:
|
1188
1349
|
|
1189
|
-
- prefer gemspecs closest to the directory root (#3428, @segiddins)
|
1190
|
-
- debug log for API request limits (#3452, @neerfri)
|
1350
|
+
- prefer gemspecs closest to the directory root ([#3428](https://github.com/bundler/bundler/issues/3428), @segiddins)
|
1351
|
+
- debug log for API request limits ([#3452](https://github.com/bundler/bundler/issues/3452), @neerfri)
|
1191
1352
|
|
1192
1353
|
"Features":
|
1193
1354
|
|
@@ -1204,20 +1365,20 @@ Bugfixes:
|
|
1204
1365
|
|
1205
1366
|
Bugfixes:
|
1206
1367
|
|
1207
|
-
- Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
|
1368
|
+
- Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
|
1208
1369
|
|
1209
1370
|
## 1.8.7 (2015-04-07)
|
1210
1371
|
|
1211
1372
|
Bugfixes:
|
1212
1373
|
|
1213
|
-
- stop suppressing errors inside gems that get required (#3549, @indirect)
|
1374
|
+
- stop suppressing errors inside gems that get required ([#3549](https://github.com/bundler/bundler/issues/3549), @indirect)
|
1214
1375
|
|
1215
1376
|
## 1.8.6 (2015-03-30)
|
1216
1377
|
|
1217
1378
|
Bugfixes:
|
1218
1379
|
|
1219
|
-
- keep gems locked when updating another gem from the same source (#3250, @indirect)
|
1220
|
-
- resolve race that could build gems without saved arguments (#3404, @indirect)
|
1380
|
+
- keep gems locked when updating another gem from the same source ([#3250](https://github.com/bundler/bundler/issues/3250), @indirect)
|
1381
|
+
- resolve race that could build gems without saved arguments ([#3404](https://github.com/bundler/bundler/issues/3404), @indirect)
|
1221
1382
|
|
1222
1383
|
## 1.8.5 (2015-03-11)
|
1223
1384
|
|
@@ -1230,44 +1391,44 @@ Bugfixes:
|
|
1230
1391
|
|
1231
1392
|
Bugfixes:
|
1232
1393
|
|
1233
|
-
- document --all-platforms option (#3449, @moeffju)
|
1234
|
-
- find gems from all sources on exec after install (#3450, @TimMoore)
|
1394
|
+
- document --all-platforms option ([#3449](https://github.com/bundler/bundler/issues/3449), @moeffju)
|
1395
|
+
- find gems from all sources on exec after install ([#3450](https://github.com/bundler/bundler/issues/3450), @TimMoore)
|
1235
1396
|
|
1236
1397
|
## 1.8.3 (2015-02-24)
|
1237
1398
|
|
1238
1399
|
Bugfixes:
|
1239
1400
|
|
1240
1401
|
- handle boolean values for gem settings (@EduardoBautista)
|
1241
|
-
- stop always looking for updated `path` gems (#3414, #3417, #3429, @TimMoore)
|
1402
|
+
- stop always looking for updated `path` gems ([#3414](https://github.com/bundler/bundler/issues/3414), [#3417](https://github.com/bundler/bundler/issues/3417), [#3429](https://github.com/bundler/bundler/issues/3429), @TimMoore)
|
1242
1403
|
|
1243
1404
|
## 1.8.2 (2015-02-14)
|
1244
1405
|
|
1245
1406
|
Bugfixes:
|
1246
1407
|
|
1247
|
-
- allow config settings for gems with 'http' in the name again (#3398, @TimMoore)
|
1408
|
+
- allow config settings for gems with 'http' in the name again ([#3398](https://github.com/bundler/bundler/issues/3398), @TimMoore)
|
1248
1409
|
|
1249
1410
|
## 1.8.1 (2015-02-13)
|
1250
1411
|
|
1251
1412
|
Bugfixes:
|
1252
1413
|
|
1253
|
-
- synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
|
1254
|
-
- set gemspec bindir correctly (#3392, @TimMoore)
|
1255
|
-
- request lockfile deletion when it is malformed (#3396, @indirect)
|
1256
|
-
- explain problem when mirror config is missing (#3386, @indirect)
|
1257
|
-
- explain problem when caching causes permission error (#3390, @indirect)
|
1258
|
-
- normalize URLs in config keys (#3391, @indirect)
|
1414
|
+
- synchronize building git gem native extensions ([#3385](https://github.com/bundler/bundler/issues/3385), @antifuchs & @indirect)
|
1415
|
+
- set gemspec bindir correctly ([#3392](https://github.com/bundler/bundler/issues/3392), @TimMoore)
|
1416
|
+
- request lockfile deletion when it is malformed ([#3396](https://github.com/bundler/bundler/issues/3396), @indirect)
|
1417
|
+
- explain problem when mirror config is missing ([#3386](https://github.com/bundler/bundler/issues/3386), @indirect)
|
1418
|
+
- explain problem when caching causes permission error ([#3390](https://github.com/bundler/bundler/issues/3390), @indirect)
|
1419
|
+
- normalize URLs in config keys ([#3391](https://github.com/bundler/bundler/issues/3391), @indirect)
|
1259
1420
|
|
1260
1421
|
## 1.8.0 (2015-02-10)
|
1261
1422
|
|
1262
1423
|
Bugfixes:
|
1263
1424
|
|
1264
|
-
- gemfile `github` blocks now work (#3379, @indirect)
|
1425
|
+
- gemfile `github` blocks now work ([#3379](https://github.com/bundler/bundler/issues/3379), @indirect)
|
1265
1426
|
|
1266
1427
|
Bugfixes from v1.7.13:
|
1267
1428
|
|
1268
|
-
- look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
|
1269
|
-
- look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
|
1270
|
-
- request dependencies for no more than 100 gems at a time (#3367, @segiddins)
|
1429
|
+
- look up installed gems in remote sources ([#3300](https://github.com/bundler/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)
|
1430
|
+
- look up gems across all sources to satisfy dependencies ([#3365](https://github.com/bundler/bundler/issues/3365), @keiths-osc)
|
1431
|
+
- request dependencies for no more than 100 gems at a time ([#3367](https://github.com/bundler/bundler/issues/3367), @segiddins)
|
1271
1432
|
|
1272
1433
|
## 1.8.0.rc (2015-01-26)
|
1273
1434
|
|
@@ -1277,7 +1438,7 @@ Features:
|
|
1277
1438
|
|
1278
1439
|
Bugfixes:
|
1279
1440
|
|
1280
|
-
- don't add extra quotes around long, quoted config values (@aroben, #3338)
|
1441
|
+
- don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/bundler/bundler/issues/3338))
|
1281
1442
|
|
1282
1443
|
Security:
|
1283
1444
|
|
@@ -1287,7 +1448,7 @@ Security:
|
|
1287
1448
|
|
1288
1449
|
Features:
|
1289
1450
|
|
1290
|
-
- add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
|
1451
|
+
- add metadata allowed_push_host to new gem template ([#3002](https://github.com/bundler/bundler/issues/3002), @juanitofatas)
|
1291
1452
|
- adds a `--no-install` flag to `bundle package` (@d-reinhold)
|
1292
1453
|
- add `bundle config auto_install true` to install automatically (@smashwilson)
|
1293
1454
|
- add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
|
@@ -1322,66 +1483,66 @@ Documentation:
|
|
1322
1483
|
|
1323
1484
|
Bugfixes:
|
1324
1485
|
|
1325
|
-
- Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
|
1486
|
+
- Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
|
1326
1487
|
|
1327
1488
|
## 1.7.14 (2015-03-30)
|
1328
1489
|
|
1329
1490
|
Bugfixes:
|
1330
1491
|
|
1331
|
-
- Keep gems locked when updating another gem from the same source (#3250, @indirect)
|
1332
|
-
- Don't add extra quotes around long, quoted config values (@aroben, #3338)
|
1492
|
+
- Keep gems locked when updating another gem from the same source ([#3250](https://github.com/bundler/bundler/issues/3250), @indirect)
|
1493
|
+
- Don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/bundler/bundler/issues/3338))
|
1333
1494
|
|
1334
1495
|
## 1.7.13 (2015-02-07)
|
1335
1496
|
|
1336
1497
|
Bugfixes:
|
1337
1498
|
|
1338
|
-
- Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
|
1339
|
-
- Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
|
1340
|
-
- Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
|
1499
|
+
- Look up installed gems in remote sources ([#3300](https://github.com/bundler/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)
|
1500
|
+
- Look up gems across all sources to satisfy dependencies ([#3365](https://github.com/bundler/bundler/issues/3365), @keiths-osc)
|
1501
|
+
- Request dependencies for no more than 100 gems at a time ([#3367](https://github.com/bundler/bundler/issues/3367), @segiddins)
|
1341
1502
|
|
1342
1503
|
## 1.7.12 (2015-01-08)
|
1343
1504
|
|
1344
1505
|
Bugfixes:
|
1345
1506
|
|
1346
|
-
- Always send credentials for sources, fixing private Gemfury gems (#3342, @TimMoore)
|
1507
|
+
- Always send credentials for sources, fixing private Gemfury gems ([#3342](https://github.com/bundler/bundler/issues/3342), @TimMoore)
|
1347
1508
|
|
1348
1509
|
## 1.7.11 (2015-01-04)
|
1349
1510
|
|
1350
1511
|
Bugfixes:
|
1351
1512
|
|
1352
|
-
- Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
|
1513
|
+
- Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` ([#3328](https://github.com/bundler/bundler/issues/3328), @myabc)
|
1353
1514
|
|
1354
1515
|
## 1.7.10 (2014-12-29)
|
1355
1516
|
|
1356
1517
|
Bugfixes:
|
1357
1518
|
|
1358
|
-
- Fix source blocks sometimes causing deployment mode to fail wrongly (#3298, @TimMoore)
|
1519
|
+
- Fix source blocks sometimes causing deployment mode to fail wrongly ([#3298](https://github.com/bundler/bundler/issues/3298), @TimMoore)
|
1359
1520
|
|
1360
1521
|
Features(?):
|
1361
1522
|
|
1362
|
-
- Support `platform :mri_22` and related version bits (#3309, @thomasfedb)
|
1523
|
+
- Support `platform :mri_22` and related version bits ([#3309](https://github.com/bundler/bundler/issues/3309), @thomasfedb)
|
1363
1524
|
|
1364
1525
|
## 1.7.9 (2014-12-09)
|
1365
1526
|
|
1366
1527
|
Bugfixes:
|
1367
1528
|
|
1368
|
-
- Fix an issue where bundler sometime spams one gem in Gemfile.lock (#3216, @Who828)
|
1369
|
-
- Ensure bundle update installs the newer version of the gem (#3089, @Who828)
|
1370
|
-
- Fix an regression which stopped Bundler from resolving some Gemfiles (#3059, #3248, @Who828)
|
1529
|
+
- Fix an issue where bundler sometime spams one gem in Gemfile.lock ([#3216](https://github.com/bundler/bundler/issues/3216), @Who828)
|
1530
|
+
- Ensure bundle update installs the newer version of the gem ([#3089](https://github.com/bundler/bundler/issues/3089), @Who828)
|
1531
|
+
- Fix an regression which stopped Bundler from resolving some Gemfiles ([#3059](https://github.com/bundler/bundler/issues/3059), [#3248](https://github.com/bundler/bundler/issues/3248), @Who828)
|
1371
1532
|
|
1372
1533
|
## 1.7.8 (2014-12-06)
|
1373
1534
|
|
1374
1535
|
Bugfixes:
|
1375
1536
|
|
1376
|
-
- Hide credentials while warning about gems with ambiguous sources (#3256, @TimMoore)
|
1537
|
+
- Hide credentials while warning about gems with ambiguous sources ([#3256](https://github.com/bundler/bundler/issues/3256), @TimMoore)
|
1377
1538
|
|
1378
1539
|
## 1.7.7 (2014-11-19)
|
1379
1540
|
|
1380
1541
|
Bugfixes:
|
1381
1542
|
|
1382
|
-
- Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
|
1383
|
-
- Fix race condition causing errors while installing git-based gems (#3174, @Who828)
|
1384
|
-
- Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
|
1543
|
+
- Ensure server credentials stored in config or ENV will be used ([#3180](https://github.com/bundler/bundler/issues/3180), @arronmabrey)
|
1544
|
+
- Fix race condition causing errors while installing git-based gems ([#3174](https://github.com/bundler/bundler/issues/3174), @Who828)
|
1545
|
+
- Use single quotes in config so YAML won't add more quotes ([#3261](https://github.com/bundler/bundler/issues/3261), @indirect)
|
1385
1546
|
|
1386
1547
|
## 1.7.6 (2014-11-11)
|
1387
1548
|
|
@@ -1393,17 +1554,17 @@ Bugfixes:
|
|
1393
1554
|
|
1394
1555
|
Bugfixes:
|
1395
1556
|
|
1396
|
-
- Fix --deployment with source blocks and non-alphabetical gems (#3224, @TimMoore)
|
1557
|
+
- Fix --deployment with source blocks and non-alphabetical gems ([#3224](https://github.com/bundler/bundler/issues/3224), @TimMoore)
|
1397
1558
|
- Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
|
1398
1559
|
|
1399
1560
|
## 1.7.4 (2014-10-19)
|
1400
1561
|
|
1401
1562
|
Bugfixes:
|
1402
1563
|
|
1403
|
-
- Allow --deployment after `pack` while using source blocks (#3167, @TimMoore)
|
1404
|
-
- Use dependency API even when HTTP credentials are in ENV (#3191, @fvaleur)
|
1405
|
-
- Silence warnings (including root warning) in --quiet mode (#3186, @indirect)
|
1406
|
-
- Stop asking gem servers for gems already found locally (#2909, @dubek)
|
1564
|
+
- Allow --deployment after `pack` while using source blocks ([#3167](https://github.com/bundler/bundler/issues/3167), @TimMoore)
|
1565
|
+
- Use dependency API even when HTTP credentials are in ENV ([#3191](https://github.com/bundler/bundler/issues/3191), @fvaleur)
|
1566
|
+
- Silence warnings (including root warning) in --quiet mode ([#3186](https://github.com/bundler/bundler/issues/3186), @indirect)
|
1567
|
+
- Stop asking gem servers for gems already found locally ([#2909](https://github.com/bundler/bundler/issues/2909), @dubek)
|
1407
1568
|
|
1408
1569
|
## 1.7.3 (2014-09-14)
|
1409
1570
|
|
@@ -1461,15 +1622,15 @@ Bugfixes:
|
|
1461
1622
|
|
1462
1623
|
Bugfixes:
|
1463
1624
|
|
1464
|
-
- require openssl explicitly to fix rare HTTPS request failures (@indirect, #3107)
|
1625
|
+
- require openssl explicitly to fix rare HTTPS request failures (@indirect, [#3107](https://github.com/bundler/bundler/issues/3107))
|
1465
1626
|
|
1466
1627
|
## 1.6.4 (2014-07-17)
|
1467
1628
|
|
1468
1629
|
Bugfixes:
|
1469
1630
|
|
1470
|
-
- fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
|
1471
|
-
- work when installed git gems are not writable (#3092, @pmahoney)
|
1472
|
-
- don't store configured source credentials in Gemfile.lock (#3045, @lhz)
|
1631
|
+
- fix undefined constant error when can't find gem during binstubs ([#3095](https://github.com/bundler/bundler/issues/3095), @jetaggart)
|
1632
|
+
- work when installed git gems are not writable ([#3092](https://github.com/bundler/bundler/issues/3092), @pmahoney)
|
1633
|
+
- don't store configured source credentials in Gemfile.lock ([#3045](https://github.com/bundler/bundler/issues/3045), @lhz)
|
1473
1634
|
- don't include config source credentials in the lockfile (Lars Haugseth)
|
1474
1635
|
- use threads for jobs on Rubinius (@YorickPeterse)
|
1475
1636
|
- skip dependencies from other platforms (@mvz)
|
@@ -1479,30 +1640,30 @@ Bugfixes:
|
|
1479
1640
|
|
1480
1641
|
Bugfixes:
|
1481
1642
|
|
1482
|
-
- fix regression when resolving many conflicts (#2994, @Who828)
|
1483
|
-
- use local gemspec for builtin gems during install --local (#3041, @Who828)
|
1484
|
-
- don't warn about sudo when installing on Windows (#2984, @indirect)
|
1643
|
+
- fix regression when resolving many conflicts ([#2994](https://github.com/bundler/bundler/issues/2994), @Who828)
|
1644
|
+
- use local gemspec for builtin gems during install --local ([#3041](https://github.com/bundler/bundler/issues/3041), @Who828)
|
1645
|
+
- don't warn about sudo when installing on Windows ([#2984](https://github.com/bundler/bundler/issues/2984), @indirect)
|
1485
1646
|
- shell escape `bundle open` arguments (@indirect)
|
1486
1647
|
|
1487
1648
|
## 1.6.2 (2014-04-13)
|
1488
1649
|
|
1489
1650
|
Bugfixes:
|
1490
1651
|
|
1491
|
-
- fix an exception when using builtin gems (#2915, #2963, @gnufied)
|
1492
|
-
- cache gems that are built in to the running ruby (#2975, @indirect)
|
1493
|
-
- re-allow deploying cached git gems without git installed (#2968, @aughr)
|
1652
|
+
- fix an exception when using builtin gems ([#2915](https://github.com/bundler/bundler/issues/2915), [#2963](https://github.com/bundler/bundler/issues/2963), @gnufied)
|
1653
|
+
- cache gems that are built in to the running ruby ([#2975](https://github.com/bundler/bundler/issues/2975), @indirect)
|
1654
|
+
- re-allow deploying cached git gems without git installed ([#2968](https://github.com/bundler/bundler/issues/2968), @aughr)
|
1494
1655
|
- keep standalone working even with builtin gems (@indirect)
|
1495
|
-
- don't update vendor/cache in deployment mode (#2921, @indirect)
|
1656
|
+
- don't update vendor/cache in deployment mode ([#2921](https://github.com/bundler/bundler/issues/2921), @indirect)
|
1496
1657
|
|
1497
1658
|
Features:
|
1498
1659
|
|
1499
|
-
- warn informatively when `bundle install` is run as root (#2936, @1337807)
|
1660
|
+
- warn informatively when `bundle install` is run as root ([#2936](https://github.com/bundler/bundler/issues/2936), @1337807)
|
1500
1661
|
|
1501
1662
|
## 1.6.1 (2014-04-02)
|
1502
1663
|
|
1503
1664
|
Bugfixes:
|
1504
1665
|
|
1505
|
-
- update C extensions when git gem versions change (#2948, @dylanahsmith)
|
1666
|
+
- update C extensions when git gem versions change ([#2948](https://github.com/bundler/bundler/issues/2948), @dylanahsmith)
|
1506
1667
|
|
1507
1668
|
Features:
|
1508
1669
|
|
@@ -1513,15 +1674,15 @@ Features:
|
|
1513
1674
|
Bugfixes:
|
1514
1675
|
|
1515
1676
|
- many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
|
1516
|
-
- redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
|
1517
|
-
- gemspecs now handle filenames with newlines (#2634, @jasonmp85)
|
1677
|
+
- redirects across hosts now work on rubies without OpenSSL ([#2686](https://github.com/bundler/bundler/issues/2686), @grddev)
|
1678
|
+
- gemspecs now handle filenames with newlines ([#2634](https://github.com/bundler/bundler/issues/2634), @jasonmp85)
|
1518
1679
|
- support escaped characters in usernames and passwords (@punkie)
|
1519
1680
|
- no more exception on `update GEM` without lock file (@simi)
|
1520
|
-
- allow long config values (#2823, @kgrz)
|
1521
|
-
- cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
|
1522
|
-
- respect NO_PROXY even if a proxy is configured (#2878, @stlay)
|
1523
|
-
- only retry git commands that hit the network (#2899, @timmoore)
|
1524
|
-
- fix NameError regression when OpenSSL is not available (#2898, @timmoore)
|
1681
|
+
- allow long config values ([#2823](https://github.com/bundler/bundler/issues/2823), @kgrz)
|
1682
|
+
- cache successfully even locked to gems shipped with Ruby ([#2869](https://github.com/bundler/bundler/issues/2869), @aughr)
|
1683
|
+
- respect NO_PROXY even if a proxy is configured ([#2878](https://github.com/bundler/bundler/issues/2878), @stlay)
|
1684
|
+
- only retry git commands that hit the network ([#2899](https://github.com/bundler/bundler/issues/2899), @timmoore)
|
1685
|
+
- fix NameError regression when OpenSSL is not available ([#2898](https://github.com/bundler/bundler/issues/2898), @timmoore)
|
1525
1686
|
- handle exception installing when build_info owned by root (@Who828)
|
1526
1687
|
- skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
|
1527
1688
|
|
@@ -1532,13 +1693,13 @@ Features:
|
|
1532
1693
|
- HTTP auth may now be stored in `bundle config` (@smashwilson)
|
1533
1694
|
- some complex Gemfiles are resolved up to 10x faster (@Who828)
|
1534
1695
|
- add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
|
1535
|
-
- highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
|
1696
|
+
- highlight installed or updated gems ([#2722](https://github.com/bundler/bundler/issues/2722), [#2741](https://github.com/bundler/bundler/issues/2741), @yaotti, @simi)
|
1536
1697
|
- display the `post_install_message` for gems installed via :git (@phallstrom)
|
1537
1698
|
- `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
|
1538
1699
|
- `bundle show --verbose` Add gem summary to the output (@lardcanoe)
|
1539
1700
|
- `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
|
1540
1701
|
- Avoid using threequals operator where possible (@as-cii)
|
1541
|
-
- Add `bundle update --group` to update specific group (#2731 @banyan)
|
1702
|
+
- Add `bundle update --group` to update specific group ([#2731](https://github.com/bundler/bundler/issues/2731) @banyan)
|
1542
1703
|
|
1543
1704
|
Documentation:
|
1544
1705
|
|
@@ -1548,7 +1709,7 @@ Documentation:
|
|
1548
1709
|
|
1549
1710
|
Bugfixes:
|
1550
1711
|
|
1551
|
-
- find "missing" gems that are actually present (#2780, #2818, #2854)
|
1712
|
+
- find "missing" gems that are actually present ([#2780](https://github.com/bundler/bundler/issues/2780), [#2818](https://github.com/bundler/bundler/issues/2818), [#2854](https://github.com/bundler/bundler/issues/2854))
|
1552
1713
|
- use n-1 cores when given n jobs for parallel install (@jdickey)
|
1553
1714
|
|
1554
1715
|
## 1.5.2 (2014-01-10)
|
@@ -1593,19 +1754,19 @@ Bugfixes:
|
|
1593
1754
|
|
1594
1755
|
Features:
|
1595
1756
|
|
1596
|
-
- bundle update also accepts --jobs (#2692, @mrkn)
|
1597
|
-
- add fork URL to README for new `bundle gem` (#2665, @zzak)
|
1598
|
-
- add `bundle outdated --strict` (#2685, @davidblondeau)
|
1599
|
-
- warn if same gem/version is added twice (#2679, @jendiamond)
|
1600
|
-
- don't redownload installed specs for `bundle install` (#2680, @cainlevy)
|
1601
|
-
- override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
|
1757
|
+
- bundle update also accepts --jobs ([#2692](https://github.com/bundler/bundler/issues/2692), @mrkn)
|
1758
|
+
- add fork URL to README for new `bundle gem` ([#2665](https://github.com/bundler/bundler/issues/2665), @zzak)
|
1759
|
+
- add `bundle outdated --strict` ([#2685](https://github.com/bundler/bundler/issues/2685), @davidblondeau)
|
1760
|
+
- warn if same gem/version is added twice ([#2679](https://github.com/bundler/bundler/issues/2679), @jendiamond)
|
1761
|
+
- don't redownload installed specs for `bundle install` ([#2680](https://github.com/bundler/bundler/issues/2680), @cainlevy)
|
1762
|
+
- override gem sources with mirrors ([#2650](https://github.com/bundler/bundler/issues/2650), @danielsdeleo, @mkristian)
|
1602
1763
|
|
1603
1764
|
Bugfixes:
|
1604
1765
|
|
1605
|
-
- fix sharing same SSL socket when forking workers for parallel install (#2632)
|
1606
|
-
- fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
|
1607
|
-
- fix Bundler.which for directories (#2697, @rhysd)
|
1608
|
-
- properly require `Capistrano::Version` (#2690, @steveklabnik)
|
1766
|
+
- fix sharing same SSL socket when forking workers for parallel install ([#2632](https://github.com/bundler/bundler/issues/2632))
|
1767
|
+
- fix msg typo in GitNotAllowedError ([#2654](https://github.com/bundler/bundler/issues/2654), @joyicecloud)
|
1768
|
+
- fix Bundler.which for directories ([#2697](https://github.com/bundler/bundler/issues/2697), @rhysd)
|
1769
|
+
- properly require `Capistrano::Version` ([#2690](https://github.com/bundler/bundler/issues/2690), @steveklabnik)
|
1609
1770
|
- search for git.exe and git
|
1610
1771
|
- fix the bug that downloads every spec when API fetcher encouters an error
|
1611
1772
|
- only retry network requests
|
@@ -1614,10 +1775,10 @@ Bugfixes:
|
|
1614
1775
|
|
1615
1776
|
Features:
|
1616
1777
|
|
1617
|
-
- add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
|
1778
|
+
- add support for the x64-mingw32 platform ([#2356](https://github.com/bundler/bundler/issues/2356), [#2590](https://github.com/bundler/bundler/issues/2590), @larskanis)
|
1618
1779
|
- add :patchlevel option to ruby DSL
|
1619
|
-
- add `bundler` bin (#2598, @kirs)
|
1620
|
-
- friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
|
1780
|
+
- add `bundler` bin ([#2598](https://github.com/bundler/bundler/issues/2598), @kirs)
|
1781
|
+
- friendly ambiguous error messages ([#2581](https://github.com/bundler/bundler/issues/2581), [#2550](https://github.com/bundler/bundler/issues/2550), @jlsuttles, @jendiamond, @joyicecloud)
|
1621
1782
|
- add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
|
1622
1783
|
- add X.509 client certificates for auth without passwords (@snackbandit)
|
1623
1784
|
- add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
|
@@ -1629,56 +1790,56 @@ Features:
|
|
1629
1790
|
|
1630
1791
|
Bugfixes:
|
1631
1792
|
|
1632
|
-
- allow passwordless Basic Auth (#2606, @rykov)
|
1793
|
+
- allow passwordless Basic Auth ([#2606](https://github.com/bundler/bundler/issues/2606), @rykov)
|
1633
1794
|
- don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
|
1634
|
-
- revert #2569, staying compatible with git: instead of https: for :github gems
|
1795
|
+
- revert [#2569](https://github.com/bundler/bundler/issues/2569), staying compatible with git: instead of https: for :github gems
|
1635
1796
|
- handle exceptions while installing gems in parallel (@gnufied)
|
1636
1797
|
|
1637
1798
|
## 1.4.0.pre.1 (2013-08-04)
|
1638
1799
|
|
1639
1800
|
Features:
|
1640
1801
|
|
1641
|
-
- retry network requests while installing gems (#2561, @ascherger)
|
1642
|
-
- faster installs using gemspecs from the local system cache (#2497, @mipearson)
|
1643
|
-
- add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
|
1802
|
+
- retry network requests while installing gems ([#2561](https://github.com/bundler/bundler/issues/2561), @ascherger)
|
1803
|
+
- faster installs using gemspecs from the local system cache ([#2497](https://github.com/bundler/bundler/issues/2497), @mipearson)
|
1804
|
+
- add `bundle install -jN` for N parallel gem installations ([#2481](https://github.com/bundler/bundler/issues/2481), @eagletmt)
|
1644
1805
|
- add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
|
1645
|
-
- set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
|
1646
|
-
- use `man` instead of `groff` (#2579, @ixti, @simi)
|
1647
|
-
- add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
|
1648
|
-
- allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
|
1649
|
-
- rescue and report Thor errors (#2478, @pjvds)
|
1650
|
-
- detect cyclic dependencies (#2564, @gnufied)
|
1651
|
-
- support multiple gems in `binstubs` (#2576, @lucasmazza)
|
1652
|
-
- use https instead of git for :github gems (#2569, @fuadsaud)
|
1653
|
-
- add quiet option to `bundle package` (#2573, @shtirlic)
|
1654
|
-
- use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
|
1806
|
+
- set $MANPATH so `bundle exec man name` works ([#1624](https://github.com/bundler/bundler/issues/1624), @sunaku)
|
1807
|
+
- use `man` instead of `groff` ([#2579](https://github.com/bundler/bundler/issues/2579), @ixti, @simi)
|
1808
|
+
- add Gemfile dependency info to bundle outdated output ([#2487](https://github.com/bundler/bundler/issues/2487), @rahearn)
|
1809
|
+
- allow `require: true` as an alias for `require: <name>` ([#2538](https://github.com/bundler/bundler/issues/2538), @ndbroadbent)
|
1810
|
+
- rescue and report Thor errors ([#2478](https://github.com/bundler/bundler/issues/2478), @pjvds)
|
1811
|
+
- detect cyclic dependencies ([#2564](https://github.com/bundler/bundler/issues/2564), @gnufied)
|
1812
|
+
- support multiple gems in `binstubs` ([#2576](https://github.com/bundler/bundler/issues/2576), @lucasmazza)
|
1813
|
+
- use https instead of git for :github gems ([#2569](https://github.com/bundler/bundler/issues/2569), @fuadsaud)
|
1814
|
+
- add quiet option to `bundle package` ([#2573](https://github.com/bundler/bundler/issues/2573), @shtirlic)
|
1815
|
+
- use RUBYLIB instead of RUBYOPT for better Windows support ([#2536](https://github.com/bundler/bundler/issues/2536), @equinux)
|
1655
1816
|
|
1656
1817
|
Bugfixes:
|
1657
1818
|
|
1658
|
-
- reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
|
1659
|
-
- display GitErrors while loading specs in --verbose mode (#2461)
|
1660
|
-
- allow the same options hash to be passed to multiple gems (#2447)
|
1661
|
-
- handle missing binaries without an exception (#2019, @luismreis)
|
1819
|
+
- reduce stack size while resolving to fix JRuby overflow ([#2510](https://github.com/bundler/bundler/issues/2510), @headius)
|
1820
|
+
- display GitErrors while loading specs in --verbose mode ([#2461](https://github.com/bundler/bundler/issues/2461))
|
1821
|
+
- allow the same options hash to be passed to multiple gems ([#2447](https://github.com/bundler/bundler/issues/2447))
|
1822
|
+
- handle missing binaries without an exception ([#2019](https://github.com/bundler/bundler/issues/2019), @luismreis)
|
1662
1823
|
|
1663
1824
|
## 1.3.6 (8 January 2014)
|
1664
1825
|
|
1665
1826
|
Bugfixes:
|
1666
1827
|
|
1667
1828
|
- make gemspec path option preserve relative paths in lock file (@bwillis)
|
1668
|
-
- use umask when creating binstubs (#1618, @v-yarotsky)
|
1669
|
-
- warn if graphviz is not installed (#2435, @Agis-)
|
1829
|
+
- use umask when creating binstubs ([#1618](https://github.com/bundler/bundler/issues/1618), @v-yarotsky)
|
1830
|
+
- warn if graphviz is not installed ([#2435](https://github.com/bundler/bundler/issues/2435), @Agis-)
|
1670
1831
|
- show git errors while loading gemspecs
|
1671
|
-
- don't mutate gem method options hash (#2447)
|
1672
|
-
- print Thor errors (#2478, @pjvds)
|
1832
|
+
- don't mutate gem method options hash ([#2447](https://github.com/bundler/bundler/issues/2447))
|
1833
|
+
- print Thor errors ([#2478](https://github.com/bundler/bundler/issues/2478), @pjvds)
|
1673
1834
|
- print Rubygems system exit errors (James Cook)
|
1674
1835
|
- more Pathnames into Strings for MacRuby (@kml)
|
1675
1836
|
- preserve original gemspec path (@bwillis)
|
1676
|
-
- remove warning about deps with :git (#1651, @ixti)
|
1677
|
-
- split git files on null (#2634, @jasonmp85)
|
1678
|
-
- handle cross-host redirects without SSL (#2686, @grddev)
|
1837
|
+
- remove warning about deps with :git ([#1651](https://github.com/bundler/bundler/issues/1651), @ixti)
|
1838
|
+
- split git files on null ([#2634](https://github.com/bundler/bundler/issues/2634), @jasonmp85)
|
1839
|
+
- handle cross-host redirects without SSL ([#2686](https://github.com/bundler/bundler/issues/2686), @grddev)
|
1679
1840
|
- handle Rubygems 2 security exception (@zzak)
|
1680
1841
|
- reinstall gems if they are missing with spec present
|
1681
|
-
- set binstub permissions using umask (#1618, @v-yarotsky)
|
1842
|
+
- set binstub permissions using umask ([#1618](https://github.com/bundler/bundler/issues/1618), @v-yarotsky)
|
1682
1843
|
|
1683
1844
|
## 1.3.5 (3 April 2013)
|
1684
1845
|
|
@@ -1754,28 +1915,28 @@ Security:
|
|
1754
1915
|
|
1755
1916
|
- validate SSL certificate chain during HTTPS network requests
|
1756
1917
|
- don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
|
1757
|
-
- add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
|
1918
|
+
- add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, [#2293](https://github.com/bundler/bundler/issues/2293))
|
1758
1919
|
|
1759
1920
|
Features:
|
1760
1921
|
|
1761
|
-
- optimize resolver when too new of a gem is already activated (@rykov, #2248)
|
1922
|
+
- optimize resolver when too new of a gem is already activated (@rykov, [#2248](https://github.com/bundler/bundler/issues/2248))
|
1762
1923
|
- update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
|
1763
1924
|
- explain SSL cert validation failures
|
1764
1925
|
- generate gemspecs when installing git repos, removing shellouts
|
1765
1926
|
- add pager selection (@csgui)
|
1766
|
-
- add `licenses` command (@bryanwoods, #1898)
|
1767
|
-
- sort output from `outdated` (@richardkmichael, #1896)
|
1768
|
-
- add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
|
1927
|
+
- add `licenses` command (@bryanwoods, [#1898](https://github.com/bundler/bundler/issues/1898))
|
1928
|
+
- sort output from `outdated` (@richardkmichael, [#1896](https://github.com/bundler/bundler/issues/1896))
|
1929
|
+
- add a .travis.yml to `gem -t` (@ndbroadbent, [#2143](https://github.com/bundler/bundler/issues/2143))
|
1769
1930
|
- inform users when the resolver starts
|
1770
1931
|
- disable reverse DNS to speed up API requests (@raggi)
|
1771
1932
|
|
1772
1933
|
Bugfixes:
|
1773
1934
|
|
1774
|
-
- raise errors while requiring dashed gems (#1807)
|
1775
|
-
- quote the Bundler path on Windows (@jgeiger, #1862, #1856)
|
1776
|
-
- load gemspecs containing unicode (@gaffneyc, #2301)
|
1935
|
+
- raise errors while requiring dashed gems ([#1807](https://github.com/bundler/bundler/issues/1807))
|
1936
|
+
- quote the Bundler path on Windows (@jgeiger, [#1862](https://github.com/bundler/bundler/issues/1862), [#1856](https://github.com/bundler/bundler/issues/1856))
|
1937
|
+
- load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/bundler/bundler/issues/2301))
|
1777
1938
|
- support any ruby version in --standalone
|
1778
|
-
- resolve some ruby -w warnings (@chastell, #2193)
|
1939
|
+
- resolve some ruby -w warnings (@chastell, [#2193](https://github.com/bundler/bundler/issues/2193))
|
1779
1940
|
- don't scare users with an error message during API fallback
|
1780
1941
|
- `install --binstubs` is back to overwriting. thanks, SemVer.
|
1781
1942
|
|
@@ -1783,7 +1944,7 @@ Bugfixes:
|
|
1783
1944
|
|
1784
1945
|
Bugfixes:
|
1785
1946
|
|
1786
|
-
- stubs for gems with dev deps no longer cause exceptions (#2272)
|
1947
|
+
- stubs for gems with dev deps no longer cause exceptions ([#2272](https://github.com/bundler/bundler/issues/2272))
|
1787
1948
|
- don't suggest binstubs to --binstubs users
|
1788
1949
|
|
1789
1950
|
## 1.3.0.pre.6 (22 January 2013)
|
@@ -1807,7 +1968,7 @@ Bugfixes:
|
|
1807
1968
|
Features:
|
1808
1969
|
|
1809
1970
|
- make `--standalone` require lines ruby engine/version agnostic
|
1810
|
-
- add `--dry-run` to `bundle clean` (@wfarr, #2237)
|
1971
|
+
- add `--dry-run` to `bundle clean` (@wfarr, [#2237](https://github.com/bundler/bundler/issues/2237))
|
1811
1972
|
|
1812
1973
|
Bugfixes:
|
1813
1974
|
|
@@ -1840,7 +2001,7 @@ Bugfixes:
|
|
1840
2001
|
|
1841
2002
|
- :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
|
1842
2003
|
- revert SemVer breaking change to :github
|
1843
|
-
- `outdated` exits non-zero if outdated gems found (@rohit, #2021)
|
2004
|
+
- `outdated` exits non-zero if outdated gems found (@rohit, [#2021](https://github.com/bundler/bundler/issues/2021))
|
1844
2005
|
- https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
|
1845
2006
|
- namespaced gems no longer generate a superfluous directory (@banyan)
|
1846
2007
|
|
@@ -1848,15 +2009,15 @@ Bugfixes:
|
|
1848
2009
|
|
1849
2010
|
Features:
|
1850
2011
|
|
1851
|
-
- `config` expands local overrides like `local.rack .` (@gkop, #2205)
|
1852
|
-
- `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
|
2012
|
+
- `config` expands local overrides like `local.rack .` (@gkop, [#2205](https://github.com/bundler/bundler/issues/2205))
|
2013
|
+
- `gem` generates files correctly for names like `jquery-rails` (@banyan, [#2201](https://github.com/bundler/bundler/issues/2201))
|
1853
2014
|
- use gems from gists with the :gist option in the Gemfile (@jgaskins)
|
1854
2015
|
|
1855
2016
|
Bugfixes:
|
1856
2017
|
|
1857
2018
|
- Gemfile sources other than rubygems.org work even when .gemrc contains sources
|
1858
|
-
- caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
|
1859
|
-
- `show GEM` now warns if the directory has been deleted (@rohit, #2070)
|
2019
|
+
- caching git gems now caches specs, fixing e.g. git ls-files (@bison, [#2039](https://github.com/bundler/bundler/issues/2039))
|
2020
|
+
- `show GEM` now warns if the directory has been deleted (@rohit, [#2070](https://github.com/bundler/bundler/issues/2070))
|
1860
2021
|
- git output hidden when running in --quiet mode (@rohit)
|
1861
2022
|
|
1862
2023
|
## 1.3.0.pre (Nov 29, 2012)
|
@@ -1867,7 +2028,7 @@ Features:
|
|
1867
2028
|
- compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
|
1868
2029
|
- ruby 2.0 added to the `:ruby19` ABI-compatible platform
|
1869
2030
|
- lazy load YAML, allowing Psych to be specified in the Gemfile
|
1870
|
-
- significant performance improvements (@cheald, #2181)
|
2031
|
+
- significant performance improvements (@cheald, [#2181](https://github.com/bundler/bundler/issues/2181))
|
1871
2032
|
- `inject` command for scripted Gemfile additions (Engine Yard)
|
1872
2033
|
- :github option uses slashless arguments as repo owner (@rking)
|
1873
2034
|
- `open` suggests gem names for typos (@jdelStrother)
|
@@ -1880,12 +2041,12 @@ Features:
|
|
1880
2041
|
Bugfixes:
|
1881
2042
|
|
1882
2043
|
- JRuby new works with HTTPS gem sources (@davidcelis)
|
1883
|
-
- `install` installs both rake rake-built gems at once (@crowbot, #2107)
|
2044
|
+
- `install` installs both rake rake-built gems at once (@crowbot, [#2107](https://github.com/bundler/bundler/issues/2107))
|
1884
2045
|
- handle Errno::ETIMEDOUT errors (@jmoses)
|
1885
2046
|
- handle Errno::EAGAIN errors on JRuby
|
1886
2047
|
- disable ANSI coloring when output is redirected (@tomykaira)
|
1887
2048
|
- raise LoadErrors correctly during Bundler.require (@Empact)
|
1888
|
-
- do not swallow --verbose on `bundle exec` (@sol, #2102)
|
2049
|
+
- do not swallow --verbose on `bundle exec` (@sol, [#2102](https://github.com/bundler/bundler/issues/2102))
|
1889
2050
|
- `gem` generates gemspecs that block double-requires
|
1890
2051
|
- `gem` generates gemspecs that admit they depend on rake
|
1891
2052
|
|
@@ -1907,9 +2068,9 @@ Features:
|
|
1907
2068
|
Bugfixes:
|
1908
2069
|
|
1909
2070
|
- don't send user/pass when redirected to another host (@perplexes)
|
1910
|
-
- load gemspecs containing unicode (@gaffneyc, #2301)
|
2071
|
+
- load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/bundler/bundler/issues/2301))
|
1911
2072
|
- support any ruby version in --standalone
|
1912
|
-
- resolve some ruby -w warnings (@chastell, #2193)
|
2073
|
+
- resolve some ruby -w warnings (@chastell, [#2193](https://github.com/bundler/bundler/issues/2193))
|
1913
2074
|
- don't scare users with an error message during API fallback
|
1914
2075
|
|
1915
2076
|
## 1.2.3 (Nov 29, 2012)
|
@@ -1953,41 +2114,41 @@ Bugfixes:
|
|
1953
2114
|
|
1954
2115
|
Features:
|
1955
2116
|
|
1956
|
-
- `check` now has a `--dry-run` option (@svenfuchs, #1811)
|
2117
|
+
- `check` now has a `--dry-run` option (@svenfuchs, [#1811](https://github.com/bundler/bundler/issues/1811))
|
1957
2118
|
- loosen ruby directive for engines
|
1958
|
-
- prune git/path directories inside vendor/cache (@josevalim, #1988)
|
2119
|
+
- prune git/path directories inside vendor/cache (@josevalim, [#1988](https://github.com/bundler/bundler/issues/1988))
|
1959
2120
|
- update vendored thor to 0.15.2 (@sferik)
|
1960
|
-
- add .txt to LICENSE (@postmodern, #2001)
|
1961
|
-
- add `config disable_local_branch_check` (@josevalim, #1985)
|
1962
|
-
- fall back on the full index when experiencing syck errors (#1419)
|
1963
|
-
- handle syntax errors in Ruby gemspecs (#1974)
|
2121
|
+
- add .txt to LICENSE (@postmodern, [#2001](https://github.com/bundler/bundler/issues/2001))
|
2122
|
+
- add `config disable_local_branch_check` (@josevalim, [#1985](https://github.com/bundler/bundler/issues/1985))
|
2123
|
+
- fall back on the full index when experiencing syck errors ([#1419](https://github.com/bundler/bundler/issues/1419))
|
2124
|
+
- handle syntax errors in Ruby gemspecs ([#1974](https://github.com/bundler/bundler/issues/1974))
|
1964
2125
|
|
1965
2126
|
Bugfixes:
|
1966
2127
|
|
1967
|
-
- fix `pack`/`cache` with `--all` (@josevalim, #1989)
|
2128
|
+
- fix `pack`/`cache` with `--all` (@josevalim, [#1989](https://github.com/bundler/bundler/issues/1989))
|
1968
2129
|
- don't display warning message when `cache_all` is set
|
1969
|
-
- check for `nil` PATH (#2006)
|
1970
|
-
- Always try to keep original GEM_PATH (@drogus, #1920)
|
2130
|
+
- check for `nil` PATH ([#2006](https://github.com/bundler/bundler/issues/2006))
|
2131
|
+
- Always try to keep original GEM_PATH (@drogus, [#1920](https://github.com/bundler/bundler/issues/1920))
|
1971
2132
|
|
1972
2133
|
## 1.2.0.pre.1 (May 27, 2012)
|
1973
2134
|
|
1974
2135
|
Features:
|
1975
2136
|
|
1976
|
-
- Git gems import submodules of submodules recursively (@nwwatson, #1935)
|
2137
|
+
- Git gems import submodules of submodules recursively (@nwwatson, [#1935](https://github.com/bundler/bundler/issues/1935))
|
1977
2138
|
|
1978
2139
|
Bugfixes:
|
1979
2140
|
|
1980
2141
|
- Exit from `check` with a non-zero status when frozen with no lock
|
1981
|
-
- Use `latest_release` in Capistrano and Vlad integration (#1264)
|
2142
|
+
- Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/bundler/bundler/issues/1264))
|
1982
2143
|
- Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
|
1983
2144
|
|
1984
2145
|
Documentation:
|
1985
2146
|
|
1986
2147
|
- Add instructions for local git repos to the `config` manpage
|
1987
2148
|
- Update the `Gemfile` manpage to include ruby versions (@stevenh512)
|
1988
|
-
- When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
|
2149
|
+
- When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/bundler/bundler/issues/1776) etc.)
|
1989
2150
|
- Unknown exceptions now link to ISSUES for help instead of a new ticket
|
1990
|
-
- Correct inline help for `clean --force` (@dougbarth, #1911)
|
2151
|
+
- Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/bundler/bundler/issues/1911))
|
1991
2152
|
|
1992
2153
|
## 1.2.0.pre (May 4, 2012)
|
1993
2154
|
|
@@ -1998,28 +2159,28 @@ Features:
|
|
1998
2159
|
- It is possible to override a git repository via configuration.
|
1999
2160
|
For instance, if you have a git dependency on rack, you can force
|
2000
2161
|
it to use a local repo with `bundle config local.rack ~/path/to/rack`
|
2001
|
-
- Cache gemspec loads for performance (@dekellum, #1635)
|
2002
|
-
- add --full-index flag to `bundle update` (@fluxx, #1829)
|
2003
|
-
- add --quiet flag to `bundle update` (@nashby, #1654)
|
2004
|
-
- Add Bundler::GemHelper.gemspec (@knu, #1637)
|
2005
|
-
- Graceful handling of Gemfile syntax errors (@koraktor, #1661)
|
2162
|
+
- Cache gemspec loads for performance (@dekellum, [#1635](https://github.com/bundler/bundler/issues/1635))
|
2163
|
+
- add --full-index flag to `bundle update` (@fluxx, [#1829](https://github.com/bundler/bundler/issues/1829))
|
2164
|
+
- add --quiet flag to `bundle update` (@nashby, [#1654](https://github.com/bundler/bundler/issues/1654))
|
2165
|
+
- Add Bundler::GemHelper.gemspec (@knu, [#1637](https://github.com/bundler/bundler/issues/1637))
|
2166
|
+
- Graceful handling of Gemfile syntax errors (@koraktor, [#1661](https://github.com/bundler/bundler/issues/1661))
|
2006
2167
|
- `bundle platform` command
|
2007
2168
|
- add ruby to DSL, to specify version of ruby
|
2008
2169
|
- error out if the ruby version doesn't match
|
2009
2170
|
|
2010
2171
|
Performance:
|
2011
2172
|
|
2012
|
-
- bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
|
2173
|
+
- bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, [#1598](https://github.com/bundler/bundler/issues/1598))
|
2013
2174
|
|
2014
2175
|
Bugfixes:
|
2015
2176
|
|
2016
|
-
- Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
|
2177
|
+
- Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, [#1604](https://github.com/bundler/bundler/issues/1604))
|
2017
2178
|
- Use the same ruby to run subprocesses as is running rake (@brixen)
|
2018
2179
|
|
2019
2180
|
Documentation:
|
2020
2181
|
|
2021
|
-
- Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
|
2022
|
-
- Add docs for the --no-cache option (@fluxx, #1796)
|
2182
|
+
- Add :github documentation in DSL (@zofrex, [#1848](https://github.com/bundler/bundler/issues/1848), [#1851](https://github.com/bundler/bundler/issues/1851), [#1852](https://github.com/bundler/bundler/issues/1852))
|
2183
|
+
- Add docs for the --no-cache option (@fluxx, [#1796](https://github.com/bundler/bundler/issues/1796))
|
2023
2184
|
- Add basic documentation for bin_path and bundle_path (@radar)
|
2024
2185
|
- Add documentation for the run method in Bundler::Installer
|
2025
2186
|
|
@@ -2033,23 +2194,23 @@ Features:
|
|
2033
2194
|
|
2034
2195
|
Bugfixes:
|
2035
2196
|
|
2036
|
-
- Use `latest_release` in Capistrano and Vlad integration (#1264)
|
2197
|
+
- Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/bundler/bundler/issues/1264))
|
2037
2198
|
- Unknown exceptions now link to ISSUES for help instead of a new ticket
|
2038
|
-
- When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
|
2039
|
-
- Correct inline help for `clean --force` (@dougbarth, #1911)
|
2199
|
+
- When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/bundler/bundler/issues/1776) etc.)
|
2200
|
+
- Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/bundler/bundler/issues/1911))
|
2040
2201
|
- Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
|
2041
2202
|
|
2042
2203
|
## 1.1.3 (March 23, 2012)
|
2043
2204
|
|
2044
2205
|
Bugfixes:
|
2045
2206
|
|
2046
|
-
- escape the bundler root path (@tenderlove, #1789)
|
2207
|
+
- escape the bundler root path (@tenderlove, [#1789](https://github.com/bundler/bundler/issues/1789))
|
2047
2208
|
|
2048
2209
|
## 1.1.2 (March 20, 2012)
|
2049
2210
|
|
2050
2211
|
Bugfixes:
|
2051
2212
|
|
2052
|
-
- Fix --deployment for multiple PATH sections of the same source (#1782)
|
2213
|
+
- Fix --deployment for multiple PATH sections of the same source ([#1782](https://github.com/bundler/bundler/issues/1782))
|
2053
2214
|
|
2054
2215
|
## 1.1.1 (March 14, 2012)
|
2055
2216
|
|
@@ -2059,8 +2220,8 @@ Bugfixes:
|
|
2059
2220
|
- Stop asking users to report gem installation errors
|
2060
2221
|
- Clarify "no sources" message
|
2061
2222
|
- Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
|
2062
|
-
- URI-encode gem names for dependency API (@rohit, #1672)
|
2063
|
-
- Fix `cache` edge case in rubygems 1.3.7 (#1202)
|
2223
|
+
- URI-encode gem names for dependency API (@rohit, [#1672](https://github.com/bundler/bundler/issues/1672))
|
2224
|
+
- Fix `cache` edge case in rubygems 1.3.7 ([#1202](https://github.com/bundler/bundler/issues/1202))
|
2064
2225
|
|
2065
2226
|
Performance:
|
2066
2227
|
|
@@ -2082,10 +2243,10 @@ Performance:
|
|
2082
2243
|
|
2083
2244
|
Bugfixes:
|
2084
2245
|
|
2085
|
-
- Load gemspecs from git even when a released gem has the same version (#1609)
|
2086
|
-
- Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
|
2087
|
-
- handle gemspec development dependencies correctly (@raggi, #1639)
|
2088
|
-
- Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
|
2246
|
+
- Load gemspecs from git even when a released gem has the same version ([#1609](https://github.com/bundler/bundler/issues/1609))
|
2247
|
+
- Declare an accurate Ruby version requirement of 1.8.7 or newer ([#1619](https://github.com/bundler/bundler/issues/1619))
|
2248
|
+
- handle gemspec development dependencies correctly (@raggi, [#1639](https://github.com/bundler/bundler/issues/1639))
|
2249
|
+
- Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, [#1604](https://github.com/bundler/bundler/issues/1604))
|
2089
2250
|
|
2090
2251
|
## 1.1.rc.7 (Dec 29, 2011)
|
2091
2252
|
|
@@ -2097,7 +2258,7 @@ Bugfixes:
|
|
2097
2258
|
|
2098
2259
|
Bugfixes:
|
2099
2260
|
|
2100
|
-
- Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
|
2261
|
+
- Fix performance regression from 1.0 (@spastorino, [#1511](https://github.com/bundler/bundler/issues/1511), [#1591](https://github.com/bundler/bundler/issues/1591), [#1592](https://github.com/bundler/bundler/issues/1592))
|
2101
2262
|
- Load gems correctly when GEM_HOME is blank
|
2102
2263
|
- Refresh gems so Bundler works from inside a bundle
|
2103
2264
|
- Handle empty .bundle/config files without an error
|
@@ -2112,64 +2273,64 @@ Bugfixes:
|
|
2112
2273
|
|
2113
2274
|
Features:
|
2114
2275
|
|
2115
|
-
- `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
|
2276
|
+
- `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, [#683](https://github.com/bundler/bundler/issues/683))
|
2116
2277
|
|
2117
2278
|
Bugfixes:
|
2118
2279
|
|
2119
|
-
- Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
|
2120
|
-
- fix `bundle viz` (@hirochachacha, #1586)
|
2280
|
+
- Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, [#1588](https://github.com/bundler/bundler/issues/1588))
|
2281
|
+
- fix `bundle viz` (@hirochachacha, [#1586](https://github.com/bundler/bundler/issues/1586))
|
2121
2282
|
|
2122
2283
|
## 1.1.rc.3 (Dec 8, 2011)
|
2123
2284
|
|
2124
2285
|
Bugfixes:
|
2125
2286
|
|
2126
|
-
- fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
|
2127
|
-
- fix bundle outdated doesn't list all gems (@joelmoss, #1521)
|
2287
|
+
- fix relative_path so it checks Bundler.root is actually in the beginning of the path ([#1582](https://github.com/bundler/bundler/issues/1582))
|
2288
|
+
- fix bundle outdated doesn't list all gems (@joelmoss, [#1521](https://github.com/bundler/bundler/issues/1521))
|
2128
2289
|
|
2129
2290
|
## 1.1.rc.2 (Dec 6, 2011)
|
2130
2291
|
|
2131
2292
|
Features:
|
2132
2293
|
|
2133
|
-
- Added README.md to `newgem` (@ognevsky, #1574)
|
2134
|
-
- Added LICENSE (MIT) to newgem (@ognevsky, #1571)
|
2294
|
+
- Added README.md to `newgem` (@ognevsky, [#1574](https://github.com/bundler/bundler/issues/1574))
|
2295
|
+
- Added LICENSE (MIT) to newgem (@ognevsky, [#1571](https://github.com/bundler/bundler/issues/1571))
|
2135
2296
|
|
2136
2297
|
Bugfixes:
|
2137
2298
|
|
2138
|
-
- only auto-namespace requires for implied requires (#1531)
|
2139
|
-
- fix bundle clean output for git repos (#1473)
|
2140
|
-
- use Gem.bindir for bundle clean (#1544, #1532)
|
2141
|
-
- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
|
2142
|
-
- differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
|
2143
|
-
- `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
|
2299
|
+
- only auto-namespace requires for implied requires ([#1531](https://github.com/bundler/bundler/issues/1531))
|
2300
|
+
- fix bundle clean output for git repos ([#1473](https://github.com/bundler/bundler/issues/1473))
|
2301
|
+
- use Gem.bindir for bundle clean ([#1544](https://github.com/bundler/bundler/issues/1544), [#1532](https://github.com/bundler/bundler/issues/1532))
|
2302
|
+
- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` ([#1500](https://github.com/bundler/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
|
2303
|
+
- differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, [#1539](https://github.com/bundler/bundler/issues/1539))
|
2304
|
+
- `bundle clean` handles 7 length git hash for bundle clean ([#1490](https://github.com/bundler/bundler/issues/1490), [#1491](https://github.com/bundler/bundler/issues/1491))
|
2144
2305
|
- fix Psych loading issues
|
2145
|
-
- Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
|
2146
|
-
- do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
|
2147
|
-
- `newgem` now uses https://rubygems.org (#1562)
|
2148
|
-
- `bundle init` now uses https://rubygems.org (@jjb, #1522)
|
2306
|
+
- Search $PATH for a binary rather than shelling out to `which` (@tenderlove, [#1573](https://github.com/bundler/bundler/issues/1573))
|
2307
|
+
- do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` ([#1500](https://github.com/bundler/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
|
2308
|
+
- `newgem` now uses https://rubygems.org ([#1562](https://github.com/bundler/bundler/issues/1562))
|
2309
|
+
- `bundle init` now uses https://rubygems.org (@jjb, [#1522](https://github.com/bundler/bundler/issues/1522))
|
2149
2310
|
- `bundle install/update` does not autoclean when using --path for semver
|
2150
2311
|
|
2151
2312
|
Documentation:
|
2152
2313
|
|
2153
|
-
- added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
|
2314
|
+
- added documentation for --shebang option for `bundle install` (@lunks, [#1475](https://github.com/bundler/bundler/issues/1475), [#1558](https://github.com/bundler/bundler/issues/1558))
|
2154
2315
|
|
2155
2316
|
## 1.1.rc (Oct 3, 2011)
|
2156
2317
|
|
2157
2318
|
Features:
|
2158
2319
|
|
2159
|
-
- add `--shebang` option to bundle install (@bensie, #1467)
|
2160
|
-
- build passes on ruby 1.9.3rc1 (#1458, #1469)
|
2161
|
-
- hide basic auth credentials for custom sources (#1440, #1463)
|
2320
|
+
- add `--shebang` option to bundle install (@bensie, [#1467](https://github.com/bundler/bundler/issues/1467))
|
2321
|
+
- build passes on ruby 1.9.3rc1 ([#1458](https://github.com/bundler/bundler/issues/1458), [#1469](https://github.com/bundler/bundler/issues/1469))
|
2322
|
+
- hide basic auth credentials for custom sources ([#1440](https://github.com/bundler/bundler/issues/1440), [#1463](https://github.com/bundler/bundler/issues/1463))
|
2162
2323
|
|
2163
2324
|
Bugfixes:
|
2164
2325
|
|
2165
|
-
- fix index search result caching (#1446, #1466)
|
2166
|
-
- fix fetcher prints multiple times during install (#1445, #1462)
|
2326
|
+
- fix index search result caching ([#1446](https://github.com/bundler/bundler/issues/1446), [#1466](https://github.com/bundler/bundler/issues/1466))
|
2327
|
+
- fix fetcher prints multiple times during install ([#1445](https://github.com/bundler/bundler/issues/1445), [#1462](https://github.com/bundler/bundler/issues/1462))
|
2167
2328
|
- don't mention API errors from non-rubygems.org sources
|
2168
|
-
- fix autoclean so it doesn't remove bins that are used (#1459, #1460)
|
2329
|
+
- fix autoclean so it doesn't remove bins that are used ([#1459](https://github.com/bundler/bundler/issues/1459), [#1460](https://github.com/bundler/bundler/issues/1460))
|
2169
2330
|
|
2170
2331
|
Documentation:
|
2171
2332
|
|
2172
|
-
- add :require => [...] to the gemfile(5) manpage (@nono, #1468)
|
2333
|
+
- add :require => [...] to the gemfile(5) manpage (@nono, [#1468](https://github.com/bundler/bundler/issues/1468))
|
2173
2334
|
|
2174
2335
|
## 1.1.pre.10 (Sep 27, 2011)
|
2175
2336
|
|
@@ -2182,75 +2343,75 @@ Features:
|
|
2182
2343
|
Features:
|
2183
2344
|
|
2184
2345
|
- `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
|
2185
|
-
- `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
|
2186
|
-
- `clean` now takes a `--force` option (#1247, #1426)
|
2187
|
-
- `clean` will clean up cached git dirs in bundle clean (#1390)
|
2188
|
-
- remove deprecations from DSL (#1119)
|
2189
|
-
- autorequire tries directories for gems with dashed names (#1205)
|
2190
|
-
- adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
|
2191
|
-
- load rubygems plugins in the bundle binary (@tpope, #1364)
|
2192
|
-
- make `--standalone` respect `--path` (@cowboyd, #1361)
|
2193
|
-
|
2194
|
-
Bugfixes:
|
2195
|
-
|
2196
|
-
- Fix `clean` to handle nested gems in a git repo (#1329)
|
2197
|
-
- Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
|
2198
|
-
- Fix fatal error when unable to connect to gem source (#1269)
|
2199
|
-
- Fix `outdated` to find pre-release gems that are installed. (#1359)
|
2200
|
-
- Fix color for ui. (#1374)
|
2346
|
+
- `clean` will be automatically run after bundle install and update when using `--path` ([#1420](https://github.com/bundler/bundler/issues/1420), [#1425](https://github.com/bundler/bundler/issues/1425))
|
2347
|
+
- `clean` now takes a `--force` option ([#1247](https://github.com/bundler/bundler/issues/1247), [#1426](https://github.com/bundler/bundler/issues/1426))
|
2348
|
+
- `clean` will clean up cached git dirs in bundle clean ([#1390](https://github.com/bundler/bundler/issues/1390))
|
2349
|
+
- remove deprecations from DSL ([#1119](https://github.com/bundler/bundler/issues/1119))
|
2350
|
+
- autorequire tries directories for gems with dashed names ([#1205](https://github.com/bundler/bundler/issues/1205))
|
2351
|
+
- adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, [#1360](https://github.com/bundler/bundler/issues/1360))
|
2352
|
+
- load rubygems plugins in the bundle binary (@tpope, [#1364](https://github.com/bundler/bundler/issues/1364))
|
2353
|
+
- make `--standalone` respect `--path` (@cowboyd, [#1361](https://github.com/bundler/bundler/issues/1361))
|
2354
|
+
|
2355
|
+
Bugfixes:
|
2356
|
+
|
2357
|
+
- Fix `clean` to handle nested gems in a git repo ([#1329](https://github.com/bundler/bundler/issues/1329))
|
2358
|
+
- Fix conflict from revert of benchmark tool (@boffbowsh, [#1355](https://github.com/bundler/bundler/issues/1355))
|
2359
|
+
- Fix fatal error when unable to connect to gem source ([#1269](https://github.com/bundler/bundler/issues/1269))
|
2360
|
+
- Fix `outdated` to find pre-release gems that are installed. ([#1359](https://github.com/bundler/bundler/issues/1359))
|
2361
|
+
- Fix color for ui. ([#1374](https://github.com/bundler/bundler/issues/1374))
|
2201
2362
|
- Fix installing to user-owned system gems on OS X
|
2202
|
-
- Fix caching issue in the resolver (#1353, #1421)
|
2363
|
+
- Fix caching issue in the resolver ([#1353](https://github.com/bundler/bundler/issues/1353), [#1421](https://github.com/bundler/bundler/issues/1421))
|
2203
2364
|
- Fix :github DSL option
|
2204
2365
|
|
2205
2366
|
## 1.1.pre.8 (Aug 13, 2011)
|
2206
2367
|
|
2207
2368
|
Bugfixes:
|
2208
2369
|
|
2209
|
-
- Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
|
2210
|
-
- Fix require_sudo when Gem.bindir isn't writeable (#1352)
|
2211
|
-
- Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
|
2212
|
-
- Fix `install --binstubs` when using --path (#1332)
|
2370
|
+
- Fix `bundle check` to not print fatal error message (@cldwalker, [#1347](https://github.com/bundler/bundler/issues/1347))
|
2371
|
+
- Fix require_sudo when Gem.bindir isn't writeable ([#1352](https://github.com/bundler/bundler/issues/1352))
|
2372
|
+
- Fix not asking Gemcutter API for dependency chain of git gems in --deployment ([#1254](https://github.com/bundler/bundler/issues/1254))
|
2373
|
+
- Fix `install --binstubs` when using --path ([#1332](https://github.com/bundler/bundler/issues/1332))
|
2213
2374
|
|
2214
2375
|
## 1.1.pre.7 (Aug 8, 2011)
|
2215
2376
|
|
2216
2377
|
Bugfixes:
|
2217
2378
|
|
2218
|
-
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
|
2379
|
+
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/bundler/bundler/issues/1341))
|
2219
2380
|
- Fixed exception when sudo was needed to install gems (@spastorino)
|
2220
2381
|
|
2221
2382
|
## 1.1.pre.6 (Aug 8, 2011)
|
2222
2383
|
|
2223
2384
|
Bugfixes:
|
2224
2385
|
|
2225
|
-
- Fix cross repository dependencies (#1138)
|
2226
|
-
- Fix git dependency fetching from API endpoint (#1254)
|
2227
|
-
- Fixes for bundle outdated (@joelmoss, #1238)
|
2228
|
-
- Fix bundle standalone when using the endpoint (#1240)
|
2386
|
+
- Fix cross repository dependencies ([#1138](https://github.com/bundler/bundler/issues/1138))
|
2387
|
+
- Fix git dependency fetching from API endpoint ([#1254](https://github.com/bundler/bundler/issues/1254))
|
2388
|
+
- Fixes for bundle outdated (@joelmoss, [#1238](https://github.com/bundler/bundler/issues/1238))
|
2389
|
+
- Fix bundle standalone when using the endpoint ([#1240](https://github.com/bundler/bundler/issues/1240))
|
2229
2390
|
|
2230
2391
|
Features:
|
2231
2392
|
|
2232
|
-
- Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
|
2233
|
-
- bundle clean removes old .gem files (@cldwalker, #1293)
|
2393
|
+
- Implement `to_ary` to avoid calls to method_missing (@tenderlove, [#1274](https://github.com/bundler/bundler/issues/1274))
|
2394
|
+
- bundle clean removes old .gem files (@cldwalker, [#1293](https://github.com/bundler/bundler/issues/1293))
|
2234
2395
|
- Correcly identify missing child dependency in error message
|
2235
|
-
- Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
|
2236
|
-
- create Gemfile.lock for empty Gemfile (#1218)
|
2396
|
+
- Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, [#1120](https://github.com/bundler/bundler/issues/1120))
|
2397
|
+
- create Gemfile.lock for empty Gemfile ([#1218](https://github.com/bundler/bundler/issues/1218))
|
2237
2398
|
|
2238
2399
|
## 1.1.pre.5 (June 11, 2011)
|
2239
2400
|
|
2240
2401
|
Bugfixes:
|
2241
2402
|
|
2242
|
-
- Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
|
2243
|
-
- Fix HTTP proxy support (@leobessa, #878)
|
2403
|
+
- Fix LazySpecification on Ruby 1.9 (@dpiddy, [#1232](https://github.com/bundler/bundler/issues/1232))
|
2404
|
+
- Fix HTTP proxy support (@leobessa, [#878](https://github.com/bundler/bundler/issues/878))
|
2244
2405
|
|
2245
2406
|
Features:
|
2246
2407
|
|
2247
2408
|
- Speed up `install --deployment` by using the API endpoint
|
2248
|
-
- Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
|
2409
|
+
- Support Basic HTTP Auth for the API endpoint (@dpiddy, [#1229](https://github.com/bundler/bundler/issues/1229))
|
2249
2410
|
- Add `install --full-index` to disable the API endpoint, just in case
|
2250
2411
|
- Significantly speed up install by removing unneeded gemspec fetches
|
2251
|
-
- `outdated` command shows outdated gems (@joelmoss, #1130)
|
2252
|
-
- Print gem post install messages (@csquared, #1155)
|
2253
|
-
- Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
|
2412
|
+
- `outdated` command shows outdated gems (@joelmoss, [#1130](https://github.com/bundler/bundler/issues/1130))
|
2413
|
+
- Print gem post install messages (@csquared, [#1155](https://github.com/bundler/bundler/issues/1155))
|
2414
|
+
- Reduce memory use by removing Specification.new inside method_missing (@tenderlove, [#1222](https://github.com/bundler/bundler/issues/1222))
|
2254
2415
|
- Allow `check --path`
|
2255
2416
|
|
2256
2417
|
## 1.1.pre.4 (May 5, 2011)
|
@@ -2318,7 +2479,7 @@ Bugfixes:
|
|
2318
2479
|
|
2319
2480
|
Features:
|
2320
2481
|
|
2321
|
-
- Add platform :maglev (@timfel, #1444)
|
2482
|
+
- Add platform :maglev (@timfel, [#1444](https://github.com/bundler/bundler/issues/1444))
|
2322
2483
|
|
2323
2484
|
Bugfixes:
|
2324
2485
|
|
@@ -2329,73 +2490,73 @@ Bugfixes:
|
|
2329
2490
|
|
2330
2491
|
Features:
|
2331
2492
|
|
2332
|
-
- Rescue interrupts to `bundle` while loading bundler.rb (#1395)
|
2333
|
-
- Allow clearing without groups by passing `--without ''` (#1259)
|
2493
|
+
- Rescue interrupts to `bundle` while loading bundler.rb ([#1395](https://github.com/bundler/bundler/issues/1395))
|
2494
|
+
- Allow clearing without groups by passing `--without ''` ([#1259](https://github.com/bundler/bundler/issues/1259))
|
2334
2495
|
|
2335
2496
|
Bugfixes:
|
2336
2497
|
|
2337
|
-
- Manually sort requirements in the lockfile (#1375)
|
2498
|
+
- Manually sort requirements in the lockfile ([#1375](https://github.com/bundler/bundler/issues/1375))
|
2338
2499
|
- Remove several warnings generated by ruby -w (@stephencelis)
|
2339
|
-
- Handle trailing slashes on names passed to `gem` (#1372)
|
2340
|
-
- Name modules for gems like 'test-foo_bar' correctly (#1303)
|
2341
|
-
- Don't require Psych if Syck is already loaded (#1239)
|
2500
|
+
- Handle trailing slashes on names passed to `gem` ([#1372](https://github.com/bundler/bundler/issues/1372))
|
2501
|
+
- Name modules for gems like 'test-foo_bar' correctly ([#1303](https://github.com/bundler/bundler/issues/1303))
|
2502
|
+
- Don't require Psych if Syck is already loaded ([#1239](https://github.com/bundler/bundler/issues/1239))
|
2342
2503
|
|
2343
2504
|
## 1.0.19.rc (September 13, 2011)
|
2344
2505
|
|
2345
2506
|
Features:
|
2346
2507
|
|
2347
2508
|
- Compatibility with Rubygems 1.8.10 installer changes
|
2348
|
-
- Report gem installation failures clearly (@rwilcox, #1380)
|
2509
|
+
- Report gem installation failures clearly (@rwilcox, [#1380](https://github.com/bundler/bundler/issues/1380))
|
2349
2510
|
- Useful error for cap and vlad on first deploy (@nexmat, @kirs)
|
2350
2511
|
|
2351
2512
|
Bugfixes:
|
2352
2513
|
|
2353
2514
|
- `exec` now works when the command contains 'exec'
|
2354
|
-
- Only touch lock after changes on Windows (@robertwahler, #1358)
|
2355
|
-
- Keep load paths when #setup is called multiple times (@radsaq, #1379)
|
2515
|
+
- Only touch lock after changes on Windows (@robertwahler, [#1358](https://github.com/bundler/bundler/issues/1358))
|
2516
|
+
- Keep load paths when #setup is called multiple times (@radsaq, [#1379](https://github.com/bundler/bundler/issues/1379))
|
2356
2517
|
|
2357
2518
|
## 1.0.18 (August 16, 2011)
|
2358
2519
|
|
2359
2520
|
Bugfixes:
|
2360
2521
|
|
2361
2522
|
- Fix typo in DEBUG_RESOLVER (@geemus)
|
2362
|
-
- Fixes rake 0.9.x warning (@mtylty, #1333)
|
2523
|
+
- Fixes rake 0.9.x warning (@mtylty, [#1333](https://github.com/bundler/bundler/issues/1333))
|
2363
2524
|
- Fix `bundle cache` again for rubygems 1.3.x
|
2364
2525
|
|
2365
2526
|
Features:
|
2366
2527
|
|
2367
|
-
- Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
|
2368
|
-
- Support hidden gemspec (@trans, @cldwalker, #827)
|
2369
|
-
- Make fetch_specs faster (@zeha, #1294)
|
2370
|
-
- Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
|
2528
|
+
- Run the bundle install earlier in a Capistrano deployment (@cgriego, [#1300](https://github.com/bundler/bundler/issues/1300))
|
2529
|
+
- Support hidden gemspec (@trans, @cldwalker, [#827](https://github.com/bundler/bundler/issues/827))
|
2530
|
+
- Make fetch_specs faster (@zeha, [#1294](https://github.com/bundler/bundler/issues/1294))
|
2531
|
+
- Allow overriding development deps loaded by #gemspec (@lgierth, [#1245](https://github.com/bundler/bundler/issues/1245))
|
2371
2532
|
|
2372
2533
|
## 1.0.17 (August 8, 2011)
|
2373
2534
|
|
2374
2535
|
Bugfixes:
|
2375
2536
|
|
2376
|
-
- Fix rake issues with rubygems 1.3.x (#1342)
|
2377
|
-
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
|
2537
|
+
- Fix rake issues with rubygems 1.3.x ([#1342](https://github.com/bundler/bundler/issues/1342))
|
2538
|
+
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/bundler/bundler/issues/1341))
|
2378
2539
|
|
2379
2540
|
## 1.0.16 (August 8, 2011)
|
2380
2541
|
|
2381
2542
|
Features:
|
2382
2543
|
|
2383
|
-
- Performance fix for MRI 1.9 (@efficientcloud, #1288)
|
2544
|
+
- Performance fix for MRI 1.9 (@efficientcloud, [#1288](https://github.com/bundler/bundler/issues/1288))
|
2384
2545
|
- Shortcuts (like `bundle i`) for all commands (@amatsuda)
|
2385
2546
|
- Correcly identify missing child dependency in error message
|
2386
2547
|
|
2387
2548
|
Bugfixes:
|
2388
2549
|
|
2389
|
-
- Allow Windows network share paths with forward slashes (@mtscout6, #1253)
|
2390
|
-
- Check for rubygems.org credentials so `rake release` doesn't hang (#980)
|
2391
|
-
- Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
|
2392
|
-
- Fix `bundle install --without` on kiji (@tmm1, #1287)
|
2393
|
-
- Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
|
2550
|
+
- Allow Windows network share paths with forward slashes (@mtscout6, [#1253](https://github.com/bundler/bundler/issues/1253))
|
2551
|
+
- Check for rubygems.org credentials so `rake release` doesn't hang ([#980](https://github.com/bundler/bundler/issues/980))
|
2552
|
+
- Find cached prerelease gems on rubygems 1.3.x (@dburt, [#1202](https://github.com/bundler/bundler/issues/1202))
|
2553
|
+
- Fix `bundle install --without` on kiji (@tmm1, [#1287](https://github.com/bundler/bundler/issues/1287))
|
2554
|
+
- Get rid of warning in ruby 1.9.3 (@smartinez87, [#1231](https://github.com/bundler/bundler/issues/1231))
|
2394
2555
|
|
2395
2556
|
Documentation:
|
2396
2557
|
|
2397
|
-
- Documentation for `gem ..., :require => false` (@kmayer, #1292)
|
2398
|
-
- Gems provide "executables", they are rarely also binaries (@fxn, #1242)
|
2558
|
+
- Documentation for `gem ..., :require => false` (@kmayer, [#1292](https://github.com/bundler/bundler/issues/1292))
|
2559
|
+
- Gems provide "executables", they are rarely also binaries (@fxn, [#1242](https://github.com/bundler/bundler/issues/1242))
|
2399
2560
|
|
2400
2561
|
## 1.0.15 (June 9, 2011)
|
2401
2562
|
|
@@ -2523,7 +2684,7 @@ Bugfixes:
|
|
2523
2684
|
Bugfixes:
|
2524
2685
|
|
2525
2686
|
- Fix regression in `update` that caused long/wrong results
|
2526
|
-
- Allow git gems on other platforms while installing (#579)
|
2687
|
+
- Allow git gems on other platforms while installing ([#579](https://github.com/bundler/bundler/issues/579))
|
2527
2688
|
|
2528
2689
|
Features:
|
2529
2690
|
|
@@ -2797,7 +2958,7 @@ isolation.
|
|
2797
2958
|
- Fixes an obscure bug where switching the source of a gem could fail to correctly
|
2798
2959
|
change the source of its dependencies
|
2799
2960
|
- Support multiple version dependencies in the Gemfile
|
2800
|
-
(gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
|
2961
|
+
(`gem "rails", ">= 3.0.0.beta1", "<= 3.0.0"`)
|
2801
2962
|
- Raise an exception for ambiguous uses of multiple declarations of the same gem
|
2802
2963
|
(for instance, with different versions or sources).
|
2803
2964
|
- Fix cases where the same dependency appeared several times in the Gemfile.lock
|
@@ -2855,18 +3016,18 @@ Features:
|
|
2855
3016
|
|
2856
3017
|
- cache command now prunes stale .gem files from vendor/cache
|
2857
3018
|
- init --gemspec command now generates development dependencies
|
2858
|
-
- handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
|
2859
|
-
- remove .gem files generated after installing a gem from a :path (#286)
|
2860
|
-
- improve install/lock messaging (#284)
|
3019
|
+
- handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED ([#287](https://github.com/bundler/bundler/issues/287))
|
3020
|
+
- remove .gem files generated after installing a gem from a :path ([#286](https://github.com/bundler/bundler/issues/286))
|
3021
|
+
- improve install/lock messaging ([#284](https://github.com/bundler/bundler/issues/284))
|
2861
3022
|
|
2862
3023
|
Bugfixes:
|
2863
3024
|
|
2864
|
-
- ignore cached gems that are for another platform (#288)
|
2865
|
-
- install Windows gems that have no architecture set, like rcov (#277)
|
2866
|
-
- exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
|
3025
|
+
- ignore cached gems that are for another platform ([#288](https://github.com/bundler/bundler/issues/288))
|
3026
|
+
- install Windows gems that have no architecture set, like rcov ([#277](https://github.com/bundler/bundler/issues/277))
|
3027
|
+
- exec command while locked now includes the bundler lib in $LOAD_PATH ([#293](https://github.com/bundler/bundler/issues/293))
|
2867
3028
|
- fix the `rake install` task
|
2868
|
-
- add GemspecError so it can be raised without (further) error (#292)
|
2869
|
-
- create a parent directory before cloning for git 1.5 compatibility (#285)
|
3029
|
+
- add GemspecError so it can be raised without (further) error ([#292](https://github.com/bundler/bundler/issues/292))
|
3030
|
+
- create a parent directory before cloning for git 1.5 compatibility ([#285](https://github.com/bundler/bundler/issues/285))
|
2870
3031
|
|
2871
3032
|
## 0.9.21 (April 16, 2010)
|
2872
3033
|
|
@@ -2891,14 +3052,14 @@ Bugfixes:
|
|
2891
3052
|
|
2892
3053
|
Features:
|
2893
3054
|
|
2894
|
-
- suggest `bundle install --relock` when the Gemfile has changed (#272)
|
2895
|
-
- source support for Rubygems servers without prerelease gem indexes (#262)
|
3055
|
+
- suggest `bundle install --relock` when the Gemfile has changed ([#272](https://github.com/bundler/bundler/issues/272))
|
3056
|
+
- source support for Rubygems servers without prerelease gem indexes ([#262](https://github.com/bundler/bundler/issues/262))
|
2896
3057
|
|
2897
3058
|
Bugfixes:
|
2898
3059
|
|
2899
|
-
- don't set up all groups every time Bundler.setup is called while locked (#263)
|
2900
|
-
- fix #full_gem_path for git gems while locked (#268)
|
2901
|
-
- eval gemspecs at the top level, not inside the Bundler class (#269)
|
3060
|
+
- don't set up all groups every time Bundler.setup is called while locked ([#263](https://github.com/bundler/bundler/issues/263))
|
3061
|
+
- fix #full_gem_path for git gems while locked ([#268](https://github.com/bundler/bundler/issues/268))
|
3062
|
+
- eval gemspecs at the top level, not inside the Bundler class ([#269](https://github.com/bundler/bundler/issues/269))
|
2902
3063
|
|
2903
3064
|
|
2904
3065
|
## 0.9.18 (April 8, 2010)
|
@@ -2909,7 +3070,7 @@ Features:
|
|
2909
3070
|
|
2910
3071
|
Bugfixes:
|
2911
3072
|
|
2912
|
-
- Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
|
3073
|
+
- Bundler.setup now fully disables system gems, even when unlocked ([#266](https://github.com/bundler/bundler/issues/266), [#246](https://github.com/bundler/bundler/issues/246))
|
2913
3074
|
- fixes Yard, which found plugins in Gem.source_index that it could not load
|
2914
3075
|
- makes behaviour of `Bundler.require` consistent between locked and unlocked loads
|
2915
3076
|
|
@@ -2931,7 +3092,7 @@ Features:
|
|
2931
3092
|
|
2932
3093
|
- exit gracefully on INT signal
|
2933
3094
|
- resolver output now indicates whether remote sources were checked
|
2934
|
-
- print error instead of backtrace when exec cannot find a binary (#241)
|
3095
|
+
- print error instead of backtrace when exec cannot find a binary ([#241](https://github.com/bundler/bundler/issues/241))
|
2935
3096
|
|
2936
3097
|
Bugfixes:
|
2937
3098
|
|
@@ -2940,9 +3101,9 @@ Bugfixes:
|
|
2940
3101
|
- outputs branch names other than master
|
2941
3102
|
- gets the correct sha from the checkout
|
2942
3103
|
- doesn't print sha twice if :ref is set
|
2943
|
-
- report errors from bundler/setup.rb without backtraces (#243)
|
3104
|
+
- report errors from bundler/setup.rb without backtraces ([#243](https://github.com/bundler/bundler/issues/243))
|
2944
3105
|
- fix Gem::Spec#git_version to not error on unloaded specs
|
2945
|
-
- improve deprecation, Gemfile, and command error messages (#242)
|
3106
|
+
- improve deprecation, Gemfile, and command error messages ([#242](https://github.com/bundler/bundler/issues/242))
|
2946
3107
|
|
2947
3108
|
## 0.9.15 (April 1, 2010)
|
2948
3109
|
|
@@ -2957,7 +3118,7 @@ Features:
|
|
2957
3118
|
Bugfixes:
|
2958
3119
|
|
2959
3120
|
- prep for Rubygems 1.3.7 changes
|
2960
|
-
- install command now pulls git branches correctly (#211)
|
3121
|
+
- install command now pulls git branches correctly ([#211](https://github.com/bundler/bundler/issues/211))
|
2961
3122
|
- raise errors on invalid options in the Gemfile
|
2962
3123
|
|
2963
3124
|
## 0.9.14 (March 30, 2010)
|
@@ -2999,12 +3160,12 @@ Features:
|
|
2999
3160
|
|
3000
3161
|
Bugfixes:
|
3001
3162
|
|
3002
|
-
- perform a topological sort on resolved gems (#191)
|
3003
|
-
- gems from git work even when paths or repos have spaces (#196)
|
3004
|
-
- Specification#loaded_from returns a String, like Gem::Specification (#197)
|
3163
|
+
- perform a topological sort on resolved gems ([#191](https://github.com/bundler/bundler/issues/191))
|
3164
|
+
- gems from git work even when paths or repos have spaces ([#196](https://github.com/bundler/bundler/issues/196))
|
3165
|
+
- Specification#loaded_from returns a String, like Gem::Specification ([#197](https://github.com/bundler/bundler/issues/197))
|
3005
3166
|
- specs eval from inside the gem directory, even when locked
|
3006
3167
|
- virtual gemspecs are now saved in environment.rb for use when loading
|
3007
|
-
- unify the Installer's local index and the runtime index (#204)
|
3168
|
+
- unify the Installer's local index and the runtime index ([#204](https://github.com/bundler/bundler/issues/204))
|
3008
3169
|
|
3009
3170
|
## 0.9.11 (March 9, 2010)
|
3010
3171
|
|
@@ -3012,23 +3173,23 @@ Bugfixes:
|
|
3012
3173
|
|
3013
3174
|
Features:
|
3014
3175
|
|
3015
|
-
- install command can take the path to the gemfile with --gemfile (#125)
|
3016
|
-
- unknown command line options are now rejected (#163)
|
3017
|
-
- exec command hugely sped up while locked (#177)
|
3018
|
-
- show command prints the install path if you pass it a gem name (#148)
|
3019
|
-
- open command edits an installed gem with $EDITOR (#148)
|
3020
|
-
- Gemfile allows assigning an array of groups to a gem (#114)
|
3176
|
+
- install command can take the path to the gemfile with --gemfile ([#125](https://github.com/bundler/bundler/issues/125))
|
3177
|
+
- unknown command line options are now rejected ([#163](https://github.com/bundler/bundler/issues/163))
|
3178
|
+
- exec command hugely sped up while locked ([#177](https://github.com/bundler/bundler/issues/177))
|
3179
|
+
- show command prints the install path if you pass it a gem name ([#148](https://github.com/bundler/bundler/issues/148))
|
3180
|
+
- open command edits an installed gem with $EDITOR ([#148](https://github.com/bundler/bundler/issues/148))
|
3181
|
+
- Gemfile allows assigning an array of groups to a gem ([#114](https://github.com/bundler/bundler/issues/114))
|
3021
3182
|
- Gemfile allows :tag option on :git sources
|
3022
3183
|
- improve backtraces when a gemspec is invalid
|
3023
3184
|
- improve performance by installing gems from the cache if present
|
3024
3185
|
|
3025
3186
|
Bugfixes:
|
3026
3187
|
|
3027
|
-
- normalize parameters to Bundler.require (#153)
|
3028
|
-
- check now checks installed gems rather than cached gems (#162)
|
3029
|
-
- don't update the gem index when installing after locking (#169)
|
3030
|
-
- bundle parenthesises arguments for 1.8.6 (#179)
|
3031
|
-
- gems can now be assigned to multiple groups without problems (#135)
|
3188
|
+
- normalize parameters to Bundler.require ([#153](https://github.com/bundler/bundler/issues/153))
|
3189
|
+
- check now checks installed gems rather than cached gems ([#162](https://github.com/bundler/bundler/issues/162))
|
3190
|
+
- don't update the gem index when installing after locking ([#169](https://github.com/bundler/bundler/issues/169))
|
3191
|
+
- bundle parenthesises arguments for 1.8.6 ([#179](https://github.com/bundler/bundler/issues/179))
|
3192
|
+
- gems can now be assigned to multiple groups without problems ([#135](https://github.com/bundler/bundler/issues/135))
|
3032
3193
|
- fix the warning when building extensions for a gem from git with Rubygems 1.3.6
|
3033
3194
|
- fix a Dependency.to_yaml error due to accidentally including sources and groups
|
3034
3195
|
- don't reinstall packed gems
|