IModel not present in 7.0.0-alpha2 #1456
-
Describe the bugThis breaks backward compatibility. Interfaces should not be removed when updating packages. Reproduction stepsUpdate nuget to RabbitMQ.Client 7.0.0-alpha2. Existing code such as this Expected behaviorInterfaces should not be removed when updating packages. Additional contextI want to begin using the async functionality but I don't understand why renaming or dropping IModel Interface. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
This library follows Semantic Versioning. Version 7 increments the major version of this library, which allows backwards-incompatible changes. Please see this documentation: https://semver.org/#summary
|
Beta Was this translation helpful? Give feedback.
-
When you are upgrading to an alpha of a major version, you should expect breaking changes, in particular in more mature libraries, because that's the only opportunity for its maintainers to introduce any breaking changes.
|
Beta Was this translation helpful? Give feedback.
This library follows Semantic Versioning.
Version 7 increments the major version of this library, which allows backwards-incompatible changes.
Please see this documentation: https://semver.org/#summary
IModel
has been renamed toIChannel
to be in-line with the AMQP entity name, as well as other AMQP client libraries.