1
1
.. vim: set tw=100
2
2
3
+ 1.1.0: 2018-04-09
4
+ ~~~~~~~~~~~~~~~~~
5
+
6
+ This is a small release with some enhancments.
7
+
8
+ Features Added
9
+ ``````````````
10
+
11
+ - Repository collaborators now returns a ``users.Collaborator `` object, instead of
12
+ a ``users.ShortUser `` object. This is to support collaborator affiliations. A
13
+ refresh call of this object (and ``users.Contributor ``) will result in a full
14
+ ``users.User `` object.
15
+
16
+ - The call to iterate collaborators of a repository
17
+ (``Repsitory#collaborators ``) can now take an ``affiliation `` filter with options of
18
+ ``outside ``, ``direct ``, and ``all ``. The default is ``all ``, which preserves the previous
19
+ behavior of this method.
20
+
21
+ Bugs Fixed
22
+ ``````````
23
+
24
+ - Parse certain attributes on ``IssueEvent `` into objects (again, this was a
25
+ regression in 1.0)
26
+ - Handle older GitHub Enterprise responses for authenticated user objects
27
+ - Handle large file pull request responses not including a ``patch `` attribute
28
+
3
29
1.0.2: 2018-03-28
4
30
~~~~~~~~~~~~~~~~~
5
31
@@ -213,10 +239,10 @@ Old name New name
213
239
214
240
- ``github3.login `` has been simplified and split into two functions:
215
241
216
- - ``github3.login `` serves the majority use case and only provides an
242
+ - ``github3.login `` serves the majority use case and only provides an
217
243
authenticated ``GitHub `` object.
218
244
219
- - ``github3.enterprise_login `` allows GitHub Enterprise users to log into
245
+ - ``github3.enterprise_login `` allows GitHub Enterprise users to log into
220
246
their service.
221
247
222
248
- ``GitHub#iter_followers `` was split into two functions:
@@ -237,10 +263,10 @@ Old name New name
237
263
238
264
- ``GitHub#iter_gists `` was split into three functions:
239
265
240
- - ``GitHub#public_gists `` which iterates over all of the public gists on
266
+ - ``GitHub#public_gists `` which iterates over all of the public gists on
241
267
GitHub
242
268
243
- - ``GitHub#gists_for `` which iterates over all the public gists of a
269
+ - ``GitHub#gists_for `` which iterates over all the public gists of a
244
270
specific user
245
271
246
272
- ``GitHub#gists `` which iterates over the authenticated users gists
@@ -258,7 +284,7 @@ Old name New name
258
284
- ``GitHub#subscriptions_for `` which iterates over an arbitrary user's
259
285
subscriptions
260
286
261
- - ``GitHub#subscriptions `` which iterates over the authenticated user's
287
+ - ``GitHub#subscriptions `` which iterates over the authenticated user's
262
288
subscriptions
263
289
264
290
- ``GitHub#iter_starred `` was split into two functions:
@@ -292,10 +318,10 @@ Old name New name
292
318
293
319
- ``Repository#set_subscription `` was split into two simpler functions
294
320
295
- - ``Repository#subscribe `` subscribes the authenticated user to the
321
+ - ``Repository#subscribe `` subscribes the authenticated user to the
296
322
repository's notifications
297
323
298
- - ``Repository#ignore `` ignores notifications from the repository for the
324
+ - ``Repository#ignore `` ignores notifications from the repository for the
299
325
authenticated user
300
326
301
327
- ``Repository#contents `` was split into two simpler functions
0 commit comments