aws-sdk-resources 3.201.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: a319f9afe8cddaa6bc1e9f2994b24b35c1660a6681cbbc12a92c90a9628c38ce
4
- data.tar.gz: 801fdf9094d2d274121aab54b573bf3036c887e00577480a134899e23beca346
3
+ metadata.gz: b162a9361b4271fb8f51002150379dd48970ed59954add05c54ad517d13f5e06
4
+ data.tar.gz: 5a6b169a9f651db381cb2dd86598156e5028fb1d456351a1e0dc134be21b49b0
5
5
  SHA512:
6
- metadata.gz: 3de5173d31c5d73f3dd315056768620203a7907094585b6cee7f967c537ea8667398d2af2b54b7ba0b228cc8ac425c28e7f459c10a8c6305568291e7d2187618
7
- data.tar.gz: f4915791eda6e9ff195a6f9c97d811bb0d52f51bb5d1e523421c356dc07f9e360a6b490a46a0e24030afdc05c975573098f353c79e2a985c052e9bf1ba40c4fa
6
+ metadata.gz: b0ad31a5d27f85bb03658672a20f9d012d753ccbe99c2b536e49ae37b626e14a08ad633c81addb56112f5b3f02b34ce6fd21a13c5829cda7ca612ce4d9afd4c8
7
+ data.tar.gz: 95d0d5ef51c72266792780bb87639b85828d78137cf6e6b31db954c1de730adfab77fe3046c9701778eb376c2836860b25be5bd01b13f97aa94447757cf394c8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
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
+
4
15
  3.201.0 (2024-08-12)
5
16
  ------------------
6
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.201.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
@@ -332,10 +332,7 @@ module Aws
332
332
  autoload :SSMContacts, 'aws-sdk-ssmcontacts'
333
333
  autoload :SSMIncidents, 'aws-sdk-ssmincidents'
334
334
  autoload :SSMQuickSetup, 'aws-sdk-ssmquicksetup'
335
- autoload :SSO, 'aws-sdk-core'
336
335
  autoload :SSOAdmin, 'aws-sdk-ssoadmin'
337
- autoload :SSOOIDC, 'aws-sdk-core'
338
- autoload :STS, 'aws-sdk-core'
339
336
  autoload :SWF, 'aws-sdk-swf'
340
337
  autoload :SageMaker, 'aws-sdk-sagemaker'
341
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.201.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-12 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