Skip to content

Commit 0cd7883

Browse files
authored
Release Version 1.3.0 (#352)
## Description of change Releasing version 1.3.0 #### Does this contribution need a changelog entry? - [x] I have updated the CHANGELOG or README if appropriate --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the [Developer Certificate of Origin (DCO)](https://developercertificate.org/).
1 parent 54209c9 commit 0cd7883

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v1.3.0 (August 20, 2025)
2+
* Introduce max read bytes config for sequential read https://github.com/awslabs/analytics-accelerator-s3/pull/348
3+
* Add TTL to metadata store cache https://github.com/awslabs/analytics-accelerator-s3/pull/338
4+
* Update microbenchmarks to better reflect a Spark workload https://github.com/awslabs/analytics-accelerator-s3/pull/334
5+
* Add support for Java sync client https://github.com/awslabs/analytics-accelerator-s3/pull/341
6+
* Calls release() method on any failure https://github.com/awslabs/analytics-accelerator-s3/pull/337
7+
* New PhysicalIO implementation https://github.com/awslabs/analytics-accelerator-s3/pull/325
8+
* Upgrade SDK version and fix user-agent changes to avoid prepending empty string https://github.com/awslabs/analytics-accelerator-s3/pull/319
9+
* Upgrade to junit 5.13.4 https://github.com/awslabs/analytics-accelerator-s3/pull/314
10+
* Upgrade to freefair lombok version 8.14 https://github.com/awslabs/analytics-accelerator-s3/pull/313
11+
* Append AAL user agent to customer user agent https://github.com/awslabs/analytics-accelerator-s3/pull/311
12+
* Add Retries and Retry Policy https://github.com/awslabs/analytics-accelerator-s3/pull/307
13+
114
## v1.2.1 (July 07, 2025)
215

316
* fix: shading dependency on google error prone https://github.com/awslabs/analytics-accelerator-s3/pull/305

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To get started, import the library dependency from Maven into your project:
3030
<dependency>
3131
<groupId>software.amazon.s3.analyticsaccelerator</groupId>
3232
<artifactId>analyticsaccelerator-s3</artifactId>
33-
<version>1.2.1</version>
33+
<version>1.3.0</version>
3434
<scope>compile</scope>
3535
</dependency>
3636
```

input-stream/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import com.github.jk1.license.render.TextReportRenderer
1010

1111
val group = "software.amazon.s3.analyticsaccelerator"
1212
val artefact = "analyticsaccelerator-s3"
13-
val currentVersionNumber = "1.2.1"
13+
val currentVersionNumber = "1.3.0"
1414

1515
val isSnapshot = findProperty("snapshotBuild") == "true"
1616
val currentVersion = if (isSnapshot) "SNAPSHOT" else currentVersionNumber;

object-client/src/main/java/software/amazon/s3/analyticsaccelerator/request/UserAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public final class UserAgent {
2424
// Hard-coded user-agent string
2525
private static final String UA_STRING = "s3analyticsaccelerator";
2626

27-
private static final String VERSION_INFO = "1.2.1";
27+
private static final String VERSION_INFO = "1.3.0";
2828
/**
2929
* Disallowed characters in the user agent token: @see <a
3030
* href="https://tools.ietf.org/html/rfc7230#section-3.2.6">RFC 7230</a>

0 commit comments

Comments
 (0)