cloudsnake 0.8.0__tar.gz → 0.11.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.
- cloudsnake-0.11.1/CHANGELOG.md +581 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/PKG-INFO +35 -5
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/README.md +32 -3
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/pyproject.toml +4 -3
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/cli/cli.py +6 -7
- cloudsnake-0.11.1/src/cloudsnake/cli/logs.py +111 -0
- cloudsnake-0.11.1/src/cloudsnake/cli/ssm.py +125 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/cli/sso.py +6 -18
- cloudsnake-0.11.1/src/cloudsnake/console.py +3 -0
- cloudsnake-0.11.1/src/cloudsnake/decorators.py +39 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/helpers.py +77 -1
- cloudsnake-0.11.1/src/cloudsnake/models/selector.py +9 -0
- cloudsnake-0.11.1/src/cloudsnake/sdk/cloudwatch.py +206 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/ssm_parameters.py +6 -4
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/ssm_session.py +4 -4
- cloudsnake-0.11.1/src/cloudsnake/styles/tui.tcss +58 -0
- cloudsnake-0.11.1/src/cloudsnake/tui_v2.py +96 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/utils.py +9 -0
- cloudsnake-0.8.0/CHANGELOG.md +0 -118
- cloudsnake-0.8.0/src/cloudsnake/cli/ssm.py +0 -107
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/LICENSE +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/__init__.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/__main__.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/cli/dto.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/cli/rds.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/logger.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/aws.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/ec2.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/rds_session.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/session.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/sso.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/sdk/sso_oidc.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/src/cloudsnake/tui.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/tests/README.md +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/tests/__init__.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/tests/conftest.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/tests/test_cli.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/tests/test_helpers.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/tests/test_logger.py +0 -0
- {cloudsnake-0.8.0 → cloudsnake-0.11.1}/tests/test_rds.py +0 -0
|
@@ -0,0 +1,581 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
3
|
+
|
|
4
|
+
- - -
|
|
5
|
+
## 0.11.1 - 2026-01-21
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- security bugfixes - (c0f6c4f) - containerscrew
|
|
8
|
+
- (ssm) remove nested loop and fix parameter accumulation logic - (df3c5bc) - containerscrew
|
|
9
|
+
- (ssm) remove nested loop and fix parameter accumulation logic - (a431833) - containerscrew
|
|
10
|
+
- poetry.lock file - (6691901) - containerscrew
|
|
11
|
+
- signal handler - (721572d) - containerscrew
|
|
12
|
+
- import cloudsnake.sdk.boto3_session - (1700081) - containerscrew
|
|
13
|
+
- tests - (2387dfe) - containerscrew
|
|
14
|
+
#### Documentation
|
|
15
|
+
- update readme - (5af267b) - containerscrew
|
|
16
|
+
- update readme - (cb557d5) - containerscrew
|
|
17
|
+
- replace ssm-session gif - (67a1ede) - containerscrew
|
|
18
|
+
- replace ssm-session gif - (fd0aa9e) - containerscrew
|
|
19
|
+
- add upgrade section - (c958597) - containerscrew
|
|
20
|
+
- update shields - (b20e22b) - containerscrew
|
|
21
|
+
- update README.md - (87af626) - containerscrew
|
|
22
|
+
- update README.md - (196a751) - containerscrew
|
|
23
|
+
- update README.md and examples - (a42a202) - containerscrew
|
|
24
|
+
- update README.md and examples - (80a1c23) - containerscrew
|
|
25
|
+
- update README.md and examples - (3516cb5) - containerscrew
|
|
26
|
+
#### Features
|
|
27
|
+
- get historical cloudwatch log group - (9338991) - containerscrew
|
|
28
|
+
- adapt size for log groups - (fd2c4ba) - containerscrew
|
|
29
|
+
- cloudwatch logs stream - (56610b7) - containerscrew
|
|
30
|
+
- new version 0.9.1 - (8d71abd) - containerscrew
|
|
31
|
+
- (tuiv2): replace cntrl commands to exit the menu - (353a302) - containerscrew
|
|
32
|
+
- new version 0.9.0 - (6d5c0ff) - containerscrew
|
|
33
|
+
- replace instance selector using textual library - (8cc6af7) - containerscrew
|
|
34
|
+
- remove version command and usage message - (dde37c7) - containerscrew
|
|
35
|
+
- implement new sso get-credentials command - (ae41db4) - containerscrew
|
|
36
|
+
- wip: implementing sso fetch credentials - (4bde401) - containerscrew
|
|
37
|
+
- implement SSM get parameter - (c7f9943) - containerscrew
|
|
38
|
+
- refactor rds session - (bae0db4) - containerscrew
|
|
39
|
+
#### Miscellaneous Chores
|
|
40
|
+
- **(version)** 0.1.0 - (77e8998) - containerscrew
|
|
41
|
+
- **(version)** 0.1.0 - (ac737bf) - containerscrew
|
|
42
|
+
- remove changelog.md - (89466ce) - containerscrew
|
|
43
|
+
- bump boto3 from 1.42.29 to 1.42.30 - (e1ab78a) - dependabot[bot]
|
|
44
|
+
- bump moto from 5.1.19 to 5.1.20 - (486ba22) - dependabot[bot]
|
|
45
|
+
- bump boto3-stubs from 1.42.29 to 1.42.30 - (f49aa2d) - dependabot[bot]
|
|
46
|
+
- normalize tui v2 cloudsnake selector app - (1525664) - containerscrew
|
|
47
|
+
- remove testing data - (4d37fc6) - containerscrew
|
|
48
|
+
- bump werkzeug from 3.1.4 to 3.1.5 - (5599107) - dependabot[bot]
|
|
49
|
+
- bump boto3 from 1.42.21 to 1.42.25 - (115a6ee) - dependabot[bot]
|
|
50
|
+
- bump typer from 0.21.0 to 0.21.1 - (a068069) - dependabot[bot]
|
|
51
|
+
- bump boto3-stubs from 1.42.21 to 1.42.25 - (944fc8e) - dependabot[bot]
|
|
52
|
+
- bump urllib3 from 2.6.2 to 2.6.3 - (d7a1956) - dependabot[bot]
|
|
53
|
+
- bump moto from 5.1.18 to 5.1.19 - (86bdfb6) - dependabot[bot]
|
|
54
|
+
- bump boto3 from 1.42.17 to 1.42.21 - (f03d1ce) - dependabot[bot]
|
|
55
|
+
- bump boto3-stubs from 1.42.17 to 1.42.21 - (dd3d1b8) - dependabot[bot]
|
|
56
|
+
- bump boto3-stubs from 1.42.14 to 1.42.17 - (0d8b645) - dependabot[bot]
|
|
57
|
+
- bump typer from 0.20.1 to 0.21.0 - (2e84c02) - dependabot[bot]
|
|
58
|
+
- bump boto3 from 1.42.14 to 1.42.17 - (04219e6) - dependabot[bot]
|
|
59
|
+
- bump typer from 0.20.0 to 0.20.1 - (4717549) - dependabot[bot]
|
|
60
|
+
- bump boto3-stubs from 1.42.13 to 1.42.14 - (dda5753) - dependabot[bot]
|
|
61
|
+
- bump boto3 from 1.42.13 to 1.42.14 - (589bac8) - dependabot[bot]
|
|
62
|
+
- bump boto3-stubs from 1.42.12 to 1.42.13 - (1465e46) - dependabot[bot]
|
|
63
|
+
- bump boto3 from 1.42.12 to 1.42.13 - (66ad86b) - dependabot[bot]
|
|
64
|
+
- bump boto3-stubs from 1.42.11 to 1.42.12 - (d44207a) - dependabot[bot]
|
|
65
|
+
- bump boto3 from 1.42.11 to 1.42.12 - (5f7772f) - dependabot[bot]
|
|
66
|
+
- bump boto3-stubs from 1.42.10 to 1.42.11 - (39013d9) - dependabot[bot]
|
|
67
|
+
- bump boto3 from 1.42.10 to 1.42.11 - (fc761d1) - dependabot[bot]
|
|
68
|
+
- update poetry dependencies - (6050e73) - containerscrew
|
|
69
|
+
- update testing pipeline name - (692d9b4) - containerscrew
|
|
70
|
+
- update testing pipeline name - (47337c0) - containerscrew
|
|
71
|
+
- bump boto3 from 1.42.8 to 1.42.9 - (26c20b0) - dependabot[bot]
|
|
72
|
+
- bump boto3 from 1.42.7 to 1.42.8 - (da91381) - dependabot[bot]
|
|
73
|
+
- bump boto3 from 1.42.6 to 1.42.7 - (6de9b89) - dependabot[bot]
|
|
74
|
+
- bump boto3 from 1.42.5 to 1.42.6 - (b56ff0e) - dependabot[bot]
|
|
75
|
+
- bump boto3 from 1.42.4 to 1.42.5 - (0760fd4) - dependabot[bot]
|
|
76
|
+
- bump pytest from 9.0.1 to 9.0.2 - (0acc2dc) - dependabot[bot]
|
|
77
|
+
- bump boto3 from 1.42.3 to 1.42.4 - (8cb9f84) - dependabot[bot]
|
|
78
|
+
- bump boto3 from 1.42.2 to 1.42.3 - (e41afd6) - dependabot[bot]
|
|
79
|
+
- bump boto3 from 1.42.1 to 1.42.2 - (57eaa33) - dependabot[bot]
|
|
80
|
+
- add new shell function helper - (56e23f6) - containerscrew
|
|
81
|
+
- use ubuntu-slim in pipelines - (333d09b) - containerscrew
|
|
82
|
+
- cleanup - (062bc61) - containerscrew
|
|
83
|
+
- bump boto3 from 1.42.0 to 1.42.1 - (e0ddd03) - dependabot[bot]
|
|
84
|
+
- update README.md - (600a282) - containerscrew
|
|
85
|
+
- update CHANGELOG.md - (ecedd37) - containerscrew
|
|
86
|
+
- new release 0.6.0 - (f673a91) - containerscrew
|
|
87
|
+
- pre-commit - (290ed63) - containerscrew
|
|
88
|
+
- ruff checks - (727f9ab) - containerscrew
|
|
89
|
+
- test pipeline - (3f079ea) - containerscrew
|
|
90
|
+
- bump werkzeug from 3.1.3 to 3.1.4 - (fb7206d) - dependabot[bot]
|
|
91
|
+
- bump boto3 from 1.41.5 to 1.42.0 - (1f09e59) - dependabot[bot]
|
|
92
|
+
- bump moto from 5.1.17 to 5.1.18 - (304bc0b) - dependabot[bot]
|
|
93
|
+
- CHANGELOG.md - (95ad488) - containerscrew
|
|
94
|
+
- add CHANGELOG.md after fixing non conventional commits - (b67a52a) - containerscrew
|
|
95
|
+
- auto-fix non-conventional commit - Merge pull request #10 from containerscrew/dependabot/pip/boto3-1.41.5 - (e554643) - github-actions[bot]
|
|
96
|
+
- auto-fix non-conventional commit - Bump boto3 from 1.41.4 to 1.41.5 - (9775ba5) - dependabot[bot]
|
|
97
|
+
- update scripts/commits.sh - (e5da3d0) - containerscrew
|
|
98
|
+
- update scripts/commits.sh - (ca9be1f) - containerscrew
|
|
99
|
+
- change permissions to scripts/commits.sh - (92c3366) - containerscrew
|
|
100
|
+
- add script to rewrite commits to conventional commits - (5d958a1) - containerscrew
|
|
101
|
+
- add auto-merge pipeline - (c75894a) - containerscrew
|
|
102
|
+
- auto-fix non-conventional commit - Merge pull request #7 from containerscrew/dependabot/pip/typer-0.20.0 - (42604fc) - containerscrew
|
|
103
|
+
- auto-fix non-conventional commit - Merge branch 'main' into dependabot/pip/typer-0.20.0 - (8accead) - containerscrew
|
|
104
|
+
- auto-fix non-conventional commit - Merge pull request #5 from containerscrew/dependabot/pip/testfixtures-10.0.0 - (8a29d09) - containerscrew
|
|
105
|
+
- auto-fix non-conventional commit - Bump typer from 0.12.5 to 0.20.0 - (549c5a0) - dependabot[bot]
|
|
106
|
+
- auto-fix non-conventional commit - Bump testfixtures from 8.3.0 to 10.0.0 - (48a7cc2) - dependabot[bot]
|
|
107
|
+
- auto-fix non-conventional commit - Merge pull request #3 from containerscrew/dependabot/pip/rich-14.2.0 - (ed14073) - containerscrew
|
|
108
|
+
- auto-fix non-conventional commit - Bump rich from 13.9.4 to 14.2.0 - (7a85bc2) - dependabot[bot]
|
|
109
|
+
- auto-fix non-conventional commit - Merge pull request #4 from containerscrew/dependabot/pip/pytest-randomly-4.0.1 - (be54ad3) - containerscrew
|
|
110
|
+
- auto-fix non-conventional commit - Bump pytest-randomly from 3.16.0 to 4.0.1 - (8bed8db) - dependabot[bot]
|
|
111
|
+
- auto-fix non-conventional commit - Merge pull request #8 from containerscrew/dependabot/pip/click-8.3.1 - (cba60a6) - containerscrew
|
|
112
|
+
- auto-fix non-conventional commit - Bump click from 8.1.8 to 8.3.1 - (554e457) - dependabot[bot]
|
|
113
|
+
- auto-fix non-conventional commit - Merge pull request #2 from containerscrew/dependabot/pip/pytest-cov-7.0.0 - (30fc822) - containerscrew
|
|
114
|
+
- auto-fix non-conventional commit - Bump pytest-cov from 5.0.0 to 7.0.0 - (680f6ce) - dependabot[bot]
|
|
115
|
+
- update poetry.lock - (9c78aa0) - containerscrew
|
|
116
|
+
- auto-fix non-conventional commit - Merge pull request #9 from containerscrew/dependabot/pip/pytest-9.0.1 - (1547833) - containerscrew
|
|
117
|
+
- update README.md & ignore ruff check & tests - (7bd9704) - containerscrew
|
|
118
|
+
- auto-fix non-conventional commit - Bump pytest from 8.4.2 to 9.0.1 - (60b1deb) - dependabot[bot]
|
|
119
|
+
- pre-commit - (217e29f) - containerscrew
|
|
120
|
+
- auto-fix non-conventional commit - Set default profile to env AWS_PROFILE - (eda4c27) - containerscrew
|
|
121
|
+
- auto-fix non-conventional commit - Fix SSM when no running instances found - (6ef7c7b) - containerscrew
|
|
122
|
+
- auto-fix non-conventional commit - Fix ssm start interative session - (d19433d) - containerscrew
|
|
123
|
+
- auto-fix non-conventional commit - Fix EC2 tests - (4eb21ec) - containerscrew
|
|
124
|
+
- auto-fix non-conventional commit - Refactor EC2InstanceWrapper. Improving failing tests - (b26e140) - containerscrew
|
|
125
|
+
- auto-fix non-conventional commit - Merge pull request #1 from containerscrew/dependabot/pip/certifi-2024.7.4 - (2beb0f1) - danielsdotrs
|
|
126
|
+
- auto-fix non-conventional commit - Bump certifi from 2024.6.2 to 2024.7.4 - (9e4e40f) - dependabot[bot]
|
|
127
|
+
- auto-fix non-conventional commit - New version 0.4.0 - (3dfc556) - containerscrew
|
|
128
|
+
- auto-fix non-conventional commit - Update doc - (7463a0a) - containerscrew
|
|
129
|
+
- auto-fix non-conventional commit - Update doc - (822f004) - containerscrew
|
|
130
|
+
- auto-fix non-conventional commit - Update doc - (de49252) - containerscrew
|
|
131
|
+
- auto-fix non-conventional commit - Update doc - (36aa7b8) - containerscrew
|
|
132
|
+
- auto-fix non-conventional commit - Update doc - (baa9e3b) - containerscrew
|
|
133
|
+
- auto-fix non-conventional commit - ♻️ Refactor & implement some tests - (8c8b449) - containerscrew
|
|
134
|
+
- auto-fix non-conventional commit - 📝 Add docu - (6f5773e) - containerscrew
|
|
135
|
+
- auto-fix non-conventional commit - ♻️ Fix some tests - (75cc7e6) - containerscrew
|
|
136
|
+
- auto-fix non-conventional commit - 🚨 Fix linter - (ceb932d) - containerscrew
|
|
137
|
+
- auto-fix non-conventional commit - ♻️ Fix rds connect cert - (68680b1) - containerscrew
|
|
138
|
+
- auto-fix non-conventional commit - ♻️ Add new RDS command - (b31d6cd) - containerscrew
|
|
139
|
+
- auto-fix non-conventional commit - ✨ Refactoring AWS SDK & implement RDS operations - (b6717cf) - containerscrew
|
|
140
|
+
- auto-fix non-conventional commit - ✏️ Fix ruff lint - (43d96f2) - containerscrew
|
|
141
|
+
- auto-fix non-conventional commit - 🎨 Improving class - (e9abe83) - containerscrew
|
|
142
|
+
- auto-fix non-conventional commit - ♻️ Refactor class/subclass for the app - (d876fca) - containerscrew
|
|
143
|
+
- auto-fix non-conventional commit - ✅ Update tests - (72176e0) - containerscrew
|
|
144
|
+
- update dependencies with poetry - (798bedb) - containerscrew
|
|
145
|
+
- auto-fix non-conventional commit - Remove print - (0b7e8aa) - containerscrew
|
|
146
|
+
- auto-fix non-conventional commit - Run-precommit - (de8e230) - containerscrew
|
|
147
|
+
- auto-fix non-conventional commit - Feat: adding new tests with moto boto3 mock - (0fc37c2) - containerscrew
|
|
148
|
+
- auto-fix non-conventional commit - Add tag pattern in cliff.toml - (020c02e) - containerscrew
|
|
149
|
+
- auto-fix non-conventional commit - Merge branch 'develop' into main - (724040d) - containerscrew
|
|
150
|
+
- auto-fix non-conventional commit - Working with SSM - (2fef2f1) - containerscrew
|
|
151
|
+
- auto-fix non-conventional commit - Wip - (c249e7c) - containerscrew
|
|
152
|
+
- auto-fix non-conventional commit - Update dependencies - (bf2688c) - containerscrew
|
|
153
|
+
- auto-fix non-conventional commit - Refactor classes - (aaafb23) - containerscrew
|
|
154
|
+
- auto-fix non-conventional commit - Wip: SSM operations - (f615dba) - containerscrew
|
|
155
|
+
- auto-fix non-conventional commit - Lint - (2d66291) - containerscrew
|
|
156
|
+
- auto-fix non-conventional commit - Implement SSM start-session command - (dfce684) - containerscrew
|
|
157
|
+
- auto-fix non-conventional commit - Implement args and kwargs - (eeb40e7) - containerscrew
|
|
158
|
+
- auto-fix non-conventional commit - Wip - (e2aa779) - containerscrew
|
|
159
|
+
- auto-fix non-conventional commit - Refactor classes - (c0819ec) - containerscrew
|
|
160
|
+
- auto-fix non-conventional commit - Wip - (faee58a) - containerscrew
|
|
161
|
+
- auto-fix non-conventional commit - Add retry config - (dc4f25b) - containerscrew
|
|
162
|
+
- auto-fix non-conventional commit - Add config retry - (11e2570) - containerscrew
|
|
163
|
+
- auto-fix non-conventional commit - Fix imports - (94cf797) - containerscrew
|
|
164
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (cf63f89) - containerscrew
|
|
165
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (48da6cd) - containerscrew
|
|
166
|
+
- auto-fix non-conventional commit - WIp - (09fe8b4) - containerscrew
|
|
167
|
+
- auto-fix non-conventional commit - Refactor tui - (506b890) - containerscrew
|
|
168
|
+
- auto-fix non-conventional commit - Implement print table - (04d9e38) - containerscrew
|
|
169
|
+
- auto-fix non-conventional commit - Working with TUI - (549c1bc) - containerscrew
|
|
170
|
+
- auto-fix non-conventional commit - Wip - (9ba0cca) - containerscrew
|
|
171
|
+
- auto-fix non-conventional commit - Ruff linter - (7584df5) - containerscrew
|
|
172
|
+
- auto-fix non-conventional commit - Wip: refactor logger, ec2 wrappers - (fe56b29) - containerscrew
|
|
173
|
+
- auto-fix non-conventional commit - Ruff linter - (fe2508b) - containerscrew
|
|
174
|
+
- auto-fix non-conventional commit - Wip: refactor code - (0a723c2) - containerscrew
|
|
175
|
+
- auto-fix non-conventional commit - Massive pre-commit - (41b4afe) - containerscrew
|
|
176
|
+
- auto-fix non-conventional commit - Update README - (7c0e6a2) - containerscrew
|
|
177
|
+
- auto-fix non-conventional commit - Update README - (0740634) - containerscrew
|
|
178
|
+
- auto-fix non-conventional commit - Update README - (95ffe56) - containerscrew
|
|
179
|
+
- auto-fix non-conventional commit - Update README - (984f8c2) - containerscrew
|
|
180
|
+
- auto-fix non-conventional commit - Update README - (26b5250) - containerscrew
|
|
181
|
+
- auto-fix non-conventional commit - Initial commit - (964dbd0) - containerscrew
|
|
182
|
+
#### Refactoring
|
|
183
|
+
- use typer.exit - (8efb126) - containerscrew
|
|
184
|
+
- console print & reusable functions - (63d4c5b) - containerscrew
|
|
185
|
+
- console print & reusable functions - (93780cf) - containerscrew
|
|
186
|
+
- cloudsnake selector app & documentation - (258de7d) - containerscrew
|
|
187
|
+
- logging default log level - (0eee9de) - containerscrew
|
|
188
|
+
- session file name - (82922b7) - containerscrew
|
|
189
|
+
- ruff checks - (29e52e9) - containerscrew
|
|
190
|
+
- sdk and cli commands - (117b9d9) - containerscrew
|
|
191
|
+
- code structure and doc - (c450f30) - containerscrew
|
|
192
|
+
- code structure - (90d2678) - containerscrew
|
|
193
|
+
- code and doc - (686cd5c) - containerscrew
|
|
194
|
+
- documentation and code - (7c93213) - containerscrew
|
|
195
|
+
|
|
196
|
+
- - -
|
|
197
|
+
|
|
198
|
+
## 0.1.0 - 2026-01-21
|
|
199
|
+
#### Bug Fixes
|
|
200
|
+
- security bugfixes - (c0f6c4f) - containerscrew
|
|
201
|
+
- (ssm) remove nested loop and fix parameter accumulation logic - (df3c5bc) - containerscrew
|
|
202
|
+
- (ssm) remove nested loop and fix parameter accumulation logic - (a431833) - containerscrew
|
|
203
|
+
- poetry.lock file - (6691901) - containerscrew
|
|
204
|
+
- signal handler - (721572d) - containerscrew
|
|
205
|
+
- import cloudsnake.sdk.boto3_session - (1700081) - containerscrew
|
|
206
|
+
- tests - (2387dfe) - containerscrew
|
|
207
|
+
#### Documentation
|
|
208
|
+
- update readme - (5af267b) - containerscrew
|
|
209
|
+
- update readme - (cb557d5) - containerscrew
|
|
210
|
+
- replace ssm-session gif - (67a1ede) - containerscrew
|
|
211
|
+
- replace ssm-session gif - (fd0aa9e) - containerscrew
|
|
212
|
+
- add upgrade section - (c958597) - containerscrew
|
|
213
|
+
- update shields - (b20e22b) - containerscrew
|
|
214
|
+
- update README.md - (87af626) - containerscrew
|
|
215
|
+
- update README.md - (196a751) - containerscrew
|
|
216
|
+
- update README.md and examples - (a42a202) - containerscrew
|
|
217
|
+
- update README.md and examples - (80a1c23) - containerscrew
|
|
218
|
+
- update README.md and examples - (3516cb5) - containerscrew
|
|
219
|
+
#### Features
|
|
220
|
+
- get historical cloudwatch log group - (9338991) - containerscrew
|
|
221
|
+
- adapt size for log groups - (fd2c4ba) - containerscrew
|
|
222
|
+
- cloudwatch logs stream - (56610b7) - containerscrew
|
|
223
|
+
- new version 0.9.1 - (8d71abd) - containerscrew
|
|
224
|
+
- (tuiv2): replace cntrl commands to exit the menu - (353a302) - containerscrew
|
|
225
|
+
- new version 0.9.0 - (6d5c0ff) - containerscrew
|
|
226
|
+
- replace instance selector using textual library - (8cc6af7) - containerscrew
|
|
227
|
+
- remove version command and usage message - (dde37c7) - containerscrew
|
|
228
|
+
- implement new sso get-credentials command - (ae41db4) - containerscrew
|
|
229
|
+
- wip: implementing sso fetch credentials - (4bde401) - containerscrew
|
|
230
|
+
- implement SSM get parameter - (c7f9943) - containerscrew
|
|
231
|
+
- refactor rds session - (bae0db4) - containerscrew
|
|
232
|
+
#### Miscellaneous Chores
|
|
233
|
+
- **(version)** 0.1.0 - (ac737bf) - containerscrew
|
|
234
|
+
- remove changelog.md - (89466ce) - containerscrew
|
|
235
|
+
- bump boto3 from 1.42.29 to 1.42.30 - (e1ab78a) - dependabot[bot]
|
|
236
|
+
- bump moto from 5.1.19 to 5.1.20 - (486ba22) - dependabot[bot]
|
|
237
|
+
- bump boto3-stubs from 1.42.29 to 1.42.30 - (f49aa2d) - dependabot[bot]
|
|
238
|
+
- normalize tui v2 cloudsnake selector app - (1525664) - containerscrew
|
|
239
|
+
- remove testing data - (4d37fc6) - containerscrew
|
|
240
|
+
- bump werkzeug from 3.1.4 to 3.1.5 - (5599107) - dependabot[bot]
|
|
241
|
+
- bump boto3 from 1.42.21 to 1.42.25 - (115a6ee) - dependabot[bot]
|
|
242
|
+
- bump typer from 0.21.0 to 0.21.1 - (a068069) - dependabot[bot]
|
|
243
|
+
- bump boto3-stubs from 1.42.21 to 1.42.25 - (944fc8e) - dependabot[bot]
|
|
244
|
+
- bump urllib3 from 2.6.2 to 2.6.3 - (d7a1956) - dependabot[bot]
|
|
245
|
+
- bump moto from 5.1.18 to 5.1.19 - (86bdfb6) - dependabot[bot]
|
|
246
|
+
- bump boto3 from 1.42.17 to 1.42.21 - (f03d1ce) - dependabot[bot]
|
|
247
|
+
- bump boto3-stubs from 1.42.17 to 1.42.21 - (dd3d1b8) - dependabot[bot]
|
|
248
|
+
- bump boto3-stubs from 1.42.14 to 1.42.17 - (0d8b645) - dependabot[bot]
|
|
249
|
+
- bump typer from 0.20.1 to 0.21.0 - (2e84c02) - dependabot[bot]
|
|
250
|
+
- bump boto3 from 1.42.14 to 1.42.17 - (04219e6) - dependabot[bot]
|
|
251
|
+
- bump typer from 0.20.0 to 0.20.1 - (4717549) - dependabot[bot]
|
|
252
|
+
- bump boto3-stubs from 1.42.13 to 1.42.14 - (dda5753) - dependabot[bot]
|
|
253
|
+
- bump boto3 from 1.42.13 to 1.42.14 - (589bac8) - dependabot[bot]
|
|
254
|
+
- bump boto3-stubs from 1.42.12 to 1.42.13 - (1465e46) - dependabot[bot]
|
|
255
|
+
- bump boto3 from 1.42.12 to 1.42.13 - (66ad86b) - dependabot[bot]
|
|
256
|
+
- bump boto3-stubs from 1.42.11 to 1.42.12 - (d44207a) - dependabot[bot]
|
|
257
|
+
- bump boto3 from 1.42.11 to 1.42.12 - (5f7772f) - dependabot[bot]
|
|
258
|
+
- bump boto3-stubs from 1.42.10 to 1.42.11 - (39013d9) - dependabot[bot]
|
|
259
|
+
- bump boto3 from 1.42.10 to 1.42.11 - (fc761d1) - dependabot[bot]
|
|
260
|
+
- update poetry dependencies - (6050e73) - containerscrew
|
|
261
|
+
- update testing pipeline name - (692d9b4) - containerscrew
|
|
262
|
+
- update testing pipeline name - (47337c0) - containerscrew
|
|
263
|
+
- bump boto3 from 1.42.8 to 1.42.9 - (26c20b0) - dependabot[bot]
|
|
264
|
+
- bump boto3 from 1.42.7 to 1.42.8 - (da91381) - dependabot[bot]
|
|
265
|
+
- bump boto3 from 1.42.6 to 1.42.7 - (6de9b89) - dependabot[bot]
|
|
266
|
+
- bump boto3 from 1.42.5 to 1.42.6 - (b56ff0e) - dependabot[bot]
|
|
267
|
+
- bump boto3 from 1.42.4 to 1.42.5 - (0760fd4) - dependabot[bot]
|
|
268
|
+
- bump pytest from 9.0.1 to 9.0.2 - (0acc2dc) - dependabot[bot]
|
|
269
|
+
- bump boto3 from 1.42.3 to 1.42.4 - (8cb9f84) - dependabot[bot]
|
|
270
|
+
- bump boto3 from 1.42.2 to 1.42.3 - (e41afd6) - dependabot[bot]
|
|
271
|
+
- bump boto3 from 1.42.1 to 1.42.2 - (57eaa33) - dependabot[bot]
|
|
272
|
+
- add new shell function helper - (56e23f6) - containerscrew
|
|
273
|
+
- use ubuntu-slim in pipelines - (333d09b) - containerscrew
|
|
274
|
+
- cleanup - (062bc61) - containerscrew
|
|
275
|
+
- bump boto3 from 1.42.0 to 1.42.1 - (e0ddd03) - dependabot[bot]
|
|
276
|
+
- update README.md - (600a282) - containerscrew
|
|
277
|
+
- update CHANGELOG.md - (ecedd37) - containerscrew
|
|
278
|
+
- new release 0.6.0 - (f673a91) - containerscrew
|
|
279
|
+
- pre-commit - (290ed63) - containerscrew
|
|
280
|
+
- ruff checks - (727f9ab) - containerscrew
|
|
281
|
+
- test pipeline - (3f079ea) - containerscrew
|
|
282
|
+
- bump werkzeug from 3.1.3 to 3.1.4 - (fb7206d) - dependabot[bot]
|
|
283
|
+
- bump boto3 from 1.41.5 to 1.42.0 - (1f09e59) - dependabot[bot]
|
|
284
|
+
- bump moto from 5.1.17 to 5.1.18 - (304bc0b) - dependabot[bot]
|
|
285
|
+
- CHANGELOG.md - (95ad488) - containerscrew
|
|
286
|
+
- add CHANGELOG.md after fixing non conventional commits - (b67a52a) - containerscrew
|
|
287
|
+
- auto-fix non-conventional commit - Merge pull request #10 from containerscrew/dependabot/pip/boto3-1.41.5 - (e554643) - github-actions[bot]
|
|
288
|
+
- auto-fix non-conventional commit - Bump boto3 from 1.41.4 to 1.41.5 - (9775ba5) - dependabot[bot]
|
|
289
|
+
- update scripts/commits.sh - (e5da3d0) - containerscrew
|
|
290
|
+
- update scripts/commits.sh - (ca9be1f) - containerscrew
|
|
291
|
+
- change permissions to scripts/commits.sh - (92c3366) - containerscrew
|
|
292
|
+
- add script to rewrite commits to conventional commits - (5d958a1) - containerscrew
|
|
293
|
+
- add auto-merge pipeline - (c75894a) - containerscrew
|
|
294
|
+
- auto-fix non-conventional commit - Merge pull request #7 from containerscrew/dependabot/pip/typer-0.20.0 - (42604fc) - containerscrew
|
|
295
|
+
- auto-fix non-conventional commit - Merge branch 'main' into dependabot/pip/typer-0.20.0 - (8accead) - containerscrew
|
|
296
|
+
- auto-fix non-conventional commit - Merge pull request #5 from containerscrew/dependabot/pip/testfixtures-10.0.0 - (8a29d09) - containerscrew
|
|
297
|
+
- auto-fix non-conventional commit - Bump typer from 0.12.5 to 0.20.0 - (549c5a0) - dependabot[bot]
|
|
298
|
+
- auto-fix non-conventional commit - Bump testfixtures from 8.3.0 to 10.0.0 - (48a7cc2) - dependabot[bot]
|
|
299
|
+
- auto-fix non-conventional commit - Merge pull request #3 from containerscrew/dependabot/pip/rich-14.2.0 - (ed14073) - containerscrew
|
|
300
|
+
- auto-fix non-conventional commit - Bump rich from 13.9.4 to 14.2.0 - (7a85bc2) - dependabot[bot]
|
|
301
|
+
- auto-fix non-conventional commit - Merge pull request #4 from containerscrew/dependabot/pip/pytest-randomly-4.0.1 - (be54ad3) - containerscrew
|
|
302
|
+
- auto-fix non-conventional commit - Bump pytest-randomly from 3.16.0 to 4.0.1 - (8bed8db) - dependabot[bot]
|
|
303
|
+
- auto-fix non-conventional commit - Merge pull request #8 from containerscrew/dependabot/pip/click-8.3.1 - (cba60a6) - containerscrew
|
|
304
|
+
- auto-fix non-conventional commit - Bump click from 8.1.8 to 8.3.1 - (554e457) - dependabot[bot]
|
|
305
|
+
- auto-fix non-conventional commit - Merge pull request #2 from containerscrew/dependabot/pip/pytest-cov-7.0.0 - (30fc822) - containerscrew
|
|
306
|
+
- auto-fix non-conventional commit - Bump pytest-cov from 5.0.0 to 7.0.0 - (680f6ce) - dependabot[bot]
|
|
307
|
+
- update poetry.lock - (9c78aa0) - containerscrew
|
|
308
|
+
- auto-fix non-conventional commit - Merge pull request #9 from containerscrew/dependabot/pip/pytest-9.0.1 - (1547833) - containerscrew
|
|
309
|
+
- update README.md & ignore ruff check & tests - (7bd9704) - containerscrew
|
|
310
|
+
- auto-fix non-conventional commit - Bump pytest from 8.4.2 to 9.0.1 - (60b1deb) - dependabot[bot]
|
|
311
|
+
- pre-commit - (217e29f) - containerscrew
|
|
312
|
+
- auto-fix non-conventional commit - Set default profile to env AWS_PROFILE - (eda4c27) - containerscrew
|
|
313
|
+
- auto-fix non-conventional commit - Fix SSM when no running instances found - (6ef7c7b) - containerscrew
|
|
314
|
+
- auto-fix non-conventional commit - Fix ssm start interative session - (d19433d) - containerscrew
|
|
315
|
+
- auto-fix non-conventional commit - Fix EC2 tests - (4eb21ec) - containerscrew
|
|
316
|
+
- auto-fix non-conventional commit - Refactor EC2InstanceWrapper. Improving failing tests - (b26e140) - containerscrew
|
|
317
|
+
- auto-fix non-conventional commit - Merge pull request #1 from containerscrew/dependabot/pip/certifi-2024.7.4 - (2beb0f1) - danielsdotrs
|
|
318
|
+
- auto-fix non-conventional commit - Bump certifi from 2024.6.2 to 2024.7.4 - (9e4e40f) - dependabot[bot]
|
|
319
|
+
- auto-fix non-conventional commit - New version 0.4.0 - (3dfc556) - containerscrew
|
|
320
|
+
- auto-fix non-conventional commit - Update doc - (7463a0a) - containerscrew
|
|
321
|
+
- auto-fix non-conventional commit - Update doc - (822f004) - containerscrew
|
|
322
|
+
- auto-fix non-conventional commit - Update doc - (de49252) - containerscrew
|
|
323
|
+
- auto-fix non-conventional commit - Update doc - (36aa7b8) - containerscrew
|
|
324
|
+
- auto-fix non-conventional commit - Update doc - (baa9e3b) - containerscrew
|
|
325
|
+
- auto-fix non-conventional commit - ♻️ Refactor & implement some tests - (8c8b449) - containerscrew
|
|
326
|
+
- auto-fix non-conventional commit - 📝 Add docu - (6f5773e) - containerscrew
|
|
327
|
+
- auto-fix non-conventional commit - ♻️ Fix some tests - (75cc7e6) - containerscrew
|
|
328
|
+
- auto-fix non-conventional commit - 🚨 Fix linter - (ceb932d) - containerscrew
|
|
329
|
+
- auto-fix non-conventional commit - ♻️ Fix rds connect cert - (68680b1) - containerscrew
|
|
330
|
+
- auto-fix non-conventional commit - ♻️ Add new RDS command - (b31d6cd) - containerscrew
|
|
331
|
+
- auto-fix non-conventional commit - ✨ Refactoring AWS SDK & implement RDS operations - (b6717cf) - containerscrew
|
|
332
|
+
- auto-fix non-conventional commit - ✏️ Fix ruff lint - (43d96f2) - containerscrew
|
|
333
|
+
- auto-fix non-conventional commit - 🎨 Improving class - (e9abe83) - containerscrew
|
|
334
|
+
- auto-fix non-conventional commit - ♻️ Refactor class/subclass for the app - (d876fca) - containerscrew
|
|
335
|
+
- auto-fix non-conventional commit - ✅ Update tests - (72176e0) - containerscrew
|
|
336
|
+
- update dependencies with poetry - (798bedb) - containerscrew
|
|
337
|
+
- auto-fix non-conventional commit - Remove print - (0b7e8aa) - containerscrew
|
|
338
|
+
- auto-fix non-conventional commit - Run-precommit - (de8e230) - containerscrew
|
|
339
|
+
- auto-fix non-conventional commit - Feat: adding new tests with moto boto3 mock - (0fc37c2) - containerscrew
|
|
340
|
+
- auto-fix non-conventional commit - Add tag pattern in cliff.toml - (020c02e) - containerscrew
|
|
341
|
+
- auto-fix non-conventional commit - Merge branch 'develop' into main - (724040d) - containerscrew
|
|
342
|
+
- auto-fix non-conventional commit - Working with SSM - (2fef2f1) - containerscrew
|
|
343
|
+
- auto-fix non-conventional commit - Wip - (c249e7c) - containerscrew
|
|
344
|
+
- auto-fix non-conventional commit - Update dependencies - (bf2688c) - containerscrew
|
|
345
|
+
- auto-fix non-conventional commit - Refactor classes - (aaafb23) - containerscrew
|
|
346
|
+
- auto-fix non-conventional commit - Wip: SSM operations - (f615dba) - containerscrew
|
|
347
|
+
- auto-fix non-conventional commit - Lint - (2d66291) - containerscrew
|
|
348
|
+
- auto-fix non-conventional commit - Implement SSM start-session command - (dfce684) - containerscrew
|
|
349
|
+
- auto-fix non-conventional commit - Implement args and kwargs - (eeb40e7) - containerscrew
|
|
350
|
+
- auto-fix non-conventional commit - Wip - (e2aa779) - containerscrew
|
|
351
|
+
- auto-fix non-conventional commit - Refactor classes - (c0819ec) - containerscrew
|
|
352
|
+
- auto-fix non-conventional commit - Wip - (faee58a) - containerscrew
|
|
353
|
+
- auto-fix non-conventional commit - Add retry config - (dc4f25b) - containerscrew
|
|
354
|
+
- auto-fix non-conventional commit - Add config retry - (11e2570) - containerscrew
|
|
355
|
+
- auto-fix non-conventional commit - Fix imports - (94cf797) - containerscrew
|
|
356
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (cf63f89) - containerscrew
|
|
357
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (48da6cd) - containerscrew
|
|
358
|
+
- auto-fix non-conventional commit - WIp - (09fe8b4) - containerscrew
|
|
359
|
+
- auto-fix non-conventional commit - Refactor tui - (506b890) - containerscrew
|
|
360
|
+
- auto-fix non-conventional commit - Implement print table - (04d9e38) - containerscrew
|
|
361
|
+
- auto-fix non-conventional commit - Working with TUI - (549c1bc) - containerscrew
|
|
362
|
+
- auto-fix non-conventional commit - Wip - (9ba0cca) - containerscrew
|
|
363
|
+
- auto-fix non-conventional commit - Ruff linter - (7584df5) - containerscrew
|
|
364
|
+
- auto-fix non-conventional commit - Wip: refactor logger, ec2 wrappers - (fe56b29) - containerscrew
|
|
365
|
+
- auto-fix non-conventional commit - Ruff linter - (fe2508b) - containerscrew
|
|
366
|
+
- auto-fix non-conventional commit - Wip: refactor code - (0a723c2) - containerscrew
|
|
367
|
+
- auto-fix non-conventional commit - Massive pre-commit - (41b4afe) - containerscrew
|
|
368
|
+
- auto-fix non-conventional commit - Update README - (7c0e6a2) - containerscrew
|
|
369
|
+
- auto-fix non-conventional commit - Update README - (0740634) - containerscrew
|
|
370
|
+
- auto-fix non-conventional commit - Update README - (95ffe56) - containerscrew
|
|
371
|
+
- auto-fix non-conventional commit - Update README - (984f8c2) - containerscrew
|
|
372
|
+
- auto-fix non-conventional commit - Update README - (26b5250) - containerscrew
|
|
373
|
+
- auto-fix non-conventional commit - Initial commit - (964dbd0) - containerscrew
|
|
374
|
+
#### Refactoring
|
|
375
|
+
- use typer.exit - (8efb126) - containerscrew
|
|
376
|
+
- console print & reusable functions - (63d4c5b) - containerscrew
|
|
377
|
+
- console print & reusable functions - (93780cf) - containerscrew
|
|
378
|
+
- cloudsnake selector app & documentation - (258de7d) - containerscrew
|
|
379
|
+
- logging default log level - (0eee9de) - containerscrew
|
|
380
|
+
- session file name - (82922b7) - containerscrew
|
|
381
|
+
- ruff checks - (29e52e9) - containerscrew
|
|
382
|
+
- sdk and cli commands - (117b9d9) - containerscrew
|
|
383
|
+
- code structure and doc - (c450f30) - containerscrew
|
|
384
|
+
- code structure - (90d2678) - containerscrew
|
|
385
|
+
- code and doc - (686cd5c) - containerscrew
|
|
386
|
+
- documentation and code - (7c93213) - containerscrew
|
|
387
|
+
|
|
388
|
+
- - -
|
|
389
|
+
|
|
390
|
+
## 0.1.0 - 2026-01-21
|
|
391
|
+
#### Bug Fixes
|
|
392
|
+
- security bugfixes - (c0f6c4f) - containerscrew
|
|
393
|
+
- (ssm) remove nested loop and fix parameter accumulation logic - (df3c5bc) - containerscrew
|
|
394
|
+
- (ssm) remove nested loop and fix parameter accumulation logic - (a431833) - containerscrew
|
|
395
|
+
- poetry.lock file - (6691901) - containerscrew
|
|
396
|
+
- signal handler - (721572d) - containerscrew
|
|
397
|
+
- import cloudsnake.sdk.boto3_session - (1700081) - containerscrew
|
|
398
|
+
- tests - (2387dfe) - containerscrew
|
|
399
|
+
#### Documentation
|
|
400
|
+
- update readme - (5af267b) - containerscrew
|
|
401
|
+
- update readme - (cb557d5) - containerscrew
|
|
402
|
+
- replace ssm-session gif - (67a1ede) - containerscrew
|
|
403
|
+
- replace ssm-session gif - (fd0aa9e) - containerscrew
|
|
404
|
+
- add upgrade section - (c958597) - containerscrew
|
|
405
|
+
- update shields - (b20e22b) - containerscrew
|
|
406
|
+
- update README.md - (87af626) - containerscrew
|
|
407
|
+
- update README.md - (196a751) - containerscrew
|
|
408
|
+
- update README.md and examples - (a42a202) - containerscrew
|
|
409
|
+
- update README.md and examples - (80a1c23) - containerscrew
|
|
410
|
+
- update README.md and examples - (3516cb5) - containerscrew
|
|
411
|
+
#### Features
|
|
412
|
+
- get historical cloudwatch log group - (9338991) - containerscrew
|
|
413
|
+
- adapt size for log groups - (fd2c4ba) - containerscrew
|
|
414
|
+
- cloudwatch logs stream - (56610b7) - containerscrew
|
|
415
|
+
- new version 0.9.1 - (8d71abd) - containerscrew
|
|
416
|
+
- (tuiv2): replace cntrl commands to exit the menu - (353a302) - containerscrew
|
|
417
|
+
- new version 0.9.0 - (6d5c0ff) - containerscrew
|
|
418
|
+
- replace instance selector using textual library - (8cc6af7) - containerscrew
|
|
419
|
+
- remove version command and usage message - (dde37c7) - containerscrew
|
|
420
|
+
- implement new sso get-credentials command - (ae41db4) - containerscrew
|
|
421
|
+
- wip: implementing sso fetch credentials - (4bde401) - containerscrew
|
|
422
|
+
- implement SSM get parameter - (c7f9943) - containerscrew
|
|
423
|
+
- refactor rds session - (bae0db4) - containerscrew
|
|
424
|
+
#### Miscellaneous Chores
|
|
425
|
+
- remove changelog.md - (89466ce) - containerscrew
|
|
426
|
+
- bump boto3 from 1.42.29 to 1.42.30 - (e1ab78a) - dependabot[bot]
|
|
427
|
+
- bump moto from 5.1.19 to 5.1.20 - (486ba22) - dependabot[bot]
|
|
428
|
+
- bump boto3-stubs from 1.42.29 to 1.42.30 - (f49aa2d) - dependabot[bot]
|
|
429
|
+
- normalize tui v2 cloudsnake selector app - (1525664) - containerscrew
|
|
430
|
+
- remove testing data - (4d37fc6) - containerscrew
|
|
431
|
+
- bump werkzeug from 3.1.4 to 3.1.5 - (5599107) - dependabot[bot]
|
|
432
|
+
- bump boto3 from 1.42.21 to 1.42.25 - (115a6ee) - dependabot[bot]
|
|
433
|
+
- bump typer from 0.21.0 to 0.21.1 - (a068069) - dependabot[bot]
|
|
434
|
+
- bump boto3-stubs from 1.42.21 to 1.42.25 - (944fc8e) - dependabot[bot]
|
|
435
|
+
- bump urllib3 from 2.6.2 to 2.6.3 - (d7a1956) - dependabot[bot]
|
|
436
|
+
- bump moto from 5.1.18 to 5.1.19 - (86bdfb6) - dependabot[bot]
|
|
437
|
+
- bump boto3 from 1.42.17 to 1.42.21 - (f03d1ce) - dependabot[bot]
|
|
438
|
+
- bump boto3-stubs from 1.42.17 to 1.42.21 - (dd3d1b8) - dependabot[bot]
|
|
439
|
+
- bump boto3-stubs from 1.42.14 to 1.42.17 - (0d8b645) - dependabot[bot]
|
|
440
|
+
- bump typer from 0.20.1 to 0.21.0 - (2e84c02) - dependabot[bot]
|
|
441
|
+
- bump boto3 from 1.42.14 to 1.42.17 - (04219e6) - dependabot[bot]
|
|
442
|
+
- bump typer from 0.20.0 to 0.20.1 - (4717549) - dependabot[bot]
|
|
443
|
+
- bump boto3-stubs from 1.42.13 to 1.42.14 - (dda5753) - dependabot[bot]
|
|
444
|
+
- bump boto3 from 1.42.13 to 1.42.14 - (589bac8) - dependabot[bot]
|
|
445
|
+
- bump boto3-stubs from 1.42.12 to 1.42.13 - (1465e46) - dependabot[bot]
|
|
446
|
+
- bump boto3 from 1.42.12 to 1.42.13 - (66ad86b) - dependabot[bot]
|
|
447
|
+
- bump boto3-stubs from 1.42.11 to 1.42.12 - (d44207a) - dependabot[bot]
|
|
448
|
+
- bump boto3 from 1.42.11 to 1.42.12 - (5f7772f) - dependabot[bot]
|
|
449
|
+
- bump boto3-stubs from 1.42.10 to 1.42.11 - (39013d9) - dependabot[bot]
|
|
450
|
+
- bump boto3 from 1.42.10 to 1.42.11 - (fc761d1) - dependabot[bot]
|
|
451
|
+
- update poetry dependencies - (6050e73) - containerscrew
|
|
452
|
+
- update testing pipeline name - (692d9b4) - containerscrew
|
|
453
|
+
- update testing pipeline name - (47337c0) - containerscrew
|
|
454
|
+
- bump boto3 from 1.42.8 to 1.42.9 - (26c20b0) - dependabot[bot]
|
|
455
|
+
- bump boto3 from 1.42.7 to 1.42.8 - (da91381) - dependabot[bot]
|
|
456
|
+
- bump boto3 from 1.42.6 to 1.42.7 - (6de9b89) - dependabot[bot]
|
|
457
|
+
- bump boto3 from 1.42.5 to 1.42.6 - (b56ff0e) - dependabot[bot]
|
|
458
|
+
- bump boto3 from 1.42.4 to 1.42.5 - (0760fd4) - dependabot[bot]
|
|
459
|
+
- bump pytest from 9.0.1 to 9.0.2 - (0acc2dc) - dependabot[bot]
|
|
460
|
+
- bump boto3 from 1.42.3 to 1.42.4 - (8cb9f84) - dependabot[bot]
|
|
461
|
+
- bump boto3 from 1.42.2 to 1.42.3 - (e41afd6) - dependabot[bot]
|
|
462
|
+
- bump boto3 from 1.42.1 to 1.42.2 - (57eaa33) - dependabot[bot]
|
|
463
|
+
- add new shell function helper - (56e23f6) - containerscrew
|
|
464
|
+
- use ubuntu-slim in pipelines - (333d09b) - containerscrew
|
|
465
|
+
- cleanup - (062bc61) - containerscrew
|
|
466
|
+
- bump boto3 from 1.42.0 to 1.42.1 - (e0ddd03) - dependabot[bot]
|
|
467
|
+
- update README.md - (600a282) - containerscrew
|
|
468
|
+
- update CHANGELOG.md - (ecedd37) - containerscrew
|
|
469
|
+
- new release 0.6.0 - (f673a91) - containerscrew
|
|
470
|
+
- pre-commit - (290ed63) - containerscrew
|
|
471
|
+
- ruff checks - (727f9ab) - containerscrew
|
|
472
|
+
- test pipeline - (3f079ea) - containerscrew
|
|
473
|
+
- bump werkzeug from 3.1.3 to 3.1.4 - (fb7206d) - dependabot[bot]
|
|
474
|
+
- bump boto3 from 1.41.5 to 1.42.0 - (1f09e59) - dependabot[bot]
|
|
475
|
+
- bump moto from 5.1.17 to 5.1.18 - (304bc0b) - dependabot[bot]
|
|
476
|
+
- CHANGELOG.md - (95ad488) - containerscrew
|
|
477
|
+
- add CHANGELOG.md after fixing non conventional commits - (b67a52a) - containerscrew
|
|
478
|
+
- auto-fix non-conventional commit - Merge pull request #10 from containerscrew/dependabot/pip/boto3-1.41.5 - (e554643) - github-actions[bot]
|
|
479
|
+
- auto-fix non-conventional commit - Bump boto3 from 1.41.4 to 1.41.5 - (9775ba5) - dependabot[bot]
|
|
480
|
+
- update scripts/commits.sh - (e5da3d0) - containerscrew
|
|
481
|
+
- update scripts/commits.sh - (ca9be1f) - containerscrew
|
|
482
|
+
- change permissions to scripts/commits.sh - (92c3366) - containerscrew
|
|
483
|
+
- add script to rewrite commits to conventional commits - (5d958a1) - containerscrew
|
|
484
|
+
- add auto-merge pipeline - (c75894a) - containerscrew
|
|
485
|
+
- auto-fix non-conventional commit - Merge pull request #7 from containerscrew/dependabot/pip/typer-0.20.0 - (42604fc) - containerscrew
|
|
486
|
+
- auto-fix non-conventional commit - Merge branch 'main' into dependabot/pip/typer-0.20.0 - (8accead) - containerscrew
|
|
487
|
+
- auto-fix non-conventional commit - Merge pull request #5 from containerscrew/dependabot/pip/testfixtures-10.0.0 - (8a29d09) - containerscrew
|
|
488
|
+
- auto-fix non-conventional commit - Bump typer from 0.12.5 to 0.20.0 - (549c5a0) - dependabot[bot]
|
|
489
|
+
- auto-fix non-conventional commit - Bump testfixtures from 8.3.0 to 10.0.0 - (48a7cc2) - dependabot[bot]
|
|
490
|
+
- auto-fix non-conventional commit - Merge pull request #3 from containerscrew/dependabot/pip/rich-14.2.0 - (ed14073) - containerscrew
|
|
491
|
+
- auto-fix non-conventional commit - Bump rich from 13.9.4 to 14.2.0 - (7a85bc2) - dependabot[bot]
|
|
492
|
+
- auto-fix non-conventional commit - Merge pull request #4 from containerscrew/dependabot/pip/pytest-randomly-4.0.1 - (be54ad3) - containerscrew
|
|
493
|
+
- auto-fix non-conventional commit - Bump pytest-randomly from 3.16.0 to 4.0.1 - (8bed8db) - dependabot[bot]
|
|
494
|
+
- auto-fix non-conventional commit - Merge pull request #8 from containerscrew/dependabot/pip/click-8.3.1 - (cba60a6) - containerscrew
|
|
495
|
+
- auto-fix non-conventional commit - Bump click from 8.1.8 to 8.3.1 - (554e457) - dependabot[bot]
|
|
496
|
+
- auto-fix non-conventional commit - Merge pull request #2 from containerscrew/dependabot/pip/pytest-cov-7.0.0 - (30fc822) - containerscrew
|
|
497
|
+
- auto-fix non-conventional commit - Bump pytest-cov from 5.0.0 to 7.0.0 - (680f6ce) - dependabot[bot]
|
|
498
|
+
- update poetry.lock - (9c78aa0) - containerscrew
|
|
499
|
+
- auto-fix non-conventional commit - Merge pull request #9 from containerscrew/dependabot/pip/pytest-9.0.1 - (1547833) - containerscrew
|
|
500
|
+
- update README.md & ignore ruff check & tests - (7bd9704) - containerscrew
|
|
501
|
+
- auto-fix non-conventional commit - Bump pytest from 8.4.2 to 9.0.1 - (60b1deb) - dependabot[bot]
|
|
502
|
+
- pre-commit - (217e29f) - containerscrew
|
|
503
|
+
- auto-fix non-conventional commit - Set default profile to env AWS_PROFILE - (eda4c27) - containerscrew
|
|
504
|
+
- auto-fix non-conventional commit - Fix SSM when no running instances found - (6ef7c7b) - containerscrew
|
|
505
|
+
- auto-fix non-conventional commit - Fix ssm start interative session - (d19433d) - containerscrew
|
|
506
|
+
- auto-fix non-conventional commit - Fix EC2 tests - (4eb21ec) - containerscrew
|
|
507
|
+
- auto-fix non-conventional commit - Refactor EC2InstanceWrapper. Improving failing tests - (b26e140) - containerscrew
|
|
508
|
+
- auto-fix non-conventional commit - Merge pull request #1 from containerscrew/dependabot/pip/certifi-2024.7.4 - (2beb0f1) - danielsdotrs
|
|
509
|
+
- auto-fix non-conventional commit - Bump certifi from 2024.6.2 to 2024.7.4 - (9e4e40f) - dependabot[bot]
|
|
510
|
+
- auto-fix non-conventional commit - New version 0.4.0 - (3dfc556) - containerscrew
|
|
511
|
+
- auto-fix non-conventional commit - Update doc - (7463a0a) - containerscrew
|
|
512
|
+
- auto-fix non-conventional commit - Update doc - (822f004) - containerscrew
|
|
513
|
+
- auto-fix non-conventional commit - Update doc - (de49252) - containerscrew
|
|
514
|
+
- auto-fix non-conventional commit - Update doc - (36aa7b8) - containerscrew
|
|
515
|
+
- auto-fix non-conventional commit - Update doc - (baa9e3b) - containerscrew
|
|
516
|
+
- auto-fix non-conventional commit - ♻️ Refactor & implement some tests - (8c8b449) - containerscrew
|
|
517
|
+
- auto-fix non-conventional commit - 📝 Add docu - (6f5773e) - containerscrew
|
|
518
|
+
- auto-fix non-conventional commit - ♻️ Fix some tests - (75cc7e6) - containerscrew
|
|
519
|
+
- auto-fix non-conventional commit - 🚨 Fix linter - (ceb932d) - containerscrew
|
|
520
|
+
- auto-fix non-conventional commit - ♻️ Fix rds connect cert - (68680b1) - containerscrew
|
|
521
|
+
- auto-fix non-conventional commit - ♻️ Add new RDS command - (b31d6cd) - containerscrew
|
|
522
|
+
- auto-fix non-conventional commit - ✨ Refactoring AWS SDK & implement RDS operations - (b6717cf) - containerscrew
|
|
523
|
+
- auto-fix non-conventional commit - ✏️ Fix ruff lint - (43d96f2) - containerscrew
|
|
524
|
+
- auto-fix non-conventional commit - 🎨 Improving class - (e9abe83) - containerscrew
|
|
525
|
+
- auto-fix non-conventional commit - ♻️ Refactor class/subclass for the app - (d876fca) - containerscrew
|
|
526
|
+
- auto-fix non-conventional commit - ✅ Update tests - (72176e0) - containerscrew
|
|
527
|
+
- update dependencies with poetry - (798bedb) - containerscrew
|
|
528
|
+
- auto-fix non-conventional commit - Remove print - (0b7e8aa) - containerscrew
|
|
529
|
+
- auto-fix non-conventional commit - Run-precommit - (de8e230) - containerscrew
|
|
530
|
+
- auto-fix non-conventional commit - Feat: adding new tests with moto boto3 mock - (0fc37c2) - containerscrew
|
|
531
|
+
- auto-fix non-conventional commit - Add tag pattern in cliff.toml - (020c02e) - containerscrew
|
|
532
|
+
- auto-fix non-conventional commit - Merge branch 'develop' into main - (724040d) - containerscrew
|
|
533
|
+
- auto-fix non-conventional commit - Working with SSM - (2fef2f1) - containerscrew
|
|
534
|
+
- auto-fix non-conventional commit - Wip - (c249e7c) - containerscrew
|
|
535
|
+
- auto-fix non-conventional commit - Update dependencies - (bf2688c) - containerscrew
|
|
536
|
+
- auto-fix non-conventional commit - Refactor classes - (aaafb23) - containerscrew
|
|
537
|
+
- auto-fix non-conventional commit - Wip: SSM operations - (f615dba) - containerscrew
|
|
538
|
+
- auto-fix non-conventional commit - Lint - (2d66291) - containerscrew
|
|
539
|
+
- auto-fix non-conventional commit - Implement SSM start-session command - (dfce684) - containerscrew
|
|
540
|
+
- auto-fix non-conventional commit - Implement args and kwargs - (eeb40e7) - containerscrew
|
|
541
|
+
- auto-fix non-conventional commit - Wip - (e2aa779) - containerscrew
|
|
542
|
+
- auto-fix non-conventional commit - Refactor classes - (c0819ec) - containerscrew
|
|
543
|
+
- auto-fix non-conventional commit - Wip - (faee58a) - containerscrew
|
|
544
|
+
- auto-fix non-conventional commit - Add retry config - (dc4f25b) - containerscrew
|
|
545
|
+
- auto-fix non-conventional commit - Add config retry - (11e2570) - containerscrew
|
|
546
|
+
- auto-fix non-conventional commit - Fix imports - (94cf797) - containerscrew
|
|
547
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (cf63f89) - containerscrew
|
|
548
|
+
- auto-fix non-conventional commit - Refactor InstanceWrapper - (48da6cd) - containerscrew
|
|
549
|
+
- auto-fix non-conventional commit - WIp - (09fe8b4) - containerscrew
|
|
550
|
+
- auto-fix non-conventional commit - Refactor tui - (506b890) - containerscrew
|
|
551
|
+
- auto-fix non-conventional commit - Implement print table - (04d9e38) - containerscrew
|
|
552
|
+
- auto-fix non-conventional commit - Working with TUI - (549c1bc) - containerscrew
|
|
553
|
+
- auto-fix non-conventional commit - Wip - (9ba0cca) - containerscrew
|
|
554
|
+
- auto-fix non-conventional commit - Ruff linter - (7584df5) - containerscrew
|
|
555
|
+
- auto-fix non-conventional commit - Wip: refactor logger, ec2 wrappers - (fe56b29) - containerscrew
|
|
556
|
+
- auto-fix non-conventional commit - Ruff linter - (fe2508b) - containerscrew
|
|
557
|
+
- auto-fix non-conventional commit - Wip: refactor code - (0a723c2) - containerscrew
|
|
558
|
+
- auto-fix non-conventional commit - Massive pre-commit - (41b4afe) - containerscrew
|
|
559
|
+
- auto-fix non-conventional commit - Update README - (7c0e6a2) - containerscrew
|
|
560
|
+
- auto-fix non-conventional commit - Update README - (0740634) - containerscrew
|
|
561
|
+
- auto-fix non-conventional commit - Update README - (95ffe56) - containerscrew
|
|
562
|
+
- auto-fix non-conventional commit - Update README - (984f8c2) - containerscrew
|
|
563
|
+
- auto-fix non-conventional commit - Update README - (26b5250) - containerscrew
|
|
564
|
+
- auto-fix non-conventional commit - Initial commit - (964dbd0) - containerscrew
|
|
565
|
+
#### Refactoring
|
|
566
|
+
- use typer.exit - (8efb126) - containerscrew
|
|
567
|
+
- console print & reusable functions - (63d4c5b) - containerscrew
|
|
568
|
+
- console print & reusable functions - (93780cf) - containerscrew
|
|
569
|
+
- cloudsnake selector app & documentation - (258de7d) - containerscrew
|
|
570
|
+
- logging default log level - (0eee9de) - containerscrew
|
|
571
|
+
- session file name - (82922b7) - containerscrew
|
|
572
|
+
- ruff checks - (29e52e9) - containerscrew
|
|
573
|
+
- sdk and cli commands - (117b9d9) - containerscrew
|
|
574
|
+
- code structure and doc - (c450f30) - containerscrew
|
|
575
|
+
- code structure - (90d2678) - containerscrew
|
|
576
|
+
- code and doc - (686cd5c) - containerscrew
|
|
577
|
+
- documentation and code - (7c93213) - containerscrew
|
|
578
|
+
|
|
579
|
+
- - -
|
|
580
|
+
|
|
581
|
+
Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto).
|