------------------------------------------------------------------------------------------------------------------------
Author: H.D. 'Chip' McCullough IV                                                    E-Mail: hdmccullough.work@gmail.com
Falcon-Auth0: Package Changes Log
------------------------------------------------------------------------------------------------------------------------

Release Summary:
----------------

1.0.0 -- May 07th, 2018:
    Initial Release

1.0.1 -- May 08th, 2018:
    Documentation improvements

1.0.2 -- May 08th, 2018:
    Added Python logger for Middleware Logging.

1.0.3 -- May 08th, 2018:
    Handle no provided auth by appending { 'auth': None } to req.context

1.0.4 -- May 08th, 2018:
    Fix JSON loads TypeError when parsing the return object from urlopen(_jwks_uri)

Release Details:
----------------

Release v1.0.0, May 07th, 2018

Initial project release, built on Python3 (v3.6.4). No support for earlier versions of Python yet. This is currently
just a quick & dirty Auth0 Middleware implementation based on the micro Flask App documentation they had listed on their
site.

------------------------------------------------------------------------------------------------------------------------

Release v1.0.1, May 08th, 2018

Added and updated the project README!

------------------------------------------------------------------------------------------------------------------------

Release v1.0.2, May 08th, 2018

Added and implemented a Python logger to capture Auth0Middleware data. Added `__version__`, `VERSION`, and `__name__`
variables to the project.

------------------------------------------------------------------------------------------------------------------------

Release v1.0.3, May 08th, 2018

Added handling of no Authorization header in the incoming Request. No Authorization will append the fields:
`{ 'auth': None }` onto the req.context object going to the responder.

------------------------------------------------------------------------------------------------------------------------

Release v1.0.3, May 08th, 2018

How many times am I going to change this today? Who knows! I really should add tests...

Added handling template for returned JWT claims, but final implementation will probably be in v1.0.4+.

Fixed JSON loads TypeError when parsing the return object from urlopen(_jwks_uri), because _jwks_uri is an HTTPResponse
object, and not a String, bytes, or bytearray object. It is now a String.