Skip to content

Commit 590ddbe

Browse files
committed
🔖 4.0.0
1 parent cdbe1bb commit 590ddbe

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

src/CommandQuery.AWSLambda/CommandQuery.AWSLambda.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>3.0.0</Version>
5+
<Version>4.0.0</Version>
66
<PackageReleaseNotes>
7-
- Change TargetFramework to netstandard2.0
8-
- Bump Amazon.Lambda.Core to 2.1.0
9-
- Bump Amazon.Lambda.APIGatewayEvents to 2.5.0
7+
- Bump Amazon.Lambda.Core to 2.2.0
8+
- Bump Amazon.Lambda.APIGatewayEvents to 2.7.0
9+
- Make ILambdaLogger parameter required for HandleAsync
10+
- Add support for APIGatewayHttpApiV2ProxyRequest
1011
</PackageReleaseNotes>
1112
<Authors>Henrik Lau Eriksson</Authors>
1213
<Description>Command Query Separation for AWS Lambda ⚡

src/CommandQuery.Abstractions/CommandQuery.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>CommandQuery</RootNamespace>
6-
<Version>3.0.0</Version>
6+
<Version>4.0.0</Version>
77
<PackageReleaseNotes>
88
</PackageReleaseNotes>
99
<Authors>Henrik Lau Eriksson</Authors>

src/CommandQuery.AspNetCore/CommandQuery.AspNetCore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<Version>3.0.0</Version>
5+
<Version>4.0.0</Version>
66
<PackageReleaseNotes>
7-
- Change TargetFramework to net6.0
7+
- Change TargetFramework to net8.0
88
</PackageReleaseNotes>
99
<Authors>Henrik Lau Eriksson</Authors>
1010
<Description>Command Query Separation for ASP.NET Core 🌐

src/CommandQuery.AzureFunctions/CommandQuery.AzureFunctions.csproj

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<Version>3.0.0</Version>
5+
<Version>4.0.0</Version>
66
<PackageReleaseNotes>
7-
- Change TargetFramework to netstandard2.0
8-
- Drop support for in-process functions
9-
- Only support isolated worker process functions
10-
- Bump Microsoft.Azure.Functions.Worker to 1.10.0
11-
- Add CancellationToken parameter to HandleAsync method in CommandFunction and QueryFunction
7+
- Change TargetFramework to net8.0
8+
- Bump Microsoft.Azure.Functions.Worker to 1.22.0
9+
- Remove ILogger parameter from HandleAsync
10+
- Add support for HttpRequest
1211
</PackageReleaseNotes>
1312
<Authors>Henrik Lau Eriksson</Authors>
1413
<Description>Command Query Separation for Azure Functions ⚡

src/CommandQuery.Client/CommandQuery.Client.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>3.0.0</Version>
5+
<Version>4.0.0</Version>
66
<PackageReleaseNotes>
7-
- Bump System.Net.Http.Json to 6.0.0
7+
- Bump System.Net.Http.Json to 8.0.0
88
</PackageReleaseNotes>
99
<Authors>Henrik Lau Eriksson</Authors>
1010
<Description>Clients for CommandQuery

src/CommandQuery.GoogleCloudFunctions/CommandQuery.GoogleCloudFunctions.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>3.0.0</Version>
5+
<Version>4.0.0</Version>
66
<PackageReleaseNotes>
7-
- Change TargetFramework to netstandard2.0
8-
- Change dependencies to:
9-
- Microsoft.AspNetCore.Http 2.2.2
10-
- Microsoft.Extensions.Logging.Abstractions 6.0.3
7+
- Change Microsoft.AspNetCore.Http to 2.1.34
8+
- Bump to Microsoft.Extensions.Logging.Abstractions 6.0.4
9+
- Remove ILogger parameter from HandleAsync
1110
</PackageReleaseNotes>
1211
<Authors>Henrik Lau Eriksson</Authors>
1312
<Description>Command Query Separation for Google Cloud Functions ⚡

src/CommandQuery.SystemTextJson/CommandQuery.SystemTextJson.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>3.0.0</Version>
5+
<Version>4.0.0</Version>
66
<PackageReleaseNotes>
7-
- Bump System.Text.Json to 6.0.7
7+
- Bump System.Text.Json to 8.0.4
8+
- Deserialize JSON with sane defaults
89
</PackageReleaseNotes>
910
<Authors>Henrik Lau Eriksson</Authors>
1011
<Description>System.Text.Json extensions for CommandQuery</Description>

src/CommandQuery/CommandQuery.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>3.0.0</Version>
5+
<Version>4.0.0</Version>
66
<PackageReleaseNotes>
7-
- Bump Microsoft.Extensions.DependencyInjection to 6.0.1
7+
- Bump Microsoft.Extensions.DependencyInjection to 8.0.0
88
</PackageReleaseNotes>
99
<Authors>Henrik Lau Eriksson</Authors>
1010
<Description>Command Query Separation for .NET Framework and .NET Standard ⚙️

0 commit comments

Comments
 (0)