rds-proxy-password-rotation 0.6.134__tar.gz → 0.6.142__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.

Potentially problematic release.


This version of rds-proxy-password-rotation might be problematic. Click here for more details.

Files changed (19) hide show
  1. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/PKG-INFO +4 -4
  2. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/setup.cfg +4 -4
  3. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation.egg-info/PKG-INFO +4 -4
  4. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation.egg-info/requires.txt +3 -3
  5. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/README.md +0 -0
  6. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/pyproject.toml +0 -0
  7. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/__init__.py +0 -0
  8. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/adapter/__init__.py +0 -0
  9. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/adapter/aws_lambda_function.py +0 -0
  10. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/adapter/aws_lambda_function_model.py +0 -0
  11. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/adapter/aws_secrets_manager.py +0 -0
  12. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/adapter/container.py +0 -0
  13. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/adapter/postgresql_database_service.py +0 -0
  14. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/model.py +0 -0
  15. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/password_rotation_application.py +0 -0
  16. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation/services.py +0 -0
  17. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation.egg-info/SOURCES.txt +0 -0
  18. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation.egg-info/dependency_links.txt +0 -0
  19. {rds_proxy_password_rotation-0.6.134 → rds_proxy_password_rotation-0.6.142}/src/rds_proxy_password_rotation.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rds-proxy-password-rotation
3
- Version: 0.6.134
3
+ Version: 0.6.142
4
4
  Summary: A program to rotate the password of an RDS database accessed via a RDS proxy
5
5
  Home-page: https://github.com/Hapag-Lloyd/rds-proxy-password-rotation
6
6
  Author: Hapag-Lloyd AG
@@ -11,13 +11,13 @@ Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
- Requires-Dist: aws-lambda-powertools==3.22.0
15
- Requires-Dist: boto3==1.40.65
14
+ Requires-Dist: aws-lambda-powertools==3.22.1
15
+ Requires-Dist: boto3==1.40.69
16
16
  Requires-Dist: boto3-stubs[secretsmanager]==1.40.64
17
17
  Requires-Dist: cachetools==6.2.1
18
18
  Requires-Dist: dependency-injector==4.48.2
19
19
  Requires-Dist: psycopg[binary]==3.2.12
20
- Requires-Dist: pydantic==2.12.3
20
+ Requires-Dist: pydantic==2.12.4
21
21
  Provides-Extra: test
22
22
  Requires-Dist: pytest==8.4.2; extra == "test"
23
23
  Requires-Dist: pytest-cov==7.0.0; extra == "test"
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = rds-proxy-password-rotation
3
- version = 0.6.134
3
+ version = 0.6.142
4
4
  license_files = ["LICENSE"]
5
5
  author = Hapag-Lloyd AG
6
6
  author_email = info@hlag.com
@@ -21,13 +21,13 @@ package_dir =
21
21
  packages = find:
22
22
  python_requires = >=3.10
23
23
  install_requires =
24
- aws-lambda-powertools==3.22.0
25
- boto3==1.40.65
24
+ aws-lambda-powertools==3.22.1
25
+ boto3==1.40.69
26
26
  boto3-stubs[secretsmanager]==1.40.64
27
27
  cachetools==6.2.1
28
28
  dependency-injector==4.48.2
29
29
  psycopg[binary]==3.2.12
30
- pydantic==2.12.3
30
+ pydantic==2.12.4
31
31
 
32
32
  [options.extras_require]
33
33
  test =
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rds-proxy-password-rotation
3
- Version: 0.6.134
3
+ Version: 0.6.142
4
4
  Summary: A program to rotate the password of an RDS database accessed via a RDS proxy
5
5
  Home-page: https://github.com/Hapag-Lloyd/rds-proxy-password-rotation
6
6
  Author: Hapag-Lloyd AG
@@ -11,13 +11,13 @@ Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
- Requires-Dist: aws-lambda-powertools==3.22.0
15
- Requires-Dist: boto3==1.40.65
14
+ Requires-Dist: aws-lambda-powertools==3.22.1
15
+ Requires-Dist: boto3==1.40.69
16
16
  Requires-Dist: boto3-stubs[secretsmanager]==1.40.64
17
17
  Requires-Dist: cachetools==6.2.1
18
18
  Requires-Dist: dependency-injector==4.48.2
19
19
  Requires-Dist: psycopg[binary]==3.2.12
20
- Requires-Dist: pydantic==2.12.3
20
+ Requires-Dist: pydantic==2.12.4
21
21
  Provides-Extra: test
22
22
  Requires-Dist: pytest==8.4.2; extra == "test"
23
23
  Requires-Dist: pytest-cov==7.0.0; extra == "test"
@@ -1,10 +1,10 @@
1
- aws-lambda-powertools==3.22.0
2
- boto3==1.40.65
1
+ aws-lambda-powertools==3.22.1
2
+ boto3==1.40.69
3
3
  boto3-stubs[secretsmanager]==1.40.64
4
4
  cachetools==6.2.1
5
5
  dependency-injector==4.48.2
6
6
  psycopg[binary]==3.2.12
7
- pydantic==2.12.3
7
+ pydantic==2.12.4
8
8
 
9
9
  [test]
10
10
  pytest==8.4.2