Compare commits

..
3 Commits
Author SHA1 Message Date
emilandDevin <158243242+devin-ai-integration[bot]@users.noreply.github.com> b2dd2229f1 fix: use --no-cache for ansible-galaxy to prevent concurrent cache corruption
CI / validate (pull_request) Successful in 1m58s
CI / auto-merge (pull_request) Successful in 18s
When 6 molecule runners install ansible-galaxy collections concurrently,
they share the same response cache, causing:
  Missing expected 'results' in ansible-galaxy cache
  This may indicate cache corruption (from concurrent ansible-galaxy runs)

Adding --no-cache bypasses the shared cache entirely, preventing the
race condition.

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-08-05 18:59:29 +00:00
emil e6be27f75f chore: remove vale styles 2026-08-05 18:59:29 +00:00
emilandDevin <158243242+devin-ai-integration[bot]@users.noreply.github.com> 6b5cd18efb fix: unique molecule container names per CI runner
When multiple molecule matrix runners share the same Docker host,
they conflict on the container name "ubuntu-2604" (409 Conflict
from Docker). This appends the MATRIX_INDEX as a suffix (e.g.
ubuntu-2604-r3) so each runner gets a unique container name.

Closes DEVX-148

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-08-05 18:59:29 +00:00
5 changed files with 8 additions and 14 deletions
-6
View File
@@ -2,12 +2,6 @@
All notable changes to this project will be documented in this file.
## [0.47.10] - 2026-08-05
### Bug Fixes
- Unique molecule container names per CI runner
## [0.47.9] - 2026-08-03
### Bug Fixes
+3 -3
View File
@@ -87,7 +87,7 @@ extra index and list devx in your dependencies:
```toml
[project]
dependencies = [
"devx>=0.47.10",
"devx>=0.47.9",
]
[tool.pip]
@@ -101,8 +101,8 @@ pip install -e .
```
> **Note:** If your project requires a specific devx version, pin it in
> `dependencies` (for example, `"devx==0.47.10"`) or use a version constraint
> (for example, `"devx>=0.47.10,<0.48"`).
> `dependencies` (for example, `"devx==0.47.9"`) or use a version constraint
> (for example, `"devx>=0.47.9,<0.48"`).
### Optional extras
+2 -2
View File
@@ -74,14 +74,14 @@ Add devx to your `pyproject.toml` dependencies and configure the registry:
```toml
[project]
dependencies = [
"devx>=0.47.10",
"devx>=0.47.9",
]
[tool.pip]
extra-index-url = "https://git.oblachno.oblachno.fyi/api/packages/oblachno-oss/pypi/simple"
```
Pin a specific version if needed: `"devx==0.47.10"` or `"devx>=0.47.10,<0.48"`.
Pin a specific version if needed: `"devx==0.47.9"` or `"devx>=0.47.9,<0.48"`.
### Optional extras
+2 -2
View File
@@ -48,12 +48,12 @@ Add devx to your `pyproject.toml`:
```toml
[project]
dependencies = [
"devx>=0.47.10",
"devx>=0.47.9",
]
[project.optional-dependencies]
dev = [
"devx>=0.47.10",
"devx>=0.47.9",
]
```
+1 -1
View File
@@ -1,3 +1,3 @@
"""devx — reusable development and CI/CD tools for oblachno-oss projects."""
__version__ = "0.47.10"
__version__ = "0.47.9"