Removed .travis.yml
[diaspy.git] / Changelog.markdown
CommitLineData
4285c996 1## Changelog for `diaspy`, unofficial DIASPORA\* interface for Python
6d8d47ce
MM
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
f61c14c1
MM
22----
23
73a9e0d3 24#### Version `0.4.1` (2013-09-):
f61c14c1 25
2cf8467c
MM
26Login and authentication procedure backend received major changes in this version.
27There are no longer `username` and `password` variables in `Connection` object.
28Instead, credentials are stored (together with the token) in single variable `_login_data`.
29This is preserved until you call `login()` at which point credentials are erased and
30only token is left -- it can be obtained by calling `repr(Connection)`.
31
73a9e0d3
MM
32Also, this release is compatible with DIASPORA\* 0.2.0.0 but should still support
33pods running on older versions.
34
35And the test suite was updated. Yay!
36
37**`0.4.1-rc.1` (2013-09-02):**
2cf8467c 38
f61c14c1 39* __new__: `__getitem__()` in `diaspy.models.Post`,
fe783229
MM
40* __new__: `__dict__()` in `diaspy.models.Post`,
41* __new__: `guid` argument in `diaspy.models.Post.__init__()`,
f61c14c1
MM
42* __new__: `json()` method in `diaspy.streams.Generic` adds the possibility to export streams to JSON,
43* __new__: `full()` method in `diaspy.streams.Generic` will try to fetch full stream (containing all posts),
44* __new__: `setEmail()` method in `diaspy.settings.Settings`,
45* __new__: `setLanguage()` method in `diaspy.settings.Settings`,
46* __new__: `downloadPhotos()` method in `diaspy.settings.Settings`,
fe783229 47* __new__: `backtime` argument in `more()` method in `diaspy.streams.Generic`,
2cf8467c 48* __new__: `DiaspyError` will be raised when connection is created with empty password and/or username,
73a9e0d3
MM
49* __new__: `getSessionToken()` method in `diaspy.connection.Connection` returns string from `_diaspora_session` cookie,
50* __new__: `direct` parameter in `diaspy.connection.Connection().get()` allowing to disable pod expansion,
fe783229
MM
51
52* __upd__: if `Post()` is created with fetched comments, data will also be fetched as a dependency,
53* __upd__: `id` argument type is now `int` (`diaspy.models.Post.__init__()`),
51ab5af5 54* __upd__: `Search().lookup_user()` renamed to `Search().lookupUser()`,
3a509ff5 55* __upd__: `diaspy.messages` renamed to `diaspy.conversations` (but will be accessible under both names for this and next release),
2cf8467c
MM
56* __upd__: `LoginError` moved to `diaspy.errors`,
57* __upd__: `TokenError` moved to `diaspy.errors`,
58* __upd__: `diaspy.connection.Connection.podswitch()` gained two new positional arguments: `username` and `password`,
73a9e0d3 59* __upd__: `aspect_id` renamed to `id` in `diaspy.streams.Aspects().remove()`,
f61c14c1
MM
60
61* __fix__: fixed some bugs in regular expressions used by `diaspy` internals
62 (html tag removal, so you get nicer notifications),
5de52803 63* __fix__: fixed authentication issues,
f61c14c1
MM
64
65
1cff2093
MM
66----
67
4882952f
MM
68#### Version `0.4.0` (2013-08-20):
69
70This release is **not backwards compatible with `0.3.x` line**! You'll have to check your code for corrections.
71Also, this release if first to officially released fork version.
72
73* __dep__: `diaspy.client` is officially deprecated (will be removed in `0.4.1`),
74
75* __upd__: `diaspy.conversations` renamed to `diaspy.messages`,
76* __udp__: `diaspy.conversations.Conversation` moved to `diaspy.models`,
77
78* __new__: `diaspy.messages.Mailbox()` object representing diaspora\* mailbox,
79
80----
81
82Version `0.3.2` (2013-08-20):
1cff2093
MM
83
84* __upd__: `diaspy.connection.getUserData()` raises `DiaspyError` when it cannot find user data,
85
33735129
MM
86* __rem__: `diaspy.client.Client` must be explicitly imported,
87
615edb73
MM
88----
89
90Version `0.3.1` (2013-07-12):
91
92* __upd__: `diaspy.people.sephandle()` raises `InvalidHandleError` instead of `UserError`
63f1d9f1 93* __upd__: `models.Post()._fetch()` renamed to `_fetchdata()` (because of new `_fetchcomments()` method)
313fb305
MM
94* __new__: `models.Comment()` object: wrapper for comments, not to be created manually
95* __new__: `comments` parameter in `models.Post`: defines whether to fetch post's commets
615edb73 96* __new__: `connection.Connection` has new parameter in `__init__()`: it's `schema`
313fb305 97* __new__: `author()` method in `models.Post()`
615edb73
MM
98
99
100The new parameter in `connection.Connection` is useful when operating with handles.
101As handle does not contain schema (`http`, `https`, etc.) `_setlogin()` would raise an
102unhandled exception -- `requests.exceptions.MissingSchema`.
103Now, however, `Connection` will catch the exception, add missing schema and try once more.
104This parameter is provided to give programmers ability to manipulate it.
105
106Also, now you can pass just `pod.example.com` as `pod` parameter. Less typing!
107
313fb305
MM
108When it comes to posts, we are now able to fetch comments.
109
6d8d47ce
MM
110----
111
112Version `0.3.0` (2013-07-07):
113
cf0105fb
MM
114First edition of Changelog for `diaspy`.
115Developers should update their code as version `0.3.0` may not be fully
116backwards compatible depending on how the code is written.
117If you always pass named arguments and do not rely on their order you can, at least in
118theory, not worry about this update.
119
120Version `0.3.0` introduces few new features, fixes several bugs and brings a bit of
121redesign and refactoring od `diaspy`'s code.
122
123----