Releases: tigergraph/pyTigerGraph
v1.8.4
v1.8.3
[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
[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
[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 togetEdgesByType()
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 addedrunLoadingJobWithData()
to run a GSQL loading job with a given data string.
v1.7.4
[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
[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
[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
[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
[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
[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.