Bump gcal-sync to 4.1.0 (#84474)

* Bump gcal-sync to 4.1.0

* Update test with UNTIL improvements
This commit is contained in:
Allen Porter 2022-12-22 20:28:12 -08:00 committed by GitHub
parent 96533e4c8f
commit f9779d3e97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
"config_flow": true,
"dependencies": ["application_credentials"],
"documentation": "https://www.home-assistant.io/integrations/calendar.google/",
"requirements": ["gcal-sync==4.0.4", "oauth2client==4.1.3"],
"requirements": ["gcal-sync==4.1.0", "oauth2client==4.1.3"],
"codeowners": ["@allenporter"],
"iot_class": "cloud_polling",
"loggers": ["googleapiclient"]

View File

@ -744,7 +744,7 @@ gTTS==2.2.4
gassist-text==0.0.5
# homeassistant.components.google
gcal-sync==4.0.4
gcal-sync==4.1.0
# homeassistant.components.geniushub
geniushub-client==0.6.30

View File

@ -560,7 +560,7 @@ gTTS==2.2.4
gassist-text==0.0.5
# homeassistant.components.google
gcal-sync==4.0.4
gcal-sync==4.1.0
# homeassistant.components.geocaching
geocachingapi==0.2.1

View File

@ -1049,7 +1049,7 @@ async def test_websocket_delete_recurring_event_instance(
# Request to cancel all events after the second instance
assert aioclient_mock.mock_calls[0][2] == {
"id": "event-id-1",
"recurrence": ["RRULE:FREQ=WEEKLY;UNTIL=20221015"],
"recurrence": ["RRULE:FREQ=WEEKLY;UNTIL=20221014"],
}