File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,14 @@ Release History
7979 the same as for ``Mapping ``. That is, ``__contains__ `` checks for JSON keys
8080 in the object, and ``__iter__ `` yields all of the object's keys.
8181
82+ - Added a ``RecentItem `` class.
83+ - Added ``client.get_recent_items() `` to retrieve a user's recently accessed items on Box.
84+ - Added ``BoxObjectCollection `` and subclasses ``LimitOffsetBasedObjectCollection `` and
85+ ``MarkerBasedObjectCollection `` to more easily manage paging of objects from an endpoint.
86+ These classes manage the logic of constructing requests to an endpoint and storing the results,
87+ then provide ``__next__ `` to easily iterate over the results. The option to return results one
88+ by one or as a ``Page `` of results is also provided.
89+
8290**Other **
8391
8492- Added extra information to ``BoxAPIException ``.
Original file line number Diff line number Diff line change 33from __future__ import unicode_literals , absolute_import
44
55
6- __version__ = '2.0.0a4 '
6+ __version__ = '2.0.0a5 '
You can’t perform that action at this time.
0 commit comments