boto3-refresh-session 1.3.21__tar.gz → 1.3.22__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 1.3.21
3
+ Version: 1.3.22
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
@@ -57,7 +57,7 @@ Description-Content-Type: text/markdown
57
57
  </a>
58
58
 
59
59
  <a href="https://pepy.tech/projects/boto3-refresh-session">
60
- <img src="https://img.shields.io/badge/downloads-76.2K-red?logo=python&color=%23FF0000&label=Downloads" alt="Downloads"/>
60
+ <img src="https://img.shields.io/badge/downloads-76.9K-red?logo=python&color=%23FF0000&label=Downloads" alt="Downloads"/>
61
61
  </a>
62
62
 
63
63
  <a href="https://michaelthomasletts.github.io/boto3-refresh-session/index.html">
@@ -92,7 +92,7 @@ Description-Content-Type: text/markdown
92
92
  - Supports custom authentication methods for complicated authentication flows
93
93
  - Natively supports all parameters supported by `boto3.session.Session`
94
94
  - [Tested](https://github.com/michaelthomasletts/boto3-refresh-session/tree/main/tests), [documented](https://michaelthomasletts.github.io/boto3-refresh-session/index.html), and [published to PyPI](https://pypi.org/project/boto3-refresh-session/)
95
- - Future releases will include support for EC2, IoT, SSO, and OIDC
95
+ - Future releases will include support for IoT (coming soon), EC2, and SSO
96
96
 
97
97
  ## Recognition and Testimonials
98
98
 
@@ -33,7 +33,7 @@
33
33
  </a>
34
34
 
35
35
  <a href="https://pepy.tech/projects/boto3-refresh-session">
36
- <img src="https://img.shields.io/badge/downloads-76.2K-red?logo=python&color=%23FF0000&label=Downloads" alt="Downloads"/>
36
+ <img src="https://img.shields.io/badge/downloads-76.9K-red?logo=python&color=%23FF0000&label=Downloads" alt="Downloads"/>
37
37
  </a>
38
38
 
39
39
  <a href="https://michaelthomasletts.github.io/boto3-refresh-session/index.html">
@@ -68,7 +68,7 @@
68
68
  - Supports custom authentication methods for complicated authentication flows
69
69
  - Natively supports all parameters supported by `boto3.session.Session`
70
70
  - [Tested](https://github.com/michaelthomasletts/boto3-refresh-session/tree/main/tests), [documented](https://michaelthomasletts.github.io/boto3-refresh-session/index.html), and [published to PyPI](https://pypi.org/project/boto3-refresh-session/)
71
- - Future releases will include support for EC2, IoT, SSO, and OIDC
71
+ - Future releases will include support for IoT (coming soon), EC2, and SSO
72
72
 
73
73
  ## Recognition and Testimonials
74
74
 
@@ -4,7 +4,7 @@ from .session import RefreshableSession
4
4
  from .sts import STSRefreshableSession
5
5
 
6
6
  __all__ = ["RefreshableSession"]
7
- __version__ = "1.3.21"
7
+ __version__ = "1.3.22"
8
8
  __title__ = "boto3-refresh-session"
9
9
  __author__ = "Mike Letts"
10
10
  __maintainer__ = "Mike Letts"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "1.3.21"
3
+ version = "1.3.22"
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"}