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.
Files changed (24) hide show
  1. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/CHANGELOG.md +7 -0
  2. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/PKG-INFO +1 -1
  3. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/_version.py +2 -2
  4. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/cli.py +14 -14
  5. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/PKG-INFO +1 -1
  6. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.clinerules +0 -0
  7. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.github/workflows/release.yml +0 -0
  8. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.gitignore +0 -0
  9. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/.releaserc +0 -0
  10. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/CONTRIBUTING.md +0 -0
  11. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/LICENSE +0 -0
  12. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/README.md +0 -0
  13. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/_1password.py +0 -0
  14. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/__init__.py +0 -0
  15. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/core.py +0 -0
  16. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy/setup.py +0 -0
  17. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/SOURCES.txt +0 -0
  18. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/dependency_links.txt +0 -0
  19. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/entry_points.txt +0 -0
  20. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/requires.txt +0 -0
  21. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/cloudx_proxy.egg-info/top_level.txt +0 -0
  22. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/package.json +0 -0
  23. {cloudx_proxy-0.4.11 → cloudx_proxy-0.4.12}/pyproject.toml +0 -0
  24. {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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cloudx-proxy
3
- Version: 0.4.11
3
+ Version: 0.4.12
4
4
  Summary: SSH proxy command to connect VSCode with Cloud9/CloudX instance using AWS Systems Manager
5
5
  Author-email: easytocloud <info@easytocloud.com>
6
6
  License: MIT License
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.4.11'
21
- __version_tuple__ = version_tuple = (0, 4, 11)
20
+ __version__ = version = '0.4.12'
21
+ __version_tuple__ = version_tuple = (0, 4, 12)
@@ -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
- 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
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
- 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
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
- cloudx-proxy list
156
- cloudx-proxy list --environment dev
157
- cloudx-proxy list --ssh-config ~/.ssh/cloudx/config
158
- cloudx-proxy list --detailed
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cloudx-proxy
3
- Version: 0.4.11
3
+ Version: 0.4.12
4
4
  Summary: SSH proxy command to connect VSCode with Cloud9/CloudX instance using AWS Systems Manager
5
5
  Author-email: easytocloud <info@easytocloud.com>
6
6
  License: MIT License
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes