cloudx-proxy 0.8.1__tar.gz → 0.8.2__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.
- cloudx_proxy-0.8.2/.envrc +1 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/.gitignore +1 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/CHANGELOG.md +7 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/CLAUDE.md +21 -1
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/PKG-INFO +1 -1
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy/_version.py +2 -2
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy/cli.py +2 -2
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy.egg-info/PKG-INFO +1 -1
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy.egg-info/SOURCES.txt +1 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/.clinerules +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/.github/dependabot.yml +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/.github/workflows/release.yml +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/.releaserc +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/CONTRIBUTING.md +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/LICENSE +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/NOTICE +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/README.md +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy/_1password.py +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy/__init__.py +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy/core.py +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy/setup.py +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy.egg-info/dependency_links.txt +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy.egg-info/entry_points.txt +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy.egg-info/requires.txt +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/cloudx_proxy.egg-info/top_level.txt +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/pyproject.toml +0 -0
- {cloudx_proxy-0.8.1 → cloudx_proxy-0.8.2}/setup.cfg +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
layout python python3.13
|
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.8.2](https://github.com/easytocloud/cloudX-proxy/compare/v0.8.1...v0.8.2) (2025-09-09)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* make cloudx host matching case-insensitive in list command ([9d91945](https://github.com/easytocloud/cloudX-proxy/commit/9d9194533d0ee2d150ed10da8675ef53911f0a16))
|
7
|
+
|
1
8
|
## [0.8.1](https://github.com/easytocloud/cloudX-proxy/compare/v0.8.0...v0.8.1) (2025-09-02)
|
2
9
|
|
3
10
|
|
@@ -117,6 +117,26 @@ The `--aws-env` parameter enables AWS profile organization:
|
|
117
117
|
- Implements comprehensive error handling with user-friendly messages
|
118
118
|
- Cross-platform support (Windows, macOS, Linux) with platform-specific adjustments
|
119
119
|
|
120
|
-
##
|
120
|
+
## Code Quality and Architecture
|
121
121
|
|
122
|
+
### Current State
|
122
123
|
- No automated testing framework configured
|
124
|
+
- Monolithic CloudXSetup class (983 lines) violating SRP
|
125
|
+
- Limited type coverage (~60%) and error handling
|
126
|
+
- Security vulnerabilities in subprocess handling
|
127
|
+
- High technical debt impacting maintainability
|
128
|
+
|
129
|
+
### Improvement Documentation
|
130
|
+
For comprehensive analysis and improvement plans, see:
|
131
|
+
- **[ARCHITECTURE_REVIEW.md](./ARCHITECTURE_REVIEW.md)** - Detailed code quality analysis and security review
|
132
|
+
- **[IMPROVEMENT_ROADMAP.md](./IMPROVEMENT_ROADMAP.md)** - 6-phase improvement plan with timeline and priorities
|
133
|
+
|
134
|
+
### Development Standards
|
135
|
+
When working on this codebase, prioritize:
|
136
|
+
1. **Type safety** - Add complete type hints to new code
|
137
|
+
2. **Single responsibility** - Keep classes and methods focused
|
138
|
+
3. **Error handling** - Use specific exceptions with context
|
139
|
+
4. **Testing** - Write tests for new functionality (when framework exists)
|
140
|
+
5. **Security** - Validate all inputs and sanitize subprocess calls
|
141
|
+
|
142
|
+
## Known Issues
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
28
28
|
commit_id: COMMIT_ID
|
29
29
|
__commit_id__: COMMIT_ID
|
30
30
|
|
31
|
-
__version__ = version = '0.8.
|
32
|
-
__version_tuple__ = version_tuple = (0, 8,
|
31
|
+
__version__ = version = '0.8.2'
|
32
|
+
__version_tuple__ = version_tuple = (0, 8, 2)
|
33
33
|
|
34
34
|
__commit_id__ = commit_id = None
|
@@ -177,8 +177,8 @@ def list(ssh_config: str, environment: str, detailed: bool):
|
|
177
177
|
config_content = config_file.read_text()
|
178
178
|
|
179
179
|
# Parse hosts using regex
|
180
|
-
# Match Host entries for cloudx hosts
|
181
|
-
host_pattern = r'Host\s+(
|
180
|
+
# Match Host entries for cloudx hosts (case-insensitive)
|
181
|
+
host_pattern = r'Host\s+(cloud[xX]-[^\s]+)(?:\s*\n(?:(?!\s*Host\s+).)*?(?i:hostname)\s+([^\s]+))?'
|
182
182
|
hosts = re.finditer(host_pattern, config_content, re.DOTALL)
|
183
183
|
|
184
184
|
# Group hosts by environment
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|