Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ Release History
the same as for ``Mapping``. That is, ``__contains__`` checks for JSON keys
in the object, and ``__iter__`` yields all of the object's keys.

- Added a ``RecentItem`` class.
- Added ``client.get_recent_items()`` to retrieve a user's recently accessed items on Box.
- Added ``BoxObjectCollection`` and subclasses ``LimitOffsetBasedObjectCollection`` and
``MarkerBasedObjectCollection`` to more easily manage paging of objects from an endpoint.
These classes manage the logic of constructing requests to an endpoint and storing the results,
then provide ``__next__`` to easily iterate over the results. The option to return results one
by one or as a ``Page`` of results is also provided.

**Other**

- Added extra information to ``BoxAPIException``.
Expand Down
2 changes: 1 addition & 1 deletion boxsdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from __future__ import unicode_literals, absolute_import


__version__ = '2.0.0a4'
__version__ = '2.0.0a5'