Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Dec 20, 2025

The aws-sdk-go v1.55.8 update introduced deprecation warnings that failed CI linting. AWS deprecated v1 in favor of aws-sdk-go-v2, but the codebase still uses v1.

Changes

  • Added //nolint:staticcheck directives to AWS SDK imports to suppress SA1019 deprecation warnings
  • Affected files:
    • app/services/blob/s3/s3.go - S3 storage implementation
    • app/services/email/awsses/awsses.go - SES email service
    • app/services/blob/blob_test.go - Blob storage tests
import (
    "github.com/aws/aws-sdk-go/aws" //nolint:staticcheck // SA1019: aws-sdk-go v1 is still in use
    "github.com/aws/aws-sdk-go/service/s3" //nolint:staticcheck // SA1019: aws-sdk-go v1 is still in use
)

Migrating to aws-sdk-go-v2 would require broader refactoring and is out of scope for this dependency update.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Co-authored-by: mattwoberts <109196+mattwoberts@users.noreply.github.com>
Copilot AI changed the title [WIP] Bump the all-updates group across 1 directory with 10 updates Suppress aws-sdk-go v1 deprecation warnings in linter Dec 20, 2025
Copilot AI requested a review from mattwoberts December 20, 2025 17:17
@mattwoberts mattwoberts marked this pull request as ready for review December 20, 2025 17:55
@mattwoberts mattwoberts merged commit b31346b into dependabot/go_modules/all-updates-490ae7d65f Dec 20, 2025
@mattwoberts mattwoberts deleted the copilot/sub-pr-1427 branch December 20, 2025 17:55
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