- Add Github workflow CI.
- Update distribution packaging (
pyproject.toml
). - Update test runner to
pytest
. - Refactor tests using
pytest
patterns. - Add support for Python 3.8, 3.9, 3.10, 3.11 and 3.12.
- Drop support for 2.7, 3.4, 3.5, 3.6 and 3.7.
- Remove the
pytest.compat
module.
- Add support for Python 3.4, 3.5, 3.6 and 3.7.
- Drop support for Python 2.6, 3.2 and 3.3.
- Add contributing.md and update docs. See #13
- Switch to an iterative parser rather than a recursive parser to avoid DoS attacks.
- Add the
ignore
operation. The subsequent data elements in the stream will be ignored until the corresponding__end__
marker. This feature is useful for form elements designed for client-side scripting, such as a "select all" checkbox in the middle of a list of other kinds of fields. - Add support for Python 3.3.
- Drop support for Python 2.5 and Jython.
- Drop support for Python 2.4.
- Add support for Python 3.2.
- Move project to GitHub.
- Switch to Pylons Project Sphinx theme.
- Add tox configuration.
- 0.2 was a brownbag release. Handle the case where
rename
operation types may not have children.
- Add new operation type:
rename
.rename
begins a special mode. The value of the first subsequent data element in the stream will be used within its parent sequence or mapping. Any remaining data elements until the corresponding__end__
marker are ignored. This is mostly in support of radio buttons. See therename
docs within https://docs.pylonsproject.org/projects/peppercorn/en/latest/ for more information.
- Initial release.