3e2742b9209a09c78901b972ff4224afc499e57a
[diaspy.git] / Changelog.markdown
1 ## Changelog for `diaspy`, unofficial DIASPORA\* interface for Python
2
3 This 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
10 Deprecation means that in the next version feature will be removed.
11
12 Also, after every version there should be a brief note describing possible
13 problems with migrating to it from older versions and usage of new features.
14
15 Users can always read the manual and dcumentation to make themselves more knowledgeable and
16 are encouraged to do so. They only need to remember that documentation is usually more
17 up-to-date than manual and if conflicts appear they should follow the order:
18
19 *docstrings* -> *docs/* -> *manual/*
20
21 ----
22
23 #### Known issues
24
25 * __bug__: `diaspy` has problems/can't connect to pods using SNI (this is an issue with requests/urllib3/python),
26
27
28 ----
29
30 #### Version `0.4.2` (2013-09-):
31
32 This version has some small incompatibilities with `0.4.1` so read Changelog carefully.
33
34 * __new__: `diaspy.people.User._fetchstream()` method,
35 * __new__: `diaspy.people.Me()` object representing current user,
36 * __new__: `**kwargs` added to `diaspy.streams.Generic.json()` methdo to give developers control over the creation of JSON,
37 * __new__: `.getHCard()` method added to `diaspy.people.User()`,
38
39
40 * __upd__: `diaspy.connection.Connection.login()` modifies connection object in-place **and** returns it (this allows more fluent API),
41 * __upd__: `diaspy.connection.Connection.login()` no longer returns status code (if login was unsuccessful it'll raise an exception),
42 * __upd__: `diaspy.connection.Connection._login()` no longer returns status code (if login was unsuccessful it'll raise an exception),
43 * __upd__: better error message in `diaspy.models.Post().__init__()`,
44 * __upd__: `data` variable in `diaspy.models.Post()` renamed to `_data` to indicate that it's considered private,
45 * __upd__: after deleting a post `Activity` stream is purged instead of being refilled (this preserves state of stream which is not reset to last 15 posts),
46 * __upd__: `filterByIDs()` method in `Aspects` stream renamed to `filter()`,
47
48
49 * __rem__: `diaspy.connection.Connection.getUserInfo()` moved to `diaspy.connection.Connection.getUserData()`,
50 * __rem__: `fetch` parameter removed from `diaspy.connection.Connection.getUserData()`,
51
52
53 * __dep__: `max_time` parameter in `diaspy.streams.*.more()` method is deprecated,
54
55
56 ----
57
58 #### Version `0.4.1` (2013-09-12):
59
60 Login and authentication procedure backend received major changes in this version.
61 There are no longer `username` and `password` variables in `Connection` object.
62 Instead, credentials are stored (together with the token) in single variable `_login_data`.
63 This is preserved until you call `login()` at which point credentials are erased and
64 only token is left -- it can be obtained by calling `repr(Connection)`.
65
66 Also, this release is compatible with DIASPORA\* 0.2.0.0 but should still support
67 pods running on older versions.
68
69 And the test suite was updated. Yay!
70
71
72 * __new__: `diaspy.errors.SettingsError`.
73
74
75 * __upd__: `diaspy.settings.Account.setEmail()` can now raise `SettingsError` when request fails,
76 * __upd__: `diaspy.settings.Account.getEmail()` will now return empty string instead of raising an exception if cannot fetch mail,
77 * __upd__: improved language fetching in `diaspy.settings.Account.getLanguages()`.
78
79
80 * __rem__: `diaspy/client.py` is removed,
81
82
83 **`0.4.1-rc.3` (2013-09-08):**
84
85 * __new__: `diaspy.settings.Profile.load()` method for loading profile information,
86 * __new__: `diaspy.settings.Profile.update()` method for updating profile information,
87 * __new__: `diaspy.settings.Profile.setName()` method,
88 * __new__: `diaspy.settings.Profile.setBio()` method,
89 * __new__: `diaspy.settings.Profile.setLocation()` method,
90 * __new__: `diaspy.settings.Profile.setTags()` method,
91 * __new__: `diaspy.settings.Profile.setGender()` method,
92 * __new__: `diaspy.settings.Profile.setBirthDate()` method,
93 * __new__: `diaspy.settings.Profile.setSearchable()` method,
94 * __new__: `diaspy.settings.Profile.setNSFW()` method,
95
96
97 **`0.4.1-rc.2` (2013-09-06):**
98
99 * __new__: `diaspy.search.Search.tags()` method for getting tag suggestions,
100 * __new__: `diaspy.settings.Profile.getName()` method,
101 * __new__: `diaspy.settings.Profile.getBio()` method,
102 * __new__: `diaspy.settings.Profile.getLocation()` method,
103 * __new__: `diaspy.settings.Profile.getTags()` method,
104 * __new__: `diaspy.settings.Profile.getGender()` method,
105 * __new__: `diaspy.settings.Profile.getBirthDate()` method,
106 * __new__: `diaspy.settings.Profile.isSearchable()` method,
107 * __new__: `diaspy.settings.Profile.isNSFW()` method,
108 * __new__: `provider_display_name` parameter in `diaspy.streams.Stream.post()` (thanks @svbergerem),
109
110
111 * __upd__: `remeber_me` parameter in `diaspy.connection.Connection.login()`,
112 * __upd__: you must supply `username` and `password` parameters on init of `diaspy.connection.Connection`,
113 * __upd__: you must update your testconf.py (new fields are required for settings tests),
114 * __upd__: `diaspy.settings.Settings` renamed to `diaspy.settings.Account`,
115
116
117 * __rem__: `username` and `password` parameters removed from `diaspy.connection.Connection.login()`
118 must be supplied on init,
119
120
121 **`0.4.1-rc.1` (2013-09-02):**
122
123 * __new__: `__getitem__()` in `diaspy.models.Post`,
124 * __new__: `__dict__()` in `diaspy.models.Post`,
125 * __new__: `guid` argument in `diaspy.models.Post.__init__()`,
126 * __new__: `json()` method in `diaspy.streams.Generic` adds the possibility to export streams to JSON,
127 * __new__: `full()` method in `diaspy.streams.Generic` will try to fetch full stream (containing all posts),
128 * __new__: `setEmail()` method in `diaspy.settings.Settings`,
129 * __new__: `setLanguage()` method in `diaspy.settings.Settings`,
130 * __new__: `downloadPhotos()` method in `diaspy.settings.Settings`,
131 * __new__: `backtime` argument in `more()` method in `diaspy.streams.Generic`,
132 * __new__: `DiaspyError` will be raised when connection is created with empty password and/or username,
133 * __new__: `getSessionToken()` method in `diaspy.connection.Connection` returns string from `_diaspora_session` cookie,
134 * __new__: `direct` parameter in `diaspy.connection.Connection().get()` allowing to disable pod expansion,
135
136
137 * __upd__: if `Post()` is created with fetched comments, data will also be fetched as a dependency,
138 * __upd__: `id` argument type is now `int` (`diaspy.models.Post.__init__()`),
139 * __upd__: `Search().lookup_user()` renamed to `Search().lookupUser()`,
140 * __upd__: `diaspy.messages` renamed to `diaspy.conversations` (but will be accessible under both names for this and next release),
141 * __upd__: `LoginError` moved to `diaspy.errors`,
142 * __upd__: `TokenError` moved to `diaspy.errors`,
143 * __upd__: `diaspy.connection.Connection.podswitch()` gained two new positional arguments: `username` and `password`,
144 * __upd__: `aspect_id` renamed to `id` in `diaspy.streams.Aspects().remove()`,
145
146
147 * __fix__: fixed some bugs in regular expressions used by `diaspy` internals (html tag removal, so you get nicer notifications),
148 * __fix__: fixed authentication issues,
149
150
151 ----
152
153 #### Version `0.4.0` (2013-08-20):
154
155 This release is **not backwards compatible with `0.3.x` line**! You'll have to check your code for corrections.
156 Also, this release if first to officially released fork version.
157
158 * __dep__: `diaspy.client` is officially deprecated (will be removed in `0.4.1`),
159
160
161 * __upd__: `diaspy.conversations` renamed to `diaspy.messages`,
162 * __udp__: `diaspy.conversations.Conversation` moved to `diaspy.models`,
163
164
165 * __new__: `diaspy.messages.Mailbox()` object representing diaspora\* mailbox,
166
167 ----
168
169 #### Version `0.3.2` (2013-08-20):
170
171 * __upd__: `diaspy.connection.getUserData()` raises `DiaspyError` when it cannot find user data,
172
173
174 * __rem__: `diaspy.client.Client` must be explicitly imported,
175
176 ----
177
178 #### Version `0.3.1` (2013-07-12):
179
180 * __upd__: `diaspy.people.sephandle()` raises `InvalidHandleError` instead of `UserError`
181 * __upd__: `models.Post()._fetch()` renamed to `_fetchdata()` (because of new `_fetchcomments()` method)
182
183
184 * __new__: `models.Comment()` object: wrapper for comments, not to be created manually
185 * __new__: `comments` parameter in `models.Post`: defines whether to fetch post's commets
186 * __new__: `connection.Connection` has new parameter in `__init__()`: it's `schema`
187 * __new__: `author()` method in `models.Post()`
188
189
190 The new parameter in `connection.Connection` is useful when operating with handles.
191 As handle does not contain schema (`http`, `https`, etc.) `_setlogin()` would raise an
192 unhandled exception -- `requests.exceptions.MissingSchema`.
193 Now, however, `Connection` will catch the exception, add missing schema and try once more.
194 This parameter is provided to give programmers ability to manipulate it.
195
196 Also, now you can pass just `pod.example.com` as `pod` parameter. Less typing!
197
198 When it comes to posts, we are now able to fetch comments.
199
200 ----
201
202 #### Version `0.3.0` (2013-07-07):
203
204 First edition of Changelog for `diaspy`.
205 Developers should update their code as version `0.3.0` may not be fully
206 backwards compatible depending on how the code is written.
207 If you always pass named arguments and do not rely on their order you can, at least in
208 theory, not worry about this update.
209
210 Version `0.3.0` introduces few new features, fixes several bugs and brings a bit of
211 redesign and refactoring od `diaspy`'s code.
212
213