8000 fix(deps): update dependency io.awspring.cloud:spring-cloud-aws-starter-secrets-manager from v3.1.1 to v3.4.0 by renovate[bot] · Pull Request #409 · entur/uttu · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(deps): update dependency io.awspring.cloud:spring-cloud-aws-starter-secrets-manager from v3.1.1 to v3.4.0 #409

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

renovate[bot]
Copy link
Contributor
@renovate renovate bot commented Sep 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.awspring.cloud:spring-cloud-aws-starter-secrets-manager (source) 3.1.1 -> 3.4.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

awspring/spring-cloud-aws (io.awspring.cloud:spring-cloud-aws-starter-secrets-manager)

v3.4.0: 3.4.0

Reference documentation

📗 https://docs.awspring.io/spring-cloud-aws/docs/3.4.0/reference/html/index.html

What's Changed

SQS
DynamoDB
Dependency Upgrades

New Contributors

Full Changelog: awspring/spring-cloud-aws@v3.3.1...v3.4.0

v3.3.1

Reference documentation

📗 https://docs.awspring.io/spring-cloud-aws/docs/3.3.1/reference/html/index.html

What's Changed
S3
SQS
Others
New Contributors

Full Changelog: awspring/spring-cloud-aws@v3.3.0...v3.3.1

v3.3.0: 3.3.0

Reference documentation

📗 https://docs.awspring.io/spring-cloud-aws/docs/3.3.0/reference/html/index.html

What's Changed

Spring Cloud AWS 3.3.0 brings compatibility with Spring Boot 3.4 and Spring Cloud 2024.0. Highlights:

Full list of changes:

Core
S3
SQS
SNS
SecretsManager
Parameter Store
Documentation
Dependencies
Github pipeline

New Contributors

Full Changelog: awspring/spring-cloud-aws@v3.2.1...v3.3.0

v3.2.1: 3.2.1

Reference documentation

📗 https://docs.awspring.io/spring-cloud-aws/docs/3.2.1/reference/html/index.html

What's Changed

Full Changelog: awspring/spring-cloud-aws@v3.2.0...v3.2.1

v3.2.0: 3.2.0

Reference documentation

📗 https://docs.awspring.io/spring-cloud-aws/docs/3.2.0/reference/html/index.html

What's Changed

Spring Cloud AWS 3.2.0 brings compatibility with Spring Boot 3.3.x and contains all changes introduced in version 3.2.0-M1.

Highlights

Simplified integration testing with LocalStack through new modules:

Integration with Spring Modulith:

SQS
DynamoDb
S3
SES
Docker Compose
Dependencies
New Contributors

Full Changelog: awspring/spring-cloud-aws@v3.2.0-M1...v3.2.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 13 times, most recently from ccc483d to fdb4160 Compare September 24, 2024 09:16
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 5 times, most recently from 13304be to d588bd0 Compare October 1, 2024 11:15
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 6 times, most recently from 02aaa57 to d01f682 Compare October 9, 2024 00:27
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 6 times, most recently from 6865dc6 to 15f4e5d Compare October 16, 2024 01:59
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 6 times, most recently from 539ff64 to b3b93cd Compare May 30, 2025 08:45
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 8 times, most recently from ad129c7 to 27e7b45 Compare June 6, 2025 06:29
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 3 times, most recently from 2c22866 to 69d6341 Compare June 10, 2025 17:43
@renovate renovate bot changed the title fix(deps): update dependency io.awspring.cloud:spring-cloud-aws-starter-secrets-manager from v3.1.1 to v3.3.1 fix(deps): update dependency io.awspring.cloud:spring-cloud-aws-starter-secrets-manager from v3.1.1 to v3.4.0 Jun 10, 2025
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch 4 times, most recently from d21750d to 44bbcfc Compare June 17, 2025 09:01
@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch from 44bbcfc to 126a26c Compare June 18, 2025 09:00
@esuomi
Copy link
Collaborator
esuomi commented Jun 19, 2025

This breakage is caused by awspring/spring-cloud-aws#1254

To quote,

At the top of release notes for 3.2.0:

Spring Cloud AWS 3.2.0 brings compatibility with Spring Boot 3.3.x and contains all changes introduced in version 3.2.0-M1.
We've added autoconfig for client because config import is not the only use case for secrets manager.

As it has been closed as non-issue (??), disabling the autoinit could be the way to make this work for the master as this is an on-demand feature. The relevant class is io.awspring.cloud.autoconfigure.config.secretsmanager.SecretsManagerAutoConfiguration
and it has the annotation

@ConditionalOnProperty(name = "spring.cloud.aws.secretsmanager.enabled", havingValue = "true", matchIfMissing = true)

As this is not required by uttu's master to be enabled, the simplest fix would be to add spring.cloud.aws.secretsmanager.enabled=false to default (or at least CI) configuration and probably document its existence as well.

@renovate renovate bot force-pushed the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch from 126a26c to 3956b47 Compare June 19, 2025 09:58
Copy link

@testower testower merged commit 3956b47 into master Jun 19, 2025
3 of 4 checks passed
@testower testower deleted the renovate/io.awspring.cloud-spring-cloud-aws-starter-secrets-manager-3.x branch June 19, 2025 11:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants
0