Releases: Azure/azure-kusto-python
Ingestion Status Queues
Added the ability to track ingestion via status queues.
BREAKING CHANGES:
ReportMethod.QueueAndTableis no longer a valid option. Currently only supported reporting method is Queues.
FEATURES:
- It is now possible to listen to queues for ingestion status. examples are provided here
FIXES:
NONE
Making pandas Optional
Pandas are no longer a requirement for the package. if pandas are needed, please install with optional flag (pip install azure-kusto-data[pandas] and pip install azure-kusto-ingest[pandas]).
BREAKING CHANGES:
KustoResultTable.to_dataframemoved to helpers
from azure.kusto.data.helpers import dataframe_from_result_table
FEATURES:
- it is now possible to work with your tenant id. exposed new
authority_idas part ofKustoConnectionStringBuilder. for further info on how to get the id - follow this link
FIXES:
pandasare no longer installed as part of package which should make installation much faster.
v0.0.10
Security: Add ability to authenticate with application certificate
Interface: Kusto Connection String Builder is introduced. For more information look at:
https://kusto.azurewebsites.net/docs/concepts/kusto_connection_strings.html
KustoClient: Add option to get raw response
v0.0.9 Upgrade packages (#52)
Enhance Kusto response
azure-kusto-data:
Add refresh token mechanism.
Make all 3 dimensions of Kusto response iterables:
Response: iterate over tables.
Table: iterate over rows.
Rows: iterate over cells.
azure-kusto-ingest:
Added resource manager.
General:
Make the code black compatible.
Adding additional properties to ingestion properties
Adding additional properties to ingestion properties.
Changing requirements according to the use.