Skip to content

Commit aec7b69

Browse files
Prepare release 3.7.0-rc3 (#818)
## Usage and product changes We update the release notes and bump the version to 3.7.0-rc3. ## Implementation
1 parent d08b5d4 commit aec7b69

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Documentation: https://typedb.com/docs/drivers/rust/overview
99

1010

1111
```sh
12-
cargo add [email protected]rc2
12+
cargo add [email protected]rc3
1313
```
1414

1515

1616
### Java driver
1717

18-
Available through [https://repo.typedb.com](https://cloudsmith.io/~typedb/repos/public-release/packages/detail/maven/typedb-driver/3.7.0-rc2/a=noarch;xg=com.typedb/)
18+
Available through [https://repo.typedb.com](https://cloudsmith.io/~typedb/repos/public-release/packages/detail/maven/typedb-driver/3.7.0-rc3/a=noarch;xg=com.typedb/)
1919
Documentation: https://typedb.com/docs/drivers/java/overview
2020

2121
```xml
@@ -29,7 +29,7 @@ Documentation: https://typedb.com/docs/drivers/java/overview
2929
<dependency>
3030
<groupid>com.typedb</groupid>
3131
<artifactid>typedb-driver</artifactid>
32-
<version>3.7.0-rc2</version>
32+
<version>3.7.0-rc3</version>
3333
</dependency>
3434
</dependencies>
3535
```
@@ -43,7 +43,7 @@ Available through https://pypi.org
4343

4444
[//]: # (TODO: Python's RC/Alpha/Beta versions are formatted differently. Don't foget to update manually until we make an automation)
4545
```
46-
pip install typedb-driver==3.7.0rc2
46+
pip install typedb-driver==3.7.0rc3
4747
```
4848

4949
### HTTP Typescript driver
@@ -54,12 +54,12 @@ NPM package: https://www.npmjs.com/package/@typedb/driver-http
5454
Documentation: https://typedb.com/docs/drivers/
5555

5656
```
57-
npm install @typedb/[email protected]rc2
57+
npm install @typedb/[email protected]rc3
5858
```
5959

6060
### C driver
6161

62-
Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-clib+version:3.7.0-rc2
62+
Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-clib+version:3.7.0-rc3
6363

6464

6565
## New Features
@@ -71,6 +71,10 @@ Compiled distributions comprising headers and shared libraries available at: htt
7171

7272

7373
## Bugs Fixed
74+
- **Fix how we return involved conjunctions**
75+
Fix a bug where we used the wrong index when decoding involved_conjunctions.
76+
77+
7478
- **Use naiive date in Python**
7579

7680
Python `Date` objects were timezone-aware, which means that it was possible to insert, for example `2010-10-10` (recorded on the server-side in UTC :00-00-00), and read it back as `2010-10-09` when in a negative timezone relative to UTC!

VERSION

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

http-ts/BUILD

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,13 @@ assemble_npm(
9191
target = ":npm-package",
9292
)
9393

94+
# NOTE: a scoped package published to npm is private by default unless `--access=public` is
95+
# supplied to the `npm publish` invocation OR the package already exists and is public.
96+
# Attempting to deploy a scoped package without that flag requires a paid accout and fails with
97+
# 402 Payment Required otherwise.
98+
# We've pushed a version of driver-http manually to make deployment work in CI.
99+
# See: https://docs.npmjs.com/cli/v10/using-npm/scope#publishing-scoped-packages
100+
# (This comment should also be added to the `deploy_npm` rule definition in bazel-distribution)
94101
deploy_npm(
95102
name = "deploy-npm",
96103
target = ":assemble-npm",

0 commit comments

Comments
 (0)