boto3-refresh-session 5.0.0__tar.gz → 5.0.1__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-5.0.0 → boto3_refresh_session-5.0.1}/PKG-INFO +19 -23
  2. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/README.md +19 -23
  3. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/__init__.py +1 -1
  4. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/pyproject.toml +1 -1
  5. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/LICENSE +0 -0
  6. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/NOTICE +0 -0
  7. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/exceptions.py +0 -0
  8. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/methods/__init__.py +0 -0
  9. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/methods/custom.py +0 -0
  10. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/methods/iot/__init__.py +0 -0
  11. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/methods/iot/core.py +0 -0
  12. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/methods/iot/x509.py +0 -0
  13. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/methods/sts.py +0 -0
  14. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/session.py +0 -0
  15. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/utils/__init__.py +0 -0
  16. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/utils/internal.py +0 -0
  17. {boto3_refresh_session-5.0.0 → boto3_refresh_session-5.0.1}/boto3_refresh_session/utils/typing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: boto3-refresh-session
3
- Version: 5.0.0
3
+ Version: 5.0.1
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,credentials,token,refresh,iot,x509
@@ -130,28 +130,6 @@ Description-Content-Type: text/markdown
130
130
  - [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/)
131
131
  - Future releases will include support for IoT (coming soon)
132
132
 
133
- ## ⚠️ Important Updates
134
-
135
- #### 😥 v3.0.0
136
-
137
- **The changes introduced by v3.0.0 will not impact ~99% of users** who generally interact with `boto3-refresh-session` by only `RefreshableSession`, *which is the intended usage for this package after all.*
138
-
139
- Advanced users, however, particularly those using low-level objects such as `BaseRefreshableSession | refreshable_session | BRSSession | utils.py`, may experience breaking changes.
140
-
141
- Please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/75) for additional details.
142
-
143
- #### ✂️ v4.0.0
144
-
145
- The `ecs` module has been dropped. For additional details and rationale, please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/78).
146
-
147
- #### 😛 v5.0.0
148
-
149
- Support for IoT Core via X.509 certificate-based authentication (over HTTPS) is now available!
150
-
151
- #### ☎️ Delayed Responses
152
-
153
- I am currently grappling with a very serious medical condition. Accordingly, expect delayed responses to issues and requests until my health stabilizes.
154
-
155
133
  ## 😌 Recognition and Testimonials
156
134
 
157
135
  [Featured in TL;DR Sec.](https://tldrsec.com/p/tldr-sec-282)
@@ -362,3 +340,21 @@ pip install boto3-refresh-session
362
340
  ```
363
341
 
364
342
  </details>
343
+
344
+ ## ⚠️ Changes
345
+
346
+ #### 😥 v3.0.0
347
+
348
+ **The changes introduced by v3.0.0 will not impact ~99% of users** who generally interact with `boto3-refresh-session` by only `RefreshableSession`, *which is the intended usage for this package after all.*
349
+
350
+ Advanced users, however, particularly those using low-level objects such as `BaseRefreshableSession | refreshable_session | BRSSession | utils.py`, may experience breaking changes.
351
+
352
+ Please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/75) for additional details.
353
+
354
+ #### ✂️ v4.0.0
355
+
356
+ The `ecs` module has been dropped. For additional details and rationale, please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/78).
357
+
358
+ #### 😛 v5.0.0
359
+
360
+ Support for IoT Core via X.509 certificate-based authentication (over HTTPS) is now available!
@@ -104,28 +104,6 @@
104
104
  - [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/)
105
105
  - Future releases will include support for IoT (coming soon)
106
106
 
107
- ## ⚠️ Important Updates
108
-
109
- #### 😥 v3.0.0
110
-
111
- **The changes introduced by v3.0.0 will not impact ~99% of users** who generally interact with `boto3-refresh-session` by only `RefreshableSession`, *which is the intended usage for this package after all.*
112
-
113
- Advanced users, however, particularly those using low-level objects such as `BaseRefreshableSession | refreshable_session | BRSSession | utils.py`, may experience breaking changes.
114
-
115
- Please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/75) for additional details.
116
-
117
- #### ✂️ v4.0.0
118
-
119
- The `ecs` module has been dropped. For additional details and rationale, please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/78).
120
-
121
- #### 😛 v5.0.0
122
-
123
- Support for IoT Core via X.509 certificate-based authentication (over HTTPS) is now available!
124
-
125
- #### ☎️ Delayed Responses
126
-
127
- I am currently grappling with a very serious medical condition. Accordingly, expect delayed responses to issues and requests until my health stabilizes.
128
-
129
107
  ## 😌 Recognition and Testimonials
130
108
 
131
109
  [Featured in TL;DR Sec.](https://tldrsec.com/p/tldr-sec-282)
@@ -335,4 +313,22 @@ pip install boto3-refresh-session
335
313
  )
336
314
  ```
337
315
 
338
- </details>
316
+ </details>
317
+
318
+ ## ⚠️ Changes
319
+
320
+ #### 😥 v3.0.0
321
+
322
+ **The changes introduced by v3.0.0 will not impact ~99% of users** who generally interact with `boto3-refresh-session` by only `RefreshableSession`, *which is the intended usage for this package after all.*
323
+
324
+ Advanced users, however, particularly those using low-level objects such as `BaseRefreshableSession | refreshable_session | BRSSession | utils.py`, may experience breaking changes.
325
+
326
+ Please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/75) for additional details.
327
+
328
+ #### ✂️ v4.0.0
329
+
330
+ The `ecs` module has been dropped. For additional details and rationale, please review [this PR](https://github.com/michaelthomasletts/boto3-refresh-session/pull/78).
331
+
332
+ #### 😛 v5.0.0
333
+
334
+ Support for IoT Core via X.509 certificate-based authentication (over HTTPS) is now available!
@@ -9,7 +9,7 @@ from .session import *
9
9
 
10
10
  __all__.extend(session.__all__)
11
11
  __all__.extend(exceptions.__all__)
12
- __version__ = "5.0.0"
12
+ __version__ = "5.0.1"
13
13
  __title__ = "boto3-refresh-session"
14
14
  __author__ = "Mike Letts"
15
15
  __maintainer__ = "Mike Letts"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boto3-refresh-session"
3
- version = "5.0.0"
3
+ version = "5.0.1"
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"}