runspec-linux 0.1.0__tar.gz → 0.1.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.
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/.gitignore +3 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/CHANGELOG.md +15 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/PKG-INFO +3 -3
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/pyproject.toml +5 -5
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/runspec.toml +4 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/__init__.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/containers.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/files.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/logs.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/nc_command.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/network.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/security.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/services.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/runspec_linux/system_info.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/tests/__init__.py +0 -0
- {runspec_linux-0.1.0 → runspec_linux-0.1.2}/tests/test_nc_send.py +0 -0
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# runspec-linux Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2] — 2026-06-02
|
|
4
|
+
|
|
5
|
+
Lower the Python floor to 3.10 to match the core `runspec` library (no
|
|
6
|
+
3.11-only features are used). Bump the `runspec` dependency floor to
|
|
7
|
+
`>=0.23.0`.
|
|
8
|
+
|
|
9
|
+
## [0.1.1] — 2026-05-28
|
|
10
|
+
|
|
11
|
+
Enable `[config.logging]` for all 21 runnables. Each invocation now writes a
|
|
12
|
+
JSON audit record to `{venv}/logs/{runnable}.log` (rotates at 10 MB, keeps 14
|
|
13
|
+
backups) and emits a one-line run summary to stderr. The auto-added `--debug`
|
|
14
|
+
and `--no-summary` flags are available on every runnable. No code changes —
|
|
15
|
+
existing `print(json.dumps(...))` payloads are captured into the audit log via
|
|
16
|
+
the print-capture mechanism; stdout stays clean for pipe consumers.
|
|
17
|
+
|
|
3
18
|
## [0.1.0] — 2026-05-27
|
|
4
19
|
|
|
5
20
|
Initial release.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: runspec-linux
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Linux system admin runnables for runspec
|
|
5
|
-
Requires-Python: >=3.
|
|
6
|
-
Requires-Dist: runspec>=0.
|
|
5
|
+
Requires-Python: >=3.10
|
|
6
|
+
Requires-Dist: runspec>=0.23.0
|
|
7
7
|
Provides-Extra: dev
|
|
8
8
|
Requires-Dist: mypy; extra == 'dev'
|
|
9
9
|
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "runspec-linux"
|
|
7
|
-
version = "0.1.
|
|
8
|
-
requires-python = ">=3.
|
|
7
|
+
version = "0.1.2"
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
9
|
description = "Linux system admin runnables for runspec"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"runspec>=0.
|
|
11
|
+
"runspec>=0.23.0",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[project.scripts]
|
|
@@ -45,11 +45,11 @@ dev = [
|
|
|
45
45
|
testpaths = ["tests"]
|
|
46
46
|
|
|
47
47
|
[tool.mypy]
|
|
48
|
-
python_version = "3.
|
|
48
|
+
python_version = "3.10"
|
|
49
49
|
|
|
50
50
|
[tool.ruff]
|
|
51
51
|
line-length = 200
|
|
52
|
-
target-version = "
|
|
52
|
+
target-version = "py310"
|
|
53
53
|
|
|
54
54
|
[tool.ruff.lint]
|
|
55
55
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
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
|