Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading