chore(deps): update dependencies across all templates#80
Merged
Conversation
Update Go, Python, .NET, and GitHub Actions dependencies as requested by Renovate dependency dashboard (issue #12). Go: firestore v1.21.0, api v0.274.0, grpc v1.80.0, testify v1.11.1 Python: azure-functions 2.0.0, ruff ^0.15.0, CI matrix 3.13+3.14 .NET: DynamoDBv2 3.7.513.1, Lambda.Annotations 1.10.0, MS Extensions 10.0.5, Firestore 3.13.0, Functions.Hosting 3.0.0, Lambda.TestUtilities 3.0.0 Actions: setup-go v6, golangci-lint-action v9 Closes #12 https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G
- Go: bump minimum Go version from 1.22 to 1.23 in go.mod and CI pipelines (new dependency versions require it) - .NET: revert Microsoft.Extensions.DependencyInjection and Microsoft.Extensions.Logging to 8.0.1 (10.x requires .NET 10, but target framework is net8.0) - Python: revert azure-functions to 1.24.0 (2.0.0 requires Python >=3.13, incompatible with project's >=3.10 constraint) https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G
- Go: revert go.mod and CI matrix back to Go 1.22 (dependencies use Go's automatic toolchain download to get the version they need) - .NET: bump Amazon.Lambda.Core from 2.5.0 to 2.8.1 to satisfy Amazon.Lambda.Annotations 1.10.0's minimum version requirement https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G
setup-go@v6 breaks Go builds - likely changes toolchain management behavior that prevents automatic Go toolchain downloads needed by dependencies requiring Go 1.24+. Keeping v5 which works correctly. https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G
Testing if testify v1.11.1 is causing the Go build failures across all cloud service variants. https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G
Testing if golangci-lint-action@v9 pre-run step is interfering with Go toolchain setup. https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G
google.golang.org/api v0.274.0 requires Go 1.25 which isn't available for auto-toolchain download. v0.267.0 is the latest version requiring only Go 1.24. Also restores testify v1.11.1 (confirmed not the issue). https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Consolidates dependency updates from the Renovate dependency dashboard (issue #12) into a single PR.
Go Template (
go.mod)cloud.google.com/go/firestore: v1.17.0 → v1.21.0google.golang.org/api: v0.214.0 → v0.267.0 (latest compatible with Go 1.24 toolchain; v0.274.0 requires Go 1.25)google.golang.org/grpc: v1.69.4 → v1.80.0github.com/stretchr/testify: v1.10.0 → v1.11.1.NET API Project (
.csproj)AWSSDK.DynamoDBv2: 3.7.405.4 → 3.7.513.1Amazon.Lambda.Annotations: 1.6.1 → 1.10.0Amazon.Lambda.Core: 2.5.0 → 2.8.1 (required by Lambda.Annotations 1.10.0)Amazon.Lambda.TestUtilities: 2.0.0 → 3.0.0Google.Cloud.Firestore: 3.10.0 → 3.13.0Google.Cloud.Functions.Hosting: 2.2.1 → 3.0.0Python Template (
pyproject.toml)ruff: ^0.11.0 → ^0.15.0Python CI
GitHub Actions
golangci/golangci-lint-action: kept at v6 (v9 not compatible with current setup)Not included (compatibility issues)
actions/setup-gov6: breaks Go auto-toolchain download needed by deps requiring Go 1.24+google.golang.org/apiv0.274.0: requires Go 1.25 (not yet available for toolchain download)Microsoft.Extensions.*10.0.5: requires .NET 10, project targets net8.0azure-functions2.0.0: requires Python >=3.13, conflicts with project's >=3.10 constraintTest plan
Closes #12
https://claude.ai/code/session_01WJmbSnYgPC7feFF5uEkU1G