aws-sdk-sesv2 1.95.0 → 1.96.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: 1b6ecac851ef397b35fc7580b68ef820db0776bccfbf939c255cb432ad6a5f85
4
- data.tar.gz: cf988cc0d60fc9cf2d651c5ba7f6a622fd240db547be8017b41eda9eac4acb0b
3
+ metadata.gz: 2307cd3f4e6bea3231f48fb8b310fe5828167338ea85e9c71fd5a2138e78d6ed
4
+ data.tar.gz: 6812515fd3a336d0355af57a038f91228ab0345b9e15a6729c46c4a352984cfe
5
5
  SHA512:
6
- metadata.gz: 1607f5a68133cfaedb292d70b7c26c380308258e84f6f0ecfcd664219f0b82c1558ac9f7c5bd0e89c5918341364ae34cd8728ed3d3f7fbf11ea7501819268d7c
7
- data.tar.gz: eddfd1ca919e40acc93b885ad02944e9da031d03de14ddc85cd1121e777e25f7b09e6ba45f2f4bfed52485927134e878646c1005cfddafa5c31a9704b39abc08
6
+ metadata.gz: d44120dd853a2f25078187e86705645cfd0082cdad2e5663779648f9ed84e6762da47e5dc4078c383e0a22e4c0f9edf00a5699fc2af0e1a612c800e32ade20ba
7
+ data.tar.gz: 20fb3a0cbb9bd6409152faee1a9f55fb52136e40604a5640d5cdcda77dcc0efb5fd26eb08391dfbcf0413cc0ed8da1d16075b293688dce49df3e09820b100886
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2026-03-06)
5
+ ------------------
6
+
7
+ * Feature - Adds support for longer email message header values, increasing the maximum length from 870 to 995 characters for RFC 5322 compliance.
8
+
4
9
  1.95.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.96.0
@@ -2663,6 +2663,44 @@ module Aws::SESV2
2663
2663
  #
2664
2664
  # * {Types::GetEmailAddressInsightsResponse#mailbox_validation #mailbox_validation} => Types::MailboxValidation
2665
2665
  #
2666
+ #
2667
+ # @example Example: Get Email Address Insights
2668
+ #
2669
+ # # Performs email validation against an email address.
2670
+ #
2671
+ # resp = client.get_email_address_insights({
2672
+ # email_address: "hello@example.com",
2673
+ # })
2674
+ #
2675
+ # resp.to_h outputs the following:
2676
+ # {
2677
+ # mailbox_validation: {
2678
+ # evaluations: {
2679
+ # has_valid_dns_records: {
2680
+ # confidence_verdict: "MEDIUM",
2681
+ # },
2682
+ # has_valid_syntax: {
2683
+ # confidence_verdict: "HIGH",
2684
+ # },
2685
+ # is_disposable: {
2686
+ # confidence_verdict: "LOW",
2687
+ # },
2688
+ # is_random_input: {
2689
+ # confidence_verdict: "LOW",
2690
+ # },
2691
+ # is_role_address: {
2692
+ # confidence_verdict: "LOW",
2693
+ # },
2694
+ # mailbox_exists: {
2695
+ # confidence_verdict: "MEDIUM",
2696
+ # },
2697
+ # },
2698
+ # is_valid: {
2699
+ # confidence_verdict: "HIGH",
2700
+ # },
2701
+ # },
2702
+ # }
2703
+ #
2666
2704
  # @example Request syntax with placeholder values
2667
2705
  #
2668
2706
  # resp = client.get_email_address_insights({
@@ -6219,7 +6257,7 @@ module Aws::SESV2
6219
6257
  tracer: tracer
6220
6258
  )
6221
6259
  context[:gem_name] = 'aws-sdk-sesv2'
6222
- context[:gem_version] = '1.95.0'
6260
+ context[:gem_version] = '1.96.0'
6223
6261
  Seahorse::Client::Request.new(handlers, context)
6224
6262
  end
6225
6263
 
@@ -6130,7 +6130,10 @@ module Aws::SESV2
6130
6130
  #
6131
6131
  # * Can contain any printable ASCII character.
6132
6132
  #
6133
- # * Can contain no more than 870 characters.
6133
+ # * Can contain no more than 995 characters.
6134
+ #
6135
+ # * The combined length of the header name and value must not exceed
6136
+ # 996 characters.
6134
6137
  # @return [String]
6135
6138
  #
6136
6139
  # @see http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/MessageHeader AWS API Documentation
data/lib/aws-sdk-sesv2.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::SESV2
54
54
  autoload :EndpointProvider, 'aws-sdk-sesv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-sesv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.95.0'
57
+ GEM_VERSION = '1.96.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-sesv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.95.0
4
+ version: 1.96.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services