Skip to content

Releases: hydralabs/pyamf

v0.8.0

17 Dec 14:22
Compare
Choose a tag to compare

v0.7.2

18 Feb 17:06
Compare
Choose a tag to compare
  • Fix a decoding issue in cpyamf when getting the class alias would not cache the alias for next time.

v0.7.1

17 Feb 03:55
Compare
Choose a tag to compare
  • Add support for Cython <= 0.22
  • Fix a bug in the AppEngine adapters where writeNull doesn't exist in the C extensions
  • Removed fake_pyrex as we're no longer using distribute.

0.7.0

10 Feb 15:24
Compare
Choose a tag to compare
  • Dropped support for Python 2.5. A Python 3 port is underway.
  • Fix a rare string collision bug with AMF3 #36
  • Updated to use the latest version of Cython (0.21.2) #34
  • Added Travis/coveralls support.
  • Add post processing callbacks to finalise the decoded payloads. #45
  • Added support for google.appengine.ext.ndb. #47
  • pyamf.Undefined now evaluates to False in a boolean expression.
  • Fixed an issue in the client where ; charset=utf8 would be appended to the
    Content-Type response header
  • Add support for collections.OrderedDict and collections.Counter
  • pyamf.codec._Codec.__init__ now supports duck-typing.
  • Enabled subclassed list/tuple to be overridden by pyamf.add_type before
    defaulting to writing a sequence.
  • Numerical keys in a pyamf.MixedArray would cause an exception. Affects
    pure python decoder only.
  • Fixed a segfault (the first ever!) in cpyamf caused by encoding subclassed
    tuples/list/sets. Thanks to @wolever for the heavy lifting
  • Add support for weakref objects