Skip to content

Releases: typedb/typedb-driver

TypeDB Driver 2.29.2-rc0

04 Nov 12:56
e861a62
Compare
Choose a tag to compare

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.vaticle.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>2.29.2</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==2.29.2

NodeJS driver

NPM package: https://www.npmjs.com/package/typedb-driver
Documentation: https://typedb.com/docs/drivers/nodejs/overview

npm install [email protected]

C# driver

NuGet package: https://www.nuget.org/packages/TypeDB.Driver
Documentation: https://typedb.com/docs/drivers/csharp/overview

<ItemGroup>
    <PackageReference Include="TypeDB.Driver" Version="2.29.2" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.29.2" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.29.2" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.29.2" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.29.2" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.29.2" />
</ItemGroup>

C++ driver

Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-cpp+version:2.29.2
Documentation: https://typedb.com/docs/drivers/cpp/overview

C driver

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

New Features

Bugs Fixed

Code Refactors

Other Improvements

  • Native library names now include platform
    Native library names now include platform. This avoids the case where flattening a java project causes libraries for from one architecture for a given os clobbers the other.

TypeDB Driver 3.0.0-alpha-7

25 Oct 13:03
e38c13f
Compare
Choose a tag to compare
Pre-release

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>3.0.0-alpha-7</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==3.0.0-alpha-7

New Features

Bugs Fixed

  • Add handler for initial TransactionOpen response instead of erroring

    We eliminate the wrong error shown in logs when opening a transaction for all the 3.0 drivers.

Code Refactors

  • Receive QueryAnswer's QueryType from the server for all answer types

    The protocol has been updated, and Ok QueryAnswers receive correct QueryTypes from the server instead of the client-side hardcode usage.

Other Improvements

  • Introduce 3.0 Java driver docs and tests. Implement new fetch BDD steps in 3.0 drivers

    We introduce updated documentation, usage examples, and automated tests for the Java driver, to cover all the existing driver's APIs by sustainable validations.

    Additionally, we implement additional BDD steps to check concept documents in BDDs for other 3.0 drivers: Rust and Python.

TypeDB Driver 3.0.0-alpha-6

18 Oct 14:34
2cf962a
Compare
Choose a tag to compare
Pre-release

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>3.0.0-alpha-6</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==3.0.0-alpha-6

New Features

  • Add concept documents for fetch queries.
    We add concept documents to support the results of the reintroduced fetch queries.

    In Rust, results of fetch are streams of ConceptDocuments. It is possible to work with the structured document as a Rust struct, but it's also possible to convert it to a JSON document and/or its String representation.

    In Java, these results are presented as iterators over custom JSON class instances. A respective toString method is available.

    In Python, these results are presented as iterators over standard dict instances (able to be printed).

    Additionally, we add QueryType getters for general QueryAnswers, so it's possible to check its type without collection.

    Usage examples are shown in README for the Rust and the Python drivers. Example integration tests are also available for all 3 drivers.

  • Introduce 3.0 datetime-tz offsets and Rust driver documentation and tests.
    We introduce the second version of the Rust driver, adding TimeZone offsets for datetime-tz value types, fixing minor bugs and presenting the updated documentation and automated tests.

    Rust driver changes:

    • Add datetime-tz offsets;
    • Refactor test structure to separate integration and behaviour tests using Bazel, not Cargo flags;
    • Introduce example integration test for Rust and update README with the formatted code sample;
    • Introduce updated 3.0 bdds for connection and driver;
    • Introduce flags to run Rust bdds in core or cloud modes when TypeDB Cloud 3.x is implemented;
    • Fix Rust driver docs parser and update generated docs.

    Java and Python drivers changes:

    • Add datetime-tz offsets;
    • Rename Thing to Instance;
    • Remove ThingType,
    • Added getLabel/get_label for all Concept classes. Previously, it was only available for Types.

    Python driver changes:

    • Add bdd steps to match the updated declarations.
  • Introduce 3.0 Python driver docs and tests.
    We introduce the second version of the Python driver, fixing a number of minor bugs from the first version, enhancing existing APIs, and presenting the updated documentation and automated tests.

Bugs Fixed

Code Refactors

Other Improvements

TypeDB Driver 2.29.0

06 Oct 23:45
6ab1b41
Compare
Choose a tag to compare

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.vaticle.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>2.29.0</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==2.29.0

NodeJS driver

NPM package: https://www.npmjs.com/package/typedb-driver
Documentation: https://typedb.com/docs/drivers/nodejs/overview

npm install [email protected]

C# driver

NuGet package: https://www.nuget.org/packages/TypeDB.Driver
Documentation: https://typedb.com/docs/drivers/csharp/overview

<ItemGroup>
    <PackageReference Include="TypeDB.Driver" Version="2.29.0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.29.0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.29.0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.29.0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.29.0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.29.0" />
</ItemGroup>

C++ driver

Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-cpp+version:2.29.0
Documentation: https://typedb.com/docs/drivers/cpp/overview

C driver

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

New Features

Bugs Fixed

  • Python. Fix driver.close(). Add integration tests for connection closing for both core and cloud
    We fix the issue #669, where the Python Driver didn't close the connection when calling TypeDBDriver.close().

Code Refactors

  • Invert address translation table: map public addresses to private

    NOTE: The address translation table now represents mapping from the desired connection addresses to the addresses the cloud servers are configured with. This change does not impact users of TypeDB Core or TypeDB Cloud through the TypeDB Cloud Platform (https://cloud.typedb.com/)

Other Improvements

  • Hermetic npm deployment

  • Build and deploy for Python 3.12

    We enable support for python 3.12 driver build.

  • Partial go driver implementation
    Implement Basic core driver functionality of creating and closing a database.

  • Make the author of the NodeJS and Python drivers "TypeDB Community"

    The author field of our NodeJS and Python drivers (package.json and PyPi configuration) is now TypeDB Community with the email being [email protected].

  • Fix CI builds with updated error messages from typedb and typedb-cloud artifacts
    We update typedb and typedb-cloud artifacts references to match TypeDB***Runners used in most of the languages with typeql versions used in Rust and Java drivers in CI.

    Previously, the versions were mismatched, which caused errors in CI because of the different error messages received from drivers (Rust typeql for Rust, Java typeql for Java, and direct values from the server for all the other drivers).

TypeDB Driver 3.0.0-alpha-5

04 Oct 15:52
2374db9
Compare
Choose a tag to compare
Pre-release

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>3.0.0-alpha-5</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==3.0.0-alpha-5

New Features

  • Introduce TypeDB 3.0 Python driver
    We introduce the updated Python driver for the upcoming 3.0 release. To align with the updated Rust driver, we removed Concept API (so you could simplify your querying workflow with a single tx.query() entry point), squeezed sessions and transactions to standalone transactions, and remodeled messaging with the server.

    As it's an alpha release, some of the features are temporarily disabled both on the server and the driver's side:

    • Options;
    • User management;
    • Cloud connection with replicas information.

    Moreover, we no longer support Python 3.8 as its support comes to an end and we want to offer the full support of our newly introduced timezones with the standard library equally for all the versions of the language.

Bugs Fixed

  • Fix native object ownership checks in python driver
    Multiple rarely used features of the python driver used to be broken because of the native object misuse.

Code Refactors

Other Improvements

  • Bumped API version in antora config

  • Rename Maven groupId from "com.vaticle" to "com.typedb" to match the package path

  • Fix CircleCI jobs for Maven installation and Python builds

TypeDB Driver 3.0.0-alpha-4

27 Sep 15:38
3efaba3
Compare
Choose a tag to compare
Pre-release

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>3.0.0-alpha-4</version>
    </dependency>
</dependencies>

New Features

  • Introduce 3.0 Java driver
    We introduce the updated Java driver for the upcoming 3.0 release, featuring all the Rust driver's features in another language.
    Learn more about TypeDB 3.0 incoming features here: https://typedb.com/blog/typedb-3-roadmap

Bugs Fixed

  • Rust driver refinements
    We fix major issues:

    1. correctly passing the driver version string into the driver via the build system, instead of hard-coding it into the sources. This use a Cargo environment variable, which will always be available in released versions and is provided from the crate's Cargo.toml. During development, we just set the version to 0.0.0 because we don't particularly care about it!
    2. correctly request more answers from the query stream once a BatchContinue flag has been read by the user, as they consume the query answer stream. Previously, we immediately request more answers from the server as soon as we see the StreamContinue signal, in the network layer, which meant the whole stream was actually not lazy at all!
  • Fix decimal, datetime, datetime-tz value types processing

Code Refactors

  • Rename Java package com.vaticle.typedb to com.typedb and remove typeql dependencies.
    We rename the Java driver's package from com.vaticle.typedb to com.typedb.
    We remove excessive dependencies on typeql.

Other Improvements

TypeDB Driver 3.0.0-alpha-3

27 Sep 12:17
3663461
Compare
Choose a tag to compare
Pre-release

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.vaticle.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>3.0.0-alpha-3</version>
    </dependency>
</dependencies>

New Features

  • Introduce 3.0 Java driver
    We introduce the updated Java driver for the upcoming 3.0 release, featuring all the Rust driver's features in another language.
    Learn more about TypeDB 3.0 incoming features here: https://typedb.com/blog/typedb-3-roadmap

Bugs Fixed

  • Rust driver refinements
    We fix major issues:

    1. correctly passing the driver version string into the driver via the build system, instead of hard-coding it into the sources. This use a Cargo environment variable, which will always be available in released versions and is provided from the crate's Cargo.toml. During development, we just set the version to 0.0.0 because we don't particularly care about it!
    2. correctly request more answers from the query stream once a BatchContinue flag has been read by the user, as they consume the query answer stream. Previously, we immediately request more answers from the server as soon as we see the StreamContinue signal, in the network layer, which meant the whole stream was actually not lazy at all!
  • Fix decimal, datetime, datetime-tz value types processing

Code Refactors

Other Improvements

TypeDB Driver 2.28.6-rc0

05 Aug 15:27
0e7efb7
Compare
Choose a tag to compare

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.vaticle.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>2.28.6-rc0</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==2.28.6rc0

NodeJS driver

NPM package: https://www.npmjs.com/package/typedb-driver
Documentation: https://typedb.com/docs/drivers/nodejs/overview

npm install [email protected]

C# driver

NuGet package: https://www.nuget.org/packages/TypeDB.Driver
Documentation: https://typedb.com/docs/drivers/csharp/overview

<ItemGroup>
    <PackageReference Include="TypeDB.Driver" Version="2.28.6-rc0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.28.6-rc0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.28.6-rc0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.28.6-rc0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.28.6-rc0" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.28.6-rc0" />
</ItemGroup>

C++ driver

Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-cpp+version:2.28.6-rc0
Documentation: https://typedb.com/docs/drivers/cpp/overview

C driver

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

New Features

Bugs Fixed

  • Python. Fix driver.close(). Add integration tests for connection closing for both core and cloud
    We fix the issue #669, where the Python Driver didn't close the connection when calling TypeDBDriver.close().

Code Refactors

  • Invert address translation table: map public addresses to private

    NOTE: The address translation table now represents mapping from the desired connection addresses to the addresses the cloud servers are configured with. This change does not impact users of TypeDB Core or TypeDB Cloud through the TypeDB Cloud Platform (https://cloud.typedb.com/)

Other Improvements

  • Hermetic npm deployment

  • Build and deploy for Python 3.12

    We enable support for python 3.12 driver build.

  • Partial go driver implementation
    Implement Basic core driver functionality of creating and closing a database.

  • Make the author of the NodeJS and Python drivers "TypeDB Community"

    The author field of our NodeJS and Python drivers (package.json and PyPi configuration) is now TypeDB Community with the email being [email protected].

  • Fix CI builds with updated error messages from typedb and typedb-cloud artifacts
    We update typedb and typedb-cloud artifacts references to match TypeDB***Runners used in most of the languages with typeql versions used in Rust and Java drivers in CI.

    Previously, the versions were mismatched, which caused errors in CI because of the different error messages received from drivers (Rust typeql for Rust, Java typeql for Java, and direct values from the server for all the other drivers).

TypeDB Driver 2.28.4

14 Jun 12:04
6cfb17d
Compare
Choose a tag to compare

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.vaticle.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>2.28.4</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==2.28.4

NodeJS driver

NPM package: https://www.npmjs.com/package/typedb-driver
Documentation: https://typedb.com/docs/drivers/nodejs/overview

npm install [email protected]

C# driver

NuGet package: https://www.nuget.org/packages/TypeDB.Driver
Documentation: https://typedb.com/docs/drivers/csharp/overview

<ItemGroup>
    <PackageReference Include="TypeDB.Driver" Version="2.28.4" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.28.4" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.28.4" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.28.4" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.28.4" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.28.4" />
</ItemGroup>

C++ driver

Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-cpp+version:2.28.4
Documentation: https://typedb.com/docs/drivers/cpp/overview

C driver

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

New Features

Bugs Fixed

  • JNI library loading uses a predetermined file name
    The unpacked JNI library now uses a pre-determined filename. This replaces logic to extract the filename from the packaged resource.

Code Refactors

Other Improvements

  • Update nodejs driver dependencies and fix builds based on the updated typescript rules

TypeDB Driver 2.28.2-rc1

17 May 15:11
a7227fa
Compare
Choose a tag to compare

Documentation: https://typedb.com/docs/drivers/overview

Distribution

Rust driver

Available from https://crates.io/crates/typedb-driver
Documentation: https://typedb.com/docs/drivers/rust/overview

Java driver

Available through https://repo.typedb.com
Documentation: https://typedb.com/docs/drivers/java/overview

<repositories>
    <repository>
        <id>repo.typedb.com</id>
        <url>https://repo.typedb.com/public/public-release/maven/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupid>com.vaticle.typedb</groupid>
        <artifactid>typedb-driver</artifactid>
        <version>2.28.2-rc1</version>
    </dependency>
</dependencies>

Python driver

PyPI package: https://pypi.org/project/typedb-driver
Documentation: https://typedb.com/docs/drivers/python/overview

Available through https://pypi.org

pip install typedb-driver==2.28.2-rc1

NodeJS driver

NPM package: https://www.npmjs.com/package/typedb-driver
Documentation: https://typedb.com/docs/drivers/nodejs/overview

npm install [email protected]

C# driver

NuGet package: https://www.nuget.org/packages/TypeDB.Driver
Documentation: https://typedb.com/docs/drivers/csharp/overview

<ItemGroup>
    <PackageReference Include="TypeDB.Driver" Version="2.28.2-rc1" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.28.2-rc1" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.28.2-rc1" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.28.2-rc1" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.28.2-rc1" />
    <PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.28.2-rc1" />
</ItemGroup>

C++ driver

Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-cpp+version:2.28.2-rc1
Documentation: https://typedb.com/docs/drivers/cpp/overview

C driver

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

New Features

Bugs Fixed

  • JNI library loading uses a predetermined file name
    The unpacked JNI library now uses a pre-determined filename. This replaces logic to extract the filename from the packaged resource.

Code Refactors

Other Improvements