Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Release kedro-telemetry 0.6.1 #860

Merged
merged 4 commits into from
Sep 30, 2024
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
5 changes: 5 additions & 0 deletions kedro-telemetry/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Upcoming release

# Release 0.6.1
* Changed Kedro CLI loading method to improve loading times.
* Changed logging level from error to debug for most logging messages.
* Set default value for the `identity` parameter, to prevent errors due to it being empty.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one is also worth mentioning 552b973

# Release 0.6.0
* Moved to an opt-out model for telemetry, enabling it by default without requiring prior consent.
* Added `DO_NOT_TRACK` and `KEDRO_DISABLE_TELEMETRY` environment variables to skip telemetry.
Expand Down
2 changes: 1 addition & 1 deletion kedro-telemetry/kedro_telemetry/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Kedro plugin for collecting Kedro usage data."""

__version__ = "0.6.0"
__version__ = "0.6.1"

import logging

Expand Down