Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b1191e6
Replication - Add endpoint to Create New Batch
bluepal-prasanthi-moparthi Aug 20, 2025
535cc9c
Replication - Add test case for Create New Batch
bluepal-prasanthi-moparthi Aug 20, 2025
69ec96c
modified passing params in post call
bluepal-prasanthi-moparthi Aug 21, 2025
b169576
Replication: Add end point to retrieves the inventory of a replicatio…
bluepal-prasanthi-moparthi Aug 21, 2025
d28a641
Replication: Add test case to retrieves the inventory of a replicatio…
bluepal-prasanthi-moparthi Aug 21, 2025
edf7b32
Replication: Add endpoint for delete batch
bluepal-prasanthi-moparthi Aug 21, 2025
f4b8c12
Replication: Add endpoint for extend batch
bluepal-prasanthi-moparthi Aug 22, 2025
c60e93f
Replication: Add end point to dump collection
bluepal-prasanthi-moparthi Aug 22, 2025
3d260e1
Replication: add endpoint to get the replication logger state
bluepal-prasanthi-moparthi Aug 25, 2025
a5c2852
Replication: add endpoint to get the first available replication tick…
bluepal-prasanthi-moparthi Aug 25, 2025
bdcf336
Replication: Add endpoint for logger-tick-ranges
bluepal-prasanthi-moparthi Aug 25, 2025
7c7a4a7
Replication: Add endpoint to get the applier configuration
bluepal-prasanthi-moparthi Aug 26, 2025
070623c
Replication: Add endpoint to update applier config
bluepal-prasanthi-moparthi Aug 28, 2025
89d3ec0
Replication: Add endpoints for Start, Stop and Get the replication ap…
bluepal-prasanthi-moparthi Aug 28, 2025
10148c5
Replication: Add endpoint to fetch Replication Server Id
bluepal-prasanthi-moparthi Aug 29, 2025
a91f2a4
Replication: Add new end point make-follower
bluepal-prasanthi-moparthi Aug 29, 2025
ab3a510
Replication: Add endpoint to fetch the tick ranges available in the WAL
bluepal-prasanthi-moparthi Aug 29, 2025
1241409
Replication: Add endpoint to fetch the last available tick value
bluepal-prasanthi-moparthi Aug 29, 2025
b9f585e
Replication: Add this endpoint _api/wal/tail
bluepal-prasanthi-moparthi Sep 1, 2025
a97756a
Replication: Add revisions tree endpoint
bluepal-prasanthi-moparthi Sep 1, 2025
19e36b1
Replication: Add endpoint to list document revisions in range
bluepal-prasanthi-moparthi Sep 1, 2025
ef0909b
Repliation: Add endpoint to fetch revision documents
bluepal-prasanthi-moparthi Sep 2, 2025
c2a13b3
Replication: Add endpoint to ttart replication from a remote endpoint
bluepal-prasanthi-moparthi Sep 2, 2025
8b60f12
Add note in CHNAGELOG file
bluepal-prasanthi-moparthi Sep 2, 2025
b9e2711
Resolved merge conflicts
bluepal-prasanthi-moparthi Sep 5, 2025
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
1 change: 1 addition & 0 deletions v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change Log

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

## [2.1.5](https://github.com/arangodb/go-driver/tree/v2.1.5) (2025-08-31)
- Add tasks endpoints to v2
Expand Down
1 change: 1 addition & 0 deletions v2/arangodb/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ type Client interface {
ClientAsyncJob
ClientFoxx
ClientTasks
ClientReplication
}
2 changes: 2 additions & 0 deletions v2/arangodb/client_impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ func newClient(connection connection.Connection) *client {
c.clientAsyncJob = newClientAsyncJob(c)
c.clientFoxx = newClientFoxx(c)
c.clientTask = newClientTask(c)
c.clientReplication = newClientReplication(c)

c.Requests = NewRequests(connection)

Expand All @@ -58,6 +59,7 @@ type client struct {
*clientAsyncJob
*clientFoxx
*clientTask
*clientReplication

Requests
}
Expand Down
Loading