=====
- Python 3.5 is no longer supported.
- Support for registering modules to be serialised by value. This allows code
defined in local modules to be serialised and executed remotely without those
local modules installed on the remote machine.
([PR 417](https://github.com/cloudpipe/cloudpickle/pull/417))
- Fix a side effect altering dynamic modules at pickling time.
([PR 426](https://github.com/cloudpipe/cloudpickle/pull/426))
- Support for pickling type annotations on Python 3.10 as per [PEP 563](
https://www.python.org/dev/peps/pep-0563/)
([PR 400](https://github.com/cloudpipe/cloudpickle/pull/400))
- Stricter parametrized type detection heuristics in
_is_parametrized_type_hint to limit false positives.
([PR 409](https://github.com/cloudpipe/cloudpickle/pull/409))
- Support pickling / depickling of OrderedDict KeysView, ValuesView, and
ItemsView, following similar strategy for vanilla Python dictionaries.
([PR 423](https://github.com/cloudpipe/cloudpickle/pull/423))
- Suppressed a source of non-determinism when pickling dynamically defined
functions and handles the deprecation of co_lnotab in Python 3.10+.
([PR 428](https://github.com/cloudpipe/cloudpickle/pull/428))