Skip to content

Commit

Permalink
Merge branch 'main' of github.com:awslabs/aws-sdk-kotlin into feat-rp…
Browse files Browse the repository at this point in the history
…cv2-cbor
  • Loading branch information
lauzadis committed Jul 9, 2024
2 parents 50c0264 + f0cf154 commit 6c3a02f
Show file tree
Hide file tree
Showing 15 changed files with 5,782 additions and 71 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/update-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@ on:
description: Dry runs will only attempt to merge but the result will not be pushed to the release branch
required: true
type: boolean
default: true
default: false
schedule:
- cron: "0 7 * * 1-5" # At 07:00 UTC (00:00 PST, 03:00 EST), Monday through Friday

concurrency:
group: release-manual-${{ github.ref }}
cancel-in-progress: true

env:
DRY_RUN: ${{ github.event.inputs.dry_run || 'false' }

jobs:
update-release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -89,7 +94,7 @@ jobs:
message=${input_message:-"Merging main into release"}
echo "message=$message"
git merge -m "$message" main;
if [ "${{ inputs.dry_run }}" == "true" ]; then
if [ "${{ env.DRY_RUN }}" == "true" ]; then
echo "dry run, skipping push to remote";
git log -n 10 --oneline;
else
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.2.48] - 07/08/2024

### Features
* (**codedeploy**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**databasemigrationservice**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**devicefarm**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**elasticbeanstalk**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**elasticsearchservice**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**firehose**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**gamelift**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**qapps**) This is a general availability (GA) release of Amazon Q Apps, a capability of Amazon Q Business. Q Apps leverages data sources your company has provided to enable users to build, share, and customize apps within your organization.
* (**route53resolver**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.
* (**ses**) Add v2 smoke tests and smithy smokeTests trait for SDK testing.

## [1.2.47] - 07/05/2024

### Features
Expand Down
Loading

0 comments on commit 6c3a02f

Please sign in to comment.