Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.19.0
1.19.1
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ <h3>Scaffold Generator</h3>
</div>
<div class="footer-divider"></div>
<div class="footer-meta">
<span id="footerVersion">v1.19.0</span>
<span id="footerVersion">v1.19.1</span>
<span>&middot;</span>
<span>CC-BY-NC-ND-4.0</span>
<span>&middot;</span>
Expand Down
4 changes: 4 additions & 0 deletions scaffold/templates/dependabot.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ updates:
# of the supported runtimes.
- dependency-name: "@types/node"
versions: [">=23"]
# Hold vitest 3.x. A 4.x bump rewrote the lockfile without optional
# esbuild platform packages, so npm ci failed. Major upgrades stay manual.
- dependency-name: "vitest"
update-types: ["version-update:semver-major"]
{% endif %}
{% if has_mcp %}
- package-ecosystem: "pip"
Expand Down
3 changes: 3 additions & 0 deletions tests/test_scaffold_born_green.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ def test_deployed_service_shape(rendered):
assert "gh workflow run publish.yml" in (
library / ".github" / "workflows" / "release.yml"
).read_text(encoding="utf-8")
dep = (library / ".github" / "dependabot.yml").read_text(encoding="utf-8")
assert 'dependency-name: "vitest"' in dep
assert "version-update:semver-major" in dep


def _make_temp_registry_root(tmp_path: Path) -> Path:
Expand Down
Loading