Skip to content

Commit b764def

Browse files
authored
Merge branch 'master' into pandas-try-again
2 parents ac65639 + 9e97682 commit b764def

File tree

7 files changed

+13
-12
lines changed

7 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [6.0.1] - 2025-12-25
99

1010
### Fixed
1111
- Changed extra's name back to `aio`
12-
- Fixed handling of datetime columns in old pandas versions. (#609)
12+
- Fixed handling of datetime columns in old pandas versions.
13+
- Fixed encoding error in `ingest_from_dataframe` when using csv data format.
1314

1415
## [6.0.0] - 2025-11-26
1516

azure-kusto-data/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "azure-kusto-data"
3-
version = "6.0.0"
3+
version = "6.0.1"
44
description = "Kusto Data Client"
55
authors = [
66
{ name = "Microsoft Corporation", email = "[email protected]" },

azure-kusto-ingest/azure/kusto/ingest/base_ingest_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def ingest_from_dataframe(
133133

134134
file_name = "df_{id}_{timestamp}_{uid}.{ext}.gz".format(id=id(df), timestamp=int(time.time()), uid=uuid.uuid4(), ext="json" if is_json else "csv")
135135
temp_file_path = os.path.join(tempfile.gettempdir(), file_name)
136-
with gzip.open(temp_file_path, "wb") as temp_file:
136+
with gzip.open(temp_file_path, "wt", encoding="utf-8") as temp_file:
137137
if is_json:
138138
df.to_json(temp_file, orient="records", date_format="iso", lines=True)
139139
ingestion_properties.format = DataFormat.JSON

azure-kusto-ingest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "azure-kusto-ingest"
3-
version = "6.0.0"
3+
version = "6.0.1"
44
description = "Kusto Ingest Client"
55
authors = [
66
{ name = "Microsoft Corporation", email = "[email protected]" },

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "azure-kusto-python"
3-
version = "6.0.0"
3+
version = "6.0.1"
44
description = "Microsoft Azure Kusto Python SDK"
55
dependencies = [
66
"azure-kusto-data",
@@ -83,4 +83,4 @@ pythonVersion = "3.9"
8383
reportUnnecessaryTypeIgnoreComment = false
8484
reportExplicitAny = false
8585
reportAny = false
86-
reportUnknownMemberType = false
86+
reportUnknownMemberType = false

quick-start/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "quick-start"
3-
version = "6.0.0"
3+
version = "6.0.1"
44
description = "Microsoft Azure Kusto Python SDK"
55
dependencies = [
66
"azure-kusto-data",

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)