Skip to content

Commit de6a2ff

Browse files
committed
chore: release v24.1.0
1 parent 9e0cc72 commit de6a2ff

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Calendar Versioning](https://calver.org/) starting v20.03.0.
77

8+
9+
## [24.1.0] - 2024-11-13
10+
11+
### Changed
12+
13+
* Bump the minor-and-patch group with 4 updates (#234 #232 #230 #229 #227 #228 #234 #226 #223 #225 #222 #221 #220 #218 #217)
14+
* Remove `grpc` dependency (#233)
15+
* fix euclidean spelling (#224)
16+
* update examples (#219)
17+
18+
819
## [24.0.0] - 2024-08-22
920

1021
### Added
@@ -25,7 +36,7 @@ Version bump.
2536

2637
### Added
2738

28-
- LoginIntoNamespace API
39+
- LoginIntoNamespace API
2940

3041
### Removed
3142

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@ and understand how to run and work with Dgraph.
2121

2222
## Table of contents
2323

24+
- [dgraph-js ](#dgraph-js---)
25+
- [Table of contents](#table-of-contents)
2426
- [Install](#install)
2527
- [Supported Versions](#supported-versions)
2628
- [Quickstart](#quickstart)
2729
- [Using a Client](#using-a-client)
2830
- [Creating a Client](#creating-a-client)
31+
- [Multi-tenancy](#multi-tenancy)
32+
- [Creating a Client for Dgraph Cloud Endpoint](#creating-a-client-for-dgraph-cloud-endpoint)
2933
- [Altering the Database](#altering-the-database)
3034
- [Creating a Transaction](#creating-a-transaction)
3135
- [Running a Mutation](#running-a-mutation)
@@ -66,15 +70,11 @@ use a different version of this client.
6670

6771
| Dgraph version | dgraph-js version |
6872
|:--------------:|:-----------------:|
69-
| 1.0.X | *1.X.Y* |
70-
| 1.1.X | *2.X.Y* |
7173
| 20.03.0 | *20.03.0* |
7274
| 21.03.0 | *21.03.0* |
73-
| >=21.03.0 | >=*21.03.0* |
75+
| >=21.03.0 | >=*21.03.0* |
76+
| >=24.X.X | >=*24.X.X* |
7477

75-
Note: Only API breakage from *v1.X.Y* to *v2.X.Y* is in
76-
the function `DgraphClient.newTxn().mutate()`. This function returns a `messages.Assigned`
77-
type in *v1.X* but a `messages.Response` type in *v2.X*.
7878

7979
## Quickstart
8080

examples/simple/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "simple",
33
"dependencies": {
4-
"dgraph-js": "^24.0.0",
4+
"dgraph-js": "^24.1.0",
55
"@grpc/grpc-js": "1.8.22"
66
},
77
"scripts": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dgraph-js",
3-
"version": "24.0.0",
3+
"version": "24.1.0",
44
"description": "Official javascript client for Dgraph",
55
"license": "Apache-2.0",
66
"repository": {

0 commit comments

Comments
 (0)