~geoff.bache/capturemock/trunk

« back to all changes in this revision

Viewing changes to doc/ChangeLog

  • Committer: Geoff Bache
  • Date: 2014-08-25 08:24:28 UTC
  • Revision ID: geoff.bache@jeppesen.com-20140825082428-jlrycxv8rpp2z66n
Up-to-date

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
 
93
93
Bugfix:
94
94
    - Don't use machine name for starting server, DNS not always working. Use localhost instead.
 
95
 
 
96
Version 1.1
 
97
 
 
98
Enhancements:
 
99
    - Supports Python 3.3
 
100
    - Now supports intercepting classes, not just modules and functions
 
101
 
 
102
Bugfixes:
 
103
    - Dictionary output does not vary between Python versions
 
104
    - Removed functionality that tried to import real modules and then intercept them later (may require some migration)
 
105
    - improved thread-safety
 
106
    - Use non-local IP address for server where available. Can be useful.
 
107
    - Fixed issue with reimporting submodules of intercepted modules
 
108
    - More Python 3 fixes
 
109
    - Don't fail if attributes can't be found (Thanks to Marc Abramowitz)
 
110
    - Various fixes around class interception, metaclasses etc