1. Fix the **'EnumTypeWrapper' object has no attribute 'System'** issue for customers who use **protobuf < 3.8.0** package. (https://github.com/Azure/azure-functions-python-worker/pull/725)
- This issue is caused by https://github.com/protocolbuffers/protobuf/issues/6028
- The Azure Functions Python Worker has a dependency on **protobuf >= 3.12.0** and previously we're using a new syntax for [referencing protobuf enum class](https://github.com/Azure/azure-functions-python-worker/blob/1.1.3/azure_functions_worker/dispatcher.pyL173).
- This fix ensure our worker will still function under old protobuf version.
2. Fix an issue where **EventHubEvent.metadata** and **ServiceBusMessage.metadata** are not accessible from Python functions.