From ceb9da05c930a065cc9cca6c7d13ef95c5abdbf9 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <209825114+claude[bot]@users.noreply.github.com> Date: Wed, 11 Jun 2025 09:03:59 +0000 Subject: [PATCH 1/2] feat: upgrade AWS provider to latest 6.x.x version - Updated AWS provider version constraint from ">= 4.0" to "~> 6.0" - Updated all example configurations to use new provider version - Updated documentation to reflect new provider requirements - Added CHANGELOG entry for version 1.2.0 All SES, Route53, and IAM resources remain compatible with AWS provider 6.x Co-authored-by: lycbrian --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- examples/domain-verification/versions.tf | 2 +- examples/email-verification/versions.tf | 2 +- versions.tf | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0e7c3f..cfb9512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this module will be documented in this file. +## [1.2.0] - 2025-06-11 + +### Updated + +- Upgraded AWS provider from `>= 4.0` to `~> 6.0` to use the latest 6.x.x version +- Updated all example configurations to use AWS provider `~> 6.0` +- Updated documentation to reflect new provider requirements + ## [1.1.1] - 2025-06-11 ### Updated diff --git a/README.md b/README.md index 6b221ba..b39edf6 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,13 @@ module "ses" { | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.0.0 | -| [aws](#requirement\_aws) | >= 4.0 | +| [aws](#requirement\_aws) | ~> 6.0 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 4.0 | +| [aws](#provider\_aws) | ~> 6.0 | ## Modules diff --git a/examples/domain-verification/versions.tf b/examples/domain-verification/versions.tf index bdda824..f7f76d2 100644 --- a/examples/domain-verification/versions.tf +++ b/examples/domain-verification/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.0" + version = "~> 6.0" } } diff --git a/examples/email-verification/versions.tf b/examples/email-verification/versions.tf index bdda824..f7f76d2 100644 --- a/examples/email-verification/versions.tf +++ b/examples/email-verification/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.0" + version = "~> 6.0" } } diff --git a/versions.tf b/versions.tf index bdda824..f7f76d2 100644 --- a/versions.tf +++ b/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.0" + version = "~> 6.0" } } From 7e4d93876cb403d4aa75d58c0919887bca41bf04 Mon Sep 17 00:00:00 2001 From: Brian - oozou <98243528+lycbrian@users.noreply.github.com> Date: Mon, 16 Jun 2025 15:13:21 +0700 Subject: [PATCH 2/2] update claude workflow model --- .github/workflows/claude.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 71b68ac..3b9dca0 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -33,4 +33,5 @@ jobs: uses: anthropics/claude-code-action@beta with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} - timeout_minutes: "60" \ No newline at end of file + model: "claude-opus-4-20250514" + timeout_minutes: "60"