bundler 2.1.3 → 2.1.4

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
  SHA256:
3
- metadata.gz: c104a85200f7e0f9ebf4a5a35093d908810cb0b76e0030860edf300f954be716
4
- data.tar.gz: 716b9b64f8d8d21e63d25efbc6e69848fa5a31c34071d5b11c39f1a662bad44b
3
+ metadata.gz: 2edfd42259767032962e9b313b884bcc25f55a592faebf2073e0a2bfd1297e3f
4
+ data.tar.gz: 2f370bb8a61d1ef5498a195cdccbb1c723c8b77fd34277f0aefeeb72b11a33c4
5
5
  SHA512:
6
- metadata.gz: 12c76645fbfa4bc83f774302398a0c3e7e140534be10c485941b8ef8b53df947fe395748e9314351ab0f267454cb0e706f3ccdc0022fa5d29174114d5c1f5dd3
7
- data.tar.gz: efcd0e041d676de9a4e0f756ec2c99d14274a983ee21c1e7840b5510bd45a6df81f52f572f3c0b74f9103f32aa5c7b3c46e4eab6c4fc1741672550956370259d
6
+ metadata.gz: b189bff64282884f2773cb48e197eb7a214cbf74021059015554983fc6b89945ce5f1ac003a3f47370191090f977d2d7e7708523bb9b452192ba9f48fab8a018
7
+ data.tar.gz: 6e09f04c2f277c5cc8ff6b67a7dcd2f78a47cdb5f16824ff1ef58ff0b179567de41e60750d7d1a91508c258fdd16092b72d50f13ab67933b71200dfcb3511445
@@ -1,3 +1,10 @@
1
+ ## 2.1.4 (January 5, 2020)
2
+
3
+ Bugfixes:
4
+
5
+ - Fix `net-http-pipeline` no longer being allowed in Gemfiles if already installed in the system due to our vendored version of `net-http-persistent` optionally requiring it [#7529](https://github.com/bundler/bundler/pull/7529)
6
+ - Fix inline gems no longer being requirable if no Gemfile is present in the directory hierarchy [#7537](https://github.com/bundler/bundler/pull/7537)
7
+
1
8
  ## 2.1.3 (January 2, 2020)
2
9
 
3
10
  Bugfixes:
@@ -4,8 +4,8 @@ module Bundler
4
4
  # Represents metadata from when the Bundler gem was built.
5
5
  module BuildMetadata
6
6
  # begin ivars
7
- @built_at = "2020-01-02".freeze
8
- @git_commit_sha = "14c5584664".freeze
7
+ @built_at = "2020-01-05".freeze
8
+ @git_commit_sha = "32a4159325".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -78,7 +78,7 @@ def gemfile(install = false, options = {}, &gemfile)
78
78
  if old_gemfile
79
79
  ENV["BUNDLE_GEMFILE"] = old_gemfile
80
80
  else
81
- ENV.delete("BUNDLE_GEMFILE")
81
+ ENV["BUNDLE_GEMFILE"] = ""
82
82
  end
83
83
  end
84
84
  end
@@ -3,11 +3,6 @@ require_relative '../../../../uri/lib/uri'
3
3
  require 'cgi' # for escaping
4
4
  require_relative '../../../../connection_pool/lib/connection_pool'
5
5
 
6
- begin
7
- require 'net/http/pipeline'
8
- rescue LoadError
9
- end
10
-
11
6
  autoload :OpenSSL, 'openssl'
12
7
 
13
8
  ##
@@ -773,23 +768,6 @@ class Bundler::Persistent::Net::HTTP::Persistent
773
768
  (uri =~ /^https?:/) ? uri : "http://#{uri}"
774
769
  end
775
770
 
776
- ##
777
- # Pipelines +requests+ to the HTTP server at +uri+ yielding responses if a
778
- # block is given. Returns all responses received.
779
- #
780
- # See
781
- # Net::HTTP::Pipeline[http://docs.seattlerb.org/net-http-pipeline/Net/HTTP/Pipeline.html]
782
- # for further details.
783
- #
784
- # Only if <tt>net-http-pipeline</tt> was required before
785
- # <tt>net-http-persistent</tt> #pipeline will be present.
786
-
787
- def pipeline uri, requests, &block # :yields: responses
788
- connection_for uri do |connection|
789
- connection.http.pipeline requests, &block
790
- end
791
- end
792
-
793
771
  ##
794
772
  # Sets this client's SSL private key
795
773
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.1.3".freeze
4
+ VERSION = "2.1.4".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
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: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -22,7 +22,7 @@ authors:
22
22
  autorequire:
23
23
  bindir: exe
24
24
  cert_chain: []
25
- date: 2020-01-02 00:00:00.000000000 Z
25
+ date: 2020-01-05 00:00:00.000000000 Z
26
26
  dependencies: []
27
27
  description: Bundler manages an application's dependencies through its entire life,
28
28
  across many machines, systematically and repeatably