-
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3e39a2
commit 7f7ad41
Showing
15 changed files
with
313 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,25 @@ Change Log | |
HEAD | ||
---- | ||
|
||
4.5.2 | ||
----- | ||
- Make `FileAttachment.fp` a proper `BytesIO` implementation | ||
- Add missing `CalendarItem.recurrence_id` field | ||
- Add `SingleFolderQuerySet.resolve()` to aid accessing a folder shared by a different account: | ||
```python | ||
from exchangelib import Account | ||
from exchangelib.folders import Calendar, SingleFolderQuerySet | ||
from exchangelib.properties import DistinguishedFolderId, Mailbox | ||
|
||
account = Account(primary_smtp_address="[email protected]", ...) | ||
shared_calendar = SingleFolderQuerySet(account=account, folder=DistinguishedFolderId( | ||
id=Calendar.DISTINGUISHED_FOLDER_ID, | ||
mailbox=Mailbox(email_address="[email protected]") | ||
)).resolve() | ||
``` | ||
- Minor bugfixes | ||
|
||
|
||
4.5.1 | ||
----- | ||
- Support updating items in `Account.upload()`. Previously, only insert was supported. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.