aws-sdk-ebs 1.62.0 → 1.63.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: 7c69f6abdb7aed762a36a64335dc779babb1505412f810fc3fe40255b5708bbb
4
- data.tar.gz: b97bfc67c67b09def30aa683c4c1f827eba976d09a7c1e76fc720416f6583e8c
3
+ metadata.gz: 122ff209ff04018b3d8f2799a63110dffd85d9d33ee0142f73d46bbaba5654e1
4
+ data.tar.gz: d14b73be53b98b7c89003fa6c795d2bc5ba9a7c694a3fa52cf858997f035384f
5
5
  SHA512:
6
- metadata.gz: 44dfff1f27a675e772de8d744629b14bdc86b4cb0ab6156dc953abbde31bdfd2d24bdb664bd585117868018462aec9dec422fe745fcc3b63132fbc8c21ad9771
7
- data.tar.gz: fb902b8f5cb4d308ca6532158f3b05f13e9b19b68c7a35d7496d04279dd08815587238b285b22fa7002494755e130fdce11fde01a4a6089b2eb0ae0498bbb009
6
+ metadata.gz: 49179ab380058c3174319b4c2c99ea847fad799537253b04b41b23c95c03986b0da9030c1a9c75927fc17a3ac431ecce9fffa23e2702489c3d891f8e4ccb25c9
7
+ data.tar.gz: 1fc8c0b9cc2f08470260d27bb3c83c4ca6785ca93a2f44c16376f1f986d942ae1910267aca6210f3caa72d359f6705a87f83286263cc1400d4fc72a0ba4403c8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2025-08-21)
5
+ ------------------
6
+
7
+ * Feature - Remove incorrect endpoint tests
8
+
4
9
  1.62.0 (2025-08-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -1087,7 +1087,7 @@ module Aws::EBS
1087
1087
  tracer: tracer
1088
1088
  )
1089
1089
  context[:gem_name] = 'aws-sdk-ebs'
1090
- context[:gem_version] = '1.62.0'
1090
+ context[:gem_version] = '1.63.0'
1091
1091
  Seahorse::Client::Request.new(handlers, context)
1092
1092
  end
1093
1093
 
@@ -28,7 +28,7 @@ module Aws::EBS
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://ebs-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"
data/lib/aws-sdk-ebs.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::EBS
54
54
  autoload :EndpointProvider, 'aws-sdk-ebs/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-ebs/endpoints'
56
56
 
57
- GEM_VERSION = '1.62.0'
57
+ GEM_VERSION = '1.63.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-ebs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services