Skip to content

Commit d4350c0

Browse files
authored
Prepare for release 3.2.0 (#223)
## Release notes: usage and product changes Update release notes for release 3.2.0 ## Implementation
1 parent 2ee82eb commit d4350c0

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ Documentation: https://typedb.com/docs/drivers/
77
Available from https://crates.io/crates/typedb-protocol
88

99
```sh
10-
cargo add typedb-protocol@3.2.0-rc2
10+
cargo add typedb-protocol@3.2.0
1111
```
1212

1313
#### For Node.js through npm
1414

1515
Available from https://www.npmjs.com/package/typedb-protocol
1616

1717
```sh
18-
npm install typedb-protocol@3.2.0-rc2
18+
npm install typedb-protocol@3.2.0
1919
```
2020
or
2121
```sh
22-
yarn add typedb-protocol@3.2.0-rc2
22+
yarn add typedb-protocol@3.2.0
2323
```
2424

2525

@@ -30,6 +30,17 @@ yarn add typedb-protocol@3.2.0-rc2
3030
Remove unused Logic-related messages.
3131

3232

33+
- **Add sign-in request for authentication token retrieval**
34+
A new mechanism of authentication tokens has been introduced to replace the old way of sending usernames and passwords through the network with every request.
35+
36+
Instead, all user credentials (currently, it's usernames and passwords) are sent only:
37+
* as a part of `connection_open` request for authentication and authorization, with a temporary token returned;
38+
* as a part of `sign_in` request for sign ins within an established connection (to change the user or to get a new authentication token).
39+
Then, all further requests are expected to be authenticated only by temporary, less sensitive tokens.
40+
41+
The approach is extensible to other credential types that can be introduced in the future.
42+
43+
3344

3445
## Bugs Fixed
3546

@@ -38,5 +49,4 @@ yarn add typedb-protocol@3.2.0-rc2
3849

3950

4051
## Other Improvements
41-
4252

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0-rc2
1+
3.2.0

dependencies/typedb/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ def typedb_dependencies():
88
git_repository(
99
name = "typedb_dependencies",
1010
remote = "https://github.com/typedb/typedb-dependencies",
11-
commit = "b92f47300913cc8555ef18580eeaa5b1b1ecd2a1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
11+
commit = "ab777bf067b1930e35146fd8e25a76a4a360aa74", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_dependencies
1212
)

0 commit comments

Comments
 (0)