cloudsnake 0.6.0__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.
- cloudsnake-0.6.0/CHANGELOG.md +118 -0
- cloudsnake-0.6.0/LICENSE +674 -0
- cloudsnake-0.6.0/PKG-INFO +146 -0
- cloudsnake-0.6.0/README.md +107 -0
- cloudsnake-0.6.0/pyproject.toml +53 -0
- cloudsnake-0.6.0/src/cloudsnake/__init__.py +3 -0
- cloudsnake-0.6.0/src/cloudsnake/__main__.py +13 -0
- cloudsnake-0.6.0/src/cloudsnake/cli/cli.py +78 -0
- cloudsnake-0.6.0/src/cloudsnake/cli/dto.py +25 -0
- cloudsnake-0.6.0/src/cloudsnake/cli/rds.py +142 -0
- cloudsnake-0.6.0/src/cloudsnake/cli/ssm.py +107 -0
- cloudsnake-0.6.0/src/cloudsnake/helpers.py +93 -0
- cloudsnake-0.6.0/src/cloudsnake/logger.py +56 -0
- cloudsnake-0.6.0/src/cloudsnake/sdk/aws.py +51 -0
- cloudsnake-0.6.0/src/cloudsnake/sdk/ec2.py +47 -0
- cloudsnake-0.6.0/src/cloudsnake/sdk/rds_session.py +151 -0
- cloudsnake-0.6.0/src/cloudsnake/sdk/session.py +43 -0
- cloudsnake-0.6.0/src/cloudsnake/sdk/ssm_parameters.py +49 -0
- cloudsnake-0.6.0/src/cloudsnake/sdk/ssm_session.py +84 -0
- cloudsnake-0.6.0/src/cloudsnake/tui.py +89 -0
- cloudsnake-0.6.0/tests/README.md +4 -0
- cloudsnake-0.6.0/tests/__init__.py +3 -0
- cloudsnake-0.6.0/tests/conftest.py +12 -0
- cloudsnake-0.6.0/tests/test_cli.py +12 -0
- cloudsnake-0.6.0/tests/test_helpers.py +92 -0
- cloudsnake-0.6.0/tests/test_logger.py +44 -0
- cloudsnake-0.6.0/tests/test_rds.py +31 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
## Unreleased (964dbd0..f673a91)
|
|
2
|
+
#### Bug Fixes
|
|
3
|
+
- signal handler - (721572d) - containerscrew
|
|
4
|
+
- import cloudsnake.sdk.boto3_session - (1700081) - containerscrew
|
|
5
|
+
- tests - (2387dfe) - containerscrew
|
|
6
|
+
#### Documentation
|
|
7
|
+
- update README.md - (196a751) - containerscrew
|
|
8
|
+
- update README.md and examples - (a42a202) - containerscrew
|
|
9
|
+
- update README.md and examples - (80a1c23) - containerscrew
|
|
10
|
+
- update README.md and examples - (3516cb5) - containerscrew
|
|
11
|
+
#### Features
|
|
12
|
+
- implement SSM get parameter - (c7f9943) - containerscrew
|
|
13
|
+
- refactor rds session - (bae0db4) - containerscrew
|
|
14
|
+
#### Miscellaneous Chores
|
|
15
|
+
- new release 0.6.0 - (f673a91) - containerscrew
|
|
16
|
+
- pre-commit - (290ed63) - containerscrew
|
|
17
|
+
- ruff checks - (727f9ab) - containerscrew
|
|
18
|
+
- test pipeline - (3f079ea) - containerscrew
|
|
19
|
+
- bump werkzeug from 3.1.3 to 3.1.4 - (fb7206d) - dependabot[bot]
|
|
20
|
+
- bump boto3 from 1.41.5 to 1.42.0 - (1f09e59) - dependabot[bot]
|
|
21
|
+
- bump moto from 5.1.17 to 5.1.18 - (304bc0b) - dependabot[bot]
|
|
22
|
+
- CHANGELOG.md - (95ad488) - containerscrew
|
|
23
|
+
- add CHANGELOG.md after fixing non conventional commits - (b67a52a) - containerscrew
|
|
24
|
+
- auto-fix non-conventional commit - Merge pull request #10 from containerscrew/dependabot/pip/boto3-1.41.5 - (e554643) - github-actions[bot]
|
|
25
|
+
- auto-fix non-conventional commit - Bump boto3 from 1.41.4 to 1.41.5 - (9775ba5) - dependabot[bot]
|
|
26
|
+
- update scripts/commits.sh - (e5da3d0) - containerscrew
|
|
27
|
+
- update scripts/commits.sh - (ca9be1f) - containerscrew
|
|
28
|
+
- change permissions to scripts/commits.sh - (92c3366) - containerscrew
|
|
29
|
+
- add script to rewrite commits to conventional commits - (5d958a1) - containerscrew
|
|
30
|
+
- add auto-merge pipeline - (c75894a) - containerscrew
|
|
31
|
+
- auto-fix non-conventional commit - Merge pull request #7 from containerscrew/dependabot/pip/typer-0.20.0 - (42604fc) - containerscrew
|
|
32
|
+
- auto-fix non-conventional commit - Merge branch 'main' into dependabot/pip/typer-0.20.0 - (8accead) - containerscrew
|
|
33
|
+
- auto-fix non-conventional commit - Merge pull request #5 from containerscrew/dependabot/pip/testfixtures-10.0.0 - (8a29d09) - containerscrew
|
|
34
|
+
- auto-fix non-conventional commit - Bump typer from 0.12.5 to 0.20.0 - (549c5a0) - dependabot[bot]
|
|
35
|
+
- auto-fix non-conventional commit - Bump testfixtures from 8.3.0 to 10.0.0 - (48a7cc2) - dependabot[bot]
|
|
36
|
+
- auto-fix non-conventional commit - Merge pull request #3 from containerscrew/dependabot/pip/rich-14.2.0 - (ed14073) - containerscrew
|
|
37
|
+
- auto-fix non-conventional commit - Bump rich from 13.9.4 to 14.2.0 - (7a85bc2) - dependabot[bot]
|
|
38
|
+
- auto-fix non-conventional commit - Merge pull request #4 from containerscrew/dependabot/pip/pytest-randomly-4.0.1 - (be54ad3) - containerscrew
|
|
39
|
+
- auto-fix non-conventional commit - Bump pytest-randomly from 3.16.0 to 4.0.1 - (8bed8db) - dependabot[bot]
|
|
40
|
+
- auto-fix non-conventional commit - Merge pull request #8 from containerscrew/dependabot/pip/click-8.3.1 - (cba60a6) - containerscrew
|
|
41
|
+
- auto-fix non-conventional commit - Bump click from 8.1.8 to 8.3.1 - (554e457) - dependabot[bot]
|
|
42
|
+
- auto-fix non-conventional commit - Merge pull request #2 from containerscrew/dependabot/pip/pytest-cov-7.0.0 - (30fc822) - containerscrew
|
|
43
|
+
- auto-fix non-conventional commit - Bump pytest-cov from 5.0.0 to 7.0.0 - (680f6ce) - dependabot[bot]
|
|
44
|
+
- update poetry.lock - (9c78aa0) - containerscrew
|
|
45
|
+
- auto-fix non-conventional commit - Merge pull request #9 from containerscrew/dependabot/pip/pytest-9.0.1 - (1547833) - containerscrew
|
|
46
|
+
- update README.md & ignore ruff check & tests - (7bd9704) - containerscrew
|
|
47
|
+
- auto-fix non-conventional commit - Bump pytest from 8.4.2 to 9.0.1 - (60b1deb) - dependabot[bot]
|
|
48
|
+
- pre-commit - (217e29f) - containerscrew
|
|
49
|
+
- auto-fix non-conventional commit - Set default profile to env AWS_PROFILE - (eda4c27) - containerscrew
|
|
50
|
+
- auto-fix non-conventional commit - Fix SSM when no running instances found - (6ef7c7b) - containerscrew
|
|
51
|
+
- auto-fix non-conventional commit - Fix ssm start interative session - (d19433d) - containerscrew
|
|
52
|
+
- auto-fix non-conventional commit - Fix EC2 tests - (4eb21ec) - containerscrew
|
|
53
|
+
- auto-fix non-conventional commit - Refactor EC2InstanceWrapper. Improving failing tests - (b26e140) - containerscrew
|
|
54
|
+
- auto-fix non-conventional commit - Merge pull request #1 from containerscrew/dependabot/pip/certifi-2024.7.4 - (2beb0f1) - danielsdotrs
|
|
55
|
+
- auto-fix non-conventional commit - Bump certifi from 2024.6.2 to 2024.7.4 - (9e4e40f) - dependabot[bot]
|
|
56
|
+
- auto-fix non-conventional commit - New version 0.4.0 - (3dfc556) - containerscrew
|
|
57
|
+
- auto-fix non-conventional commit - Update doc - (7463a0a) - containerscrew
|
|
58
|
+
- auto-fix non-conventional commit - Update doc - (822f004) - containerscrew
|
|
59
|
+
- auto-fix non-conventional commit - Update doc - (de49252) - containerscrew
|
|
60
|
+
- auto-fix non-conventional commit - Update doc - (36aa7b8) - containerscrew
|
|
61
|
+
- auto-fix non-conventional commit - Update doc - (baa9e3b) - containerscrew
|
|
62
|
+
- auto-fix non-conventional commit - ♻️ Refactor & implement some tests - (8c8b449) - containerscrew
|
|
63
|
+
- auto-fix non-conventional commit - 📝 Add docu - (6f5773e) - containerscrew
|
|
64
|
+
- auto-fix non-conventional commit - ♻️ Fix some tests - (75cc7e6) - containerscrew
|
|
65
|
+
- auto-fix non-conventional commit - 🚨 Fix linter - (ceb932d) - containerscrew
|
|
66
|
+
- auto-fix non-conventional commit - ♻️ Fix rds connect cert - (68680b1) - containerscrew
|
|
67
|
+
- auto-fix non-conventional commit - ♻️ Add new RDS command - (b31d6cd) - containerscrew
|
|
68
|
+
- auto-fix non-conventional commit - ✨ Refactoring AWS SDK & implement RDS operations - (b6717cf) - containerscrew
|
|
69
|
+
- auto-fix non-conventional commit - ✏️ Fix ruff lint - (43d96f2) - containerscrew
|
|
70
|
+
- auto-fix non-conventional commit - 🎨 Improving class - (e9abe83) - containerscrew
|
|
71
|
+
- auto-fix non-conventional commit - ♻️ Refactor class/subclass for the app - (d876fca) - containerscrew
|
|
72
|
+
- auto-fix non-conventional commit - ✅ Update tests - (72176e0) - containerscrew
|
|
73
|
+
- update dependencies with poetry - (798bedb) - containerscrew
|
|
74
|
+
- auto-fix non-conventional commit - Remove print - (0b7e8aa) - containerscrew
|
|
75
|
+
- auto-fix non-conventional commit - Run-precommit - (de8e230) - containerscrew
|
|
76
|
+
- auto-fix non-conventional commit - Feat: adding new tests with moto boto3 mock - (0fc37c2) - containerscrew
|
|
77
|
+
- auto-fix non-conventional commit - Add tag pattern in cliff.toml - (020c02e) - containerscrew
|
|
78
|
+
- auto-fix non-conventional commit - Merge branch 'develop' into main - (724040d) - containerscrew
|
|
79
|
+
- auto-fix non-conventional commit - Working with SSM - (2fef2f1) - containerscrew
|
|
80
|
+
- auto-fix non-conventional commit - Wip - (c249e7c) - containerscrew
|
|
81
|
+
- auto-fix non-conventional commit - Update dependencies - (bf2688c) - containerscrew
|
|
82
|
+
- auto-fix non-conventional commit - Refactor classes - (aaafb23) - containerscrew
|
|
83
|
+
- auto-fix non-conventional commit - Wip: SSM operations - (f615dba) - containerscrew
|
|
84
|
+
- auto-fix non-conventional commit - Lint - (2d66291) - containerscrew
|
|
85
|
+
- auto-fix non-conventional commit - Implement SSM start-session command - (dfce684) - containerscrew
|
|
86
|
+
- auto-fix non-conventional commit - Implement args and kwargs - (eeb40e7) - containerscrew
|
|
87
|
+
- auto-fix non-conventional commit - Wip - (e2aa779) - containerscrew
|
|
88
|
+
- auto-fix non-conventional commit - Refactor classes - (c0819ec) - containerscrew
|
|
89
|
+
- auto-fix non-conventional commit - Wip - (faee58a) - containerscrew
|
|
90
|
+
- auto-fix non-conventional commit - Add retry config - (dc4f25b) - containerscrew
|
|
91
|
+
- auto-fix non-conventional commit - Add config retry - (11e2570) - containerscrew
|
|
92
|
+
- auto-fix non-conventional commit - Fix imports - (94cf797) - containerscrew
|
|
93
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (cf63f89) - containerscrew
|
|
94
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (48da6cd) - containerscrew
|
|
95
|
+
- auto-fix non-conventional commit - WIp - (09fe8b4) - containerscrew
|
|
96
|
+
- auto-fix non-conventional commit - Refactor tui - (506b890) - containerscrew
|
|
97
|
+
- auto-fix non-conventional commit - Implement print table - (04d9e38) - containerscrew
|
|
98
|
+
- auto-fix non-conventional commit - Working with TUI - (549c1bc) - containerscrew
|
|
99
|
+
- auto-fix non-conventional commit - Wip - (9ba0cca) - containerscrew
|
|
100
|
+
- auto-fix non-conventional commit - Ruff linter - (7584df5) - containerscrew
|
|
101
|
+
- auto-fix non-conventional commit - Wip: refactor logger, ec2 wrappers - (fe56b29) - containerscrew
|
|
102
|
+
- auto-fix non-conventional commit - Ruff linter - (fe2508b) - containerscrew
|
|
103
|
+
- auto-fix non-conventional commit - Wip: refactor code - (0a723c2) - containerscrew
|
|
104
|
+
- auto-fix non-conventional commit - Massive pre-commit - (41b4afe) - containerscrew
|
|
105
|
+
- auto-fix non-conventional commit - Update README - (7c0e6a2) - containerscrew
|
|
106
|
+
- auto-fix non-conventional commit - Update README - (0740634) - containerscrew
|
|
107
|
+
- auto-fix non-conventional commit - Update README - (95ffe56) - containerscrew
|
|
108
|
+
- auto-fix non-conventional commit - Update README - (984f8c2) - containerscrew
|
|
109
|
+
- auto-fix non-conventional commit - Update README - (26b5250) - containerscrew
|
|
110
|
+
- auto-fix non-conventional commit - Initial commit - (964dbd0) - containerscrew
|
|
111
|
+
#### Refactoring
|
|
112
|
+
- session file name - (82922b7) - containerscrew
|
|
113
|
+
- ruff checks - (29e52e9) - containerscrew
|
|
114
|
+
- sdk and cli commands - (117b9d9) - containerscrew
|
|
115
|
+
- code structure and doc - (c450f30) - containerscrew
|
|
116
|
+
- code structure - (90d2678) - containerscrew
|
|
117
|
+
- code and doc - (686cd5c) - containerscrew
|
|
118
|
+
- documentation and code - (7c93213) - containerscrew
|