bundler 1.14.0 → 1.14.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9fd205fc1cb2fcb2aa0ae6f4d14ee1d6ebc1a5c1
4
- data.tar.gz: 56d68ae2bd26d45a34181835181595f44b043746
3
+ metadata.gz: 0a2f2fe939ed0384b141862cc12d83951b736cbf
4
+ data.tar.gz: dbecc9fbf2be0e82b375c1a01557118f8614e3f8
5
5
  SHA512:
6
- metadata.gz: 0572fe44979b1cf17f839a2d9985908016d8396d3b93fff5e2ed26ed47ee4205f81a1b82137aff6362f8f396a66868c605ee4e392c15eb5665b12059eb264892
7
- data.tar.gz: 57682341e70a82c295e421412cada7890cf4fb54b8ae218c5f999062574e833e43665c79adde8846d5540fb3ccf2e6c2784058a2ef24f2a9b0d2d84f891e961d
6
+ metadata.gz: 7aa823d4059a45cbaadbda9ea1a6b8f3f4959e4fea2458c7815a9516556189ba233a5fa4b9af988f2a0e97a8cdc4cfa95f253b9d02f45ec9dd6e4aba6c71af7d
7
+ data.tar.gz: 32f88271adbd25309c95404379e8a098a91e80fd7c4c06287d19abf7483a96c4f95a75d821c9814933b1681155b0f595e321693d033f094d4c841fe6b7ede141
@@ -1,3 +1,9 @@
1
+ ## 1.14.1 (2017-01-21)
2
+
3
+ Bugfixes:
4
+
5
+ - work around a ruby 2.2.2 bug that caused a stack consistency error during installation (#5342, @segiddins)
6
+
1
7
  ## 1.14.0 (2017-01-20)
2
8
 
3
9
  Bugfixes:
@@ -10,6 +10,7 @@ module Bundler
10
10
  allow_offline_install
11
11
  auto_install
12
12
  cache_all
13
+ cache_all_platforms
13
14
  disable_checksum_validation
14
15
  disable_exec_load
15
16
  disable_local_branch_check
@@ -102,8 +102,10 @@ module Bundler
102
102
  # end
103
103
  #
104
104
  # @see {Bundler::PermissionError}
105
- def filesystem_access(path, action = :write)
106
- yield path.dup.untaint
105
+ def filesystem_access(path, action = :write, &block)
106
+ # Use block.call instead of yield because of a bug in Ruby 2.2.2
107
+ # See https://github.com/bundler/bundler/issues/5341 for details
108
+ block.call(path.dup.untaint)
107
109
  rescue Errno::EACCES
108
110
  raise PermissionError.new(path, action)
109
111
  rescue Errno::EAGAIN
@@ -7,5 +7,5 @@ module Bundler
7
7
  # We're doing this because we might write tests that deal
8
8
  # with other versions of bundler and we are unsure how to
9
9
  # handle this better.
10
- VERSION = "1.14.0" unless defined?(::Bundler::VERSION)
10
+ VERSION = "1.14.1" unless defined?(::Bundler::VERSION)
11
11
  end
@@ -169,6 +169,56 @@ learn more about their operation in [bundle install(1)][bundle-install].
169
169
  * `disable_checksum_validation` (`BUNDLE_DISABLE_CHECKSUM_VALIDATION`):
170
170
  Allow installing gems even if they do not match the checksum provided by
171
171
  RubyGems.
172
+ * `disable_version_check` (`BUNDLE_DISABLE_VERSION_CHECK`):
173
+ Stop Bundler from checking if a newer Bundler version is available on
174
+ rubygems.org.
175
+ * `allow_offline_install` (`BUNDLE_ALLOW_OFFLINE_INSTALL`):
176
+ Allow Bundler to use cached data when installing without network access.
177
+ * `auto_install` (`BUNDLE_AUTO_INSTALL`):
178
+ Automatically run `bundle install` when gems are missing.
179
+ * `cache_all_platforms` (`BUNDLE_CACHE_ALL_PLATFORMS`):
180
+ Cache gems for all platforms.
181
+ * `cache_all` (`BUNDLE_CACHE_ALL`):
182
+ Cache all gems, including path and git gems.
183
+ * `clean` (`BUNDLE_CLEAN`):
184
+ Whether Bundler should run `bundle clean` automatically after
185
+ `bundle install`.
186
+ * `console` (`BUNDLE_CONSOLE`):
187
+ The console that `bundle console` starts. Defaults to `irb`.
188
+ * `disable_exec_load` (`BUNDLE_DISABLE_EXEC_LOAD`):
189
+ Stop Bundler from using `load` to launch an executable in-process in
190
+ `bundle exec`.
191
+ * `disable_local_branch_check` (`BUNDLE_DISABLE_LOCAL_BRANCH_CHECK`):
192
+ Allow Bundler to use a local git override without a branch specified in the
193
+ Gemfile.
194
+ * `disable_shared_gems` (`BUNDLE_DISABLE_SHARED_GEMS`):
195
+ Stop Bundler from accessing gems installed to RubyGems' normal location.
196
+ * `jobs` (`BUNDLE_JOBS`):
197
+ The number of gems Bundler can install in parallel. Defaults to 1.
198
+ * `major_deprecations` (`BUNDLE_MAJOR_DEPRECATIONS`):
199
+ Whether Bundler should print deprecation warnings for behavior that will
200
+ be changed in the next major version.
201
+ * `no_install` (`BUNDLE_NO_INSTALL`):
202
+ Whether `bundle package` should skip installing gems.
203
+ * `no_prune` (`BUNDLE_NO_PRUNE`):
204
+ Whether Bundler should leave outdated gems unpruned when caching.
205
+ * `only_update_to_newer_versions` (`BUNDLE_ONLY_UPDATE_TO_NEWER_VERSIONS`):
206
+ During `bundle update`, only resolve to newer versions of the gems in the
207
+ lockfile.
208
+ * `plugins` (`BUNDLE_PLUGINS`):
209
+ Enable Bundler's experimental plugin system.
210
+ * `shebang` (`BUNDLE_SHEBANG`):
211
+ The program name that should be invoked for generated binstubs. Defaults to
212
+ the ruby install name used to generate the binstub.
213
+ * `silence_root_warning` (`BUNDLE_SILENCE_ROOT_WARNING`):
214
+ Silence the warning Bundler prints when installing gems as root.
215
+ * `ssl_verify_mode` (`BUNDLE_SSL_VERIFY_MODE`):
216
+ The SSL verification mode Bundler uses when making HTTPS requests.
217
+ Defaults to verify peer.
218
+ * `system_bindir` (`BUNDLE_SYSTEM_BINDIR`):
219
+ The location where RubyGems installs binstubs. Defaults to `Gem.bindir`.
220
+ * `user_agent` (`BUNDLE_USER_AGENT`):
221
+ The custom user agent fragment Bundler includes in API requests.
172
222
 
173
223
  In general, you should set these settings per-application by using the applicable
174
224
  flag to the [bundle install(1)][bundle-install] or [bundle package(1)][bundle-package] command.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-01-20 00:00:00.000000000 Z
12
+ date: 2017-01-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: automatiek