aws-sdk-supportapp 1.36.0 → 1.37.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: 146a5007f81a5d6030b0be943cb82689d80442350b99729a71b9d5ed2016bac8
4
- data.tar.gz: 7c79f06f24fde15171d71a1584bac0242d47ced31dc74f6c3c5924fa4a402045
3
+ metadata.gz: 6f02906c8d9b0883f4dc60c1546c0f2670e41629c2eda7e0a87e3932af877246
4
+ data.tar.gz: 72191c2e3367e25ae8b9a0db7e88653426c7576de73f923676c6cad0dc92db0f
5
5
  SHA512:
6
- metadata.gz: d27c40cfc85e1354342385949bc32d13af0ee229c60fbd62796f739f9126c575c13e9ff92de036f67588c28023ae1feae8fca68598cf55ac82dadfb70b061aa3
7
- data.tar.gz: c5782cbbb8755d10a51f65ba4be6fbcfa02157393ef82f1da8ea26002c25860adc223aee92336e0e842426b8e24fec3de11e2e203f65d3c339d945423cf0901a
6
+ metadata.gz: 70fd63d376118b9fdb8c8915fddc1a926b194fde32165c4588c119276c903df10cc027ac9225c9d8f33a7a24b46d2d18aa2bb7c326b5b51924c2ca3a72f7f098
7
+ data.tar.gz: 675c0c4bf7443fbef26626c1ded79d9bca7f4ef4873f64f7941e0fd7f220f2f1b88aa68f1791c1557d3f13a79fd9b9e1bdbc533ff915695482b5d2e463e9fa24
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2025-08-25)
5
+ ------------------
6
+
7
+ * Feature - Remove incorrect endpoint tests
8
+
4
9
  1.36.0 (2025-08-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -983,7 +983,7 @@ module Aws::SupportApp
983
983
  tracer: tracer
984
984
  )
985
985
  context[:gem_name] = 'aws-sdk-supportapp'
986
- context[:gem_version] = '1.36.0'
986
+ context[:gem_version] = '1.37.0'
987
987
  Seahorse::Client::Request.new(handlers, context)
988
988
  end
989
989
 
@@ -28,7 +28,7 @@ module Aws::SupportApp
28
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
31
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
31
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
32
  return Aws::Endpoints::Endpoint.new(url: "https://supportapp-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
33
33
  end
34
34
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -54,7 +54,7 @@ module Aws::SupportApp
54
54
  autoload :EndpointProvider, 'aws-sdk-supportapp/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-supportapp/endpoints'
56
56
 
57
- GEM_VERSION = '1.36.0'
57
+ GEM_VERSION = '1.37.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-supportapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.0
4
+ version: 1.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services