Skip to content

Commit 4069f19

Browse files
committed
🔖 3.0.0
1 parent 56667ee commit 4069f19

File tree

8 files changed

+25
-51
lines changed

8 files changed

+25
-51
lines changed

src/CommandQuery.AWSLambda/CommandQuery.AWSLambda.csproj

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

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>2.0.0</Version>
5+
<Version>3.0.0</Version>
66
<PackageReleaseNotes>
7-
- Changed target framework to netcoreapp3.1 🎯
8-
- Now uses System.Text.Json, instead of Newtonsoft.Json 📜
9-
- Added the new abstractions ICommandFunction and IQueryFunction
10-
- Added JsonSerializerOptions constructor parameter in CommandFunction and QueryFunction
11-
- Renamed method to HandleAsync in CommandFunction and QueryFunction 💥
12-
- Changed the ILambdaContext parameter to ILambdaLogger in HandleAsync methods in CommandFunction and QueryFunction 💥
13-
- Added extension methods AddCommandFunction and AddQueryFunction on IServiceCollection
14-
- Nested object graph queries via GET is now supported
7+
- Change TargetFramework to netstandard2.0
8+
- Bump Amazon.Lambda.Core to 2.1.0
9+
- Bump Amazon.Lambda.APIGatewayEvents to 2.5.0
1510
</PackageReleaseNotes>
1611
<Authors>Henrik Lau Eriksson</Authors>
1712
<Description>Command Query Separation for AWS Lambda ⚡

src/CommandQuery.Abstractions/CommandQuery.Abstractions.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>CommandQuery</RootNamespace>
6-
<Version>2.0.0</Version>
6+
<Version>3.0.0</Version>
77
<PackageReleaseNotes>
8-
- Removed target framework net461 🎯
9-
- Changed the class Error to a interface IError
10-
- Added CancellationToken parameter to HandleAsync methods in ICommandHandler&lt;in TCommand&gt;, ICommandHandler&lt;in TCommand, TResult&gt; and IQueryHandler&lt;in TQuery, TResult&gt; 💥
118
</PackageReleaseNotes>
129
<Authors>Henrik Lau Eriksson</Authors>
1310
<Description>Interfaces for CommandQuery

src/CommandQuery.AspNetCore/CommandQuery.AspNetCore.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<Version>2.0.0</Version>
5+
<Version>3.0.0</Version>
66
<PackageReleaseNotes>
7-
- Changed the target frameworks to netstandard2.0 and netcoreapp3.1 🎯
8-
- Added extension methods AddCommandControllers and AddQueryControllers on IServiceCollection
7+
- Change TargetFramework to net6.0
98
</PackageReleaseNotes>
109
<Authors>Henrik Lau Eriksson</Authors>
1110
<Description>Command Query Separation for ASP.NET Core 🌐

src/CommandQuery.AzureFunctions/CommandQuery.AzureFunctions.csproj

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

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>2.0.0</Version>
5+
<Version>3.0.0</Version>
66
<PackageReleaseNotes>
7-
- Changed target frameworks to netcoreapp3.1 and net5.0 🎯
8-
- netcoreapp3.1 uses Newtonsoft.Json 📜
9-
- net5.0 uses System.Text.Json 📜
10-
- Added JsonSerializerSettings/JsonSerializerOptions constructor parameter in CommandFunction and QueryFunction
11-
- Renamed method to HandleAsync in CommandFunction and QueryFunction 💥
12-
- Added CancellationToken parameter to HandleAsync method in netcoreapp3.1
13-
- Added extension methods AddCommandFunction and AddQueryFunction on IServiceCollection
14-
- Nested object graph queries via GET is now supported
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
1512
</PackageReleaseNotes>
1613
<Authors>Henrik Lau Eriksson</Authors>
1714
<Description>Command Query Separation for Azure Functions ⚡

src/CommandQuery.Client/CommandQuery.Client.csproj

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

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>2.0.0</Version>
5+
<Version>3.0.0</Version>
66
<PackageReleaseNotes>
7-
- Removed target framework net461 🎯
8-
- Now uses System.Text.Json, instead of Newtonsoft.Json 📜
9-
- Added constructor with HttpClient and JsonSerializerOptions parameters to CommandClient and QueryClient
10-
- Removed sync over async methods in CommandClient and QueryClient 💥
11-
- Added CancellationToken parameter to methods in CommandClient and QueryClient
12-
- Nested object graph queries via GET is now supported
7+
- Bump System.Net.Http.Json to 6.0.0
138
</PackageReleaseNotes>
149
<Authors>Henrik Lau Eriksson</Authors>
1510
<Description>Clients for CommandQuery

src/CommandQuery.GoogleCloudFunctions/CommandQuery.GoogleCloudFunctions.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>2.0.0</Version>
5+
<Version>3.0.0</Version>
66
<PackageReleaseNotes>
7-
- New project ✨
8-
- Target framework netcoreapp3.1 🎯
9-
- Uses System.Text.Json 📜
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
1011
</PackageReleaseNotes>
1112
<Authors>Henrik Lau Eriksson</Authors>
1213
<Description>Command Query Separation for Google Cloud Functions ⚡

src/CommandQuery.SystemTextJson/CommandQuery.SystemTextJson.csproj

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

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>2.0.0</Version>
5+
<Version>3.0.0</Version>
66
<PackageReleaseNotes>
7-
- New project ✨
8-
- Target framework netstandard2.0 🎯
9-
- Depends on System.Text.Json version 5.0.2 📜
7+
- Bump System.Text.Json to 6.0.7
108
</PackageReleaseNotes>
119
<Authors>Henrik Lau Eriksson</Authors>
1210
<Description>System.Text.Json extensions for CommandQuery</Description>

src/CommandQuery/CommandQuery.csproj

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

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>2.0.0</Version>
5+
<Version>3.0.0</Version>
66
<PackageReleaseNotes>
7-
- Removed target framework net461 🎯
8-
- Renamed method ProcessWithResultAsync to ProcessAsync in CommandProcessor 💥
9-
- Added CancellationToken parameter to ProcessAsync methods in CommandProcessor and QueryProcessor
10-
- Renamed CommandTypeCollection to CommandTypeProvider 💥
11-
- Renamed QueryTypeCollection to QueryTypeProvider 💥
12-
- Added method AssertConfigurationIsValid to CommandProcessor and QueryProcessor
13-
- CommandProcessor, CommandTypeProvider, QueryProcessor and QueryTypeProvider are now added to IServiceCollection as singletons
14-
- CommandTypeException is now thrown if multiple commands with the same name is added to the CommandTypeProvider
15-
- QueryTypeException is now thrown if multiple queries with the same name is added to the QueryTypeProvider
7+
- Bump Microsoft.Extensions.DependencyInjection to 6.0.1
168
</PackageReleaseNotes>
179
<Authors>Henrik Lau Eriksson</Authors>
1810
<Description>Command Query Separation for .NET Framework and .NET Standard ⚙️
@@ -56,4 +48,4 @@
5648
<ProjectReference Include="..\CommandQuery.Abstractions\CommandQuery.Abstractions.csproj" />
5749
</ItemGroup>
5850

59-
</Project>
51+
</Project>

0 commit comments

Comments
 (0)