Hello community, here is the log from the commit of package rubygem-excon for openSUSE:Leap:15.2 checked in at 2020-05-18 11:00:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/rubygem-excon (Old) and /work/SRC/openSUSE:Leap:15.2/.rubygem-excon.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-excon" Mon May 18 11:00:31 2020 rev:13 rq:806143 version:0.73.0 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/rubygem-excon/rubygem-excon.changes 2020-02-21 23:50:40.264723793 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.rubygem-excon.new.2738/rubygem-excon.changes 2020-05-18 11:00:35.858785888 +0200 @@ -1,0 +2,6 @@ +Thu May 7 20:40:34 UTC 2020 - Stephan Kulow <[email protected]> + +- updated to version 0.73.0 + no changelog found + +------------------------------------------------------------------- Old: ---- excon-0.72.0.gem New: ---- excon-0.73.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-excon.spec ++++++ --- /var/tmp/diff_new_pack.1KGCUt/_old 2020-05-18 11:00:36.258786716 +0200 +++ /var/tmp/diff_new_pack.1KGCUt/_new 2020-05-18 11:00:36.262786724 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-excon -Version: 0.72.0 +Version: 0.73.0 Release: 0 %define mod_name excon %define mod_full_name %{mod_name}-%{version} ++++++ excon-0.72.0.gem -> excon-0.73.0.gem ++++++ Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/excon/error.rb new/lib/excon/error.rb --- old/lib/excon/error.rb 2020-01-27 16:45:11.000000000 +0100 +++ new/lib/excon/error.rb 2020-03-17 14:35:49.000000000 +0100 @@ -50,7 +50,17 @@ class InvalidHeaderValue < Error; end class Timeout < Error; end class ResponseParse < Error; end - class ProxyConnectionError < Error; end + + class ProxyConnectionError < Error + attr_reader :request, :response + + def initialize(msg, request = nil, response = nil) + super(msg) + @request = request + @response = response + end + end + class ProxyParse < Error; end class TooManyRedirects < Error; end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/excon/ssl_socket.rb new/lib/excon/ssl_socket.rb --- old/lib/excon/ssl_socket.rb 2020-01-27 16:45:11.000000000 +0100 +++ new/lib/excon/ssl_socket.rb 2020-03-17 14:35:49.000000000 +0100 @@ -109,7 +109,7 @@ # eat the proxy's connection response response = Excon::Response.parse(self, :expects => 200, :method => 'CONNECT') if response[:response][:status] != 200 - raise(Excon::Errors::ProxyConnectionError.new("proxy connection is not exstablished")) + raise(Excon::Errors::ProxyConnectionError.new("proxy connection could not be established", request, response)) end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/excon/version.rb new/lib/excon/version.rb --- old/lib/excon/version.rb 2020-01-27 16:45:11.000000000 +0100 +++ new/lib/excon/version.rb 2020-03-17 14:35:49.000000000 +0100 @@ -1,4 +1,4 @@ # frozen_string_literal: true module Excon - VERSION = '0.72.0' + VERSION = '0.73.0' end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2020-01-27 16:45:11.000000000 +0100 +++ new/metadata 2020-03-17 14:35:49.000000000 +0100 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: excon version: !ruby/object:Gem::Version - version: 0.72.0 + version: 0.73.0 platform: ruby authors: - dpiddy (Dan Peterson) @@ -10,7 +10,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2020-01-27 00:00:00.000000000 Z +date: 2020-03-17 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rspec
