boto3-refresh-session 2.0.10__tar.gz → 2.0.11__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/PKG-INFO +1 -1
  2. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/__init__.py +1 -1
  3. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/utils.py +1 -1
  4. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/pyproject.toml +1 -1
  5. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/LICENSE +0 -0
  6. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/NOTICE +0 -0
  7. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/README.md +0 -0
  8. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/exceptions.py +0 -0
  9. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/__init__.py +0 -0
  10. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/custom.py +0 -0
  11. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/ecs.py +0 -0
  12. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/iot/__init__.typed +0 -0
  13. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/iot/certificate.typed +0 -0
  14. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/iot/cognito.typed +0 -0
  15. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/iot/core.typed +0 -0
  16. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/methods/sts.py +0 -0
  17. {boto3_refresh_session-2.0.10 → boto3_refresh_session-2.0.11}/boto3_refresh_session/session.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 2.0.10
3
+ Version: 2.0.11
4
4
  Summary: A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically.
5
5
  License: MIT
6
6
  Keywords: boto3,botocore,aws,sts,ecs,credentials,token,refresh
@@ -4,7 +4,7 @@ from .methods.sts import STSRefreshableSession
4
4
  from .session import RefreshableSession
5
5
 
6
6
  __all__ = ["RefreshableSession"]
7
- __version__ = "2.0.10"
7
+ __version__ = "2.0.11"
8
8
  __title__ = "boto3-refresh-session"
9
9
  __author__ = "Mike Letts"
10
10
  __maintainer__ = "Mike Letts"
@@ -168,7 +168,7 @@ class CredentialProvider(ABC):
168
168
  def _get_credentials(self) -> TemporaryCredentials: ...
169
169
 
170
170
  @abstractmethod
171
- def get_identity(self) -> dict[str, Any]: ...
171
+ def get_identity(self) -> Identity: ...
172
172
 
173
173
 
174
174
  class BRSSession(Session):
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "2.0.10"
3
+ version = "2.0.11"
4
4
  description = "A simple Python package for refreshing the temporary security credentials in a boto3.session.Session object automatically."
5
5
  authors = [
6
6
  {name = "Mike Letts",email = "lettsmt@gmail.com"}