Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MongoDB Drivers to list of tested libraries and frameworks. #585

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
81 changes: 81 additions & 0 deletions library-and-framework-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -1626,6 +1626,87 @@
}
]
},
{
"artifact": "org.mongodb:bson",
"description": "Java implementation of the BSON specification",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"description": "Java implementation of the BSON specification",
"description": "MongoDB's Java implementation of the BSON specification",

"details": [
{
"minimum_version": "5.2.0",
"metadata_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/bson/src/main/resources/META-INF/native-image"
],
"tests_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/graalvm-native-image-app",
"https://github.com/mongodb/mongo-java-driver/blob/main/.evergreen/run-graalvm-native-image-app.sh"
],
"test_level": "fully-tested"
}
]
},
{
"artifact": "org.mongodb:mongodb-crypt",
"description": "MongoDB client-side crypto support",
"details": [
{
"minimum_version": "5.2.0",
"metadata_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/mongodb-crypt/src/main/resources/META-INF/native-image"
],
"tests_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/graalvm-native-image-app",
"https://github.com/mongodb/mongo-java-driver/blob/main/.evergreen/run-graalvm-native-image-app.sh"
],
"test_level": "fully-tested"
}
]
},
{
"artifact": "org.mongodb:mongodb-driver-core",
"description": "Shared components for the Synchronous and Reactive Streams implementations of the MongoDB Java Driver.",
"details": [
{
"minimum_version": "5.2.0",
"metadata_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/driver-core/src/main/resources/META-INF/native-image"
],
"tests_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/graalvm-native-image-app",
"https://github.com/mongodb/mongo-java-driver/blob/main/.evergreen/run-graalvm-native-image-app.sh"
],
"test_level": "fully-tested"
}
]
},
{
"artifact": "org.mongodb:mongodb-driver-reactivestreams",
"description": "A Reactive Streams implementation of the MongoDB Java Driver",
"details": [
{
"minimum_version": "5.2.0",
"metadata_locations": [],
"tests_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/graalvm-native-image-app",
"https://github.com/mongodb/mongo-java-driver/blob/main/.evergreen/run-graalvm-native-image-app.sh"
],
"test_level": "fully-tested"
}
]
},
{
"artifact": "org.mongodb:mongodb-driver-sync",
"description": "The official MongoDB driver for synchronous Java applications",
"details": [
{
"minimum_version": "5.2.0",
"metadata_locations": [],
"tests_locations": [
"https://github.com/mongodb/mongo-java-driver/tree/main/graalvm-native-image-app",
"https://github.com/mongodb/mongo-java-driver/blob/main/.evergreen/run-graalvm-native-image-app.sh"
],
"test_level": "fully-tested"
}
]
},
{
"artifact": "org.neo4j.driver:neo4j-java-driver",
"description": "Official Java Driver for Neo4j",
Expand Down