aws-sdk-s3 1.96.0 → 1.96.1

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: 5b1326d9efe35d08da2bc1e3a669dc1d9682ba159563be2b63e2417dddfb6d49
4
- data.tar.gz: 9f59b3c440260c21d464c611d7ecc5214626c8bed29c7c4ef43c1cee3c6093ec
3
+ metadata.gz: cf563dfa58cc9e38a37fc543994cf9722995f065e9fc7aa70e03721e5e298945
4
+ data.tar.gz: ad5b910362d25d19f1f5496d4813afe0b5e7d9094be3c20f046e7a211c780a4b
5
5
  SHA512:
6
- metadata.gz: 43dc42ac70585477f4f3572ff970769a919f654dbf8561ebb0c070b0c1219e5c9ec0d754b6c942e22ecf6a636f0b379074b154ed438f402027b75e660a6b0cc4
7
- data.tar.gz: aa0415d8e278e7a06bbcef6318c965d8ccb33d2d2fa1a08b2e688b7e76699abe30421c5c900339752a850eb43c9e9bc1bbd43ac1f3e67ff2934f329a84b757a0
6
+ metadata.gz: 73b8d0b4e05d6c10baf705888948ad2ec818de471badcf46ff8a8d83ca0fbbcc440cd5fb32b2d453f79d30178f0e079ad3b115880adf92265bd508624bd81421
7
+ data.tar.gz: cb09214749258686bc08c0ec50a2be0d919037e37cdbafa7a0ce017cdeb6d002df918945d95c6cc403eac3745c1b78aca49692325899acf8ed3fa035ee1ae1a8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.1 (2021-06-10)
5
+ ------------------
6
+
7
+ * Issue - fix GetBucketLocation location_constraint XML parsing (#2536)
8
+
4
9
  1.96.0 (2021-06-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.96.0
1
+ 1.96.1
data/lib/aws-sdk-s3.rb CHANGED
@@ -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.96.0'
72
+ GEM_VERSION = '1.96.1'
73
73
 
74
74
  end
@@ -13919,7 +13919,7 @@ module Aws::S3
13919
13919
  params: params,
13920
13920
  config: config)
13921
13921
  context[:gem_name] = 'aws-sdk-s3'
13922
- context[:gem_version] = '1.96.0'
13922
+ context[:gem_version] = '1.96.1'
13923
13923
  Seahorse::Client::Request.new(handlers, context)
13924
13924
  end
13925
13925
 
@@ -11,7 +11,7 @@ module Aws
11
11
  @handler.call(context).on(200) do |response|
12
12
  response.data = S3::Types::GetBucketLocationOutput.new
13
13
  xml = context.http_response.body_contents
14
- matches = xml.match(/>(.+?)<\/LocationConstraint>/)
14
+ matches = xml.match(/<LocationConstraint.*?>(.+?)<\/LocationConstraint>/)
15
15
  response.data[:location_constraint] = matches ? matches[1] : ''
16
16
  end
17
17
  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.96.0
4
+ version: 1.96.1
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: 2021-06-03 00:00:00.000000000 Z
11
+ date: 2021-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-kms