cloudx-proxy 0.9.0__tar.gz → 0.9.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.
Files changed (28) hide show
  1. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/.github/workflows/release.yml +13 -6
  2. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/CHANGELOG.md +14 -0
  3. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/PKG-INFO +2 -1
  4. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/README.md +1 -0
  5. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy/_version.py +2 -2
  6. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy.egg-info/PKG-INFO +2 -1
  7. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/.clinerules +0 -0
  8. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/.envrc +0 -0
  9. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/.github/dependabot.yml +0 -0
  10. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/.github/workflows/claude.yml +0 -0
  11. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/.gitignore +0 -0
  12. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/.releaserc +0 -0
  13. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/CLAUDE.md +0 -0
  14. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/CONTRIBUTING.md +0 -0
  15. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/LICENSE +0 -0
  16. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/NOTICE +0 -0
  17. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy/_1password.py +0 -0
  18. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy/__init__.py +0 -0
  19. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy/cli.py +0 -0
  20. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy/core.py +0 -0
  21. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy/setup.py +0 -0
  22. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy.egg-info/SOURCES.txt +0 -0
  23. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy.egg-info/dependency_links.txt +0 -0
  24. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy.egg-info/entry_points.txt +0 -0
  25. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy.egg-info/requires.txt +0 -0
  26. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/cloudx_proxy.egg-info/top_level.txt +0 -0
  27. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/pyproject.toml +0 -0
  28. {cloudx_proxy-0.9.0 → cloudx_proxy-0.9.2}/setup.cfg +0 -0
@@ -3,6 +3,7 @@ on:
3
3
  push:
4
4
  branches:
5
5
  - main
6
+ - develop
6
7
 
7
8
  jobs:
8
9
  security-audit:
@@ -44,6 +45,9 @@ jobs:
44
45
  release:
45
46
  name: Release
46
47
  runs-on: ubuntu-latest
48
+ permissions:
49
+ id-token: write # 👈 required for OIDC
50
+ contents: write # semantic-release needs this
47
51
  steps:
48
52
  - name: Checkout
49
53
  uses: actions/checkout@v5
@@ -63,7 +67,7 @@ jobs:
63
67
  - name: Install dependencies
64
68
  run: |
65
69
  python -m pip install --upgrade pip
66
- pip install build twine
70
+ pip install build
67
71
 
68
72
  - name: Install semantic-release
69
73
  run: |
@@ -95,9 +99,12 @@ jobs:
95
99
  SETUPTOOLS_SCM_PRETEND_VERSION: ${{ steps.semantic.outputs.new_release_version }}
96
100
  run: python -m build
97
101
 
102
+ - name: Publish to TestPyPI
103
+ if: github.ref == 'refs/heads/develop' && steps.semantic.outputs.new_release_version != ''
104
+ uses: pypa/gh-action-pypi-publish@release/v1
105
+ with:
106
+ repository-url: https://test.pypi.org/legacy/
107
+
98
108
  - name: Publish to PyPI
99
- if: steps.semantic.outputs.new_release_version != ''
100
- env:
101
- TWINE_USERNAME: __token__
102
- TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
103
- run: twine upload dist/*
109
+ if: github.ref == 'refs/heads/main' && steps.semantic.outputs.new_release_version != ''
110
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -1,3 +1,17 @@
1
+ ## [0.9.2](https://github.com/easytocloud/cloudX-proxy/compare/v0.9.1...v0.9.2) (2025-09-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * PyPI auth ([f6ae22c](https://github.com/easytocloud/cloudX-proxy/commit/f6ae22c6e4b16b8097f509600dd65f4cd4f2a51b))
7
+
8
+ ## [0.9.1](https://github.com/easytocloud/cloudX-proxy/compare/v0.9.0...v0.9.1) (2025-09-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * migrated to OIDC for PyPI ([8a698ed](https://github.com/easytocloud/cloudX-proxy/commit/8a698edbfe206d410530b5c89ab55d2230b19a92))
14
+
1
15
  # [0.9.0](https://github.com/easytocloud/cloudX-proxy/compare/v0.8.4...v0.9.0) (2025-09-09)
2
16
 
3
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudx-proxy
3
- Version: 0.9.0
3
+ Version: 0.9.2
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
@@ -612,3 +612,4 @@ uvx cloudx-proxy connect i-1234567890abcdef0 22 --profile your-profile
612
612
  ## License
613
613
 
614
614
  MIT License - see LICENSE file for details
615
+
@@ -559,3 +559,4 @@ uvx cloudx-proxy connect i-1234567890abcdef0 22 --profile your-profile
559
559
  ## License
560
560
 
561
561
  MIT License - see LICENSE file for details
562
+
@@ -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.0'
32
- __version_tuple__ = version_tuple = (0, 9, 0)
31
+ __version__ = version = '0.9.2'
32
+ __version_tuple__ = version_tuple = (0, 9, 2)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudx-proxy
3
- Version: 0.9.0
3
+ Version: 0.9.2
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
@@ -612,3 +612,4 @@ uvx cloudx-proxy connect i-1234567890abcdef0 22 --profile your-profile
612
612
  ## License
613
613
 
614
614
  MIT License - see LICENSE file for details
615
+
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes