ma7tz opened a new pull request, #47: URL: https://github.com/apache/activemq-nms-openwire/pull/47
## Summary Updates the `Apache.NMS` dependency from version 2.0.0 to 2.2.0 to enable compatibility with `Apache.NMS.AMQP 2.4.0+`. ## Motivation `Apache.NMS.ActiveMQ` currently depends on `Apache.NMS 2.0.0`, while `Apache.NMS.AMQP` has moved to `Apache.NMS 2.2.x`. This version mismatch prevents applications from using both OpenWire and AMQP 1.0 protocols simultaneously. **Current problem:** ```xml <PackageReference Include="Apache.NMS.ActiveMQ" Version="2.1.1" /> <!-- Requires NMS 2.0.0 --> <PackageReference Include="Apache.NMS.AMQP" Version="2.4.0" /> <!-- Requires NMS 2.2.x --> <!-- Results in: NU1107 Version conflict detected for Apache.NMS --> ``` This becomes critical when security vulnerabilities require upgrading Apache.NMS.AMQP (e.g., CVE-2025-54539, CVSS 9.8), but the dependency conflict blocks the update. Changes Update Apache.NMS package reference: 2.0.0 → 2.2.0 No breaking changes (Apache.NMS 2.2.0 is backward compatible) Benefits Enables multi-protocol applications: Use OpenWire and AMQP 1.0 together Unblocks security updates: Allow upgrading to patched AMQP versions Eliminates dependency conflicts: No more NuGet resolution errors -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information, visit: https://activemq.apache.org/contact
