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:
14
14
The versions coincide with releases on pip. Only major versions will be released as tags on Github.
15
15
16
16
## [ 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)
17
18
- Properly prioritize auth methods (0.2.36)
18
19
- fix 'authentication with ECR' to be an extra as intended (0.2.35)
19
20
- 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):
64
64
def _logout (self ):
65
65
pass
66
66
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 } "
68
69
try :
69
70
proc = subprocess .run (
70
71
[binary , "get" ],
Original file line number Diff line number Diff line change 2
2
__copyright__ = "Copyright The ORAS Authors."
3
3
__license__ = "Apache-2.0"
4
4
5
- __version__ = "0.2.36 "
5
+ __version__ = "0.2.37 "
6
6
AUTHOR = "Vanessa Sochat"
7
7
EMAIL = "vsoch@users.noreply.github.com"
8
8
NAME = "oras"
You can’t perform that action at this time.
0 commit comments