2020-04-12 07:31:19 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Apr 9 13:11:22 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
|
|
|
|
|
|
|
|
|
- update to 3.0
|
|
|
|
|
* Exposing backend's name under ``<backend>.backend``,
|
|
|
|
|
and default backend's name under ``ijson.backend``.
|
|
|
|
|
* Exposing ``ijson.sendable_list`` to users in case it comes in handy.
|
|
|
|
|
* Improved the protocol for user-facing coroutines,
|
|
|
|
|
where instead of having to send a final, empty bytes string
|
|
|
|
|
to finish the parsing process
|
|
|
|
|
users can simply call ``.close()`` on the coroutine.
|
|
|
|
|
* Including C code in coverage measurements,
|
|
|
|
|
and increased overall code coverage up to 99%.
|
|
|
|
|
* Full re-design of ijson.
|
|
|
|
|
* Initial support for ``asyncio`` in python 3.5+.
|
|
|
|
|
* Exposure of underlying infrastructure implementing the push model.
|
|
|
|
|
* C extension broken down into separate source files
|
|
|
|
|
for easier understanding and maintenance.
|
|
|
|
|
* Fixed a deprecation warning in the C backend
|
|
|
|
|
present in python 3.8 when parsing Decimal values.
|
|
|
|
|
* New `kvitems` method in all backends.
|
|
|
|
|
Like `items`, it takes a prefix,
|
|
|
|
|
and iterates over the key/value pairs of matching objects
|
|
|
|
|
(instead of iterating over objects themselves, like in `items`).
|
|
|
|
|
* When using python 2, all backends now return
|
|
|
|
|
`map_key` values as `unicode` objects, not `str`.
|
|
|
|
|
* Including more files in source distributions (#14).
|
|
|
|
|
* Adjusting python backend to avoid reading off the input stream
|
|
|
|
|
too eagerly (#15).
|
|
|
|
|
|
2019-10-21 07:31:09 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Oct 18 09:57:10 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
|
|
|
|
|
|
- Use libyajl
|
|
|
|
|
- Update URL to new maintainer https://github.com/ICRAR/ijson
|
|
|
|
|
- Update to v2.5.1
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Mar 27 12:46:35 PM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
|
|
|
|
|
|
- Initial spec for v2.3
|