cloudx-proxy 0.4.11__tar.gz → 0.4.12__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.4.11 → cloudx_proxy-0.4.12}/CHANGELOG.md +7 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/PKG-INFO +1 -1
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/_version.py +2 -2
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/cli.py +14 -14
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/PKG-INFO +1 -1
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.clinerules +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.github/workflows/release.yml +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.gitignore +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.releaserc +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/CONTRIBUTING.md +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/LICENSE +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/README.md +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/_1password.py +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/__init__.py +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/core.py +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/setup.py +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/SOURCES.txt +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/dependency_links.txt +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/entry_points.txt +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/requires.txt +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/top_level.txt +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/package.json +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/pyproject.toml +0 -0
- {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/setup.cfg +0 -0
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.4.12](https://github.com/easytocloud/cloudX-proxy/compare/v0.4.11...v0.4.12) (2025-03-12)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* improve help text formatting for example usage ([7513c51](https://github.com/easytocloud/cloudX-proxy/commit/7513c51b5cfa305f828f54d30d7f26f70a85a0b8))
|
7
|
+
|
1
8
|
## [0.4.11](https://github.com/easytocloud/cloudX-proxy/compare/v0.4.10...v0.4.11) (2025-03-12)
|
2
9
|
|
3
10
|
|
@@ -38,10 +38,10 @@ def connect(instance_id: str, port: int, profile: str, region: str, ssh_key: str
|
|
38
38
|
|
39
39
|
Example usage:
|
40
40
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
41
|
+
* cloudx-proxy connect i-0123456789abcdef0 22
|
42
|
+
* cloudx-proxy connect i-0123456789abcdef0 22 --profile myprofile --region eu-west-1
|
43
|
+
* cloudx-proxy connect i-0123456789abcdef0 22 --ssh-config ~/.ssh/cloudx/config
|
44
|
+
* cloudx-proxy connect i-0123456789abcdef0 22 --aws-env prod
|
45
45
|
"""
|
46
46
|
try:
|
47
47
|
client = CloudXProxy(
|
@@ -85,12 +85,12 @@ def setup(profile: str, ssh_key: str, ssh_config: str, aws_env: str, use_1passwo
|
|
85
85
|
|
86
86
|
Example usage:
|
87
87
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
88
|
+
* cloudx-proxy setup
|
89
|
+
* cloudx-proxy setup --profile myprofile --ssh-key mykey
|
90
|
+
* cloudx-proxy setup --ssh-config ~/.ssh/cloudx/config
|
91
|
+
* cloudx-proxy setup --1password
|
92
|
+
* cloudx-proxy setup --1password Work
|
93
|
+
* cloudx-proxy setup --instance i-0123456789abcdef0 --hostname myserver --yes
|
94
94
|
"""
|
95
95
|
try:
|
96
96
|
setup = CloudXSetup(
|
@@ -152,10 +152,10 @@ def list(ssh_config: str, environment: str, detailed: bool):
|
|
152
152
|
|
153
153
|
Example usage:
|
154
154
|
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
155
|
+
* cloudx-proxy list
|
156
|
+
* cloudx-proxy list --environment dev
|
157
|
+
* cloudx-proxy list --ssh-config ~/.ssh/cloudx/config
|
158
|
+
* cloudx-proxy list --detailed
|
159
159
|
"""
|
160
160
|
try:
|
161
161
|
# Determine SSH config file path
|
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
|