Skip to content

Commit 152c3f4

Browse files
Add missing endpoints in replication @v2 (#700)
1 parent b0b38d3 commit 152c3f4

File tree

6 files changed

+2479
-0
lines changed

6 files changed

+2479
-0
lines changed

v2/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
22

33
## [master](https://github.com/arangodb/go-driver/tree/master) (N/A)
4+
- Add missing endpoints from replication to v2
45

56
## [2.1.5](https://github.com/arangodb/go-driver/tree/v2.1.5) (2025-08-31)
67
- Add tasks endpoints to v2

v2/arangodb/client.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@ type Client interface {
3737
ClientAsyncJob
3838
ClientFoxx
3939
ClientTasks
40+
ClientReplication
4041
}

v2/arangodb/client_impl.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ func newClient(connection connection.Connection) *client {
4040
c.clientAsyncJob = newClientAsyncJob(c)
4141
c.clientFoxx = newClientFoxx(c)
4242
c.clientTask = newClientTask(c)
43+
c.clientReplication = newClientReplication(c)
4344

4445
c.Requests = NewRequests(connection)
4546

@@ -58,6 +59,7 @@ type client struct {
5859
*clientAsyncJob
5960
*clientFoxx
6061
*clientTask
62+
*clientReplication
6163

6264
Requests
6365
}

0 commit comments

Comments
 (0)