cloudx-proxy 0.7.0__tar.gz → 0.8.0__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.7.0 → cloudx_proxy-0.8.0}/.github/workflows/release.yml +11 -2
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/CHANGELOG.md +7 -0
- cloudx_proxy-0.8.0/NOTICE +71 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/PKG-INFO +3 -1
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/README.md +1 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy/_version.py +2 -2
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy.egg-info/PKG-INFO +3 -1
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy.egg-info/SOURCES.txt +1 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/pyproject.toml +44 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/.clinerules +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/.github/dependabot.yml +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/.gitignore +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/.releaserc +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/CLAUDE.md +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/CONTRIBUTING.md +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/LICENSE +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy/_1password.py +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy/__init__.py +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy/cli.py +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy/core.py +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy/setup.py +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy.egg-info/dependency_links.txt +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy.egg-info/entry_points.txt +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy.egg-info/requires.txt +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/cloudx_proxy.egg-info/top_level.txt +0 -0
- {cloudx_proxy-0.7.0 → cloudx_proxy-0.8.0}/setup.cfg +0 -0
@@ -17,14 +17,23 @@ jobs:
|
|
17
17
|
with:
|
18
18
|
python-version: '3.x'
|
19
19
|
|
20
|
-
- name: Install
|
20
|
+
- name: Install security tools
|
21
21
|
run: |
|
22
22
|
python -m pip install --upgrade pip
|
23
|
-
pip install pip-audit
|
23
|
+
pip install pip-audit liccheck
|
24
|
+
|
25
|
+
- name: Install project dependencies
|
26
|
+
run: pip install "boto3>=1.34.0" "click>=8.1.0"
|
24
27
|
|
25
28
|
- name: Run pip-audit
|
26
29
|
run: pip-audit --format=json --output=pip-audit-report.json .
|
27
30
|
|
31
|
+
- name: Generate requirements.txt for liccheck
|
32
|
+
run: pip freeze > requirements.txt
|
33
|
+
|
34
|
+
- name: Run liccheck
|
35
|
+
run: liccheck
|
36
|
+
|
28
37
|
- name: Upload pip-audit results
|
29
38
|
uses: actions/upload-artifact@v4
|
30
39
|
if: always()
|
@@ -1,3 +1,10 @@
|
|
1
|
+
# [0.8.0](https://github.com/easytocloud/cloudX-proxy/compare/v0.7.0...v0.8.0) (2025-09-02)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* add comprehensive license compliance with liccheck integration ([611e49b](https://github.com/easytocloud/cloudX-proxy/commit/611e49bba0465eb9c4c80bfe2122240479ac3aa4))
|
7
|
+
|
1
8
|
# [0.7.0](https://github.com/easytocloud/cloudX-proxy/compare/v0.6.1...v0.7.0) (2025-09-02)
|
2
9
|
|
3
10
|
|
@@ -0,0 +1,71 @@
|
|
1
|
+
cloudX-proxy
|
2
|
+
Copyright (c) 2025 easytocloud
|
3
|
+
|
4
|
+
This project is licensed under the MIT License. See LICENSE file for details.
|
5
|
+
|
6
|
+
This project includes dependencies with the following licenses:
|
7
|
+
|
8
|
+
================================================================================
|
9
|
+
Apache License 2.0
|
10
|
+
================================================================================
|
11
|
+
|
12
|
+
The following components are licensed under the Apache License 2.0:
|
13
|
+
- boto3: AWS SDK for Python
|
14
|
+
- botocore: Low-level, core functionality of boto3
|
15
|
+
- s3transfer: Amazon S3 Transfer Manager for Python
|
16
|
+
- liccheck: Check python packages from requirement.txt and report issues
|
17
|
+
- pip-audit: A tool for scanning Python packages for known vulnerabilities
|
18
|
+
- cyclonedx-python-lib: Python library for CycloneDX
|
19
|
+
- requests: HTTP library for Python
|
20
|
+
- pip-api: An unofficial, importable pip API
|
21
|
+
- py-serializable: Library for serializing and deserializing Python objects
|
22
|
+
- sortedcontainers: Pure Python sorted container types
|
23
|
+
- cachecontrol: httplib2 caching for requests
|
24
|
+
- license-expression: Utility library to parse, normalize and compare License expressions
|
25
|
+
|
26
|
+
================================================================================
|
27
|
+
MIT License
|
28
|
+
================================================================================
|
29
|
+
|
30
|
+
The following components are licensed under the MIT License:
|
31
|
+
- click: Composable command line interface toolkit
|
32
|
+
- jmespath: JSON Matching Expressions
|
33
|
+
- six: Python 2 and 3 compatibility utilities
|
34
|
+
- charset-normalizer: Character encoding normalizer
|
35
|
+
- urllib3: HTTP library with thread-safe connection pooling
|
36
|
+
- setuptools: Easily download, build, install, upgrade, and uninstall Python packages
|
37
|
+
- toml: Python Library for Tom's Obvious, Minimal Language
|
38
|
+
- pip: The PyPA recommended tool for installing Python packages
|
39
|
+
- rich: Rich text and beautiful formatting in the terminal
|
40
|
+
- markdown-it-py: Markdown parser
|
41
|
+
- mdurl: URL utilities for markdown-it
|
42
|
+
- packageurl-python: Python implementation of Package URL
|
43
|
+
- pip-requirements-parser: Python library for parsing requirements.txt files
|
44
|
+
- platformdirs: A small Python module for determining appropriate platform dirs
|
45
|
+
- pyparsing: Python parsing module
|
46
|
+
|
47
|
+
================================================================================
|
48
|
+
BSD License
|
49
|
+
================================================================================
|
50
|
+
|
51
|
+
The following components are licensed under various BSD licenses:
|
52
|
+
- click: BSD-3-Clause
|
53
|
+
- boolean-py: BSD-2-Clause
|
54
|
+
|
55
|
+
================================================================================
|
56
|
+
Other Licenses
|
57
|
+
================================================================================
|
58
|
+
|
59
|
+
The following components are licensed under other compatible licenses:
|
60
|
+
- certifi: Mozilla Public License 2.0 (MPL 2.0)
|
61
|
+
- defusedxml: Python Software Foundation License
|
62
|
+
- python-dateutil: Dual License (Apache 2.0 / BSD-3-Clause)
|
63
|
+
- filelock: The Unlicense
|
64
|
+
|
65
|
+
================================================================================
|
66
|
+
|
67
|
+
For detailed license information, please refer to the individual package
|
68
|
+
documentation and license files.
|
69
|
+
|
70
|
+
The combination of all these licenses is compatible with the MIT License under
|
71
|
+
which this project is distributed.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cloudx-proxy
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.8.0
|
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
|
@@ -46,6 +46,7 @@ Classifier: Topic :: System :: Systems Administration
|
|
46
46
|
Requires-Python: >=3.9
|
47
47
|
Description-Content-Type: text/markdown
|
48
48
|
License-File: LICENSE
|
49
|
+
License-File: NOTICE
|
49
50
|
Requires-Dist: boto3>=1.34.0
|
50
51
|
Requires-Dist: click>=8.1.0
|
51
52
|
Dynamic: license-file
|
@@ -57,6 +58,7 @@ Dynamic: license-file
|
|
57
58
|
[](https://github.com/easytocloud/cloudX-proxy/blob/main/LICENSE)
|
58
59
|
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
59
60
|
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
61
|
+
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
60
62
|
[](https://github.com/easytocloud/cloudX-proxy/network/updates)
|
61
63
|
[](https://pypi.org/project/cloudx-proxy/)
|
62
64
|
|
@@ -5,6 +5,7 @@
|
|
5
5
|
[](https://github.com/easytocloud/cloudX-proxy/blob/main/LICENSE)
|
6
6
|
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
7
7
|
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
8
|
+
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
8
9
|
[](https://github.com/easytocloud/cloudX-proxy/network/updates)
|
9
10
|
[](https://pypi.org/project/cloudx-proxy/)
|
10
11
|
|
@@ -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.
|
32
|
-
__version_tuple__ = version_tuple = (0,
|
31
|
+
__version__ = version = '0.8.0'
|
32
|
+
__version_tuple__ = version_tuple = (0, 8, 0)
|
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.
|
3
|
+
Version: 0.8.0
|
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
|
@@ -46,6 +46,7 @@ Classifier: Topic :: System :: Systems Administration
|
|
46
46
|
Requires-Python: >=3.9
|
47
47
|
Description-Content-Type: text/markdown
|
48
48
|
License-File: LICENSE
|
49
|
+
License-File: NOTICE
|
49
50
|
Requires-Dist: boto3>=1.34.0
|
50
51
|
Requires-Dist: click>=8.1.0
|
51
52
|
Dynamic: license-file
|
@@ -57,6 +58,7 @@ Dynamic: license-file
|
|
57
58
|
[](https://github.com/easytocloud/cloudX-proxy/blob/main/LICENSE)
|
58
59
|
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
59
60
|
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
61
|
+
[](https://github.com/easytocloud/cloudX-proxy/actions/workflows/release.yml)
|
60
62
|
[](https://github.com/easytocloud/cloudX-proxy/network/updates)
|
61
63
|
[](https://pypi.org/project/cloudx-proxy/)
|
62
64
|
|
@@ -46,3 +46,47 @@ cloudx-proxy = "cloudx_proxy.cli:cli"
|
|
46
46
|
write_to = "cloudx_proxy/_version.py"
|
47
47
|
version_scheme = "semver"
|
48
48
|
local_scheme = "no-local-version"
|
49
|
+
|
50
|
+
[tool.liccheck]
|
51
|
+
# MIT-compatible licenses for cloudX-proxy (MIT License)
|
52
|
+
authorized_licenses = [
|
53
|
+
# MIT and MIT-compatible
|
54
|
+
"MIT",
|
55
|
+
"MIT License",
|
56
|
+
|
57
|
+
# BSD licenses (MIT-compatible)
|
58
|
+
"BSD",
|
59
|
+
"BSD License",
|
60
|
+
"BSD-2-Clause",
|
61
|
+
"BSD-3-Clause",
|
62
|
+
"New BSD",
|
63
|
+
"new bsd",
|
64
|
+
"bsd license",
|
65
|
+
|
66
|
+
# Apache licenses (MIT-compatible)
|
67
|
+
"Apache Software",
|
68
|
+
"Apache License",
|
69
|
+
"Apache-2.0",
|
70
|
+
"Apache 2.0",
|
71
|
+
|
72
|
+
# Other MIT-compatible licenses
|
73
|
+
"Mozilla Public License 2.0 (MPL 2.0)",
|
74
|
+
"Python Software Foundation",
|
75
|
+
"The Unlicense (Unlicense)"
|
76
|
+
]
|
77
|
+
|
78
|
+
# Licenses incompatible with MIT
|
79
|
+
unauthorized_licenses = [
|
80
|
+
"GPL v2",
|
81
|
+
"GPL v3",
|
82
|
+
"gpl v3",
|
83
|
+
"GPL-2.0",
|
84
|
+
"GPL-3.0",
|
85
|
+
"AGPL",
|
86
|
+
"LGPL",
|
87
|
+
"Copyleft"
|
88
|
+
]
|
89
|
+
|
90
|
+
[tool.liccheck.authorized_packages]
|
91
|
+
# Allow specific packages with compatible licenses
|
92
|
+
uuid = "<=1.30"
|
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
|