Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.6.3] - 2025-01-08
- Explicitly export members in `__init__.py` via `__all__`

## [4.6.2] - 2025-01-07

### Fixed
Expand Down
7 changes: 7 additions & 0 deletions azure-kusto-data/azure/kusto/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@
from .client_request_properties import ClientRequestProperties
from .kcsb import KustoConnectionStringBuilder
from .data_format import DataFormat

__all__ = [
"KustoClient",
"ClientRequestProperties",
"KustoConnectionStringBuilder",
"DataFormat",
]
2 changes: 1 addition & 1 deletion azure-kusto-data/azure/kusto/data/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License
VERSION = "4.6.2"
VERSION = "4.6.3"
29 changes: 28 additions & 1 deletion azure-kusto-ingest/azure/kusto/ingest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ._version import VERSION as __version__
from .base_ingest_client import IngestionResult, IngestionStatus
from .descriptors import BlobDescriptor, FileDescriptor, StreamDescriptor
from .exceptions import KustoMissingMappingError
from .exceptions import KustoMissingMappingError, KustoMappingError, KustoQueueError, KustoDuplicateMappingError, KustoInvalidEndpointError, KustoClientError
from .ingest_client import QueuedIngestClient
from .ingestion_properties import (
ValidationPolicy,
Expand All @@ -19,3 +19,30 @@
from .managed_streaming_ingest_client import ManagedStreamingIngestClient
from .streaming_ingest_client import KustoStreamingIngestClient
from .base_ingest_client import BaseIngestClient

__all__ = [
"IngestionResult",
"IngestionStatus",
"BlobDescriptor",
"FileDescriptor",
"StreamDescriptor",
"KustoMissingMappingError",
"KustoMappingError",
"KustoQueueError",
"KustoDuplicateMappingError",
"KustoInvalidEndpointError",
"KustoClientError",
"QueuedIngestClient",
"ValidationPolicy",
"ValidationImplications",
"ValidationOptions",
"ReportLevel",
"ReportMethod",
"IngestionProperties",
"IngestionMappingKind",
"ColumnMapping",
"TransformationMethod",
"ManagedStreamingIngestClient",
"KustoStreamingIngestClient",
"BaseIngestClient",
]
2 changes: 1 addition & 1 deletion azure-kusto-ingest/azure/kusto/ingest/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License
VERSION = "4.6.2"
VERSION = "4.6.3"
Loading