Changelog for
python-simplejson-debuginfo-3.3.0-40.1.x86_64.rpm :
Wed May 8 14:00:00 2013 benny.gaechterAATTgmail.com
- Update to version 3.3.0
* Unpaired surrogates once again pass through the decoder, to match older
behavior and the RFC-4627 spec.
https://github.com/simplejson/simplejson/issues/62
Thu Feb 21 13:00:00 2013 p.drouandAATTgmail.com
- Update to version 3.1.3
* Updated documentation to discourage subclassing whenever possible.
default, object_hook, and object_pairs_hook provide almost all of
the functionality of subclassing.
- Update to version 3.1.2
* Updated documentation to reflect separators behavior when indent is
not None
* Test suite should be compatible with debug builds of Python 2.x and 3.x
- Update to version 3.1.1
* setup.py now has another workaround for Windows machines without
MSVC installed
- Update to version 3.1.0
* Updated JSON conformance test suite
* simplejson.tool tests and bugfix for Python 3.x
* Improve error messages for certain kinds of truncated input
* Moved JSONDecodeError to json.scanner (still available for import
from json.decoder)
* Changed scanner to use JSONDecodeError directly rather than
StopIteration to improve error messages
- Update to version 3.0.9
* Fix an off-by-one error in the colno property of JSONDecodeError
(when lineno == 1)
Thu Feb 21 13:00:00 2013 p.drouandAATTgmail.com
- Update to version 3.0.8:
* Fix a Python 2.x compiler warning for narrow unicode builds
https://github.com/simplejson/simplejson/issues/56
Thu Jan 17 13:00:00 2013 toddrme2178AATTgmail.com
- Update to 3.0.7
* NOTE: this release only changes the license.
* simplejson is now dual-licensed software, MIT or AFL v2.1. It is
also made explicit that this code is also licensed to the PSF under
a Contributor Agreement.
- Update to 3.0.7
* Fix for major Python 2.x ensure_ascii=False encoding regression
introduced in simplejson 3.0.0. If you use this setting, please
upgrade immediately.
Fri Jan 11 13:00:00 2013 p.drouandAATTgmail.com
- Initial python3 support
Fri Jan 11 13:00:00 2013 p.drouandAATTgmail.com
- Update to 3.0.5:
* NOTE: this release only changes the tests, it is
not essential to upgrade
* Tests now run with deprecation warnings printed
* Fixed Python 3 syntax error in simplejson.tool
https://github.com/simplejson/simplejson/issues/49
* Fixed Python 3.3 deprecation warnings in test suite
https://github.com/simplejson/simplejson/issues/48
- Update to 3.0.4 version:
* MSVC compatibility for Python 3.3
https://github.com/simplejson/simplejson/pull/47
- Update to 3.0.3 version:
* Fixes for bugs introduced in 3.0.2
* Fixes for Python 2.5 compatibility
* MSVC compatibility for Python 2.x
https://github.com/simplejson/simplejson/pull/46
- Update to 3.0.0 version:
* Python 3.3 is now supported, thanks to Vinay Sajip
https://github.com/simplejson/simplejson/issues/8
* `sort_keys`/`item_sort_key` now sort on the stringified verison of the
key, rather than the original object. This ensures that the sort
only compares string types and makes the behavior consistent between
Python 2.x and Python 3.x.
* Like other number types, Decimal instances used as keys are now
coerced to strings when use_decimal is True.
Sat Sep 29 14:00:00 2012 os-devAATTjacraig.com
- Update to 2.6.2:
* JSONEncoderForHTML was not exported in the simplejson module
Mon Sep 3 14:00:00 2012 os-devAATTjacraig.com
- Update to 2.6.1:
* raw_decode() now skips whitespace before the object
- Changes from 2.6.0:
* Error messages changed to match proposal for Python 3.3.1
Fri May 25 14:00:00 2012 toddrme2178AATTgmail.com
- Clean up spec file
- Update to version 2.5.2:
* Fix for regression introduced in 2.5.1
- Update to version 2.5.1:
* Support for use_decimal=True in environments that use Python
sub-interpreters such as uWSGI
- Update to version 2.5.1:
* New item_sort_key option for encoder to allow fine grained
control of sorted output
Mon Mar 12 13:00:00 2012 saschpeAATTgmx.de
- Update to version 2.4.0:
* New bigint_as_string option for encoder to trade JavaScript number
precision issues for type issues.
- Run testsuite
- Package README.rst, CHANGES.txt and LICENSE.txt
Tue Sep 20 14:00:00 2011 saschpeAATTsuse.de
- Re-add python-distribute, you can\'t simply remove that, it breaks RPM updates
Tue Sep 6 14:00:00 2011 alexandreAATTexatati.com.br
- Update to 2.2.1:
* Fix MANIFEST.in issue when building a sdist from a sdist.
https://github.com/simplejson/simplejson/issues/16
- Aditional changes from version 2.2.0:
* Remove setuptools requirement, reverted to pure distutils
* use_decimal default for encoding (dump, dumps, JSONEncoder) is now True
* tuple encoding as JSON objects can be turned off with new
tuple_as_array=False option.
https://github.com/simplejson/simplejson/pull/6
* namedtuple (or other tuple subclasses with _asdict methods) are now
encoded as JSON objects rather than arrays by default. Can be disabled
and treated as a tuple with the new namedtuple_as_object=False option.
https://github.com/simplejson/simplejson/pull/6
* JSONDecodeError is now raised instead of ValueError when a document
ends with an opening quote and the C speedups are in use.
https://github.com/simplejson/simplejson/issues/15
* Updated documentation with information about JSONDecodeError
* Force unicode linebreak characters to be escaped (U+2028 and U+2029)
http://timelessrepo.com/json-isnt-a-javascript-subset
* Moved documentation from a git submodule to
http://simplejson.readthedocs.org/
Mon May 9 14:00:00 2011 alexandreAATTexatati.com.br
- Update to 2.1.6:
* Prevent segfaults with deeply nested JSON documents
https://github.com/simplejson/simplejson/issues/11
* Fix compatibility with Python 2.5
https://github.com/simplejson/simplejson/issues/5
- Aditional changes from 2.1.5 released 2011-04-17:
* Built sdist tarball with setuptools_git installed. Argh.
- Aditional changes from 2.1.4 released 2011-04-17:
* Does not try to build the extension when using PyPy
* Trailing whitespace after commas no longer emitted when indent is used
* Migrated to github http://github.com/simplejson/simplejson
- Regenerate spec file with py2pack.
Thu Mar 3 13:00:00 2011 saschpeAATTsuse.de
- Update to 2.1.3
* Support the sort_keys option in C encoding speedups
* Allow use_decimal to work with dump()
* Correct wrong end when object_pairs_hook is used
* Correct output for indent=0
* Correctly raise TypeError when non-string keys are used with
speedups
* Fix the endlineno, endcolno attributes of the JSONDecodeError
exception.
Mon Jul 5 14:00:00 2010 alexandreAATTexatati.com.br
- Update to 2.1.1:
* Corrected simplejson.__version__ and other minor doc changes.
* Do not fail speedups tests if speedups could not be built.
* Decimal serialization officially supported for encoding with
use_decimal=True. For encoding this encodes Decimal objects and
for decoding it implies parse_float=Decimal
* Decoding performance and memory utilization enhancements
... see CHANGES.txt for more
- Spec file cleaned with spec-cleaner.
Mon May 25 14:00:00 2009 James Oakley
- Update to 2.0.9
- Split off doc package
Wed Dec 3 13:00:00 2008 James Oakley
- Update to 2.0.5
Wed Mar 19 13:00:00 2008 James Oakley
- Update to 1.7.5
Tue Oct 30 13:00:00 2007 James Oakley
- Update to 1.7.3
Sun Sep 09 00:00:00 UTC 2007 - Peter Nixon
- first build