Skip to content

Commit 701daea

Browse files
Update the changelog and readme
1 parent 0120bf1 commit 701daea

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ 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.0.0/) and this project
66
adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## Unreleased
9+
10+
**Added**
11+
12+
- Add v25 Dgraph API
13+
- Added new `run_dql()` method for executing DQL queries directly
14+
- Added `allocate_uids()` method for allocating unique identifiers
15+
- Added `allocate_timestamps()` method for allocating timestamps
16+
- Added `allocate_namespaces()` method for allocating namespace IDs
17+
- Added namespace management methods:
18+
- `create_namespace()` - Creates a new namespace and returns its ID
19+
- `drop_namespace()` - Drops the specified namespace
20+
- `list_namespaces()` - Lists all available namespaces
21+
- Updated proto definitions to support Dgraph v25 API
22+
- Enhanced client functionality with new gRPC service methods
23+
824
## [v24.3.0] - 2025-07-29
925

1026
**Chore**

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ Valid connection string args:
101101
| apikey | \<key\> | a Dgraph Cloud API Key |
102102
| bearertoken | \<token\> | an access token |
103103
| sslmode | disable \| require \| verify-ca | TLS option, the default is `disable`. If `verify-ca` is set, the TLS certificate configured in the Dgraph cluster must be from a valid certificate authority. |
104+
| namespace | \<namespace\> | a previously created integer-based namespace, username and password must be supplied |
104105

105106
Note the `sslmode=require` pair is not supported and will throw an Exception if used. Python grpc
106107
does not support traffic over TLS that does not fully verify the certificate and domain. Developers
@@ -115,6 +116,7 @@ Some example connection strings:
115116
| dgraph://sally:supersecret@dg.example.com:443?sslmode=verify-ca | Connect to remote server, use ACL and require TLS and a valid certificate from a CA |
116117
| dgraph://foo-bar.grpc.us-west-2.aws.cloud.dgraph.io:443?sslmode=verify-ca&apikey=\<your-api-connection-key\> | Connect to a Dgraph Cloud cluster |
117118
| dgraph://foo-bar.grpc.hypermode.com:443?sslmode=verify-ca&bearertoken=\<some access token\> | Connect to a Dgraph cluster protected by a secure gateway |
119+
| dgraph://sally:supersecret@dg.example.com:443?namespace=2 | Connect to a ACL enabled Dgraph cluster in namespace 2 |
118120

119121
Using the `Open` function with a connection string:
120122

0 commit comments

Comments
 (0)