moleculerjs / moleculer-channels

Reliable messages for Moleculer services via external queue/channel/topic.
MIT License
72 stars 15 forks source link

amqlib version warning #81

Open ro9000 opened 2 months ago

ro9000 commented 2 months ago

There is a warning: The installed amqplib library is not supported officially. Proper functionality cannot be guaranteed. Supported versions: ^0.8.0 || ^0.9.0

The package.json file refers to "amqplib": "^0.10.3"

So there is always a warning. Is this a bug and the amqlib only works on 0.9 or does the warning in amqp.js needs to be fixed? this.checkClientLibVersion("amqplib", "^0.8.0 || ^0.9.0");

Thanks, appreciate the fine work.

Ro

icebob commented 2 months ago

The message means we developed and tested with amqplib with 0.8.x and 0.9.x only. So the amqplib 0.10 version is released after the lib is developed.

We will test it with 0.10.0 and if it doesn't contain any affected breaking change, we will add 0.10.0 to the supported version list.

ro9000 commented 2 months ago

Thanks @icebob I enjoy your project and code.