File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are:
1414The versions coincide with releases on pip. Only major versions will be released as tags on Github.
1515
1616## [ 0.0.x] ( https://github.com/oras-project/oras-py/tree/main ) (0.0.x)
17+ - Use the correct credsStore/credHelpers binary (0.2.37)
1718 - Properly prioritize auth methods (0.2.36)
1819 - fix 'authentication with ECR' to be an extra as intended (0.2.35)
1920 - Add support for authentication with ECR registries (0.2.34)
Original file line number Diff line number Diff line change @@ -64,7 +64,8 @@ def logout(self, hostname: str):
6464 def _logout (self ):
6565 pass
6666
67- def _get_auth_from_creds_store (self , binary : str , hostname : str ) -> str | None :
67+ def _get_auth_from_creds_store (self , suffix : str , hostname : str ) -> str | None :
68+ binary = f"docker-credential-{ suffix } "
6869 try :
6970 proc = subprocess .run (
7071 [binary , "get" ],
Original file line number Diff line number Diff line change 22__copyright__ = "Copyright The ORAS Authors."
33__license__ = "Apache-2.0"
44
5- __version__ = "0.2.36 "
5+ __version__ = "0.2.37 "
66AUTHOR = "Vanessa Sochat"
77EMAIL = "vsoch@users.noreply.github.com"
88NAME = "oras"
You can’t perform that action at this time.
0 commit comments