You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Restore communication dump to sync and async request paths
The debug_dump_communication / PYTHON_CALDAV_COMMDUMP feature was lost
during the v3.0 refactor. Extract it into a shared _dump_communication()
helper in caldav.lib.error so the logic is not duplicated between the
sync (_sync_request) and async (_async_request) code paths.
Fixes#638
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,10 @@ This project should adhere to [Semantic Versioning](https://semver.org/spec/v2.0
14
14
15
15
## [Unreleased]
16
16
17
+
### Fixed
18
+
19
+
* Communication dump (`PYTHON_CALDAV_COMMDUMP` / `debug_dump_communication`) was accidentally dropped during the v3.0 refactor. Restored, with the dump logic extracted into a shared helper so both the sync and async code paths benefit. Fixes https://github.com/python-caldav/caldav/issues/638
20
+
17
21
### Documentation
18
22
19
23
I've decided to try to stick to the conventionalcommits standard. This is documented in CONTRIBUTING.md. We'll see how many days it takes before I forget about it ...
0 commit comments