Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ updates:
# Only allow @types/node patch/minor updates (block major version bumps)
- dependency-name: "@types/node"
update-types: ["version-update:semver-major"]
# Mirror pnpm's minimumReleaseAge: wait before proposing freshly published versions.
# Dependabot does not read pnpm-workspace.yaml, so this must be configured here.
cooldown:
default-days: 7
open-pull-requests-limit: 10

# GitHub Actions
Expand All @@ -28,4 +32,6 @@ updates:
schedule:
interval: "weekly"
day: "monday"
cooldown:
default-days: 7
open-pull-requests-limit: 5
7 changes: 7 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ allowBuilds:
esbuild: true
lefthook: true

# Supply-chain maturity delay: don't adopt a freshly published version until it
# has been on the registry for 7 days (10080 minutes). Strict mode also validates
# the committed lockfile against this cutoff, so a same-day-published transitive
# dep fails the check instead of slipping in silently.
minimumReleaseAge: 10080
minimumReleaseAgeStrict: true
Comment thread
btravers marked this conversation as resolved.

auditConfig:
ignoreGhsas:
# vite `server.fs.deny` bypass on Windows alternate paths. Reaches us only
Expand Down
Loading