I'm new to Kogito and Quarkus, so help me a little bit here.
Our application has been recently affected by this bug:
Now I want to upgrade the Mongo DB driver version to use the version with the fix but I'm not sure where do I need to do that.
I see these two in the pom.xml:
<project>
...
<dependencies>
...
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-mongodb-client</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-addons-quarkus-persistence-mongodb</artifactId>
</dependency>
</dependencies>
</project>
But I'm not sure if I should look for the driver referenced by these dependencies and then add the version tag for any of them...
Can you point me the direction where I need to look to upgrade the driver version?