New `models.Comment()` object, `Post()` can now fetch comments
[diaspy.git] / Changelog.markdown
CommitLineData
6d8d47ce
MM
1## Changelog for `diaspy`, unofficla Diaspora\* API for Python
2
3This changelog file follows few rules:
4
5* __rem__: indicates removed features,
6* __new__: indicates new features,
7* __upd__: indicates updated features,
8* __dep__: indicates deprecated features,
9
10Deprecation means that in the next version feature will be removed.
11
12Also, after every version there should be a brief note describing possible
13problems with migrating to it from older versions and usage of new features.
14
15Users can always read the manual and dcumentation to make themselves more knowledgeable and
16are encouraged to do so. They only need to remember that documentation is usually more
17up-to-date than manual and if conflicts appear they should follow the order:
18
19*docstrings* -> *docs/* -> *manual/*
20
21
615edb73
MM
22----
23
24Version `0.3.1` (2013-07-12):
25
26* __upd__: `diaspy.people.sephandle()` raises `InvalidHandleError` instead of `UserError`
313fb305
MM
27* __new__: `models.Comment()` object: wrapper for comments, not to be created manually
28* __new__: `comments` parameter in `models.Post`: defines whether to fetch post's commets
615edb73 29* __new__: `connection.Connection` has new parameter in `__init__()`: it's `schema`
313fb305 30* __new__: `author()` method in `models.Post()`
615edb73
MM
31
32
33The new parameter in `connection.Connection` is useful when operating with handles.
34As handle does not contain schema (`http`, `https`, etc.) `_setlogin()` would raise an
35unhandled exception -- `requests.exceptions.MissingSchema`.
36Now, however, `Connection` will catch the exception, add missing schema and try once more.
37This parameter is provided to give programmers ability to manipulate it.
38
39Also, now you can pass just `pod.example.com` as `pod` parameter. Less typing!
40
313fb305
MM
41When it comes to posts, we are now able to fetch comments.
42
6d8d47ce
MM
43----
44
45Version `0.3.0` (2013-07-07):
46
cf0105fb
MM
47First edition of Changelog for `diaspy`.
48Developers should update their code as version `0.3.0` may not be fully
49backwards compatible depending on how the code is written.
50If you always pass named arguments and do not rely on their order you can, at least in
51theory, not worry about this update.
52
53Version `0.3.0` introduces few new features, fixes several bugs and brings a bit of
54redesign and refactoring od `diaspy`'s code.
55
56----