File size: 3,114 Bytes
550665c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
.. _change_log:

Change log
==========

v2.3.0
~~~~~~

API
---

* Adds `add_attendees` method to the `Event` for adding multiple attendees
* Add specific time reminders (N days before at HH:MM)
* Support Python3.12
* Allow service account credentials in `GoogleCalendar`

Core
----
* Don't evaluate default arguments in code docs (primarily for `timezone=get_localzone_name()`)

Backward compatibility
----------------------
* If token is expired but doesn't have refresh token, raises `google.auth.exceptions.RefreshError`
  instead of sending the request


v2.2.0
~~~~~~

API
---

* Adds support for new credentials file names (i.e. client_secret_*.json)

Core
----
* None

Backward compatibility
----------------------
* Full compatibility


v2.1.0
~~~~~~

API
---

* Adds support for python3.11
* Adds support for access control list (ACL) management
* Fix converting date to datetime in get_events
* Adds support for free/busy requests

Core
----
* None

Backward compatibility
----------------------
* Full compatibility

v2.0.1
~~~~~~

API
---

* Fixes issue with unknown timezones

Core
----
* Removes pytz dependency

Backward compatibility
----------------------
* Full compatibility


v2.0.0
~~~~~~

API
---

* Adds calendar and calendar list related methods
* Adds settings related method
* Adds colors related method
* Adds support for python3.10

Core
----
* Separates ``GoogleCalendar`` into authentication, events, calendars, calendar list, colors, and settings services
* Uses newest documentation generation libraries

Backward compatibility
----------------------
* Full compatibility


v1.3.0
~~~~~~

API
---

* Adds deletion of event by its id in ``GoogleCalendar.delete_event()``

Core
----
* None

Backward compatibility
----------------------
* Full compatibility


v1.2.1
~~~~~~

API
---

* Adds ``Event.id`` in serialized event
* Fixes conference's entry point without ``entry_point_type``

Core
----
* Switches to tox for testing

Backward compatibility
----------------------
* Full compatibility


v1.2.0
~~~~~~

API
---

* Adds ``GoogleCalendar.import_event()`` method

Core
----
* None

Backward compatibility
----------------------
* Full compatibility


v1.1.0
~~~~~~

API
---

* Fixes event creation without ``start`` and ``end``
* Adds ``creator``, ``organizer`` and ``transparency`` fields to event

Core
----
* None

Backward compatibility
----------------------
* Full compatibility


v1.0.1
~~~~~~

API
---

* Fixes ``GoogleCalendar.clear()`` method

Core
----
* None

Backward compatibility
----------------------
* Full compatibility


v1.0.0 and previous versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

API
---

* Adds authentication management
* Adds event management
* Adds documentation in readthedocs.com

Core
----
* Adds serializers for events and related objects
* Adds automated testing in GitHub actions with code-coverage

Backward compatibility
----------------------
* Full compatibility