From b37834dcfaa336e360edb3aac31020cb814e3cba Mon Sep 17 00:00:00 2001 From: Tobias Brox Date: Tue, 7 Nov 2023 22:50:09 +0100 Subject: [PATCH] syncing the CHANGELOG.md --- CHANGELOG.md | 12 +++++++----- CONTRIBUTING.md | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29e91f62..81c62a0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,17 +15,19 @@ This project should more or less adhere to [Semantic Versioning](https://semver. Some bugfixes. -I've temporarily disabled testing for python 3.7 and python 3.8. This will be tracked in https://github.com/python-caldav/caldav/issues/332 - ### Fixes * Some parts of the library would throw OverflowError on very weird dates/timestamps. Now those are converted to the minimum or maximum accepted date/timestamp. Credits to github user @tamarinvs19 in https://github.com/python-caldav/caldav/pull/327 * `DAVResponse.davclient` was always set to None, now it may be set to the `DAVClient` instance. Credits to github user @sobolevn in https://github.com/python-caldav/caldav/pull/323 * `DAVResponse.davclient` was always set to None, now it may be set to the `DAVClient` instance. Credits to github user @sobolevn in https://github.com/python-caldav/caldav/pull/323 * `examples/sync_examples.py`, the sync token needs to be saved to the database (credits to Savvas Giannoukas) -* bugfixes in `set_relations`, credits to github user @Zocker1999NET in https://github.com/python-caldav/caldav/pull/335 and https://github.com/python-caldav/caldav/pull/333 -* dates that are off the scale are converted to `min_date` and `max_date` (and logging en error) rather than throwing OverflowError, credits to github user @tamarinvs19 in https://github.com/python-caldav/caldav/pull/327 -* completing a recurring task with a naïve or floating `DTSTART` would cause a runtime error +* Bugfixes in `set_relations`, credits to github user @Zocker1999NET in https://github.com/python-caldav/caldav/pull/335 and https://github.com/python-caldav/caldav/pull/333 +* Dates that are off the scale are converted to `min_date` and `max_date` (and logging en error) rather than throwing OverflowError, credits to github user @tamarinvs19 in https://github.com/python-caldav/caldav/pull/327 +* Completing a recurring task with a naïve or floating `DTSTART` would cause a runtime error +* Tests stopped working on python 3.7 and python 3.8 for a while. This was only an issue with libraries used for the testing, and has been mended. +* Bugfix that a 500 internal server error could cause an recursion loop, credits to github user @bchardin in https://github.com/python-caldav/caldav/pull/344 +* Compatibility-fix for Google calendar, credits to github user @e-katov in https://github.com/python-caldav/caldav/pull/344 +* Spelling, grammar and removing a useless regexp, credits to github user @scop in https://github.com/python-caldav/caldav/pull/337 ## [1.3.6] - 2023-07-20 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a4dddfa2..740ec85e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing -Contributions are mostly welcome, and this document should be kept short not to scare away contributors - and if the length of this text scares you, then I'd rather want you to skip reading and just produce a pull-request in GitHub. +Contributions are mostly welcome. If the length of this text scares you, then I'd rather want you to skip reading and just produce a pull-request in GitHub. ## Considerations