Skip to content

Commit a943d76

Browse files
authored
Prepare for release 3.2.0-rc0 (#219)
## Release notes: usage and product changes Update version and release notes ## Implementation
1 parent 9e46e08 commit a943d76

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Documentation: https://typedb.com/docs/clients/2.x/clients
1+
Documentation: https://typedb.com/docs/drivers/
22

33
### Distribution
44

@@ -7,24 +7,34 @@ Documentation: https://typedb.com/docs/clients/2.x/clients
77
Available from https://crates.io/crates/typedb-protocol
88

99
```sh
10-
cargo add typedb-protocol@3.1.0
10+
cargo add typedb-protocol@3.2.0-rc0
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.1.0
18+
npm install typedb-protocol@3.2.0-rc0
1919
```
2020
or
2121
```sh
22-
yarn add typedb-protocol@3.1.0
22+
yarn add typedb-protocol@3.2.0-rc0
2323
```
2424

2525

2626
## New Features
27-
27+
- **Add sign-in request for authentication token retrieval**
28+
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.
29+
30+
Instead, all user credentials (currently, it's usernames and passwords) are sent only:
31+
* as a part of `connection_open` request for authentication and authorization, with a temporary token returned;
32+
* 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).
33+
Then, all further requests are expected to be authenticated only by temporary, less sensitive tokens.
34+
35+
The approach is extensible to other credential types that can be introduced in the future.
36+
37+
2838

2939
## Bugs Fixed
3040

@@ -33,6 +43,5 @@ yarn add [email protected]
3343

3444

3545
## Other Improvements
36-
- **Update dependencies**
3746

3847

RELEASE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Documentation: https://typedb.com/docs/clients/2.x/clients
1+
Documentation: https://typedb.com/docs/drivers/
22

33
### Distribution
44

VERSION

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

0 commit comments

Comments
 (0)