caylent-devcontainer-cli 2.0.0__tar.gz → 2.0.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.
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/PKG-INFO +15 -25
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/README.md +14 -24
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/pyproject.toml +1 -1
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/__init__.py +1 -1
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli.egg-info/PKG-INFO +15 -25
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/setup.cfg +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/__main__.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/cli.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/commands/__init__.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/commands/catalog.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/commands/code.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/commands/completion.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/commands/setup.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/commands/setup_interactive.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/commands/template.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/__init__.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/catalog.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/constants.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/fs.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/template.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/ui.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/validation.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli/utils/version.py +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli.egg-info/SOURCES.txt +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli.egg-info/dependency_links.txt +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli.egg-info/entry_points.txt +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli.egg-info/requires.txt +0 -0
- {caylent_devcontainer_cli-2.0.0 → caylent_devcontainer_cli-2.0.2}/src/caylent_devcontainer_cli.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: caylent-devcontainer-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: CLI tool for managing Caylent devcontainers
|
|
5
5
|
Author-email: Caylent <solutions-owners@caylent.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -74,7 +74,7 @@ The CLI requires IDE command-line tools to launch projects:
|
|
|
74
74
|
pipx install caylent-devcontainer-cli
|
|
75
75
|
|
|
76
76
|
# Install from GitHub with a specific version tag
|
|
77
|
-
pipx install git+https://github.com/caylent-solutions/devcontainer.git@0.
|
|
77
|
+
pipx install git+https://github.com/caylent-solutions/devcontainer.git@2.0.0#subdirectory=caylent-devcontainer-cli
|
|
78
78
|
|
|
79
79
|
# If you don't have pipx installed, install it first:
|
|
80
80
|
python -m pip install pipx
|
|
@@ -172,8 +172,8 @@ The setup command will:
|
|
|
172
172
|
6. Copy common assets from `common/devcontainer-assets/` (shared scripts, host proxy toolkits) into `.devcontainer/`
|
|
173
173
|
7. Copy root project assets from `common/root-project-assets/` (e.g., `CLAUDE.md`, `.claude/`) into the project root
|
|
174
174
|
8. Run informational validation on existing project configuration files
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
9. Guide you through interactive template selection or creation
|
|
176
|
+
10. Generate project configuration files via `write_project_files()`
|
|
177
177
|
|
|
178
178
|
> **Note**: All files and directories in the catalog's `common/devcontainer-assets/` are automatically included in every project — this is how shared scripts (postcreate, functions) and host-side proxy toolkits (`nix-family-os/`, `wsl-family-os/`) are distributed.
|
|
179
179
|
|
|
@@ -349,27 +349,17 @@ The repository includes comprehensive quality assurance with pre-commit hooks th
|
|
|
349
349
|
|
|
350
350
|
#### Automated Release Process
|
|
351
351
|
|
|
352
|
-
The
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
```
|
|
364
|
-
|
|
365
|
-
The GitHub Actions workflow will:
|
|
366
|
-
1. Validate the tag follows semantic versioning (MAJOR.MINOR.PATCH)
|
|
367
|
-
2. Build the package using ASDF for Python version management
|
|
368
|
-
3. Publish the package to PyPI
|
|
369
|
-
|
|
370
|
-
#### Manual Release Process
|
|
371
|
-
|
|
372
|
-
Follow the manual release process documented in the [Contributing Guide](docs/CONTRIBUTING.md#manual-release-process-when-github-actions-workflow-is-not-working).
|
|
352
|
+
The release pipeline is fully automated. When changes to CLI files are merged to `main`, the CI pipeline computes the next semantic version, generates the changelog, creates and merges a release PR, tags the release, and triggers the publish workflow — all without manual intervention. A human approval gate on the `pypi` environment ensures releases are intentional and immutable.
|
|
353
|
+
|
|
354
|
+
The automated pipeline will:
|
|
355
|
+
1. Compute the next semantic version from conventional commit messages
|
|
356
|
+
2. Update `pyproject.toml`, `__init__.py`, and `CHANGELOG.md`
|
|
357
|
+
3. Create and merge a release PR
|
|
358
|
+
4. Tag the release and trigger the publish workflow
|
|
359
|
+
5. Validate the tag follows semantic versioning (MAJOR.MINOR.PATCH)
|
|
360
|
+
6. Verify version consistency across `__init__.py`, `pyproject.toml`, and the tag
|
|
361
|
+
7. Build the package using ASDF for Python version management
|
|
362
|
+
8. Publish the package to PyPI via trusted publishing (after environment approval)
|
|
373
363
|
|
|
374
364
|
## License
|
|
375
365
|
|
|
@@ -49,7 +49,7 @@ The CLI requires IDE command-line tools to launch projects:
|
|
|
49
49
|
pipx install caylent-devcontainer-cli
|
|
50
50
|
|
|
51
51
|
# Install from GitHub with a specific version tag
|
|
52
|
-
pipx install git+https://github.com/caylent-solutions/devcontainer.git@0.
|
|
52
|
+
pipx install git+https://github.com/caylent-solutions/devcontainer.git@2.0.0#subdirectory=caylent-devcontainer-cli
|
|
53
53
|
|
|
54
54
|
# If you don't have pipx installed, install it first:
|
|
55
55
|
python -m pip install pipx
|
|
@@ -147,8 +147,8 @@ The setup command will:
|
|
|
147
147
|
6. Copy common assets from `common/devcontainer-assets/` (shared scripts, host proxy toolkits) into `.devcontainer/`
|
|
148
148
|
7. Copy root project assets from `common/root-project-assets/` (e.g., `CLAUDE.md`, `.claude/`) into the project root
|
|
149
149
|
8. Run informational validation on existing project configuration files
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
9. Guide you through interactive template selection or creation
|
|
151
|
+
10. Generate project configuration files via `write_project_files()`
|
|
152
152
|
|
|
153
153
|
> **Note**: All files and directories in the catalog's `common/devcontainer-assets/` are automatically included in every project — this is how shared scripts (postcreate, functions) and host-side proxy toolkits (`nix-family-os/`, `wsl-family-os/`) are distributed.
|
|
154
154
|
|
|
@@ -324,27 +324,17 @@ The repository includes comprehensive quality assurance with pre-commit hooks th
|
|
|
324
324
|
|
|
325
325
|
#### Automated Release Process
|
|
326
326
|
|
|
327
|
-
The
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
```
|
|
339
|
-
|
|
340
|
-
The GitHub Actions workflow will:
|
|
341
|
-
1. Validate the tag follows semantic versioning (MAJOR.MINOR.PATCH)
|
|
342
|
-
2. Build the package using ASDF for Python version management
|
|
343
|
-
3. Publish the package to PyPI
|
|
344
|
-
|
|
345
|
-
#### Manual Release Process
|
|
346
|
-
|
|
347
|
-
Follow the manual release process documented in the [Contributing Guide](docs/CONTRIBUTING.md#manual-release-process-when-github-actions-workflow-is-not-working).
|
|
327
|
+
The release pipeline is fully automated. When changes to CLI files are merged to `main`, the CI pipeline computes the next semantic version, generates the changelog, creates and merges a release PR, tags the release, and triggers the publish workflow — all without manual intervention. A human approval gate on the `pypi` environment ensures releases are intentional and immutable.
|
|
328
|
+
|
|
329
|
+
The automated pipeline will:
|
|
330
|
+
1. Compute the next semantic version from conventional commit messages
|
|
331
|
+
2. Update `pyproject.toml`, `__init__.py`, and `CHANGELOG.md`
|
|
332
|
+
3. Create and merge a release PR
|
|
333
|
+
4. Tag the release and trigger the publish workflow
|
|
334
|
+
5. Validate the tag follows semantic versioning (MAJOR.MINOR.PATCH)
|
|
335
|
+
6. Verify version consistency across `__init__.py`, `pyproject.toml`, and the tag
|
|
336
|
+
7. Build the package using ASDF for Python version management
|
|
337
|
+
8. Publish the package to PyPI via trusted publishing (after environment approval)
|
|
348
338
|
|
|
349
339
|
## License
|
|
350
340
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "caylent-devcontainer-cli"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.2"
|
|
8
8
|
description = "CLI tool for managing Caylent devcontainers"
|
|
9
9
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: caylent-devcontainer-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: CLI tool for managing Caylent devcontainers
|
|
5
5
|
Author-email: Caylent <solutions-owners@caylent.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -74,7 +74,7 @@ The CLI requires IDE command-line tools to launch projects:
|
|
|
74
74
|
pipx install caylent-devcontainer-cli
|
|
75
75
|
|
|
76
76
|
# Install from GitHub with a specific version tag
|
|
77
|
-
pipx install git+https://github.com/caylent-solutions/devcontainer.git@0.
|
|
77
|
+
pipx install git+https://github.com/caylent-solutions/devcontainer.git@2.0.0#subdirectory=caylent-devcontainer-cli
|
|
78
78
|
|
|
79
79
|
# If you don't have pipx installed, install it first:
|
|
80
80
|
python -m pip install pipx
|
|
@@ -172,8 +172,8 @@ The setup command will:
|
|
|
172
172
|
6. Copy common assets from `common/devcontainer-assets/` (shared scripts, host proxy toolkits) into `.devcontainer/`
|
|
173
173
|
7. Copy root project assets from `common/root-project-assets/` (e.g., `CLAUDE.md`, `.claude/`) into the project root
|
|
174
174
|
8. Run informational validation on existing project configuration files
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
9. Guide you through interactive template selection or creation
|
|
176
|
+
10. Generate project configuration files via `write_project_files()`
|
|
177
177
|
|
|
178
178
|
> **Note**: All files and directories in the catalog's `common/devcontainer-assets/` are automatically included in every project — this is how shared scripts (postcreate, functions) and host-side proxy toolkits (`nix-family-os/`, `wsl-family-os/`) are distributed.
|
|
179
179
|
|
|
@@ -349,27 +349,17 @@ The repository includes comprehensive quality assurance with pre-commit hooks th
|
|
|
349
349
|
|
|
350
350
|
#### Automated Release Process
|
|
351
351
|
|
|
352
|
-
The
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
```
|
|
364
|
-
|
|
365
|
-
The GitHub Actions workflow will:
|
|
366
|
-
1. Validate the tag follows semantic versioning (MAJOR.MINOR.PATCH)
|
|
367
|
-
2. Build the package using ASDF for Python version management
|
|
368
|
-
3. Publish the package to PyPI
|
|
369
|
-
|
|
370
|
-
#### Manual Release Process
|
|
371
|
-
|
|
372
|
-
Follow the manual release process documented in the [Contributing Guide](docs/CONTRIBUTING.md#manual-release-process-when-github-actions-workflow-is-not-working).
|
|
352
|
+
The release pipeline is fully automated. When changes to CLI files are merged to `main`, the CI pipeline computes the next semantic version, generates the changelog, creates and merges a release PR, tags the release, and triggers the publish workflow — all without manual intervention. A human approval gate on the `pypi` environment ensures releases are intentional and immutable.
|
|
353
|
+
|
|
354
|
+
The automated pipeline will:
|
|
355
|
+
1. Compute the next semantic version from conventional commit messages
|
|
356
|
+
2. Update `pyproject.toml`, `__init__.py`, and `CHANGELOG.md`
|
|
357
|
+
3. Create and merge a release PR
|
|
358
|
+
4. Tag the release and trigger the publish workflow
|
|
359
|
+
5. Validate the tag follows semantic versioning (MAJOR.MINOR.PATCH)
|
|
360
|
+
6. Verify version consistency across `__init__.py`, `pyproject.toml`, and the tag
|
|
361
|
+
7. Build the package using ASDF for Python version management
|
|
362
|
+
8. Publish the package to PyPI via trusted publishing (after environment approval)
|
|
373
363
|
|
|
374
364
|
## License
|
|
375
365
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|