Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(merge): 2.6.2 into main #221

Merged
merged 3 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion craft_store/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@
import keyring.backends.fail
import keyring.errors
from jaraco.classes import properties
from keyring.backends import SecretService
from xdg import BaseDirectory # type: ignore[import]

from . import errors

# workaround to prevent legacy provider loading in focal
os.environ["CRYPTOGRAPHY_OPENSSL_NO_LEGACY"] = "1"
from keyring.backends import SecretService

logger = logging.getLogger(__name__)


Expand Down
1 change: 1 addition & 0 deletions docs/.custom_wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ https
io
initialization
initialized
libssl
NotLoggedIn
keyring
StoreClient
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ Breaking changes:
Bug fixes:
- Better error message when the keyring is locked.

2.6.2 (2024-05-06)
------------------

- Disable legacy libssl providers. This is a workaround to prevent a crash
when loading cryptography in focal.

2.6.1 (2024-03-26)
------------------

Expand Down
Loading