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
The `expand` parameter should be a bool. From 1.4, "client" and "server" was accepted.
This have been moved into a new parameter `server_expand`.
`server_expand` is by default False, used to be True if expand was True.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,12 @@ This project should adhere to [Semantic Versioning](https://semver.org/spec/v2.0
15
15
16
16
### Added
17
17
18
-
*`event.component` is now an alias for `event.icalendar_component`
18
+
*`event.component` is now an alias for `event.icalendar_component`.
19
19
20
20
### Changed
21
21
22
22
* The request library has been in a feature freeze for ages and may seem like a dead end. There exists a fork of the project niquests, we're migrating to that one. This means nothing except for one additional dependency. (httpx was also considered, but it's not a drop-in replacement for the requests library, and it's a risk that such a change will break compatibility with various other servers - see https://github.com/python-caldav/caldav/issues/457 for details). Work by @ArtemIsmagilov, https://github.com/python-caldav/caldav/pull/455.
23
+
* Search has a new parameter server_expand, which defaults to False. Earlier it would default to True if expand was set. This change makes `search(expand=True, ...)` more consistent regardless of which server is in use, but it breaks bug-backward-compatibility with 1.x.
0 commit comments