Skip to content

Commit 9756f79

Browse files
committed
chore: Update MassTransit version to 8.2.5 and Swashbuckle.AspNetCore version to 6.7.2
1 parent 9f40dfd commit 9756f79

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

Directory.Packages.props

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PollyVersion>8.4.1</PollyVersion>
1313
<AspireUnstablePackagesVersion>8.0.2-preview.1.24326.4</AspireUnstablePackagesVersion>
1414
<GrpcVersion>2.65.0</GrpcVersion>
15-
<MassTransitVersion>8.2.4</MassTransitVersion>
15+
<MassTransitVersion>8.2.5</MassTransitVersion>
1616
</PropertyGroup>
1717
<ItemGroup>
1818
<!-- Aspire -->
@@ -55,7 +55,7 @@
5555
<PackageVersion Include="EntityFrameworkCore.Exceptions.Common" Version="8.1.3" />
5656
<PackageVersion Include="EntityFrameworkCore.Exceptions.PostgreSQL" Version="8.1.3" />
5757
<!-- Semantic Kernel -->
58-
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.17.1" />
58+
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.17.2" />
5959
<!-- Polly -->
6060
<PackageVersion Include="Polly" Version="$(PollyVersion)" />
6161
<PackageVersion Include="Polly.Extensions" Version="$(PollyVersion)" />
@@ -98,9 +98,9 @@
9898
<!-- Miscellaneous -->
9999
<PackageVersion Include="Scrutor" Version="4.2.2" />
100100
<PackageVersion Include="MediatR" Version="12.4.0" />
101-
<PackageVersion Include="Marten.AspNetCore" Version="7.26.2" />
101+
<PackageVersion Include="Marten.AspNetCore" Version="7.26.3" />
102102
<PackageVersion Include="FluentEmail.Mailtrap" Version="2.7.0" />
103-
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.7.1" />
103+
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.7.2" />
104104
<PackageVersion Include="FluentValidation.AspNetCore" Version="11.3.0" />
105105
<PackageVersion Include="Microsoft.Web.LibraryManager.Build" Version="2.1.175" />
106106
<PackageVersion Include="MicroElements.Swashbuckle.FluentValidation" Version="6.0.0" />

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737
## Domain Business & Bounded Contexts - Services Boundaries
3838

3939
- **Catalog**: Display books with pagination and search functionality.
40-
- **Shopping Cart**: Add books to the shopping cart and place an order.
41-
- **Order**: Display orders with pagination and search functionality.
40+
- **Basket**: Add books to the shopping cart and place an order.
41+
- **Ordering**: Display orders with pagination and search functionality.
4242
- **Identity**: Register, login, and manage user profile.
4343
- **Notification**: Send email notifications.
44-
- **Rating**: Rate products.
44+
- **Rating**: Rate books.
4545

4646
![Domain Business & Bounded Contexts](docs/architechture.png)
4747

@@ -82,7 +82,7 @@ git clone [email protected]:foxminchan/BookWorm.git
8282
dotnet run --project src/BookWorm.AppHost/BookWorm.AppHost.csproj
8383
```
8484

85-
> [!NOTE]
85+
> [!WARNING]
8686
> Ensure that you have Docker running on your machine.
8787
8888
## Contributing
@@ -92,6 +92,9 @@ dotnet run --project src/BookWorm.AppHost/BookWorm.AppHost.csproj
9292
- Make your changes
9393
- Create a pull request
9494

95+
> [!CAUTION]
96+
> Do not change namespaces for `Integration Events` as it will break the messaging system.
97+
9598
## Project References
9699

97100
- [eShop](https://github.com/dotnet/eShop)

bun.lockb

0 Bytes
Binary file not shown.

tests/BookWorm.Basket.IntegrationTests/BookWorm.Basket.IntegrationTests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
54
<IsPublishable>false</IsPublishable>
65
<IsPackable>false</IsPackable>
76
<IsAspireHost>true</IsAspireHost>

tests/BookWorm.Catalog.IntegrationTests/BookWorm.Catalog.IntegrationTests.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
54
<IsPublishable>false</IsPublishable>
65
<IsPackable>false</IsPackable>
76
<IsAspireHost>true</IsAspireHost>
8-
<UserSecretsId>449294a4-1735-47a7-8510-55e20b1aa4fa</UserSecretsId>
97
</PropertyGroup>
108

119
<ItemGroup>

tests/BookWorm.Ordering.IntegrationTests/BookWorm.Ordering.IntegrationTests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
54
<IsPublishable>false</IsPublishable>
65
<IsPackable>false</IsPackable>
76
<IsAspireHost>true</IsAspireHost>

tests/BookWorm.Rating.IntegrationTests/BookWorm.Rating.IntegrationTests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
54
<IsPublishable>false</IsPublishable>
65
<IsPackable>false</IsPackable>
76
<IsAspireHost>true</IsAspireHost>

0 commit comments

Comments
 (0)