aws-sdk-lexmodelsv2 1.12.0 → 1.13.0

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: cd5534704acdf187c9c9cb3842830e1717e90642f83eb3ab1b4a9e48c3bfeabd
4
- data.tar.gz: 8b488e8395959d002cdfc3f8ef6fc69e4b9d0487523142790f4cc94da1645051
3
+ metadata.gz: 46d5cf8f8f0592797b5736171b11bcb50f87e205dc3290b3513719e3457cb63e
4
+ data.tar.gz: a75c70d0451708bc9ae3e4532a5def618fa3523fa1e50cff577effda131cd8e1
5
5
  SHA512:
6
- metadata.gz: 160ff6fa8a1a7e477d746a7eddc012072e48c618c8959e7a8e8d9bbeeaa6c0abe61f85aa6eb020c1e4f713df9c20bf69616d79d1abae0c311944b08567fb8a57
7
- data.tar.gz: cb33e8a7b8f33b273c7e5ef7b9d059362f48df9267b033e8e37e067b035d99092eff9b4df46ffbf6405b12ebf3d9c63e17fc893c704b0fa8f26f8f1bf9ba0f4d
6
+ metadata.gz: 2b8469aede3abe4d47a1b799c073eb3fe15e925371c48508a2d34ed89ad7ad9014ef439dd04b62aed80de4883f5d7391ebef8b769ba4961315df0756deaa7851
7
+ data.tar.gz: 799d261c7fc0778d060cbd623b5fbaf2200452a6963ee8a0bfe1f904a4323b054a5d0aa7a05db53fda252a521ec27cfe73a40b4a2773b6fd54107263fbd0799b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2021-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Remove a plugin that sets the `Content-Type` header and instead depend on a new version of `aws-sdk-core` that does.
10
+
4
11
  1.12.0 (2021-10-08)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -29,7 +29,6 @@ require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
- require 'aws-sdk-lexmodelsv2/plugins/content_type.rb'
33
32
 
34
33
  Aws::Plugins::GlobalConfiguration.add_identifier(:lexmodelsv2)
35
34
 
@@ -76,7 +75,6 @@ module Aws::LexModelsV2
76
75
  add_plugin(Aws::Plugins::HttpChecksum)
77
76
  add_plugin(Aws::Plugins::SignatureV4)
78
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
79
- add_plugin(Aws::LexModelsV2::Plugins::ContentType)
80
78
 
81
79
  # @overload initialize(options)
82
80
  # @param [Hash] options
@@ -6774,7 +6772,7 @@ module Aws::LexModelsV2
6774
6772
  params: params,
6775
6773
  config: config)
6776
6774
  context[:gem_name] = 'aws-sdk-lexmodelsv2'
6777
- context[:gem_version] = '1.12.0'
6775
+ context[:gem_version] = '1.13.0'
6778
6776
  Seahorse::Client::Request.new(handlers, context)
6779
6777
  end
6780
6778
 
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-lexmodelsv2/customizations'
49
49
  # @!group service
50
50
  module Aws::LexModelsV2
51
51
 
52
- GEM_VERSION = '1.12.0'
52
+ GEM_VERSION = '1.13.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lexmodelsv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
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-10-08 00:00:00.000000000 Z
11
+ date: 2021-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.120.0
22
+ version: 3.121.2
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.120.0
32
+ version: 3.121.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -60,7 +60,6 @@ files:
60
60
  - lib/aws-sdk-lexmodelsv2/client_api.rb
61
61
  - lib/aws-sdk-lexmodelsv2/customizations.rb
62
62
  - lib/aws-sdk-lexmodelsv2/errors.rb
63
- - lib/aws-sdk-lexmodelsv2/plugins/content_type.rb
64
63
  - lib/aws-sdk-lexmodelsv2/resource.rb
65
64
  - lib/aws-sdk-lexmodelsv2/types.rb
66
65
  - lib/aws-sdk-lexmodelsv2/waiters.rb
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Aws
4
- module LexModelsV2
5
- module Plugins
6
- class ContentType < Seahorse::Client::Plugin
7
-
8
- def add_handlers(handlers, _config)
9
- handlers.add(Handler)
10
- end
11
-
12
- class Handler < Seahorse::Client::Handler
13
- def call(context)
14
- # Some operations break when given an empty content-type header.
15
- # The SDK adds this blank content-type header
16
- # since Net::HTTP provides a default that can break services.
17
- # We're setting one here even though it's not used or necessary.
18
- context.http_request.headers['content-type'] = 'application/x-amz-json-1.1'
19
- @handler.call(context)
20
- end
21
- end
22
- end
23
- end
24
- end
25
- end