=====
.. _Release Notes_0.3.0_New Features:
New Features
------------
- Support ephemeral port. This can be used by specify 0 as the port number
to the HTTPServer instance. In such case, an unused port will be picked up
and the server will start listening on that port. Querying the port attribute
after server start reveals the real port where the server is actually listening.
- Unify request functions of the HTTPServer class to make the API more straightforward to use.
.. _Release Notes_0.3.0_Upgrade Notes:
Upgrade Notes
-------------
- The default port has been changed to 0, which results that the server will be staring
on an ephemeral port.
- The following methods of HTTPServer have been changed in a backward-incompatible way:
* :py:meth:`pytest_httpserver.HTTPServer.expect_request` becomes a general function accepting handler_type parameter so it can create any kind of request handlers
* :py:meth:`pytest_httpserver.HTTPServer.expect_oneshot_request` no longer accepts the ordered parameter, and it creates an unordered oneshot request handler
* :py:meth:`pytest_httpserver.HTTPServer.expect_ordered_request` is a new method creating an ordered request handler
.. _Release Notes_0.2.2: