cloudx-proxy 0.9.7__tar.gz → 0.9.8__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.9.7 → cloudx_proxy-0.9.8}/CHANGELOG.md +7 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/PKG-INFO +1 -1
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy/_version.py +2 -2
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy/setup.py +12 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy.egg-info/PKG-INFO +1 -1
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/.clinerules +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/.envrc +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/.github/dependabot.yml +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/.github/workflows/claude.yml +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/.github/workflows/release.yml +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/.gitignore +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/.releaserc +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/ARCHITECTURE_REVIEW.md +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/CLAUDE.md +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/CONTRIBUTING.md +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/DOCUMENTATION_FINDINGS.md +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/IMPROVEMENT_ROADMAP.md +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/LICENSE +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/NOTICE +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/README.md +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy/_1password.py +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy/__init__.py +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy/cli.py +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy/core.py +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy.egg-info/SOURCES.txt +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy.egg-info/dependency_links.txt +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy.egg-info/entry_points.txt +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy.egg-info/requires.txt +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/cloudx_proxy.egg-info/top_level.txt +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/pyproject.toml +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/setup.cfg +0 -0
- {cloudx_proxy-0.9.7 → cloudx_proxy-0.9.8}/uv.lock +0 -0
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.9.8](https://github.com/easytocloud/cloudX-proxy/compare/v0.9.7...v0.9.8) (2025-11-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* no connection test on Windows ([e58c51e](https://github.com/easytocloud/cloudX-proxy/commit/e58c51e34a9b1c6811da45e07a3e23684ad26a19))
|
|
7
|
+
|
|
1
8
|
## [0.9.7](https://github.com/easytocloud/cloudX-proxy/compare/v0.9.6...v0.9.7) (2025-11-17)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -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.9.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 9,
|
|
31
|
+
__version__ = version = '0.9.8'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 9, 8)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -989,6 +989,18 @@ Host cloudx-{cloudx_env}-{hostname}
|
|
|
989
989
|
self.print_status(f"[DRY RUN] Would wait up to 5 minutes for SSH access if needed", None, 2)
|
|
990
990
|
return True
|
|
991
991
|
|
|
992
|
+
# On Windows, skip the automated connection test as it may hang
|
|
993
|
+
# Instead, provide clear instructions for manual testing
|
|
994
|
+
if platform.system() == 'Windows':
|
|
995
|
+
self.print_status("Skipping automated connection test on Windows", None, 2)
|
|
996
|
+
print(f"\n\033[96m{'='*60}\033[0m")
|
|
997
|
+
print(f"\033[96mSetup completed! To test your SSH connection, run:\033[0m")
|
|
998
|
+
print(f"\n \033[1mssh cloudx-{cloudx_env}-{hostname}\033[0m")
|
|
999
|
+
print(f"\n\033[96m{'='*60}\033[0m\n")
|
|
1000
|
+
self.print_status("Configuration files have been created successfully", True, 2)
|
|
1001
|
+
return True
|
|
1002
|
+
|
|
1003
|
+
# On non-Windows systems, proceed with automated connection test
|
|
992
1004
|
if self.check_instance_setup(instance_id, hostname, cloudx_env):
|
|
993
1005
|
return True
|
|
994
1006
|
|
|
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
|
|
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
|