Skip to content

Commit 8158a97

Browse files
authored
prepare to release v24.2.0 (#272)
1 parent c7e475d commit 8158a97

File tree

7 files changed

+20
-19
lines changed

7 files changed

+20
-19
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,21 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/),
66

7-
## [XX.X.X] - 2025-XX-XX
7+
## [24.2.0] - 2025-04-21
88

99
**Added**
1010

11-
- add support for Dgraph connection strings (#268)
11+
- feat: add support for Dgraph connection strings (#268)
12+
13+
**Fixed**
14+
15+
- chore(deps): Update java minor and patch (#271) (#269) (#267) (#261) (#260)
16+
- chore(deps): Update dependency com.google.protobuf:protobuf-gradle-plugin to v0.9.5 (#270)
17+
- chore(deps): Update dependency org.testng:testng to v7 (#262)
18+
- build(deps): bump com.google.code.gson:gson from 2.11.0 to 2.12.0 in
19+
/samples/concurrent-modification in the minor-and-patch group (#256)
20+
- build(deps): bump the minor-and-patch group across 4 directories with 1 update (#257) (#255)
21+
(#254) (#253)
1222

1323
## [24.1.1] - 2024-12-13
1424

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ grab via Maven:
7373
<dependency>
7474
<groupId>io.dgraph</groupId>
7575
<artifactId>dgraph4j</artifactId>
76-
<version>24.1.1</version>
76+
<version>24.2.0</version>
7777
</dependency>
7878
```
7979

8080
or Gradle:
8181

8282
```groovy
83-
compile 'io.dgraph:dgraph4j:24.1.1'
83+
compile 'io.dgraph:dgraph4j:24.2.0'
8484
```
8585

8686
## Supported Versions
@@ -134,15 +134,9 @@ The following is only applicable to dgraph4j versions < v24.X.X.
134134

135135
| dgraph4j version | grpc-netty version | netty-tcnative-boringssl-static version |
136136
| :--------------: | :----------------: | :-------------------------------------: |
137-
| 1.0.0-1.2.0 | 1.7.0 | 2.0.6.Final |
138-
| 1.4.0-1.6.0 | 1.10.0 | 2.0.7.Final |
139-
| 1.7.0 | 1.15.0 | 2.0.12.Final |
140-
| 1.7.3-1.7.5 | 1.15.1 | 2.0.12.Final |
141-
| 2.0.0-2.1.0 | 1.22.1 | 2.0.25.Final |
142-
| 20.03.0-20.03.3 | 1.26.0 | 2.0.26.Final |
143-
| >= 20.11.0 | 1.34.1 | 2.0.31.Final |
144137
| >= 24.0.0 | 1.65.1 | 4.1.100.Final |
145138
| >= 24.1.1 | 1.68.2 | 4.1.110.Final |
139+
| >= 24.2.0 | 1.69.1 | 4.1.111.Final |
146140

147141
For example, when using `dgraph4j v24.0.0`, the version of the `netty-tcnative-boringssl-static`
148142
dependency to be used is `4.1.100.Final`, as suggested by gRPC docs for `grpc-netty v1.65.1`.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ apply plugin: 'idea'
3030
apply plugin: 'signing'
3131

3232
group = 'io.dgraph'
33-
version = '24.1.1'
33+
version = '24.2.0'
3434

3535
base {
3636
archivesName = 'dgraph4j'

samples/DgraphJavaSample/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
// Use Dgraph Java client
20-
implementation 'io.dgraph:dgraph4j:24.1.1'
20+
implementation 'io.dgraph:dgraph4j:24.2.0'
2121

2222
// Use JUnit test framework
2323
testImplementation 'junit:junit:4.13.2'
@@ -28,4 +28,3 @@ dependencies {
2828

2929
// Define the main class for the application
3030
mainClassName = 'App'
31-

samples/DgraphJavaSampleDeadlineInterceptors/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
// Use Dgraph Java client
20-
implementation 'io.dgraph:dgraph4j:24.1.1'
20+
implementation 'io.dgraph:dgraph4j:24.2.0'
2121

2222
// Use JUnit test framework
2323
testImplementation 'junit:junit:4.13.2'
@@ -28,4 +28,3 @@ dependencies {
2828

2929
// Define the main class for the application
3030
mainClassName = 'App'
31-

samples/DgraphJavaSampleWithDeadlineAfter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
// Use Dgraph Java client
20-
implementation 'io.dgraph:dgraph4j:24.1.1'
20+
implementation 'io.dgraph:dgraph4j:24.2.0'
2121

2222
// Use JUnit test framework
2323
testImplementation 'junit:junit:4.13.2'

samples/concurrent-modification/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,4 @@
4141
<version>2.13.0</version>
4242
</dependency>
4343
</dependencies>
44-
45-
</project>
44+
</project>

0 commit comments

Comments
 (0)