NEWS.rst 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. ================
  2. NEWS for wadllib
  3. ================
  4. 1.3.6 (2021-09-13)
  5. ==================
  6. - Remove buildout support in favour of tox. [bug=922605]
  7. - Adjust versioning strategy to avoid importing pkg_resources, which is slow
  8. in large environments.
  9. 1.3.5 (2021-01-20)
  10. ==================
  11. - Drop support for Python 3.2, 3.3, and 3.4.
  12. - Accept Unicode parameter values again when performing multipart/form-data
  13. encoding on Python 2 (broken in 1.3.3).
  14. 1.3.4 (2020-04-29)
  15. ==================
  16. - Advertise support for Python 3.8.
  17. - Add Python 3.9 compatibility by using xml.etree.ElementTree if
  18. xml.etree.cElementTree does not exist. [bug=1870294]
  19. 1.3.3 (2018-07-20)
  20. ==================
  21. - Drop support for Python < 2.6.
  22. - Add tox testing support.
  23. - Implement a subset of MIME multipart/form-data encoding locally rather
  24. than using the standard library's email module, which doesn't have good
  25. handling of binary parts and corrupts bytes in them that look like line
  26. endings in various ways depending on the Python version. [bug=1729754]
  27. 1.3.2 (2013-02-25)
  28. ==================
  29. - Impose sort order to avoid test failures due to hash randomization.
  30. LP: #1132125
  31. - Be sure to close streams opened by pkg_resources.resource_stream() to avoid
  32. test suite complaints.
  33. 1.3.1 (2012-03-22)
  34. ==================
  35. - Correct the double pass through _from_string causing datetime issues
  36. 1.3.0 (2012-01-27)
  37. ==================
  38. - Add Python 3 compatibility
  39. - Add the ability to inspect links before following them.
  40. - Ensure that the sample data is packaged.
  41. 1.2.0 (2011-02-03)
  42. ==================
  43. - It's now possible to examine a link before following it, to see
  44. whether it has a WADL description or whether it needs to be fetched
  45. with a general HTTP client.
  46. - It's now possible to iterate over a resource's Parameter objects
  47. with the .parameters() method.
  48. 1.1.8 (2010-10-27)
  49. ==================
  50. - This revision contains no code changes, but the build system was
  51. changed (yet again). This time to include the version.txt file
  52. used by setup.py.
  53. 1.1.7 (2010-10-26)
  54. ==================
  55. - This revision contains no code changes, but the build system was
  56. changed (again) to include the sample data used in tests.
  57. 1.1.6 (2010-10-21)
  58. ==================
  59. - This revision contains no code changes, but the build system was
  60. changed to include the sample data used in tests.
  61. 1.1.5 (2010-05-04)
  62. ==================
  63. - Fixed a bug (Launchpad bug 274074) that prevented the lookup of
  64. parameter values in resources associated directly with a
  65. representation definition (rather than a resource type with a
  66. representation definition). Bug fix provided by James Westby.
  67. 1.1.4 (2009-09-15)
  68. ==================
  69. - Fixed a bug that crashed wadllib unless all parameters of a
  70. multipart representation were provided.
  71. 1.1.3 (2009-08-26)
  72. ==================
  73. - Remove unnecessary build dependencies.
  74. - Add missing dependencies to setup file.
  75. - Remove sys.path hack from setup.py.
  76. 1.1.2 (2009-08-20)
  77. ==================
  78. - Consistently handle different versions of simplejson.
  79. 1.1.1 (2009-07-14)
  80. ==================
  81. - Make wadllib aware of the <option> tags that go beneath <param> tags.
  82. 1.1 (2009-07-09)
  83. ================
  84. - Make wadllib capable of recognizing and generating
  85. multipart/form-data representations, including representations that
  86. incorporate binary parameters.
  87. 1.0 (2009-03-23)
  88. ================
  89. - Initial release on PyPI