Skip to content

Commit cae7827

Browse files
committed
Merge branch 'main' of github.com:awslabs/aws-sdk-kotlin into feat-auth-token-generator
2 parents 3b9b2b2 + 4c3e198 commit cae7827

File tree

17 files changed

+210
-4411
lines changed

17 files changed

+210
-4411
lines changed

.github/workflows/api-compat-verification.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: API compatibility verification
33
on:
44
pull_request:
55
types: [ opened, synchronize, reopened, labeled, unlabeled ]
6-
branches: [ main ]
6+
branches:
7+
- main
8+
- '*-main'
79

810
jobs:
911
api-compat-verification:

.github/workflows/changelog-verification.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Changelog verification
33
on:
44
pull_request:
55
types: [ opened, synchronize, reopened, labeled, unlabeled ]
6-
branches: [ main ]
6+
branches:
7+
- main
8+
- '*-main'
79

810
jobs:
911
changelog-verification:

.github/workflows/codebuild-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ on:
55
types: [ published ]
66
pull_request:
77
types: [ opened, synchronize, reopened, labeled, unlabeled ]
8-
branches: [ main ]
8+
branches:
9+
- main
10+
- '*-main'
911
workflow_dispatch:
1012
inputs:
1113
aws-sdk-kotlin-pr:

.github/workflows/dependabot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Dependabot Dependency Submission
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- main
7+
- '*-main'
68

79
permissions:
810
contents: write

.github/workflows/kat-transform.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Kat Transform
33
on:
44
pull_request:
55
types: [ opened, synchronize, reopened, labeled, unlabeled ]
6-
branches: [ main ]
6+
branches:
7+
- main
8+
- '*-main'
79

810
# Allow one instance of this workflow per pull request, and cancel older runs when new changes are pushed
911
concurrency:

.github/workflows/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ on:
55
branches:
66
- '*'
77
- '!main'
8+
- '!*.main'
89
pull_request:
9-
branches: [ main ]
10+
branches:
11+
- main
12+
- '*-main'
1013
workflow_dispatch:
1114

1215
env:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ local.properties
1717
services/*/generated-src
1818
services/*/build.gradle.kts
1919
.kotest/
20+
.kotlin/
2021
*.klib
2122
tests/codegen/smoke-tests/services/*/generated-src
22-
tests/codegen/smoke-tests/services/*/build.gradle.kts
23+
tests/codegen/smoke-tests/services/*/build.gradle.kts

CHANGELOG.md

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

3+
## [1.3.108] - 01/08/2025
4+
5+
### Features
6+
* (**route53**) Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region
7+
* (**sagemaker**) Adds support for IPv6 for SageMaker HyperPod cluster nodes.
8+
9+
### Documentation
10+
* (**rds**) Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description.
11+
12+
### Miscellaneous
13+
* Remove IoT 1-click services from SDK
14+
315
## [1.3.107] - 01/07/2025
416

517
### Features

0 commit comments

Comments
 (0)