Skip to content

Commit

Permalink
Merge branch 'master' into 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
untergeek committed Sep 30, 2024
2 parents 6c60b60 + efef314 commit 3ba5f2f
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker_test/VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version: 1.0.1
Version: 1.0.2
Released: 23 August 2024

# License and Changelog at https://github.com/untergeek/es-docker-test-scripts
1 change: 1 addition & 0 deletions docker_test/create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ if [ "$response" != "$expected" ]; then
echo "ERROR! Unable to create snapshot repository"
else
echo "Snapshot repository \"${REPONAME}\" created."
rm -f ${REPOJSON}
fi


Expand Down
11 changes: 11 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Changelog
=========

8.15.2 (30 September 2024)
--------------------------

**Changes**

* Python module version bumps:
* ``elasticsearch8==8.15.1``
* ``pyyaml==6.0.2``
* ``certifi>=2024.8.30``


8.15.1 (23 August 2024)
-----------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

intersphinx_mapping = {
"python": ("https://docs.python.org/3.12", None),
"elasticsearch8": ("https://elasticsearch-py.readthedocs.io/en/v8.15.0", None),
"elasticsearch8": ("https://elasticsearch-py.readthedocs.io/en/v8.15.1", None),
"elastic-transport": (
"https://elastic-transport-python.readthedocs.io/en/stable",
None,
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch8==8.15.0
elasticsearch8==8.15.1
voluptuous>=0.14.2
pyyaml==6.0.1
pyyaml==6.0.2
pint>=0.19.2
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ keywords = [
'command-line'
]
dependencies = [
'elasticsearch8==8.15.0',
'elasticsearch8==8.15.1',
'ecs-logging==2.2.0',
'dotmap==1.3.30',
'click==8.1.7',
'pyyaml==6.0.1',
'pyyaml==6.0.2',
'voluptuous>=0.14.2',
'certifi>=2024.6.2'
'certifi>=2024.8.30'
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/es_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .builder import Builder

__all__ = ["Builder"]
__version__ = "8.15.1"
__version__ = "8.15.2"

0 comments on commit 3ba5f2f

Please sign in to comment.