* Handle ``requestContext`` being ``None``, as can happen from Lambda invoke.
Thanks to scottmn for the report in `Issue 289 <https://github.com/adamchainz/apig-wsgi/issues/289>`__.
2.12.0
-------------------
* Fix handling of query string encoding in ALB deployments.
Thanks to Jason Capriotti for the fix in `PR 254 <https://github.com/adamchainz/apig-wsgi/pull/254>`__.
* Add type hints.
2.11.0
-------------------
* Support Python 3.10.
* Stop distributing tests to reduce package size. Tests are not intended to be run outside of the tox setup in the repository. Repackagers can use GitHub's tarballs per tag.
2.10.0
-------------------
* Drop Python 3.5 support.
2.9.2
------------------
* Unquote paths, as per the WSGI specification. This fixes a bug where paths like ``/api/path%2Finfo"`` were not correctly received by the application as ``/api/path/info"`` (`Pull Request 188 <https://github.com/adamchainz/apig-wsgi/pull/188>`__).