| [326] | 1 | |
|---|
| 2 | For a complete Subversion changelog, see 'http://pyyaml.org/log/pyyaml'. |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | 3.07 (2008-12-29) |
|---|
| 6 | ----------------- |
|---|
| 7 | |
|---|
| 8 | * The emitter learned to use an optional indentation indicator |
|---|
| 9 | for block scalar; thus scalars with leading whitespaces |
|---|
| 10 | could now be represented in a literal or folded style. |
|---|
| 11 | * The test suite is now included in the source distribution. |
|---|
| 12 | To run the tests, type 'python setup.py test'. |
|---|
| 13 | * Refactored the test suite: dropped unittest in favor of |
|---|
| 14 | a custom test appliance. |
|---|
| 15 | * Fixed the path resolver in CDumper. |
|---|
| 16 | * Forced an explicit document end indicator when there is |
|---|
| 17 | a possibility of parsing ambiguity. |
|---|
| 18 | * More setup.py improvements: the package should be usable |
|---|
| 19 | when any combination of setuptools, Pyrex and LibYAML |
|---|
| 20 | is installed. |
|---|
| 21 | * Windows binary packages are built against LibYAML-0.1.2. |
|---|
| 22 | * Minor typos and corrections (Thank to Ingy dot Net |
|---|
| 23 | and Andrey Somov). |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | 3.06 (2008-10-03) |
|---|
| 27 | ----------------- |
|---|
| 28 | |
|---|
| 29 | * setup.py checks whether LibYAML is installed and if so, builds |
|---|
| 30 | and installs LibYAML bindings. To force or disable installation |
|---|
| 31 | of LibYAML bindings, use '--with-libyaml' or '--without-libyaml' |
|---|
| 32 | respectively. |
|---|
| 33 | * The source distribution includes compiled Pyrex sources so |
|---|
| 34 | building LibYAML bindings no longer requires Pyrex installed. |
|---|
| 35 | * 'yaml.load()' raises an exception if the input stream contains |
|---|
| 36 | more than one YAML document. |
|---|
| 37 | * Fixed exceptions produced by LibYAML bindings. |
|---|
| 38 | * Fixed a dot '.' character being recognized as !!float. |
|---|
| 39 | * Fixed Python 2.3 compatibility issue in constructing !!timestamp values. |
|---|
| 40 | * Windows binary packages are built against the LibYAML stable branch. |
|---|
| 41 | * Added attributes 'yaml.__version__' and 'yaml.__with_libyaml__'. |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | 3.05 (2007-05-13) |
|---|
| 45 | ----------------- |
|---|
| 46 | |
|---|
| 47 | * Windows binary packages were built with LibYAML trunk. |
|---|
| 48 | * Fixed a bug that prevent processing a live stream of YAML documents in |
|---|
| 49 | timely manner (Thanks edward(at)sweetbytes(dot)net). |
|---|
| 50 | * Fixed a bug when the path in add_path_resolver contains boolean values |
|---|
| 51 | (Thanks jstroud(at)mbi(dot)ucla(dot)edu). |
|---|
| 52 | * Fixed loss of microsecond precision in timestamps |
|---|
| 53 | (Thanks edemaine(at)mit(dot)edu). |
|---|
| 54 | * Fixed loading an empty YAML stream. |
|---|
| 55 | * Allowed immutable subclasses of YAMLObject. |
|---|
| 56 | * Made the encoding of the unicode->str conversion explicit so that |
|---|
| 57 | the conversion does not depend on the default Python encoding. |
|---|
| 58 | * Forced emitting float values in a YAML compatible form. |
|---|
| 59 | |
|---|
| 60 | |
|---|
| 61 | 3.04 (2006-08-20) |
|---|
| 62 | ----------------- |
|---|
| 63 | |
|---|
| 64 | * Include experimental LibYAML bindings. |
|---|
| 65 | * Fully support recursive structures. |
|---|
| 66 | * Sort dictionary keys. Mapping node values are now represented |
|---|
| 67 | as lists of pairs instead of dictionaries. No longer check |
|---|
| 68 | for duplicate mapping keys as it didn't work correctly anyway. |
|---|
| 69 | * Fix invalid output of single-quoted scalars in cases when a single |
|---|
| 70 | quote is not escaped when preceeded by whitespaces or line breaks. |
|---|
| 71 | * To make porting easier, rewrite Parser not using generators. |
|---|
| 72 | * Fix handling of unexpected block mapping values. |
|---|
| 73 | * Fix a bug in Representer.represent_object: copy_reg.dispatch_table |
|---|
| 74 | was not correctly handled. |
|---|
| 75 | * Fix a bug when a block scalar is incorrectly emitted in the simple |
|---|
| 76 | key context. |
|---|
| 77 | * Hold references to the objects being represented. |
|---|
| 78 | * Make Representer not try to guess !!pairs when a list is represented. |
|---|
| 79 | * Fix timestamp constructing and representing. |
|---|
| 80 | * Fix the 'N' plain scalar being incorrectly recognized as !!bool. |
|---|
| 81 | |
|---|
| 82 | |
|---|
| 83 | 3.03 (2006-06-19) |
|---|
| 84 | ----------------- |
|---|
| 85 | |
|---|
| 86 | * Fix Python 2.5 compatibility issues. |
|---|
| 87 | * Fix numerous bugs in the float handling. |
|---|
| 88 | * Fix scanning some ill-formed documents. |
|---|
| 89 | * Other minor fixes. |
|---|
| 90 | |
|---|
| 91 | |
|---|
| 92 | 3.02 (2006-05-15) |
|---|
| 93 | ----------------- |
|---|
| 94 | |
|---|
| 95 | * Fix win32 installer. Apparently bdist_wininst does not work well |
|---|
| 96 | under Linux. |
|---|
| 97 | * Fix a bug in add_path_resolver. |
|---|
| 98 | * Add the yaml-highlight example. Try to run on a color terminal: |
|---|
| 99 | `python yaml_hl.py <any_document.yaml`. |
|---|
| 100 | |
|---|
| 101 | |
|---|
| 102 | 3.01 (2006-05-07) |
|---|
| 103 | ----------------- |
|---|
| 104 | |
|---|
| 105 | * Initial release. The version number reflects the codename |
|---|
| 106 | of the project (PyYAML 3000) and differenciates it from |
|---|
| 107 | the abandoned PyYaml module. |
|---|
| 108 | |
|---|