Skip to content

Releases: Azure/azure-kusto-python

Correct __str__ for KustoResultTable

28 Jan 10:37
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

None.

FIXES:

  • fixed bug described in #150 when calling str() on KustoResultTable.

Azure Managed Service Idenity Authentcation Support

28 Jan 09:18
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

FIXES:

  • Prevent compression of binary formats (Avro, Parquet and Orc) when ingesting from local file.

Support Orc format

29 Dec 10:12
94430a9
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

Support ingestion of Orc format files

FIXES:

None.

Fix streaming ingest service error

02 Dec 12:22
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

None.

FIXES:

Fix parsing of streaming ingest service errors.

Fix Azure Storage Versions - lock to 2.1.0

02 Nov 08:00
8f152e8
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

None.

FIXES:

  • Locked Azure-Storage-* versions to 2.1.0.

Support for Setting AadAuthorityUri Using an Environment Variable

28 Oct 15:28
3b26ece
Compare
Choose a tag to compare

BREAKING CHANGES:

None

FEATURES:

  • If the use of a non-default AadAuthorityUri is needed, set environment variable AadAuthorityUri to the required uri.

FIXES:

None

Added properties to ClientRequestProperties

03 Oct 13:24
d937fc5
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

Added to option to set public properties to ClientRequestProperties:

  • client_request_id
  • application
  • user

FIXES:

None.

Added Support for Kusto's New Mapping Parameters

22 Sep 13:59
4d14e9e
Compare
Choose a tag to compare

BREAKING CHANGES:

  • Changed DataFormat ENUM to be all caps, e.g DataFormat.csv is now DataFormat.CSV

FEATURES:

  • This release contains adjustments in order to support Kusto's new mapping formats: ingestionMapping, ingestionMappingType and ingestionMappingReference, which are properties of ingestionProperties and replace mapping and mappingReference.

  • Note that mapping and mappingReference will be deprecated in the next major version.

FIXES:

None.

Fix error when pandas is not installed

27 Aug 09:00
7251306
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

None.

FIXES:

  • Before the fix, some imports were not performed when pandas is not installed, but were still referenced in code.

Fix None handling in non-nullable columns

25 Aug 14:52
db8c5aa
Compare
Choose a tag to compare

BREAKING CHANGES:

None.

FEATURES:

None.

FIXES:

  • Before the fix, None values in non nullable column types (e.g Decimal) would raise when returned from queries.
    Now, will gracefully assign Nones
    Refer to test test_null_values_in_data for examples