diff --git a/CHANGELOG.md b/CHANGELOG.md index 0785e4b724..fc03900e48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +- Enabled the flake8-debugger rules for ruff linter. These rules do not allow for the use of debugger calls and imports in production code. + ([#5056](https://github.com/open-telemetry/opentelemetry-python/pull/5056)) +- Enabled the flake8-tidy-import plugins rules for the ruff linter. These rules throw warnings for relative imports in the modules. - Fix incorrect code example in `create_tracer()` docstring ([#5072](https://github.com/open-telemetry/opentelemetry-python/issues/5072)) - `opentelemetry-sdk`: add `load_entry_point` shared utility to declarative file configuration for loading plugins via entry points; refactor propagator loading to use it diff --git a/pyproject.toml b/pyproject.toml index b9bcd3453a..bd1dd07378 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -91,6 +91,7 @@ select = [ "UP032", # f-string "UP034", # extraneous-parentheses "UP037", # quoted-annotation + "T10", # flake8-debugger ] ignore = [