Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-python-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
- "GCP Cloud Function"
- "AWS Lambda"
python-version:
- "3.12"
- "3.13"
- "3.14"
fail-fast: false
steps:
- name: Check out
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.6.0" />
{%- endif %}
{%- if cookiecutter.cloud_service == 'AWS Lambda' %}
<PackageReference Include="Amazon.Lambda.Core" Version="2.5.0" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.8.1" />
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.405.4" />
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="3.0.0" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.513.1" />
{%- endif %}
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.7" />
{%- endif %}
{%- if cookiecutter.cloud_service == 'GCP Cloud Function' %}
<PackageReference Include="Google.Cloud.Firestore" Version="3.10.0" />
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="2.2.1" />
<PackageReference Include="Google.Cloud.Firestore" Version="3.13.0" />
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="3.0.0" />
{%- endif %}
{%- if cookiecutter.cloud_service == 'AWS Lambda' %}
<PackageReference Include="Amazon.Lambda.Core" Version="2.5.0" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.8.1" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.4" />
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
<PackageReference Include="Amazon.Lambda.Annotations" Version="1.6.1" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.405.4" />
<PackageReference Include="Amazon.Lambda.Annotations" Version="1.10.0" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.7.513.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
{%- endif %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v6

- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}

Expand Down
8 changes: 4 additions & 4 deletions go/{{cookiecutter.project_class_name}}/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.0
github.com/Azure/azure-sdk-for-go/sdk/data/azcosmos v1.4.2
{%- elif cookiecutter.cloud_service == 'GCP Cloud Function' %}
cloud.google.com/go/firestore v1.17.0
google.golang.org/api v0.214.0
google.golang.org/grpc v1.69.4
cloud.google.com/go/firestore v1.21.0
google.golang.org/api v0.267.0
google.golang.org/grpc v1.80.0
{%- elif cookiecutter.cloud_service == 'AWS Lambda' %}
github.com/aws/aws-lambda-go v1.54.0
github.com/aws/aws-sdk-go-v2 v1.41.5
Expand All @@ -20,5 +20,5 @@ require (
{%- endif %}
github.com/google/uuid v1.6.0
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
github.com/stretchr/testify v1.10.0
github.com/stretchr/testify v1.11.1
)
2 changes: 1 addition & 1 deletion python/{{cookiecutter.project_class_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ azure-functions = "1.24.0"
pytest = "^9.0.0"
pytest-cov = "^7.0.0"
pydantic = "^2.12.0"
ruff = "^0.11.0"
ruff = "^0.15.0"

[tool.ruff]
line-length = 88
Expand Down
Loading