Skip to content

Releases: tigergraph/pyTigerGraph

v1.8.4

20 Jan 15:32
Compare
Choose a tag to compare

[1.8.4] - 2025-1-20

Release of pyTigerGraph version 1.8.4.

Fixed:

  • Fix URL construction when gsPort and restppPort are the same.

v1.8.3

05 Dec 01:57
Compare
Choose a tag to compare

[1.8.3] - 2024-12-04

Release of pyTigerGraph version 1.8.3.

Fixed:

  • Fix httpx timeout during async function calls. Noticed when installing a query with the .gsql() function.

v1.8.1

19 Nov 15:38
a6e70d2
Compare
Choose a tag to compare

[1.8.1] - 2024-11-19

Release of pyTigerGraph version 1.8.1.

Fixed:

  • Fix import error of TigerGraphException in the GDS submodule.

v1.8.0

05 Nov 14:52
Compare
Choose a tag to compare

[1.8] - 2024-11-04

Release of pyTigerGraph version 1.8.

Added:

  • Support for async communication with the TigerGraph Database, using the AsyncTigerGraphConnection class.
  • Added delVerticesByType() functionality
  • Added a limit parameter to getEdgesByType() to limit the number of edges returned. Note: the limit is applied after retrieving the edges from the database.
  • Added configuration parameters surrounding the atomicity of upsert operations.
  • Added runLoadingJobWithDataFrame() functionality to run a GSQL loading job with a Pandas DataFrame. Also added runLoadingJobWithData() to run a GSQL loading job with a given data string.

v1.7.4

16 Oct 14:33
Compare
Choose a tag to compare

[1.7.4] - 2024-10-16

Release of pyTigerGraph version 1.7.4.

Fixed:

  • Fixed error when generating a token via getToken() with a secret key.

v1.7.3

14 Oct 18:09
201bbc2
Compare
Choose a tag to compare

[1.7.3] - 2024-10-14

Release of pyTigerGraph version 1.7.3.

Fixed:

  • Fixed error when generating a token via getToken() on TigerGraph Cloud v3.x instances.

v1.7.2

01 Oct 16:21
Compare
Choose a tag to compare

[1.7.2] - 2024-10-01

Release of pyTigerGraph version 1.7.2.

Added:

  • delVerticesByType() function that allows all vertices of the specified type to be deleted at once.
    Arguements:
    vertexType:
    The name of the vertex type.
    permanent:
    If true, the deleted vertex IDs can never be inserted back, unless the graph is
    dropped or the graph store is cleared.
    ack:
    If the parameter is set to "none", the delete operation doesn’t need to get acknowledgment from any GPE.
    If it is set to "all" (default), the operation needs to get acknowledgment from all GPEs.
    Other values will raise an error.

    Usage:

    conn.delVerticesByType("Person")

v1.7.1

23 Sep 21:36
Compare
Choose a tag to compare

[1.7.1] - 2024-09-23

Release of pyTigerGraph version 1.7.1.

Fixed:

  • Better error messaging when failing to generate tokens
  • Fixed some hard-coded port configurations for v4 databases

v1.7.0

21 Aug 19:01
Compare
Choose a tag to compare

[1.7] - 2024-08-21

Release of pyTigerGraph version 1.7.

Added:

  • Support for refactored REST endpoints found in TigerGraph DB 4.1 and above.
  • Support for vertexMustExist parameter in upsert functions.

v1.6.5

06 Aug 17:08
Compare
Choose a tag to compare

[1.6.5] - 2024-08-06

Release of pyTigerGraph version 1.6.5

Fixed:

  • Fixed a bug in refreshToken() that prevented refresh of tokens on SSL-enabled connections on databases greater than version 3.5.