Skip to content

Latest commit

 

History

History
115 lines (87 loc) · 3.04 KB

CHANGELOG.rst

File metadata and controls

115 lines (87 loc) · 3.04 KB

CHANGELOG

v1.4.0

  • Built using Cython 0.29.6

v1.3.0

  • Built using Cython 0.29.1

v1.2.0

  • Built using Cython 0.28.5
  • Use keys() to iterate over request headers

v1.1.0

  • Built using Cython 0.28.4
  • Improve documentation

v1.0.0

  • Add exception handling in the _Parser class (move to the PS_ERROR state when targets raise an exception)
  • Support chunk-input validation in Target objects using validator callables
  • Add function hooks in Target classes which should be overridden instead of the actual functions themselves (users should now define on_data_received instead of overriding data_received)

v0.6.1

  • Include streaming_form_data/_parser.pyx file in the distribution to avoid installation errors

v0.6.0

  • Major performance improvements; we're now able to parse ~1800MB per second, from ~15MB per second in the previous version (thanks @kolomenkin)

v0.5.1

  • Fix parser bug which could lead to spurious CR or CRLF being added to the end of transferred form field value (thanks @kolomenkin)

v0.5.0

  • Make filename (from the Content-Disposition header) available as the self.multipart_filename attribute in Target classes (thanks @kolomenkin)
  • Add example usage for bottle framework (thanks @kolomenkin)
  • Refactor tests to work with random bytes instead of increasing repository size with test files (thanks @kolomenkin)
  • Make Content-Type header lookups truly case-insensitive (mixed cases also allowed) (thanks @kolomenkin)

v0.4.5

  • Make Content-Type header lookups case-insensitive

v0.4.4

  • Performance: mark active, found, and inactive properties on Finder instances as cpdef-ed methods, decreasing the Python-space operations for an increase in speed
  • Performance: remove _Failed exception and replace it with error codes, decreasing the Python-space operations for a speed increase
  • Include Cython-generated annotation file to keep an eye on the Python-interaction level

v0.4.3

  • Performance: cdef declare long variable responsible for iterating over the buffer

v0.4.2

  • Performance: avoid repeated function calls to check the buffer length

v0.4.1

v0.4.0

  • Provide parser.register function for handling uploaded parts, replacing the expected_parts argument
  • Remove Part class from the user-facing API since it just makes the API look messy and verbose
  • Update documentation

v0.3.2

  • Include upload form in tornado usage example
  • Call unset_active_part when a delimiter string is found

v0.3.1

  • Update README and tornado usage example
  • Adjust import paths for the Part class

v0.3.0

  • Initial release