Skip to content

Commit e8617c8

Browse files
authored
Merge pull request #192 from graphql-java/v24-release-and-blog
V24 release and blog
2 parents 8c3b955 + 5e91f87 commit e8617c8

24 files changed

Lines changed: 24 additions & 8 deletions
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ authors: donna
44
slug: v23-released
55
---
66

7+
**Update: please use the v24 series of releases instead of v23 releases. We have made a clearer breaking change in Java DataLoader, thus we will discontinue v23.**
8+
79
We are pleased to announce the release of graphql-java v23.0! Thanks to everyone in the community who contributed to the release, whether that was code, helping to report issues, or participating in discussions.
810

911
This is a **breaking change** release. Included are performance improvements and features.

blog/2025-05-13-v24-released.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: "Version 24 released"
3+
authors: donna
4+
slug: v24-released
5+
---
6+
7+
We are pleased to announce the release of graphql-java v24.0.
8+
9+
This release is an unexpected breaking change release. It was made to help propagate a fix in the DataLoader library.
10+
11+
We consider v23.x poisoned and we don't recommend you use it because of the latent bug explained in the release notes on [GitHub](https://github.com/graphql-java/graphql-java/releases/tag/v24.0).
12+
13+
Going forward we will not be supporting v23.x, instead please skip this series and use v24.x going forward.

documentation/getting-started.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repositories {
2525
}
2626
2727
dependencies {
28-
implementation 'com.graphql-java:graphql-java:23.1'
28+
implementation 'com.graphql-java:graphql-java:24.0'
2929
}
3030
```
3131
</TabItem>
@@ -38,7 +38,7 @@ repositories {
3838
}
3939

4040
dependencies {
41-
implementation("com.graphql-java:graphql-java:23.1")
41+
implementation("com.graphql-java:graphql-java:24.0")
4242
}
4343
```
4444
</TabItem>
@@ -51,7 +51,7 @@ Dependency:
5151
<dependency>
5252
<groupId>com.graphql-java</groupId>
5353
<artifactId>graphql-java</artifactId>
54-
<version>23.1</version>
54+
<version>24.0</version>
5555
</dependency>
5656
```
5757

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const config = {
2525
routeBasePath: 'documentation',
2626
sidebarPath: require.resolve('./sidebars.js'),
2727
editUrl: 'https://github.com/graphql-java/graphql-java-page/edit/master/',
28-
lastVersion: "v23",
28+
lastVersion: "v24",
2929
versions: {
3030
current: {
3131
label: "master",
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)