Skip to content

Commit

Permalink
Update changelog, release 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
noirello committed Apr 28, 2024
1 parent fd17f6d commit 152596b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Changelog
==========

[1.5.3 - 2024-04-28]
--------------------

Changed
~~~~~~~

- Any exception that rasied during closing a connection pool is
catched and a warning message will be logged.
- LDAPconnection.close method is no longer try to abandon on-going
requests by default.


Added
~~~~~

- New `abandon_requests` parameter for LDAPconnection.close method
to call abandon operations on on-going requests during connection
close.
- Arm64 wheels for macOS.

Fixed
~~~~~

- Memory leak during Kerberos credential creation. (PR #84, thanks
to @dafanasiev)


[1.5.2] - 2023-11-20
--------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bonsai"
version = "1.5.2"
version = "1.5.3"
description = "Python 3 module for accessing LDAP directory servers."
authors = ["noirello <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/bonsai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .errors import *
from .utils import *

__version__ = "1.5.2"
__version__ = "1.5.3"

__all__ = [
"LDAPClient",
Expand Down

0 comments on commit 152596b

Please sign in to comment.