chore: add renovate dependency updates

Add Renovate configuration with release age delay
Document lighter validation for docs and config changes
This commit is contained in:
Bohdan Triapitsyn
2026-06-10 16:03:19 +03:00
parent cc97710f9e
commit 82d5bab81d
2 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -451,7 +451,7 @@ A single store with N properties means every subscriber re-evaluates on every st
## Validation expectations
- Run `bun run type-check` and `bun run lint` before finalizing (set longer timeouts since on slower machines it may take more time for tool to run this).
- Run `bun run type-check` and `bun run lint` before finalizing source-code changes that can affect TypeScript, runtime behavior, builds, lint rules, package resolution, or generated assets. For docs-only or isolated config-only changes, run the narrowest relevant validation instead (for example JSON/schema validation) and do not run the full checks unless the change can affect code execution.
- For hot-path changes, verify behavior under streaming or repeated events, not just static render.
- For sync or startup changes, verify fresh load, retry/failure, and restart behavior.
- For session changes, verify create, stream, abort, permission, archive/delete, and revisit flows when relevant.
+17
View File
@@ -0,0 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "Europe/Kyiv",
"minimumReleaseAge": "1 day",
"dependencyDashboard": true,
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"packageRules": [
{
"description": "Group non-major development dependency updates",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "development dependencies"
}
]
}