aws-sdk-resources 3.200.0 → 3.202.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48d1de1c101f3f2f266e9b23a22ae53ac896ab3a784805e3802271496110a02c
4
- data.tar.gz: a5cae04a6b01b8a2800cff4c6d6ee35daf1cc55ebbc0f7c62c2222c914156a9f
3
+ metadata.gz: b162a9361b4271fb8f51002150379dd48970ed59954add05c54ad517d13f5e06
4
+ data.tar.gz: 5a6b169a9f651db381cb2dd86598156e5028fb1d456351a1e0dc134be21b49b0
5
5
  SHA512:
6
- metadata.gz: 5137a1d28d703c03dc41bf6132a34125be805e72c35485db0806f9a7f66b3cfa031d549c4d6773b0923275a9f786882bb49ce02a0ea0fae827b93476bb8c703b
7
- data.tar.gz: 2c0a32639e0b2ef115d1260e88ddcc6cc7698f847e0865c3822e21e44ccd903ae985475d8b5e97441fa21d08f387f360c65bf93fee79d4bdaa27b99256e7b00b
6
+ metadata.gz: b0ad31a5d27f85bb03658672a20f9d012d753ccbe99c2b536e49ae37b626e14a08ad633c81addb56112f5b3f02b34ce6fd21a13c5829cda7ca612ce4d9afd4c8
7
+ data.tar.gz: 95d0d5ef51c72266792780bb87639b85828d78137cf6e6b31db954c1de730adfab77fe3046c9701778eb376c2836860b25be5bd01b13f97aa94447757cf394c8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,22 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.202.0 (2024-08-27)
5
+ ------------------
6
+
7
+ * Feature - Removed a dependency on the deprecated `aws-sdk-core` gem.
8
+
9
+ * Feature - Removed a dependency on the deprecated `aws-sdk-core` gem.
10
+
11
+ * Feature - Removed a dependency on the deprecated `aws-sdk-core` gem.
12
+
13
+ * Issue - Remove autoloads for service gems bundled in `aws-sdk-core` (STS, SSO, SSOOIDC).
14
+
15
+ 3.201.0 (2024-08-12)
16
+ ------------------
17
+
18
+ * Feature - Removed a dependency on the deprecated `aws-sdk-codestar` gem.
19
+
4
20
  3.200.0 (2024-08-01)
5
21
  ------------------
6
22
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.200.0
1
+ 3.202.0
data/bin/aws-v3.rb CHANGED
@@ -106,11 +106,13 @@ $LOAD_PATH.unshift(File.expand_path('../../lib', __FILE__))
106
106
  # The Aws namespace used to check autoload requires aws-sdk-resources.
107
107
  require 'aws-sdk-resources'
108
108
 
109
- # Finally load all of the gems. Core is loaded a second time because of STS.
109
+ # Finally load all of the gems.
110
+ # Don't update the load path for gems bundled in core.
111
+ core_gems = [:STS, :SSO, :SSOOIDC]
110
112
  if File.directory?(File.expand_path('../../../../build_tools', __FILE__))
111
113
  gems = []
112
114
  Aws.constants.each do |const_name|
113
- if Aws.autoload?(const_name)
115
+ if Aws.autoload?(const_name) && !core_gems.include?(const_name)
114
116
  gems << "aws-sdk-#{const_name.downcase}"
115
117
  end
116
118
  end
@@ -86,7 +86,6 @@ module Aws
86
86
  autoload :CodeGuruReviewer, 'aws-sdk-codegurureviewer'
87
87
  autoload :CodeGuruSecurity, 'aws-sdk-codegurusecurity'
88
88
  autoload :CodePipeline, 'aws-sdk-codepipeline'
89
- autoload :CodeStar, 'aws-sdk-codestar'
90
89
  autoload :CodeStarNotifications, 'aws-sdk-codestarnotifications'
91
90
  autoload :CodeStarconnections, 'aws-sdk-codestarconnections'
92
91
  autoload :CognitoIdentity, 'aws-sdk-cognitoidentity'
@@ -333,10 +332,7 @@ module Aws
333
332
  autoload :SSMContacts, 'aws-sdk-ssmcontacts'
334
333
  autoload :SSMIncidents, 'aws-sdk-ssmincidents'
335
334
  autoload :SSMQuickSetup, 'aws-sdk-ssmquicksetup'
336
- autoload :SSO, 'aws-sdk-core'
337
335
  autoload :SSOAdmin, 'aws-sdk-ssoadmin'
338
- autoload :SSOOIDC, 'aws-sdk-core'
339
- autoload :STS, 'aws-sdk-core'
340
336
  autoload :SWF, 'aws-sdk-swf'
341
337
  autoload :SageMaker, 'aws-sdk-sagemaker'
342
338
  autoload :SageMakerFeatureStoreRuntime, 'aws-sdk-sagemakerfeaturestoreruntime'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-resources
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.200.0
4
+ version: 3.202.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: 2024-08-01 00:00:00.000000000 Z
11
+ date: 2024-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-acm
@@ -1144,20 +1144,6 @@ dependencies:
1144
1144
  - - "~>"
1145
1145
  - !ruby/object:Gem::Version
1146
1146
  version: '1'
1147
- - !ruby/object:Gem::Dependency
1148
- name: aws-sdk-codestar
1149
- requirement: !ruby/object:Gem::Requirement
1150
- requirements:
1151
- - - "~>"
1152
- - !ruby/object:Gem::Version
1153
- version: '1'
1154
- type: :runtime
1155
- prerelease: false
1156
- version_requirements: !ruby/object:Gem::Requirement
1157
- requirements:
1158
- - - "~>"
1159
- - !ruby/object:Gem::Version
1160
- version: '1'
1161
1147
  - !ruby/object:Gem::Dependency
1162
1148
  name: aws-sdk-codestarnotifications
1163
1149
  requirement: !ruby/object:Gem::Requirement