bundler 2.1.3 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/inline.rb +1 -1
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +0 -22
- data/lib/bundler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2edfd42259767032962e9b313b884bcc25f55a592faebf2073e0a2bfd1297e3f
|
|
4
|
+
data.tar.gz: 2f370bb8a61d1ef5498a195cdccbb1c723c8b77fd34277f0aefeeb72b11a33c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b189bff64282884f2773cb48e197eb7a214cbf74021059015554983fc6b89945ce5f1ac003a3f47370191090f977d2d7e7708523bb9b452192ba9f48fab8a018
|
|
7
|
+
data.tar.gz: 6e09f04c2f277c5cc8ff6b67a7dcd2f78a47cdb5f16824ff1ef58ff0b179567de41e60750d7d1a91508c258fdd16092b72d50f13ab67933b71200dfcb3511445
|
data/CHANGELOG.md
CHANGED
|
@@ -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-
|
|
8
|
-
@git_commit_sha = "
|
|
7
|
+
@built_at = "2020-01-05".freeze
|
|
8
|
+
@git_commit_sha = "32a4159325".freeze
|
|
9
9
|
@release = true
|
|
10
10
|
# end ivars
|
|
11
11
|
|
data/lib/bundler/inline.rb
CHANGED
|
@@ -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
|
|
data/lib/bundler/version.rb
CHANGED
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.
|
|
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-
|
|
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
|