Skip to content

Commit 92c4d9f

Browse files
Commit version number update changes
1 parent e6ba79b commit 92c4d9f

File tree

19 files changed

+45
-32
lines changed

19 files changed

+45
-32
lines changed

changelogs/SDK.CHANGELOG.2025.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### 4.0.82.0 (2025-09-02 18:32 UTC)
2+
* EC2 (4.0.36.0)
3+
* MaximumEbsAttachments and AttachmentLimitType fields added to DescribeInstanceTypesResponse. G6f, Gr6f, R8i, R8i-flex and p5.4xlarge instance types added to InstanceTypes enum.
4+
* Neptune (4.0.3.0)
5+
* Removed the deprecated marker from publiclyAccessible parameter from DbInstance, CreateDbInstance and ModifyDbInstance and added relevant usage information for the parameter.
6+
* Notifications (4.0.2.0)
7+
* Added Org support for notifications: - `ListMemberAccounts` gets member accounts list, `AssociateOrganizationalUnit` links OU to notification configuration, `DisassociateOrganizationalUnit` removes OU from notification configuration, `ListOrganizationalUnits` shows OUs configured for notifications.
8+
* S3 (4.0.6.13)
9+
* Fix issue #3993. PutObjectAcl was failing when Grantee's Type member was set because the xml attribute not being written first leading to invalid xml. PutBucketAcl would also fail with the same issue if Type is set. This change writes the attributes first if they are present.
10+
* WorkMail (4.0.2.0)
11+
* Make RoleArn an optional parameter for the PutEmailMonitoringConfiguration API, and add UnsupportedOperationException to RegisterToWorkMail.
12+
113
### 4.0.81.1 (2025-08-29 21:31 UTC)
214
* S3 (4.0.6.12)
315
* Fix issue #3989. If an empty filter was specified, GetLifecycleConfiguration was failing. This fix allows an empty filter to be specified when retrieving lifecycle configurations via GetLifecycleConfiguration.

changelogs/SDK.CHANGELOG.ALL.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### 4.0.82.0 (2025-09-02 18:32 UTC)
2+
* EC2 (4.0.36.0)
3+
* MaximumEbsAttachments and AttachmentLimitType fields added to DescribeInstanceTypesResponse. G6f, Gr6f, R8i, R8i-flex and p5.4xlarge instance types added to InstanceTypes enum.
4+
* Neptune (4.0.3.0)
5+
* Removed the deprecated marker from publiclyAccessible parameter from DbInstance, CreateDbInstance and ModifyDbInstance and added relevant usage information for the parameter.
6+
* Notifications (4.0.2.0)
7+
* Added Org support for notifications: - `ListMemberAccounts` gets member accounts list, `AssociateOrganizationalUnit` links OU to notification configuration, `DisassociateOrganizationalUnit` removes OU from notification configuration, `ListOrganizationalUnits` shows OUs configured for notifications.
8+
* S3 (4.0.6.13)
9+
* Fix issue #3993. PutObjectAcl was failing when Grantee's Type member was set because the xml attribute not being written first leading to invalid xml. PutBucketAcl would also fail with the same issue if Type is set. This change writes the attributes first if they are present.
10+
* WorkMail (4.0.2.0)
11+
* Make RoleArn an optional parameter for the PutEmailMonitoringConfiguration API, and add UnsupportedOperationException to RegisterToWorkMail.
12+
113
### 4.0.81.1 (2025-08-29 21:31 UTC)
214
* S3 (4.0.6.12)
315
* Fix issue #3989. If an empty filter was specified, GetLifecycleConfiguration was failing. This fix allows an empty filter to be specified when retrieving lifecycle configurations via GetLifecycleConfiguration.

generator/.DevConfigs/ef9270cb-a2fb-454c-8276-2096a9e75b6e.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

generator/ServiceModels/_sdk-versions.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{
33
"NewServiceVersion" : "4.0.0.0",
4-
"ProductVersion" : "4.0.81.1",
4+
"ProductVersion" : "4.0.82.0",
55
"CoreVersion" : "4.0.0.26",
66
"OverrideCoreVersion" : "4.0",
77
"DefaultToPreview" : false,
@@ -154,7 +154,7 @@
154154
"InPreview" : false
155155
},
156156
"EC2" : {
157-
"Version" : "4.0.35.0",
157+
"Version" : "4.0.36.0",
158158
"AssemblyVersionOverride" : "4.0",
159159
"Dependencies" : {
160160
"Core" : "4.0.0.26"
@@ -308,7 +308,7 @@
308308
"InPreview" : false
309309
},
310310
"S3" : {
311-
"Version" : "4.0.6.12",
311+
"Version" : "4.0.6.13",
312312
"AssemblyVersionOverride" : "4.0",
313313
"Dependencies" : {
314314
"Core" : "4.0.0.26"
@@ -996,7 +996,7 @@
996996
"InPreview" : false
997997
},
998998
"WorkMail" : {
999-
"Version" : "4.0.1.1",
999+
"Version" : "4.0.2.0",
10001000
"AssemblyVersionOverride" : "4.0",
10011001
"Dependencies" : {
10021002
"Core" : "4.0.0.26"
@@ -1076,7 +1076,7 @@
10761076
"InPreview" : false
10771077
},
10781078
"Neptune" : {
1079-
"Version" : "4.0.2.1",
1079+
"Version" : "4.0.3.0",
10801080
"AssemblyVersionOverride" : "4.0",
10811081
"Dependencies" : {
10821082
"Core" : "4.0.0.26"
@@ -3124,7 +3124,7 @@
31243124
"InPreview" : false
31253125
},
31263126
"Notifications" : {
3127-
"Version" : "4.0.1.4",
3127+
"Version" : "4.0.2.0",
31283128
"AssemblyVersionOverride" : "4.0",
31293129
"Dependencies" : {
31303130
"Core" : "4.0.0.26"

sdk/code-analysis/ServiceAnalysis/EC2/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
3131
[assembly: AssemblyVersion("4.0")]
32-
[assembly: AssemblyFileVersion("4.0.35.0")]
32+
[assembly: AssemblyFileVersion("4.0.36.0")]

sdk/code-analysis/ServiceAnalysis/Neptune/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
3131
[assembly: AssemblyVersion("4.0")]
32-
[assembly: AssemblyFileVersion("4.0.2.1")]
32+
[assembly: AssemblyFileVersion("4.0.3.0")]

sdk/code-analysis/ServiceAnalysis/Notifications/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
3131
[assembly: AssemblyVersion("4.0")]
32-
[assembly: AssemblyFileVersion("4.0.1.4")]
32+
[assembly: AssemblyFileVersion("4.0.2.0")]

sdk/code-analysis/ServiceAnalysis/S3/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
3131
[assembly: AssemblyVersion("4.0")]
32-
[assembly: AssemblyFileVersion("4.0.6.12")]
32+
[assembly: AssemblyFileVersion("4.0.6.13")]

sdk/code-analysis/ServiceAnalysis/WorkMail/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
3131
[assembly: AssemblyVersion("4.0")]
32-
[assembly: AssemblyFileVersion("4.0.1.1")]
32+
[assembly: AssemblyFileVersion("4.0.2.0")]

sdk/src/Services/EC2/Generated/AmazonEC2Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace Amazon.EC2
3333
public partial class AmazonEC2Config : ClientConfig
3434
{
3535
private static readonly string UserAgentString =
36-
InternalSDKUtils.BuildUserAgentString("EC2", "4.0.35.0");
36+
InternalSDKUtils.BuildUserAgentString("EC2", "4.0.36.0");
3737

3838
private static readonly AmazonEC2EndpointResolver EndpointResolver =
3939
new AmazonEC2EndpointResolver();

0 commit comments

Comments
 (0)