File tree Expand file tree Collapse file tree 6 files changed +24
-7
lines changed
DgraphJavaSampleDeadlineInterceptors
DgraphJavaSampleWithDeadlineAfter Expand file tree Collapse file tree 6 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
66
77## [ Unreleased]
88
9+ ## [ 21.03.2] - 2021-12-24
10+
11+ ### Added
12+
13+ * feat: Add timeout parameters to transaction requests. ([ #172 ] )
14+ * feat: Add shutdown method to client. ([ #173 ] )
15+
16+ [ #172 ] : https://github.com/dgraph-io/dgraph4j/pull/172
17+ [ #173 ] : https://github.com/dgraph-io/dgraph4j/pull/173
18+
919## [ 21.03.1] - 2021-04-22
1020### Added
1121* fix(deprecation): add DgraphClient.clientStubFromCloudEndpoint ([ #170 ] )
@@ -157,7 +167,8 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
157167## [ 1.0.0] - 2017-12-18
158168* Fully compatible with Dgraph v1.0
159169
160- [ Unreleased ] : https://github.com/dgraph-io/dgraph4j/compare/v21.03.1...HEAD
170+ [ Unreleased ] : https://github.com/dgraph-io/dgraph4j/compare/v21.03.2...HEAD
171+ [ 21.03.2 ] : https://github.com/dgraph-io/dgraph4j/compare/v21.03.1...v21.03.2
161172[ 21.03.1 ] : https://github.com/dgraph-io/dgraph4j/compare/v21.03.0...v21.03.1
162173[ 21.03.0 ] : https://github.com/dgraph-io/dgraph4j/compare/v20.11.0...v21.03.0
163174[ 20.11.0 ] : https://github.com/dgraph-io/dgraph4j/compare/v20.03.3...v20.11.0
Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ grab via Maven:
5555<dependency >
5656 <groupId >io.dgraph</groupId >
5757 <artifactId >dgraph4j</artifactId >
58- <version >21.03.1 </version >
58+ <version >21.03.2 </version >
5959</dependency >
6060```
6161or Gradle:
6262``` groovy
63- compile 'io.dgraph:dgraph4j:21.03.1 '
63+ compile 'io.dgraph:dgraph4j:21.03.2 '
6464```
6565
6666## Supported Versions
@@ -594,6 +594,12 @@ client](#creating-a-client).
594594channel. shutdown();
595595```
596596
597+ You can also close all channels in from the client object:
598+
599+ ```
600+ dgraphClient. shutdown();
601+ ```
602+
597603## Using the Asynchronous Client
598604Dgraph Client for Java also bundles an asynchronous API , which can be used by
599605instantiating the `DgraphAsyncClient ` class. The usage is almost exactly the
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ apply plugin: 'signing'
4141
4242group = ' io.dgraph'
4343archivesBaseName = ' dgraph4j'
44- version = ' 21.03.1 '
44+ version = ' 21.03.2 '
4545sourceCompatibility = 1.8
4646targetCompatibility = 1.8
4747
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ repositories {
1717
1818dependencies {
1919 // Use Dgraph Java client
20- compile ' io.dgraph:dgraph4j:21.03.1 '
20+ compile ' io.dgraph:dgraph4j:21.03.2 '
2121
2222 // Use JUnit test framework
2323 testCompile ' junit:junit:4.12'
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ repositories {
1717
1818dependencies {
1919 // Use Dgraph Java client
20- compile ' io.dgraph:dgraph4j:21.03.1 '
20+ compile ' io.dgraph:dgraph4j:21.03.2 '
2121
2222 // Use JUnit test framework
2323 testCompile ' junit:junit:4.12'
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ repositories {
1717
1818dependencies {
1919 // Use Dgraph Java client
20- compile ' io.dgraph:dgraph4j:21.03.1 '
20+ compile ' io.dgraph:dgraph4j:21.03.2 '
2121
2222 // Use JUnit test framework
2323 testCompile ' junit:junit:4.12'
You can’t perform that action at this time.
0 commit comments