Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to RabbitMq v7 Release #1126

Merged
merged 1 commit into from
Nov 7, 2024
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
5 changes: 1 addition & 4 deletions docs/guide/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,7 @@ The RabbitMq transport recieved a significant overhaul for 3.0.
The RabbitMq .NET client has been updated to v7, bringing with it an internal rewrite to support async I/O and vastly improved memory usage & throughput. This version also supports OTEL out of the box.

::: warning
`rabbitmq-dotnet-client` v7 is currently marked as an RC release and suitable for testing in pre-production environments.
`Wolverine.RabbitMq` will continue to be marked as an RC release until rabbitmq-dotnet v7 is fully stable.

If you use another RabbitMQ wrapper in your application, hold off on upgrading until it also supports v7.
RabbitMq v7 is newly released. If you use another RabbitMQ wrapper/bus in your application, hold off on upgrading until it also supports v7.
:::

#### Conventional Routing Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,12 @@
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>

<!-- Temporary, just waiting for Rabbit client to catch up -->
<VersionSuffix>rc-3</VersionSuffix>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Wolverine\Wolverine.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="7.0.0-rc.12" />
<PackageReference Include="RabbitMQ.Client" Version="7.0.0" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0" />
</ItemGroup>

Expand Down
Loading