Skip to content

Commit

Permalink
Merge pull request #2943 from aws/staging/c921135c-abdf-4c1d-a424-093…
Browse files Browse the repository at this point in the history
…85999c7f1

Pull request: release <- staging/c921135c-abdf-4c1d-a424-09385999c7f1
  • Loading branch information
aws-sdk-java-automation authored Apr 3, 2024
2 parents bc55d3b + a34ac11 commit d562d5b
Show file tree
Hide file tree
Showing 531 changed files with 2,852 additions and 825 deletions.
72 changes: 72 additions & 0 deletions .changes/2.25.24.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"version": "2.25.24",
"date": "2024-04-03",
"entries": [
{
"type": "feature",
"category": "AWS Clean Rooms ML",
"contributor": "",
"description": "The release includes a public SDK for AWS Clean Rooms ML APIs, making them globally available to developers worldwide."
},
{
"type": "feature",
"category": "AWS CloudFormation",
"contributor": "",
"description": "This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template"
},
{
"type": "feature",
"category": "AWS Elemental MediaLive",
"contributor": "",
"description": "Cmaf Ingest outputs are now supported in Media Live"
},
{
"type": "feature",
"category": "AWS Ground Station",
"contributor": "",
"description": "This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses."
},
{
"type": "feature",
"category": "AWS Health Imaging",
"contributor": "",
"description": "SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response"
},
{
"type": "feature",
"category": "AWS Lambda",
"contributor": "",
"description": "Add Ruby 3.3 (ruby3.3) support to AWS Lambda"
},
{
"type": "feature",
"category": "AWS SDK for Java v2",
"contributor": "",
"description": "Records identity provider names in a resolved identity and adds this information to the user agent string"
},
{
"type": "feature",
"category": "AWS Transfer Family",
"contributor": "",
"description": "Add ability to specify Security Policies for SFTP Connectors"
},
{
"type": "feature",
"category": "Amazon DataZone",
"contributor": "",
"description": "This release supports the feature of dataQuality to enrich asset with dataQualityResult in Amazon DataZone."
},
{
"type": "feature",
"category": "Amazon DocumentDB with MongoDB compatibility",
"contributor": "",
"description": "This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster."
},
{
"type": "feature",
"category": "AWS SDK for Java v2",
"contributor": "",
"description": "Updated endpoint and partition metadata."
}
]
}
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,46 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
# __2.25.24__ __2024-04-03__
## __AWS Clean Rooms ML__
- ### Features
- The release includes a public SDK for AWS Clean Rooms ML APIs, making them globally available to developers worldwide.

## __AWS CloudFormation__
- ### Features
- This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template

## __AWS Elemental MediaLive__
- ### Features
- Cmaf Ingest outputs are now supported in Media Live

## __AWS Ground Station__
- ### Features
- This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses.

## __AWS Health Imaging__
- ### Features
- SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response

## __AWS Lambda__
- ### Features
- Add Ruby 3.3 (ruby3.3) support to AWS Lambda

## __AWS SDK for Java v2__
- ### Features
- Records identity provider names in a resolved identity and adds this information to the user agent string
- Updated endpoint and partition metadata.

## __AWS Transfer Family__
- ### Features
- Add ability to specify Security Policies for SFTP Connectors

## __Amazon DataZone__
- ### Features
- This release supports the feature of dataQuality to enrich asset with dataQualityResult in Amazon DataZone.

## __Amazon DocumentDB with MongoDB compatibility__
- ### Features
- This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster.

# __2.25.23__ __2024-04-02__
## __AWS Glue__
- ### Features
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To automatically manage module versions (currently all modules have the same ver
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>ec2</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</dependency>
```

Expand All @@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion archetypes/archetype-app-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>archetypes</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion archetypes/archetype-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>archetypes</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>archetype-lambda</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion archetypes/archetype-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>archetypes</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion archetypes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>aws-sdk-java-pom</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>archetypes</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion aws-sdk-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>aws-sdk-java</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bom-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>aws-sdk-java-pom</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bom</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,11 @@
<Bug pattern="NP_BOOLEAN_RETURN_NULL"/>
</Match>

<Match>
<Class name="software.amazon.awssdk.auth.credentials.AwsSessionCredentials$Builder"/>
<Bug pattern="BAD_TO_BUILDER"/>
</Match>

<!-- New flags as of spotbogs 4.7.3.5 -->
<!-- TODO: Fix or explicitly exclude each occurrence -->
<Match>
Expand Down
2 changes: 1 addition & 1 deletion bundle-logging-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<artifactId>bundle-logging-bridge</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion bundle-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<artifactId>bundle-sdk</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<artifactId>bundle</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion codegen-lite-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>codegen-lite-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion codegen-lite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<artifactId>codegen-lite</artifactId>
<name>AWS Java SDK :: Code Generator Lite</name>
Expand Down
2 changes: 1 addition & 1 deletion codegen-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>codegen-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<artifactId>codegen</artifactId>
<name>AWS Java SDK :: Code Generator</name>
Expand Down
2 changes: 1 addition & 1 deletion core/annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>core</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion core/arns/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>core</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion core/auth-crt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>core</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>

<artifactId>auth-crt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>core</artifactId>
<version>2.25.23</version>
<version>2.25.24</version>
</parent>

<artifactId>auth</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
@SdkPublicApi
public final class AnonymousCredentialsProvider implements AwsCredentialsProvider {

private static final String PROVIDER_NAME = "AnonymousCredentialsProvider";

private AnonymousCredentialsProvider() {
}

Expand All @@ -34,11 +36,14 @@ public static AnonymousCredentialsProvider create() {

@Override
public AwsCredentials resolveCredentials() {
return AwsBasicCredentials.ANONYMOUS_CREDENTIALS;
return AwsBasicCredentials.builder()
.validateCredentials(false)
.providerName(PROVIDER_NAME)
.build();
}

@Override
public String toString() {
return ToString.create("AnonymousCredentialsProvider");
return ToString.create(PROVIDER_NAME);
}
}
Loading

0 comments on commit d562d5b

Please sign in to comment.