diff --git a/curator/_version.py b/curator/_version.py index 557a82fa..434b2f25 100644 --- a/curator/_version.py +++ b/curator/_version.py @@ -1,2 +1,2 @@ """Curator Version""" -__version__ = '8.0.9' +__version__ = '8.0.10' diff --git a/docs/Changelog.rst b/docs/Changelog.rst index 547cf0c6..185bfc44 100644 --- a/docs/Changelog.rst +++ b/docs/Changelog.rst @@ -3,6 +3,18 @@ Changelog ========= +8.0.10 (1 February 2024) +------------------------ + +**Changes** + +The upstream dependency, ``es_client``, needed to be patched to address a +Docker logging permission issue. This release only version bumps that +dependency: + + * ``es_client==8.12.4`` + + 8.0.9 (31 January 2024) ----------------------- diff --git a/docs/conf.py b/docs/conf.py index cd744fa6..0e30fea8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ intersphinx_mapping = { 'python': ('https://docs.python.org/3.11', None), - 'es_client': ('https://es-client.readthedocs.io/en/v8.12.3', None), + 'es_client': ('https://es-client.readthedocs.io/en/v8.12.4', None), 'elasticsearch8': ('https://elasticsearch-py.readthedocs.io/en/v8.12.0', None), 'voluptuous': ('http://alecthomas.github.io/voluptuous/docs/_build/html', None), 'click': ('https://click.palletsprojects.com/en/8.1.x', None), diff --git a/pyproject.toml b/pyproject.toml index 28311821..001c8b26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ keywords = [ 'index-expiry' ] dependencies = [ - "es_client==8.12.3" + "es_client==8.12.4" ] [project.optional-dependencies]