Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ testSets {
}
dependencies {
testImplementation project(':dd-java-agent:instrumentation:mongo').sourceSets.test.output
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'

// We need to pull in this dependency to get the 'suspend span' instrumentation for spock tests
// as well as to test the instrumentaiton 'layering' (3.4 instrumentation should take precedence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
}

testImplementation project(':dd-java-agent:instrumentation:mongo').sourceSets.test.output
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'

testImplementation project(':dd-java-agent:instrumentation:mongo:bson-document')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
}

testImplementation project(':dd-java-agent:instrumentation:mongo').sourceSets.test.output
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'

testImplementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '3.10.0'
latestDepTestImplementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '3.+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
}

testImplementation project(':dd-java-agent:instrumentation:mongo').sourceSets.test.output
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'

testImplementation group: 'org.mongodb', name: 'mongodb-driver-async', version: '3.3.0'
latestDepTestImplementation group: 'org.mongodb', name: 'mongodb-driver-async', version: '+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
}

testImplementation project(':dd-java-agent:instrumentation:mongo').sourceSets.test.output
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'

// We need to pull in this dependency to get the 'suspend span' instrumentation for spock tests
// as well as to test the instrumentaiton 'layering' (3.4 instrumentation should take precedence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ testSets {

dependencies {
testImplementation project(':dd-java-agent:instrumentation:mongo').sourceSets.test.output
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'

// We need to pull in this dependency to get the 'suspend span' instrumentation for spock tests
// as well as to test the instrumentaiton 'layering' (3.4 instrumentation should take precedence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
}

testImplementation project(':dd-java-agent:instrumentation:mongo').sourceSets.test.output
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'

testImplementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.0.0'
testImplementation group: 'org.mongodb', name: 'mongodb-driver-reactivestreams', version: '4.0.0'
Expand Down
2 changes: 1 addition & 1 deletion dd-java-agent/instrumentation/mongo/mongo.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply from: "$rootDir/gradle/java.gradle"

dependencies {
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '1.50.5'
testImplementation group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.1.3'
}

// Forcing strict test execution order (no parallel execution) to ensure proper mongo executable initialization.
Expand Down