2.0.0.M1
Pre-release
Pre-release
Release Information
- User Guide
- Github commits
- Update to Groovy 3.0.5, Gradle 6, and Grails 4.1.0.M2.
- Update Flapdoodle 2.0.2
Please note that in order to use this release you need to explicitly force the Flapdoodle Embedded MongoDB version in your application by specifying the following property in gradle.properties
embedded-mongo.version=2.2.0
Also make sure that you are using the correct version of MongoDB Java Driver (i.e. 4.0.3) otherwise add the following in the build.gradle:
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'org.mongodb' ) {
details.useVersion('4.0.3')
}
}
}