Skip to content

ArangoDB 7.16 #308

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

Merged
merged 2 commits into from
Jan 13, 2025
Merged
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
2 changes: 1 addition & 1 deletion jnosql-arangodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>The Eclipse JNoSQL layer to ArangoDB</description>

<properties>
<arango.driver>7.15.0</arango.driver>
<arango.driver>7.16.0</arango.driver>

</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
*/
public abstract class ArangoDBConfiguration {

protected ArangoDB.Builder builder = new ArangoDB.Builder()
.serde(new JsonbSerde());
protected ArangoDB.Builder builder = new ArangoDB.Builder();

/**
* Adds a host in the arangodb builder
Expand Down Expand Up @@ -93,13 +92,7 @@ public void setUseSSL(boolean value) {
}

/**
* Set the ArangoDB serde for the user data. Note that the provided
* serde must support serializing and deserializing JsonP types,
* i.e. {@link jakarta.json.JsonValue} and its children.
* By default, the builder is configured to use {@link JsonbSerde};
* this setter allows overriding it, i.e. providing an instance of
* {@link JsonbSerde} that uses a specific {@link jakarta.json.bind.Jsonb}
* instance.
* Set the ArangoDB serde
*
* @param serde the serde
*/
Expand Down

This file was deleted.

Loading