Skip to content

Commit 28d4008

Browse files
authored
chore: 0.4.0 release (#302)
1 parent 9e015c7 commit 28d4008

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## [0.4.0-alpha] - 08/26/2021
4+
5+
**WARNING: Alpha releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!**
6+
7+
### Services new in this release
8+
9+
* ec2
10+
* location
11+
* marketplacecommerceanalytics
12+
13+
### New features
14+
15+
* Support for presigning requests (smithy-kotlin#435)
16+
* Detect aws region from system properties (aws-sdk-kotlin#202)
17+
* EC2 Query Protocol (aws-sdk-kotlin#230)
18+
* Provide opt-in wire logging (smithy-kotlin#425)
19+
* Support profile credentials provider (smithy-kotlin#302)
20+
21+
### Fixes
22+
23+
* s3.deleteObjects causes an exception (aws-sdk-kotlin#125)
24+
* Streaming request BodyStream never read (aws-sdk-kotlin#282)
25+
* location service references traits not in sdk classpath (aws-sdk-kotlin#286)
26+
* Ignore unboxed types for subset of services (aws-sdk-kotlin#261)
27+
* Service operations specifying no auth should not sign requests with sigv4 (aws-sdk-kotlin#263)
28+
* Create S3 object with Unicode name fails with signature mismatch (aws-sdk-kotlin#200)
29+
* Codegen errors in marketplacecommerceanalytics (aws-sdk-kotlin#214)
30+
* Escape model-extra files for Windows (aws-sdk-kotlin#191)
31+
* Support Glacier APIVersion Header (smithy-kotlin#165)
32+
* Support APIGateway Accept Header (smithy-kotlin#157)
33+
* Add support for awsQueryError trait (smithy-kotlin#375)
34+
* S3 HeadObject errors require customization (aws-sdk-kotlin#152)
35+
* S3 custom treatment of GetBucketLocation response (aws-sdk-kotlin#194)
36+
337
## [0.3.0-M2] - 06/18/2021
438

539
**WARNING: Beta releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!**

examples/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
allprojects {
66
group = "aws.sdk.kotlin.example"
7-
version = "0.4.0-SNAPSHOT"
7+
version = "0.4.0-alpha"
88

99
repositories {
1010
mavenLocal()

examples/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

22
# AWS SDK
3-
awsSdkKotlinVersion=0.4.0-SNAPSHOT
3+
awsSdkKotlinVersion=0.4.0-alpha

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ kotlin.native.ignoreDisabledTargets=true
77
org.gradle.jvmargs=-Xmx6g -XX:MaxPermSize=6g -XX:MaxMetaspaceSize=1G
88

99
# sdk
10-
sdkVersion=0.4.0-SNAPSHOT
10+
sdkVersion=0.4.0-alpha
1111

1212
# codegen
1313
smithyVersion=1.9.1
1414
smithyGradleVersion=0.5.3
1515
# smithy-kotlin codegen and runtime are versioned together
16-
smithyKotlinVersion=0.4.0-SNAPSHOT
16+
smithyKotlinVersion=0.4.0-alpha
1717

1818
# kotlin
1919
kotlinVersion=1.5.20
@@ -27,7 +27,7 @@ coroutinesVersion=1.5.0
2727
atomicFuVersion=0.16.1
2828

2929
# crt
30-
crtKotlinVersion=0.4.0-SNAPSHOT
30+
crtKotlinVersion=0.4.0-alpha
3131

3232
# testing/utility
3333
junitVersion=5.6.2

0 commit comments

Comments
 (0)