~mhr3/unity-scopes-api/merge-trunk

« back to all changes in this revision

Viewing changes to RELEASE_NOTES.md

  • Committer: Michi Henning
  • Date: 2014-07-29 09:33:53 UTC
  • mfrom: (425 devel)
  • mto: This revision was merged to the branch mainline in revision 427.
  • Revision ID: michi.henning@canonical.com-20140729093353-ndu77ndikxqtaqsc
Merged devel and fixed conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
Changes in version 0.6.0
5
5
========================
 
6
  - Upgraded finished() callback to be more flexible and expandable.
 
7
 
 
8
  - Added cache_directory() method to ScopeBase, so a scope can find out where it can write its files.
 
9
 
 
10
  - Refactored scoperunner and ScopeLoader. ScopeLoader no longer knows about the registry and
 
11
    scoperunner now calls RuntimeImpl::run_scope() to set the scope running, instead of duplicating
 
12
    lots of functionality.
 
13
 
 
14
  - Removed registry parameter from ScopeBase::start(). The registry is now available via a registry()
 
15
    accessor on ScopeBase. The original start() method is still present, but deprecated. The default
 
16
    implementation of the new start() method forwards to the old one so, if a scope implements only the
 
17
    old one but not the new one, things still work.
 
18
 
 
19
  - Made methods on ScopeBase virtual, so the testing framework can override them in a test scope.
 
20
 
 
21
  - Added support for additional query reply info.
 
22
 
6
23
  - Introduced QueryMetadata base for shared functionality of *Metadata classes.
 
24
 
7
25
  - Added set_internet_connectivity() and internet_connectivity() to QueryMetadata.
8
26
 
9
27
Changes in version 0.5.2