Skip to content

Commit

Permalink
Bring 8.15.0 release to main (#186) (#211)
Browse files Browse the repository at this point in the history
(cherry picked from commit 93a7d5e)

Co-authored-by: Miguel Grinberg <miguel.grinberg@gmail.com>
github-actions[bot] and miguelgrinberg authored Jan 6, 2025

Verified

This commit was signed with the committer’s verified signature.
pradyunsg Pradyun Gedam
1 parent 27f1b25 commit 4ae3e68
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 8.15.0 (2024-08-09)

* Removed call to `raise_for_status()` when using `HttpxAsyncHttpNode` to prevent exceptions being raised for 404 responses ([#182](https://github.com/elastic/elastic-transport-python/pull/182))
* Documented response classes ([#175](https://github.com/elastic/elastic-transport-python/pull/175))
* Dropped support for Python 3.7 ([#179](https://github.com/elastic/elastic-transport-python/pull/179))

## 8.13.1 (2024-04-28)

- Fixed requests 2.32 compatibility (#164)
4 changes: 2 additions & 2 deletions elastic_transport/_node/_http_aiohttp.py
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
import re
import ssl
import warnings
from typing import Optional, Union
from typing import Any, MutableMapping, Optional, Union

from .._compat import warn_stacklevel
from .._exceptions import ConnectionError, ConnectionTimeout, SecurityWarning, TlsError
@@ -170,7 +170,7 @@ async def perform_request( # type: ignore[override]
else:
body_to_send = None

kwargs = {}
kwargs: MutableMapping[str, Any] = {}
if self._ssl_assert_fingerprint:
kwargs["ssl"] = aiohttp_fingerprint(self._ssl_assert_fingerprint)

2 changes: 1 addition & 1 deletion elastic_transport/_version.py
Original file line number Diff line number Diff line change
@@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.

__version__ = "8.13.1"
__version__ = "8.15.0"

0 comments on commit 4ae3e68

Please sign in to comment.