Skip to content

Commit 807ecf3

Browse files
authored
chore: release 0.5.0-alpha (#327)
1 parent ce7efea commit 807ecf3

File tree

4 files changed

+50
-24
lines changed

4 files changed

+50
-24
lines changed

CHANGELOG.md

Lines changed: 44 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [0.5.0-alpha] - 09/30/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+
### Breaking changes
8+
9+
* split auth and signing packages [#318](https://github.com/awslabs/aws-sdk-kotlin/issues/318)
10+
* Import paths changed to `aws.sdk.kotlin.runtime.auth.credentials` and `aws.sdk.kotlin.runtime.auth.signing`
11+
12+
### New features
13+
14+
* autofill Glacier accountId [#246](https://github.com/awslabs/aws-sdk-kotlin/issues/246)
15+
* support JVM system property and environment variables for profiles [#297](https://github.com/awslabs/aws-sdk-kotlin/issues/297)
16+
* expose method to sign standalone requests [#318](https://github.com/awslabs/aws-sdk-kotlin/issues/318)
17+
* AWS configuration loader and parser [#216](https://github.com/awslabs/aws-sdk-kotlin/issues/216)
18+
19+
### Fixes
20+
21+
* utilize custom endpoint ports [#310](https://github.com/awslabs/aws-sdk-kotlin/issues/310)
22+
* Replace junit imports with kotlin.test imports where possible [#321](https://github.com/awslabs/aws-sdk-kotlin/issues/321)
23+
* update readme to include latest version [#319](https://github.com/awslabs/aws-sdk-kotlin/issues/319)
24+
* sync models and endpoints [#317](https://github.com/awslabs/aws-sdk-kotlin/issues/317)
25+
* Favor kotlin-test-juint5 over kotlin-test to resolve intermittent build failures [#316](https://github.com/awslabs/aws-sdk-kotlin/issues/316)
26+
* kotlin 1.5.30, coroutine, kotest version bumps [#307](https://github.com/awslabs/aws-sdk-kotlin/issues/307)
27+
28+
329
## [0.4.0-alpha] - 08/26/2021
430

531
**WARNING: Alpha releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!**
@@ -12,27 +38,27 @@
1238

1339
### New features
1440

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)
41+
* Support for presigning requests [#435](https://github.com/awslabs/smithy-kotlin/issues/435)
42+
* Detect aws region from system properties [#202](https://github.com/awslabs/aws-sdk-kotlin/issues/202)
43+
* EC2 Query Protocol [#230](https://github.com/awslabs/aws-sdk-kotlin/issues/230)
44+
* Provide opt-in wire logging [#425](https://github.com/awslabs/smithy-kotlin/issues/425)
45+
* Support profile credentials provider [#302](https://github.com/awslabs/smithy-kotlin/issues/302)
2046

2147
### Fixes
2248

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)
49+
* s3.deleteObjects causes an exception [#125](https://github.com/awslabs/aws-sdk-kotlin/issues/125)
50+
* Streaming request BodyStream never read [#282](https://github.com/awslabs/aws-sdk-kotlin/issues/282)
51+
* location service references traits not in sdk classpath [#286](https://github.com/awslabs/aws-sdk-kotlin/issues/286)
52+
* Ignore unboxed types for subset of services [#261](https://github.com/awslabs/aws-sdk-kotlin/issues/261)
53+
* Service operations specifying no auth should not sign requests with sigv4 [#263](https://github.com/awslabs/aws-sdk-kotlin/issues/263)
54+
* Create S3 object with Unicode name fails with signature mismatch [#200](https://github.com/awslabs/aws-sdk-kotlin/issues/200)
55+
* Codegen errors in marketplacecommerceanalytics [#214](https://github.com/awslabs/aws-sdk-kotlin/issues/214)
56+
* Escape model-extra files for Windows [#191](https://github.com/awslabs/aws-sdk-kotlin/issues/191)
57+
* Support Glacier APIVersion Header [#165](https://github.com/awslabs/smithy-kotlin/issues/165)
58+
* Support APIGateway Accept Header [#157](https://github.com/awslabs/smithy-kotlin/issues/157)
59+
* Add support for awsQueryError trait [#375](https://github.com/awslabs/smithy-kotlin/issues/375)
60+
* S3 HeadObject errors require customization [#152](https://github.com/awslabs/aws-sdk-kotlin/issues/152)
61+
* S3 custom treatment of GetBucketLocation response [#194](https://github.com/awslabs/aws-sdk-kotlin/issues/194)
3662

3763
## [0.3.0-M2] - 06/18/2021
3864

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.1-SNAPSHOT"
7+
version = "0.5.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.1-SNAPSHOT
3+
awsSdkKotlinVersion=0.5.0-alpha

gradle.properties

Lines changed: 4 additions & 4 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.1-SNAPSHOT
10+
sdkVersion=0.5.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.1-SNAPSHOT
16+
smithyKotlinVersion=0.4.1-alpha
1717

1818
# kotlin
1919
kotlinVersion=1.5.30
@@ -28,7 +28,7 @@ atomicFuVersion=0.16.1
2828
kotlinxSerializationVersion=0.20.0
2929

3030
# crt
31-
crtKotlinVersion=0.4.1-SNAPSHOT
31+
crtKotlinVersion=0.4.1-alpha
3232

3333
# testing/utility
3434
junitVersion=5.6.2
@@ -38,4 +38,4 @@ jacocoVersion=0.8.7
3838
mockkVersion=1.12.0
3939

4040
# logging - JVM
41-
slf4jVersion=1.7.30
41+
slf4jVersion=1.7.30

0 commit comments

Comments
 (0)