Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package terragrunt for openSUSE:Factory checked in at 2022-09-15 22:59:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/terragrunt (Old) and /work/SRC/openSUSE:Factory/.terragrunt.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "terragrunt" Thu Sep 15 22:59:10 2022 rev:13 rq:1003752 version:0.38.12 Changes: -------- --- /work/SRC/openSUSE:Factory/terragrunt/terragrunt.changes 2022-09-14 13:45:17.629941337 +0200 +++ /work/SRC/openSUSE:Factory/.terragrunt.new.2083/terragrunt.changes 2022-09-15 23:00:13.961391958 +0200 @@ -1,0 +2,12 @@ +Thu Sep 15 07:52:16 UTC 2022 - ka...@b1-systems.de + +- Update to version 0.38.12: + * Adds retryable error regex to match rate limit message from CodeCommit (#2276) + +------------------------------------------------------------------- +Thu Sep 15 07:49:43 UTC 2022 - ka...@b1-systems.de + +- Update to version 0.38.11: + * Uses partition from session when constructing the KMS Key ARN (#2257) + +------------------------------------------------------------------- Old: ---- terragrunt-0.38.10.tar.gz New: ---- terragrunt-0.38.12.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ terragrunt.spec ++++++ --- /var/tmp/diff_new_pack.W6uGDK/_old 2022-09-15 23:00:14.937394714 +0200 +++ /var/tmp/diff_new_pack.W6uGDK/_new 2022-09-15 23:00:14.941394725 +0200 @@ -19,7 +19,7 @@ %define __arch_install_post export NO_BRP_STRIP_DEBUG=true Name: terragrunt -Version: 0.38.10 +Version: 0.38.12 Release: 0 Summary: Thin wrapper for Terraform for working with multiple Terraform modules License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.W6uGDK/_old 2022-09-15 23:00:14.993394872 +0200 +++ /var/tmp/diff_new_pack.W6uGDK/_new 2022-09-15 23:00:14.993394872 +0200 @@ -3,7 +3,7 @@ <param name="url">https://github.com/gruntwork-io/terragrunt</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v0.38.10</param> + <param name="revision">v0.38.12</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> <param name="versionrewrite-pattern">v(.*)</param> @@ -16,7 +16,7 @@ <param name="compression">gz</param> </service> <service name="go_modules" mode="disabled"> - <param name="archive">terragrunt-0.38.10.tar.gz</param> + <param name="archive">terragrunt-0.38.12.tar.gz</param> </service> </services> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.W6uGDK/_old 2022-09-15 23:00:15.025394962 +0200 +++ /var/tmp/diff_new_pack.W6uGDK/_new 2022-09-15 23:00:15.025394962 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/gruntwork-io/terragrunt</param> - <param name="changesrevision">988144701b12bf51bf8315d1d6fc28539673913d</param></service></servicedata> + <param name="changesrevision">3a23346e08ee574a4a3a23112350ea625d577a02</param></service></servicedata> (No newline at EOF) ++++++ terragrunt-0.38.10.tar.gz -> terragrunt-0.38.12.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terragrunt-0.38.10/options/auto_retry_options.go new/terragrunt-0.38.12/options/auto_retry_options.go --- old/terragrunt-0.38.10/options/auto_retry_options.go 2022-09-13 09:55:43.000000000 +0200 +++ new/terragrunt-0.38.12/options/auto_retry_options.go 2022-09-14 22:06:21.000000000 +0200 @@ -20,4 +20,5 @@ "(?s).*app.terraform.io.*: 429 Too Many Requests.*", "(?s).*ssh_exchange_identification.*Connection closed by remote host.*", "(?s).*Client\\.Timeout exceeded while awaiting headers.*", + "(?s).*Could not download module.*The requested URL returned error: 429.*", } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terragrunt-0.38.10/remote/remote_state_s3.go new/terragrunt-0.38.12/remote/remote_state_s3.go --- old/terragrunt-0.38.10/remote/remote_state_s3.go 2022-09-13 09:55:43.000000000 +0200 +++ new/terragrunt-0.38.12/remote/remote_state_s3.go 2022-09-14 22:06:21.000000000 +0200 @@ -1025,6 +1025,11 @@ return errors.WithStackTrace(err) } + partition, err := aws_helper.GetAWSPartition(config.GetAwsSessionConfig(), terragruntOptions) + if err != nil { + return errors.WithStackTrace(err) + } + // Encrypt with KMS by default algorithm := s3.ServerSideEncryptionAwsKms if config.BucketSSEAlgorithm != "" { @@ -1037,7 +1042,7 @@ if algorithm == s3.ServerSideEncryptionAwsKms && config.BucketSSEKMSKeyID != "" { defEnc.KMSMasterKeyID = aws.String(config.BucketSSEKMSKeyID) } else if algorithm == s3.ServerSideEncryptionAwsKms { - kmsKeyID := fmt.Sprintf("arn:aws:kms:%s:%s:alias/aws/s3", config.remoteStateConfigS3.Region, accountID) + kmsKeyID := fmt.Sprintf("arn:%s:kms:%s:%s:alias/aws/s3", partition, config.remoteStateConfigS3.Region, accountID) defEnc.KMSMasterKeyID = aws.String(kmsKeyID) } ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/terragrunt/vendor.tar.gz /work/SRC/openSUSE:Factory/.terragrunt.new.2083/vendor.tar.gz differ: char 5, line 1