Add equal() and hash() functions to AbstractFieldDetails.
[platform/upstream/folks.git] / NEWS
1 Overview of changes from libfolks 0.5.2 to libfolks 0.5.3
2 =========================================================
3
4 Bugs fixed:
5 * Bug 649925 — expose SocialWebClient.Contact in Swf.Persona
6 * Bug 646244 — Incomplete logic to handle attribute updates in Folks.Individual
7 * Bug 652463 — Tidy up CLEANFILES
8 * Bug 652434 — Add ability to run any tests through gdb
9 * Bug 648071 — Add support for presence status from Telepathy
10 * Bug 652472 — Handle failure in getting the logger service better
11 * Bug 629716 — Migrate Folks to GDBus
12 * Bug 652660 — Make Individual.id more stable and well-defined
13 * Bug 652449 — Folks.Individual's property getters should be read only
14 * Bug 653325 — Build system does not complain if trying to build docs without
15   vala-doc installed
16 * Bug 653746 — mismatch between hash and equals in Note
17 * Bug 638281 — Add an EDS backend
18 * Bug 654509 — Folks master not building
19 * Bug 652048 — Make nickname writable
20 * Bug 652425 — Failure codes for removing personas needed in PersonaStoreError
21 * Bug 645549 — Add a way to get the individual from a persona
22 * Bug 650422 — Add API for easily checking whether details are writeable
23 * Bug 655019 — Don't notify twice for nickname changes
24 * Bug 650414 — Need better APIs to handle image data
25 * Bug 652643 — Add PersonaStore cache
26 * Bug 655510 — Make truly-writeable *Details property setters public
27 * Bug 654907 — The writable store shouldn't be set by type_id
28 * Bug 655745 — Implement read/write support for gender property
29 * Bug 649296 — Folks backend files shouldn't begin with "lib"
30 * Bug 652657 — Allow writing to properties of all personas
31 * Bug 655008 — Tidy up error handling in eds backend
32 * Bug 653619 — Add company details
33
34 API changes:
35 * Swf.Persona retains and exposes its libsocialweb Contact
36 * Add a PresenceDetails.presence_status property
37 * Make NameDetails.nickname settable
38 * Drop AliasDetails support from Trf.Persona
39 * Add PersonaStoreError.PERMISSION_DENIED and PersonaStoreError.REMOVE_FAILED
40 * Change the error domain of PersonaStore.remove_persona() from GLib.Error to
41   Folks.PersonaStoreError
42 * Add a Persona.individual property
43 * Add a Persona.writeable_properties property and implement it in all the
44   Persona subclasses
45 * Make BirthdayDetails.calendar_event_id nullable
46 * Make Folks.Utils public and add Gee structure equality functions
47 * AvatarDetails.avatar is now of type LoadableIcon?
48 * Add AvatarCache class
49 * Add ObjectCache class
50 * Remove leaked internal PotentialMatch.result_to_string() method
51 * Add RoleDetails:role property
52 * Rebase FieldDetails upon AbstractFieldDetails (requiring the use of the
53   equivalent AbstractFieldDetails functions in place of the FieldDetails ones).
54 * Add AbstractFieldDetails.equal() and hash() for better matching on structures
55   which will store derived objects.
56
57 Overview of changes from libfolks 0.5.1 to libfolks 0.5.2
58 =========================================================
59
60 Bugs fixed:
61 * Bug 650067 — Tracker backend warns when setting a NULL avatar (ie, unsetting
62   the avatar)
63 * Bug 650268 — build failure: "--vapidir=.: command not found"
64
65 Overview of changes from libfolks 0.5.0 to libfolks 0.5.1
66 =========================================================
67
68 Bugs fixed:
69 * Bug 645388 — Group channels are leaked
70 * Bug 647562 — Don't crash on duplicate group channels
71 * Bug 647121 — Crash in individual_store_contact_sort at
72   empathy-individual-store.c line 1387
73 * Bug 645684 — Implement Iterator on LinkedHashSet
74 * Bug 640092 — Folks should minimize use of GLib.List (including its public API)
75 * Bug 648161 — Add GObject Introspection Support
76 * Bug 645186 — Make sure all connect() calls have appropriate disconnect() calls
77 * Bug 648533 — Add runtime debug signalling
78 * Bug 649790 — Vala uses the wrong includes
79 * Bug 649088 — Combining contacts doesn't work with german Umlauts
80
81 API changes:
82 * LinkedHashSet.list_iterator() is now disallowed (causes an assertion failure)
83 * LinkedHashSet.iterator() now returns a BidirIterator instead of just an
84   Iterator
85 * ImDetails.im_addresses is now of type MultiMap<string, string>
86 * WebServiceDetails.web_service_addresses is now of type
87   MultiMap<string, string>
88 * Removed LinkedHashSet in favour of Gee.HashSet
89 * Backend.persona_stores is now of type Map<string, PersonaStore>
90 * GroupDetails.groups is now of type Set<string>
91 * FieldDetails.parameters is now of type MultiMap<string, string>
92 * FieldDetails.get_parameter_values() now returns type Collection<string>
93 * FieldDetails.extend_parameters() now takes type MultiMap<string, string>
94 * PostalAddressDetails.postal_addresses is now of type Set<PostalAddress>
95 * EmailDetails.email_addresses is now of type Set<FieldDetails>
96 * PhoneDetails.phone_numbers is now of type Set<FieldDetails>
97 * UrlDetails.urls is now of type Set<FieldDetails>
98 * BackendStore.enabled_backends now has type Map<string, Backend>
99   - The corresponding C function folks_backend_store_dup_enabled_backends()
100     has been renamed folks_backend_store_get_enabled_backends(), and no longer
101     returns an owned variable.
102 * Individual.personas now has type Set<Persona>
103 * Individual.personas_changed now uses Set<Persona>-typed parameters
104 * PersonaStore.personas_changed now uses Set<Persona>-typed parameters
105 * IndividualAggregator.individuals_changed now uses
106   Set<Individual>-typed parameters
107 * IndividualAggregator.link_personas() now takes a Set<Persona>
108 * IndividualAggregator.get_all_potential_matches() now returns a
109   Map<Individual, Map<Individual, MatchResult>>
110 * IndividualAggregator.get_potential_matches() now returns a
111   Map<Individual, MatchResult>
112 * IndividualAggregator.individuals now has type Map<string, Individual>
113 * PersonaStore.personas now has type Map<string, Persona>
114 * LocalIdDetails.local_ids now has type Set<string>
115 * NoteDetails.notes now has type Set<Note>
116 * RoleDetails.roles now has type Set<Role>
117 * PotentialMatch.known_email_aliases now has type Set<string>
118 * PostalAddress.types now has type Set<string>
119 * Add Folks.Debug debug controller class
120 * All pc-files now only add the $includedir to the cflags, so all includes
121   must be of the form <folks/*.h>
122
123 Overview of changes from libfolks 0.4.0 to libfolks 0.5.0
124 =========================================================
125
126 Major changes:
127 * Add support to change primary (writeable) store either via
128   GConf or an env variable (bug 645441).
129 * Bumped Vala dependency to 0.12.0 for bug #646345
130
131 Bugs fixed:
132 * Bug 644968 - _update_phone_numbers() needs to create copies
133   of each List<FieldDetails>
134 * Bug 644966 - _update_emails () needs to create copies of each
135   List<FieldDetails>
136 * Bug 644527 - Add a Tracker backend
137 * Bug 645430 - folks-inspect: Use LinkedHashSet to access im-addresses
138 * Bug 645411 - folks-import segfaults on startup
139 * Crasher when removing Personas
140 * Crasher when reconnecting a Telepathy account
141 * Bug 645680 — Use random integer IDs for Kf.Personas
142 * Bug 645475 — Linker warnings for Tracker backend tests
143 * Bug 645570 — Fix checks for empty and equal StructuredNames
144 * Bug 645989 — Ensure add_persona_from_details handles the basic attribute
145 * Bug 645413 — Write support for Tracker
146 * Bug 645441 — Mechanism to specify primary backend
147 * Bug 638280 — Add a libsocialweb backend
148 * Deal with duplicated phones/e-mails in Tracker
149 * Bug 646944 — Fix libsocialweb updates and removals of contacts
150 * Bug 644867 — add interface for linkable web service contact UIDs
151 * Bug 647168 — print the "web-service-addresses" property correctly
152 * Bug 646831 — Setting an existing phone number or e-mail address on a
153   Trf.Persona fails
154 * Bug 647298 — folks-inspect gets SIGSEGV when trying to auto-complete
155   parameters
156 * Bug 646948 — Support for potential matches
157
158 API changes:
159 * Add equal () to StructuredName
160 * Add detail_key () along with an enum PersonaDetail to PersonaStore
161   which together define the basic attributes that should be supported
162   by add_persona_from_details ().
163 * Add public primary_store to IndividualAggregator
164 * Add LocalIdDetails interface for linking Personas based on local address book
165   IDs (such as for the Tracker backend Personas)
166 * Add WebServiceDetails interface for linking Personas based on web service
167   accounts (such as for the libsocialweb backend Personas)
168 * Add PotentialMatch class and IndividualAggregator.get_potential_matches() and
169   IndividualAggregator.get_all_potential_matches() to suggest Individuals that
170   may match the given Individual or all potential matches, respectively.
171
172 Overview of changes from libfolks 0.3.6 to libfolks 0.4.0
173 =========================================================
174
175 Bugs fixed:
176 * Bug 642351 — BACKEND_STORE_KEY_FILE format should support a wildcard entry
177 * Bug 643241 — _update_urls () needs to create copies of each
178   List<FieldDetails>
179 * Bug 643247 — Folks needs C API documentation
180 * Bug 643201 — folks-inspect can't handle properties which are
181   List<FieldDetails>
182 * Bug 642866 — tp-lowlevel leaks TpChannel
183 * Bug 642861 — FolksLinkedHashSet still alive when exiting Empathy
184 * Bug 642493 — Folks needs API for specifying a contact's organisation
185 * Bug 642500 — Folks needs API for specifying a contact's birthday
186 * Bug 642501 — Folks needs API for attaching notes to a Contact
187 * Bug 641210 — Add interface for postal addresses
188 * Bug 643956 — Use the correct signal name for postal addresses
189 * Bug 643954 — Add to_string () to PostalAddress class
190 * Bug 643955 — Add to_string () to RoleOwner class
191 * Bug 643957 — Deal handle birthday and postal-addresses.
192 * Bug 644457 — Handle structured names
193 * Bug 644165 — An individual's avatar shouldn't be replaced by a null avatar
194
195 API changes:
196 * Add RoleDetails interface
197 * Add BirthdayDetails interface
198 * Add NoteDetails interface
199 * Add PostalAddressDetails interface
200 * Rename Aliasable -> AliasDetails
201 * Rename AvatarOwner -> AvatarDetails
202 * Rename Emailable -> EmailDetails
203 * Rename Favouritable -> FavouriteDetails
204 * Rename GenderOwner -> GenderDetails
205 * Rename Groupable -> GroupDetails
206 * Rename IMable -> ImDetails
207 * Rename NameOwner -> NameDetails
208 * Rename Phoneable -> PhoneDetails
209 * Rename PresenceOwner -> PresenceDetails
210 * Rename Urlable -> UrlDetails
211
212 Overview of changes from libfolks 0.3.5 to libfolks 0.3.6
213 =========================================================
214
215 This is just a repackaging of libfolks 0.3.5 with some documentation comment
216 version numbers fixed.
217
218 Overview of changes from libfolks 0.3.4 to libfolks 0.3.5
219 =========================================================
220
221 Major changes:
222 * Various API breaks and improvements, especially in the IndividualAggregator
223 * Add various new interfaces: NameOwner, FieldDetails, Urlable, GenderOwner,
224   Phoneable and Emailable
225
226 API changes:
227 * Add NameOwner interface
228 * Add FieldDetails interface
229 * Add Urlable interface
230 * Add GenderOwner interface
231 * Add Phoneable interface
232 * Add Emailable interface
233 * Add Tpf.Persona.is_in_contact_list
234 * Rename the URLable interface to Urlable
235 * Take a PersonaStore in IndividualAggregator.add_persona_from_details
236 * Remove IndividualAggregatorError.STORE_NOT_FOUND
237 * Rename the getter for BackendStore.enabled_backends from
238   folks_backend_store_get_enabled_backends() to
239   folks_backend_store_dup_enabled_backends()
240 * Rename BackendStore.get_backend_by_name() to .dup_backend_by_name()
241
242 Bugs fixed:
243 * Bug 640901 — Allow it to be determined whether a user Tpf.Persona is in the
244   contact list
245 * Bug 641780 — Incorrect C function names for URLable interface
246 * Bug 629078 — Folks needs a full API review to take advantage of our
247   compatibility break in 0.2.x
248 * Bug 642036 — No way to pass a message when adding a contact
249
250 Overview of changes from libfolks 0.3.3 to libfolks 0.3.4
251 =========================================================
252
253 Major changes:
254 * Add folks-inspect tool
255 * The use of the new LinkedHashSet type in the API may make libgee a requirement
256   for some clients (to take full advantage of its class lineage).
257
258 API changes:
259 * New type: LinkedHashSet, similar to Gee.HashSet, but ordered.
260 * IMable.im_addresses is now a mapping of string to LinkedHashSet.
261 * Rename the HasAvatar interface to AvatarOwner
262 * Rename the HasPresence interface to PresenceOwner
263
264 Bugs fixed:
265 * Bug 637240 — libfolks-telepathy.so exports private symbols
266 * Bug 638311 — Add a HACKING file that outlines development policies and
267   coding style
268 * Bug 629083 — Review coding conventions in folks
269 * Bug 629075 — Add folks command line application
270 * Bug 638609 — libfolks hard-codes backend names for debugging
271 * Bug 639195 — Print stack traces for failed tests to improve remote
272   debugging
273 * Bug 639113 — Add static aggregation tests
274 * Bug 639742 — Logger service unavailable in make check
275 * Bug 640213 — Add tests for LinkedHashSet
276 * Bug 627397 — Use better interface names
277
278 Overview of changes from libfolks 0.3.2 to libfolks 0.3.3
279 =========================================================
280
281 Major changes:
282 * Fix some minor leaks
283 * Add support for building gtk-doc documentation for the C API
284 * Fix some related documentation problems
285 * Fix some Vala problems caused by differences between Vala 0.10 and 0.12
286 * Finish off renaming interfaces (this is an API break; see below)
287 * Don't trust personas from IRC
288 * Handle invalid IM addresses more gracefully than with an assertion failure
289 * Fix a linking problem with the user's individual when going offline which
290   could lead to infinite loops
291
292 API changes:
293 * Rename the Avatar interface to HasAvatar
294 * Rename the Presence interface to HasPresence
295 * Rename the Favourite interface to Favouritable
296 * Add IMableError
297 * Throw IMableError from IMable.normalise_im_address()
298
299 Bugs fixed:
300 * Bug 635178 — Leak in
301   folks_tp_lowlevel_connection_open_contact_list_channel_async
302 * Bug 635649 — autopoint fails to run
303 * Bug 635703 — Leak in connection_get_requestable_channel_classes_cb
304 * Bug 635823 — [PATCH] telepathy test not linking against GIO
305 * Bug 636251 — Fails to add contact
306 * Bug 629526 — Generate gtk-doc documentation
307 * Bug 627397 — Use better interface names
308 * Bug 636714 — Assertion failure on invalid IM address
309 * Bug 637136 — Infinite loop when disconnecting accounts
310
311 Overview of changes from libfolks 0.3.1 to libfolks 0.3.2
312 ==========================================================
313
314 Major changes:
315 * BackendStore.load_backends() now (un)loads backends which have been
316   (dis|en)abled since the last call
317 * FOLKS_BACKEND_DIR has been replaced by FOLKS_BACKEND_PATH. It accepts any
318   number of files and directories, separated by :
319 * Significantly clean up the build system
320
321 API changes:
322 * Added BackendStore.prepare() and BackendStore::is-prepared
323 * Add BackendStore.enable_backend().
324 * Add BackendStore.disable_backend().
325 * Add BackendStore.unprepare().
326 * Remove casting convenience methods on Individual (casting isn't hard)
327 * Change the visibility of the setters of PersonaStore.type_id,
328   PersonaStore.display_name, PersonaStore.id, Backend.name,
329   Backend.persona_stores and Persona.linkable_properties. This removes the
330   corresponding C setter methods which should never have been exposed
331 * Remove Tpf.PersonaError
332 * Remove the exception from the Tpf.Persona constructor
333
334 Bugs fixed:
335 * Bug 629081 — Add API to allow specific backends to be disabled
336 * Bug 629862 — Add tests for the key-file backend
337 * Bug 628883 — Add localisation support
338 * Bug 633718 — Make the Folks releases buildable without vala, valadoc, or
339   g-i
340 * Bug 633080 — Crash when disconnecting twice
341
342 Overview of changes from libfolks 0.3.0 to libfolks 0.3.1
343 ==========================================================
344
345 Major changes:
346 * Tpf.Persona.contact is now guaranteed to have the client type feature
347
348 API changes:
349 * Add the PersonaStore:can-add-personas property
350 * Add the PersonaStore:can-remove-personas property
351 * Add the PersonaStore:can-alias-personas property
352 * Add the PersonaStore:can-group-personas property
353 * Make Individual implement the IMable interface
354
355 Bugs fixed:
356 * Bug 630431 — notify::alias is never emitted
357 * Bug 631864 — Crash when empathy disconnects
358 * Bug 632096 — build failure: contact-retrieval.o: undefined reference to
359   symbol 'gee_abstract_collection_add'
360 * Bug 632163 — Folks key-file backend needs a way to point to a specific
361   .ini file
362 * Bug 632564 — assertion `EMPATHY_IS_CONTACT (contact)' failed in
363   individual_store_contact_sort
364
365 Overview of changes from libfolks 0.1.17 to libfolks 0.3.0
366 ==========================================================
367
368 Major changes:
369 * Fixed some linking problems
370 * Added some missing documentation
371 * Fixed build problems introduced by switching to gobject-introspection 0.9.6
372   (i.e. GIR format 1.2)
373 * Bumped telepathy-glib dependency to 0.11.16
374 * Bumped Vala dependency to 0.10.0
375 * Bumped gobject-introspection dependency to 0.9.6
376 * Ensured IM addresses are normalised before being compared
377 * Made the folks-import build optional through a configure argument
378 * Added support for a “self” individual
379 * Added support for generating and installing Devhelp format documentation
380 * BackendStore.load_backends and the prepare() functions are now idempotent
381 * Tpf.Persona.contact is now guaranteed to have the avatar token and data
382   features
383 * Tpf.Persona.contact is now guaranteed to have the capabilities feature
384
385 API changes:
386 * Added IMable.normalise_im_address()
387 * Renamed Groups interface to Groupable
388 * Renamed Alias interface to Aliasable
389 * Removed BackendStore constructor
390 * Added BackendStore.dup()
391 * Added BackendStore::enabled-backends
392 * Added Individual::is-user
393 * Added Persona::is-user
394 * Added IndividualAggregator::user
395 * Added PersonaStoreError.UNSUPPORTED_ON_USER
396 * Added {IndividualAggregator, PersonaStoreError}.STORE_OFFLINE, used by the
397   respective add_persona_from_details() functions
398
399 Bugs fixed:
400 * Bug 629452 — [Patch] Add missing gio linking for import-tool
401 * Bug 626008 — Add @since lines to all symbols
402 * Bug 629311 — Folks should normalize IDs written to the writable backend
403 * Bug 629644 — Key file backend cannot be loaded because of linking problems
404 * Bug 629666 — libfolks should not hard autodetect libxml
405 * Bug 628970 — Folks API needs a way to determine whether a specific type of
406   PersonaStore is available
407 * Bug 629096 — Add a library init function
408 * Bug 627402 — Support marking FolksPersonas as "me"
409 * Bug 629642 — individuals-changed emitted in the wrong order
410 * Bug 629643 — do not fall back to the id if alias is empty
411 * Bug 629006 — PersonaStore should gracefully handle offline Persona change
412   attempts
413 * Bug 629331 — BackendStore.load_backends and the prepare() functions should
414   be idempotent.
415 * Bug 629008 — Add a test for Persona additions
416 * Bug 630347 — Avatars are always NULL
417
418 Overview of changes from libfolks 0.1.16 to libfolks 0.1.17
419 ===========================================================
420
421 Major changes:
422 * Added a basic test suite
423 * Cleaned up the build system
424 * Ensured the public libraries' VAPI files are distributed and installed
425 * Prevented the key-file from being saved unnecessarily
426 * Fixed multi-byte character handling in the key-file backend
427 * Ensured account removal and invalidation is handled in the Telepathy backend
428 * Prevented a hang when creating relationships.ini in certain situations
429 * Added a folks-import tool to import meta-contact data from Pidgin; this adds
430   a dependency on libxml
431
432 API changes:
433 * Added PersonaStore.flush()
434
435 Bugs fixed:
436 * Bug 628930 — folks crahses empathy on relationships.ini read
437 * Bug 629082 — Empathy crashes when toggling "Ignore SSL certificate errors"
438   checkbox
439 * Bug 628853 — hangs if there's no relationships.ini file
440 * Bug 629084 — Add a folks-import tool
441
442 Overview of changes from libfolks 0.1.15 to libfolks 0.1.16
443 ===========================================================
444
445 Major changes:
446 * Added more debugging output
447 * Fixed various small outputted code bugs
448 * Fixed problem where key file groups would be overwritten in some situations
449 * Fixed various signal emission problems
450 * Prevented changes to Personas' properties from being propagated back up to the
451   Individuals
452 * Limited libgee dependency to < 0.7 due to API changes in libgee
453 * Added a FOLKS_DISABLE_LINKING environment variable to disable linking (for
454   debugging purposes)
455
456 Bugs fixed:
457 * Bug 628108 — Favorite contacts are not save any more
458 * Bug 628294 — Some contacts appear to be linked together while they shouldn't
459 * Bug 628305 — Signal removal of Individuals containing untrusted Personas
460 * Bug 628131 — error message when trying to link ICQ with jabber
461 * Bug 628343 — Add an environment variable to disable linking
462 * Bug 628335 — Assertion error with master
463
464 Overview of changes from libfolks 0.1.14.1 to libfolks 0.1.15
465 =============================================================
466
467 Major changes:
468 * Fixed various build problems
469 * Ensured duplicate entries don't appear in various sets
470 * Made gobject-introspection dependency explicit
471 * Limited libgee dependency to <= 0.5.2 due to API changes in libgee
472 * Reworked some of the Individual internals to make notifications more efficient
473 * Added the concept of an Individual's “trust level”
474 * Changed alias fallbacks to fall back to a display ID instead of a UID
475 * Added support for storing aliases in the key-file backend and use them in
476   preference to aliases from other Personas in an Individual
477
478 API changes:
479 * Added Individual:personas-changed
480 * Added TrustLevel enum
481 * Added Individual::trust-level
482 * Implemented Alias on Kf.Persona
483
484 Bugs fixed:
485 * Bug 627314 — folks cannot be install in gentoo sandbox
486 * Bug 627506 — Require gobject-introspection
487 * Bug 626725 — Add an Individual.personas_changed signal
488 * Bug 627968 — Add Individual.trust_level property
489 * Bug 626578 — Use vala's vala.m4 to check for telepathy-glib(.vapi)
490 * Bug 626410 — contacts show up with a weird alias
491 * Bug 627508 — Store alias and groups in the key-file backend
492 * Bug 627898 — Fails to install with -j4
493
494 Overview of changes from libfolks 0.1.14 to libfolks 0.1.14.1
495 =============================================================
496
497 Major changes:
498 * Bumped Vala dependency to 0.9.6
499 * Fixed some more warning spew
500
501 Overview of changes from libfolks 0.1.13 to libfolks 0.1.14
502 ===========================================================
503
504 Major changes:
505 * Changed Vala detection code to use the correct macro
506 * Bumped Vala dependency to 0.9.5
507 * Removed some more message spew
508 * Changed tp-lowlevel Vala bindings to be generated using gobject-introspection
509 * Added optional dependency on gobject-introspection 0.6.7
510
511 Overview of changes from libfolks 0.1.12 to libfolks 0.1.13
512 ===========================================================
513
514 Major changes:
515 * Added the concept of “linkable properties”
516 * Added the IMable interface
517 * Added the concept of persona store “trust”
518 * Added a writeable key-file backend
519 * Added linking support to the IndividualAggregator
520 * Tidied up ID handling in the backends
521 * Warn if a backend's MIME type could not be determined, notifying the user if
522   libfolks can't load backends due to shared-mime-info not being installed
523 * Hint to clients the Individual replacing a removed Individual (if any)
524 * Exposed Telepathy contacts' IM addresses using the IMable interface
525 * Fixed some build and dependency issues
526 * Bumped telepathy-glib dependency to 0.11.11 and dropped dependency on
527   telepathy-vala
528 * Added the concept of “writeable” PersonaStores and use this concept to prevent
529   properties being synchronised between PersonaStores unnecessarily (and
530   potentially even destructively)
531
532 API changes:
533 * Added Persona::linkable-properties
534 * Added IMable interface
535 * Added PersonaStoreTrust enum
536 * Added PersonaStore::trust-level
537 * Added Persona.LinkablePropertyCallback()
538 * Added Persona.linkable_property_to_links()
539 * Added Persona.build_uid()
540 * Added Persona.split_uid()
541 * Added Persona::display-id
542 * Added PersonaStore::display-name
543 * Added replacement_individual parameter to Individual:removed
544 * Implemented IMable on Tpf.Persona
545 * Added IndividualAggregatorError.NO_WRITEABLE_STORE
546 * Added IndividualAggregator.link_personas()
547 * Added IndividualAggregator.unlink_individual()
548 * Added PersonaStore::is-writeable
549
550 Bugs fixed:
551 * Bug 625830 — Adding an existing contact to the tp backend results in bogus
552   warnings
553 * Bug 626108 — Defining XDG_DATA_DIRS prevents backends from being loaded
554
555 Overview of changes from libfolks 0.1.11 to libfolks 0.1.12
556 ===========================================================
557
558 Major changes:
559 * Added debug flags support using the FOLKS_DEBUG environment variable
560 * Removed various bits of message and warning spew
561 * Bumped Vala dependency to 0.9.4
562 * Ensured connections which are ready as soon as they're connected are handled
563   correctly
564 * Versioned the installed backends using the main library's libtool version
565
566 Bugs fixed:
567 * Bug 625815 — No contat showed in the contact list
568
569 Overview of changes from libfolks 0.1.10 to libfolks 0.1.11
570 ===========================================================
571
572 Major changes:
573 * Moved various bits of preparation code out into async prepare() methods to
574   avoid race conditions on startup
575 * Reset TpfPersonaStore state when going offline
576 * Made several methods async which could potentially require it in future
577 * Added error throws to various functions which could potentially fail in future
578
579 API changes:
580 * Added PersonaStore.prepare()
581 * Added Backend.prepare()
582 * Removed error thrown from Backend constructor
583 * Added IndividualAggregator.prepare()
584 * Changed return type of Presence.is_online() from uint to int
585 * Made IndividualAggregator.remove_individual() async
586 * Made PersonaStore.remove_persona() async
587 * Added an error throw to BackendStore.load_backends()
588 * Added an error throw to IndividualAggregator.prepare()
589 * Added an error throw to IndividualAggregator.remove_individual()
590 * Added an error throw to IndividualAggregator.remove_persona()
591 * Added an error throw to PersonaStore.remove_persona()
592 * Made Groups.change_group() async
593 * Made Groups:group-changed async
594
595 Overview of changes from libfolks 0.1.9 to libfolks 0.1.10
596 ==========================================================
597
598 Major changes:
599 * Fixed various memory and reference leaks
600 * Lots of build system improvements
601 * Added a libtool version to the installed libraries
602
603 Initial release of libfolks 0.1.9
604 =================================
605
606 Major changes:
607 * Move to GNOME infrastructure