aws-sdk-s3 1.86.1 → 1.86.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a68f2fd228ee06f66a7a3ae41bbe25a731fc29ca46fb8d81e1d0b877a9334559
4
- data.tar.gz: bfedbf89d852b4c198cc8b38c834e7b9b890d2c36e9dee33e0616c53481b0986
3
+ metadata.gz: 16a9aff6822c797e42c53b0962daa98f30835ad0691b77494ee9c9a76e3566a0
4
+ data.tar.gz: 18ed704a16cfcc8e4774635cfccaea8e97e89573c9c69eb78ffc454fc5b18ff5
5
5
  SHA512:
6
- metadata.gz: 315a8ed9f27fe0e19a003d73e0888ba2ac75604267d956c8c2985e085051955bbb2dc0f14e360bb1ffe64dc8df6ef85352fe4805033962e7bcb8ee166dfd72e3
7
- data.tar.gz: b59d0841feab1bf152a31f0313b099ca41bc11efefa9aa18000b01b7abf7af6c22e901dfc48c6dd2b8f736383b7191a4f276933137752cb609729bacd75b01e9
6
+ metadata.gz: d84682fab84321b4dce73b94c27ef475a28874439e545007670ccf1c8e77d5e7324a5d3adb5d4cea4aefc149cb14409fcc62559521b0ff1b6fbfacce411bc037
7
+ data.tar.gz: d765b7b3908942f2bc270cc5aad74b08d0a300cb6cff6b1cd7043ef56c838f882ec0ab10eef5e2ef1e127432075b1fb13f9be2fe2a95feb550c3144ba9f52b76
@@ -69,6 +69,6 @@ require_relative 'aws-sdk-s3/event_streams'
69
69
  # @!group service
70
70
  module Aws::S3
71
71
 
72
- GEM_VERSION = '1.86.1'
72
+ GEM_VERSION = '1.86.2'
73
73
 
74
74
  end
@@ -13566,7 +13566,7 @@ module Aws::S3
13566
13566
  params: params,
13567
13567
  config: config)
13568
13568
  context[:gem_name] = 'aws-sdk-s3'
13569
- context[:gem_version] = '1.86.1'
13569
+ context[:gem_version] = '1.86.2'
13570
13570
  Seahorse::Client::Request.new(handlers, context)
13571
13571
  end
13572
13572
 
@@ -4,7 +4,6 @@ require 'set'
4
4
  require 'time'
5
5
  require 'openssl'
6
6
  require 'cgi'
7
- require 'webrick/httputils'
8
7
  require 'aws-sdk-core/query'
9
8
 
10
9
  module Aws
@@ -157,33 +156,24 @@ module Aws
157
156
  end
158
157
 
159
158
  def uri_escape(s)
160
-
161
159
  #URI.escape(s)
162
160
 
163
- # URI.escape is deprecated, replacing it with escape from webrick
164
- # to squelch the massive number of warnings generated from Ruby.
165
- # The following script was used to determine the differences
166
- # between the various escape methods available. The webrick
167
- # escape only had two differences and it is available in the
168
- # standard lib.
169
- #
170
- # (0..255).each {|c|
171
- # s = [c].pack("C")
172
- # e = [
173
- # CGI.escape(s),
174
- # ERB::Util.url_encode(s),
175
- # URI.encode_www_form_component(s),
176
- # WEBrick::HTTPUtils.escape_form(s),
177
- # WEBrick::HTTPUtils.escape(s),
178
- # URI.escape(s),
179
- # ]
180
- # next if e.uniq.length == 1
181
- # puts("%5s %5s %5s %5s %5s %5s %5s" % ([s.inspect] + e))
182
- # }
183
- #
184
- WEBrick::HTTPUtils.escape(s).gsub('%5B', '[').gsub('%5D', ']')
161
+ # (0..255).each {|c|
162
+ # s = [c].pack("C")
163
+ # e = [
164
+ # CGI.escape(s),
165
+ # ERB::Util.url_encode(s),
166
+ # URI.encode_www_form_component(s),
167
+ # WEBrick::HTTPUtils.escape_form(s),
168
+ # WEBrick::HTTPUtils.escape(s),
169
+ # URI.escape(s),
170
+ # URI::DEFAULT_PARSER.escape(s)
171
+ # ]
172
+ # next if e.uniq.length == 1
173
+ # puts("%5s %5s %5s %5s %5s %5s %5s %5s" % ([s.inspect] + e))
174
+ # }
175
+ URI::DEFAULT_PARSER.escape(s)
185
176
  end
186
-
187
177
  end
188
178
  end
189
179
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.1
4
+ version: 1.86.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-11 00:00:00.000000000 Z
11
+ date: 2020-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-kms