|
1 | 1 | # Changelog |
2 | 2 |
|
3 | | -## [Unreleased](https://github.com/rabbitmq/rabbitmq-dotnet-client/tree/HEAD) |
| 3 | +## [v7.1.0](https://github.com/rabbitmq/rabbitmq-dotnet-client/tree/v7.1.0) (2025-02-19) |
4 | 4 |
|
5 | | -[Full Changelog](https://github.com/rabbitmq/rabbitmq-dotnet-client/compare/v7.1.0-alpha.0...HEAD) |
| 5 | +[Full Changelog](https://github.com/rabbitmq/rabbitmq-dotnet-client/compare/v7.0.0...v7.1.0) |
6 | 6 |
|
7 | 7 | **Fixed bugs:** |
8 | 8 |
|
| 9 | +- Intermittent deadlock when closing a channel using CloseAsync in 7.x [\#1751](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1751) |
| 10 | +- `ObjectDisposedException` when connection is closed from the server [\#1760](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1760) |
| 11 | +- Disposing Connection after closing it with timeout causes deadlock [\#1759](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1759) |
9 | 12 | - `ObjectDisposedException` when connection is closed from the server [\#1760](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1760) |
10 | 13 | - Disposing Connection after closing it with timeout causes deadlock [\#1759](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1759) |
11 | 14 | - Intermittent deadlock when closing a channel using CloseAsync in 7.x [\#1751](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1751) |
12 | | - |
13 | | -**Closed issues:** |
14 | | - |
15 | | -- Throw exception during CreateConnectionAsync in case of wrong credentials [\#1777](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1777) |
16 | | -- Exception when disabling heartbeat with v7 [\#1756](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1756) |
| 15 | +- Connection Recovery is triggered without the old connection being closed [\#1767](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1767) |
| 16 | +- Cancelling `ModelSendAsync` can close the connection when it shouldn't [\#1750](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1750) |
| 17 | +- `ObjectDisposedException` when channel is closed by RabbitMQ due to a channel exception [\#1749](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1749) |
17 | 18 |
|
18 | 19 | **Merged pull requests:** |
19 | 20 |
|
| 21 | +- Fix rare deadlock, second try [\#1782](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1782) ([lukebakken](https://github.com/lukebakken)) |
20 | 22 | - Fix \#1777 [\#1781](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1781) ([lukebakken](https://github.com/lukebakken)) |
21 | 23 | - Create cancellation token from `timeout` [\#1775](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1775) ([lukebakken](https://github.com/lukebakken)) |
22 | 24 | - Allow setting heartbeat timeout to `TimeSpan.Zero` [\#1773](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1773) ([lukebakken](https://github.com/lukebakken)) |
23 | 25 | - Track down `ObjectDisposedExceptions` [\#1772](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1772) ([lukebakken](https://github.com/lukebakken)) |
24 | 26 | - Fix very rare deadlock [\#1771](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1771) ([lukebakken](https://github.com/lukebakken)) |
25 | | - |
26 | | -[Full Changelog](https://github.com/rabbitmq/rabbitmq-dotnet-client/compare/7.1.0-alpha.0...HEAD) |
27 | | - |
28 | | -**Closed issues:** |
29 | | - |
30 | | -- `IChannel` thread safety [\#1722](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1722) |
31 | | - |
32 | | -## [7.1.0-alpha.0](https://github.com/rabbitmq/rabbitmq-dotnet-client/tree/7.1.0-alpha.0) (2025-01-16) |
33 | | - |
34 | | -[Full Changelog](https://github.com/rabbitmq/rabbitmq-dotnet-client/compare/v7.1.0-alpha.0...7.1.0-alpha.0) |
35 | | - |
36 | | -## [v7.1.0-alpha.0](https://github.com/rabbitmq/rabbitmq-dotnet-client/tree/v7.1.0-alpha.0) (2025-01-16) |
37 | | - |
38 | | -[Full Changelog](https://github.com/rabbitmq/rabbitmq-dotnet-client/compare/v7.0.0...v7.1.0-alpha.0) |
39 | | - |
40 | | -**Implemented enhancements:** |
41 | | - |
42 | | -- Single Active consumer [\#1723](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1723) |
43 | | -- OpenTelemetry: Update messaging.operation span attribute to latest OTel Semantic Conventions [\#1715](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1715) |
44 | | -- 7.0 release checklist / misc items [\#1413](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1413) |
45 | | - |
46 | | -**Fixed bugs:** |
47 | | - |
48 | | -- Connection Recovery is triggered without the old connection being closed [\#1767](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1767) |
49 | | -- Cancelling `ModelSendAsync` can close the connection when it shouldn't [\#1750](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1750) |
50 | | -- `ObjectDisposedException` when channel is closed by RabbitMQ due to a channel exception [\#1749](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1749) |
51 | | - |
52 | | -**Merged pull requests:** |
53 | | - |
54 | 27 | - Fix typos [\#1770](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1770) ([sungam3r](https://github.com/sungam3r)) |
55 | 28 | - Remove whitespaces from csproj files [\#1768](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1768) ([sungam3r](https://github.com/sungam3r)) |
56 | 29 | - Misc items [\#1766](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1766) ([lukebakken](https://github.com/lukebakken)) |
|
65 | 38 | - chore: bump regular System.Text.RegularExpressions due to a known CVE in earlier versions [\#1735](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1735) ([aygalinc](https://github.com/aygalinc)) |
66 | 39 | - More updates for the current OTel \(OpenTelemetry\) conventions [\#1717](https://github.com/rabbitmq/rabbitmq-dotnet-client/pull/1717) ([iinuwa](https://github.com/iinuwa)) |
67 | 40 |
|
| 41 | +**Closed issues:** |
| 42 | + |
| 43 | +- Throw exception during CreateConnectionAsync in case of wrong credentials [\#1777](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1777) |
| 44 | +- Exception when disabling heartbeat with v7 [\#1756](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1756) |
| 45 | +- Throw exception during CreateConnectionAsync in case of wrong credentials [\#1777](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1777) |
| 46 | +- Exception when disabling heartbeat with v7 [\#1756](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1756) |
| 47 | +- `IChannel` thread safety [\#1722](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1722) |
| 48 | + |
| 49 | +**Implemented enhancements:** |
| 50 | + |
| 51 | +- Single Active consumer [\#1723](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1723) |
| 52 | +- OpenTelemetry: Update messaging.operation span attribute to latest OTel Semantic Conventions [\#1715](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1715) |
| 53 | +- 7.0 release checklist / misc items [\#1413](https://github.com/rabbitmq/rabbitmq-dotnet-client/issues/1413) |
| 54 | + |
68 | 55 | ## [v7.0.0](https://github.com/rabbitmq/rabbitmq-dotnet-client/tree/v7.0.0) (2024-11-05) |
69 | 56 |
|
70 | 57 | [Full Changelog](https://github.com/rabbitmq/rabbitmq-dotnet-client/compare/v7.0.0-rc.14...v7.0.0) |
|
0 commit comments