11.. vim: set tw=100
22
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+
3291.0.2: 2018-03-28
430~~~~~~~~~~~~~~~~~
531
@@ -213,10 +239,10 @@ Old name New name
213239
214240- ``github3.login `` has been simplified and split into two functions:
215241
216- - ``github3.login `` serves the majority use case and only provides an
242+ - ``github3.login `` serves the majority use case and only provides an
217243 authenticated ``GitHub `` object.
218244
219- - ``github3.enterprise_login `` allows GitHub Enterprise users to log into
245+ - ``github3.enterprise_login `` allows GitHub Enterprise users to log into
220246 their service.
221247
222248- ``GitHub#iter_followers `` was split into two functions:
@@ -237,10 +263,10 @@ Old name New name
237263
238264- ``GitHub#iter_gists `` was split into three functions:
239265
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
241267 GitHub
242268
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
244270 specific user
245271
246272 - ``GitHub#gists `` which iterates over the authenticated users gists
@@ -258,7 +284,7 @@ Old name New name
258284 - ``GitHub#subscriptions_for `` which iterates over an arbitrary user's
259285 subscriptions
260286
261- - ``GitHub#subscriptions `` which iterates over the authenticated user's
287+ - ``GitHub#subscriptions `` which iterates over the authenticated user's
262288 subscriptions
263289
264290- ``GitHub#iter_starred `` was split into two functions:
@@ -292,10 +318,10 @@ Old name New name
292318
293319- ``Repository#set_subscription `` was split into two simpler functions
294320
295- - ``Repository#subscribe `` subscribes the authenticated user to the
321+ - ``Repository#subscribe `` subscribes the authenticated user to the
296322 repository's notifications
297323
298- - ``Repository#ignore `` ignores notifications from the repository for the
324+ - ``Repository#ignore `` ignores notifications from the repository for the
299325 authenticated user
300326
301327- ``Repository#contents `` was split into two simpler functions
0 commit comments