From 425b39c0c365c2013d4d16c3d500d23a53284320 Mon Sep 17 00:00:00 2001 From: Libba Lawrence Date: Thu, 2 Jan 2025 14:06:43 -0800 Subject: [PATCH] update changelog --- .../azure-pylint-guidelines-checker/CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tools/pylint-extensions/azure-pylint-guidelines-checker/CHANGELOG.md b/tools/pylint-extensions/azure-pylint-guidelines-checker/CHANGELOG.md index 7061a29fc7a..462eb2f02a6 100644 --- a/tools/pylint-extensions/azure-pylint-guidelines-checker/CHANGELOG.md +++ b/tools/pylint-extensions/azure-pylint-guidelines-checker/CHANGELOG.md @@ -2,7 +2,16 @@ ## 0.5.0 (unreleased) -- Feature: Add `httpx` as an import flagged by C4749(networking-import-outside-azure-core-transport) +- Added `httpx` as an import flagged by C4749(networking-import-outside-azure-core-transport) +- Checker to warn against legacy typing (do-not-use-legacy-typing) +- Checker to warn against errors being raised and logged (do-not-log-raised-errors) +- Refactored test suite +- Checker to warn against importing `asyncio` directly. (do-not-import-asyncio) +- Checker to warn against logging bare `Exception`. (do-not-log-exceptions) +- Refactored and enabled checker to warn if client does not have approved name prefix. (unapproved-client-method-name-prefix) +- Checker to warn if `connection_verify` is hardcoded to a boolean value. (do-not-hardcode-connection-verify) +- Checker to warn if sync and async overloads are mixed together. (invalid-use-of-overload). + ## 0.4.1 (2024-04-17)