Skip to content

Releases: kevin1024/pytest-httpbin

v2.0.0

25 May 12:12
v2.0.0
52a77d7
Compare
Choose a tag to compare

Version 2.0.0!

This is a major release since it drops comparability with some older versions of python.
Huge thanks to @graingert for bringing pytest-httpbin into the modern world!

  • Drop support for Python 2.6, 2.7, 3.4, 3.5 and 3.6 (#68)
  • Add support for Python 3.7, 3.8, 3.9 and 3.10 (#68)
  • Avoid deprecation warnings and resource warnings (#71)
  • Add support for Python 3.11 and 3.12, drop dependency on six (#76)

v1.0.1

28 Dec 10:52
Compare
Choose a tag to compare
  • fix redirect Location to have "https://" scheme (thanks @immerrr)
  • Include regression tests in PyPI tarball by (thanks @kmosiejczuk)

v1.0.0

11 Feb 19:54
be3c320
Compare
Choose a tag to compare

Update included self-signed cert to include IP address in SAN (See #52). Full version bump because this could be a breaking change for those depending on the certificate missing the IP address in the SAN (as it seems the requests test suite does)
Only use @pytest.fixture decorator once (thanks @hroncok)
Fix a few README typos (thanks @hemberger)

Fixed port feature, thread.join(), 3.6 support

28 Oct 21:39
Compare
Choose a tag to compare
  • Allow to run httpbin on fixed port using environment variables (thanks @hroncok)
  • Allow server to be thread.join()ed (thanks @graingert)
  • Add support for Python 3.6 (thanks @graingert)

Remove Threading and fix packaging problem

22 Nov 23:10
Compare
Choose a tag to compare
Merge pull request #31 from flupke/flupke-patch-1

Add DESCRIPTION.rst in MANIFEST.in

Fix bug with ssl certificate on pypy

13 Nov 21:07
Compare
Choose a tag to compare

Fix hang in SSL socket with broken certificate

16 Feb 04:18
Compare
Choose a tag to compare

Fix broken version parsing in 0.0.4

03 Dec 01:46
Compare
Choose a tag to compare

Fix errors with multiple requests in one session; Add httpbin_ca_bundle fixture

03 Dec 00:30
Compare
Choose a tag to compare
  • 0.0.4:
    • Fix BadStatusLine error that occurs when sending multiple requests
      in a single session (PR #16). Thanks @msabramo!
    • Fix #9 ("Can't be installed at the same time than pytest?") (PR
      #14). Thanks @msabramo!
    • Add httpbin_ca_bundle pytest fixture. With this fixture there is
      no need to specify the bundle on every request. And you don't have
      to care about where it is located (PR #8). Thanks @t-8ch!

https://pypi.python.org/pypi/pytest-httpbin/0.0.4

Added class-based testing decorators

14 Sep 22:49
Compare
Choose a tag to compare