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
61 changes: 54 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,58 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

# Dependabot configuration.
#
# NOTE: Dependabot *security* updates — the PRs that fix an open security
# alert — are switched on in repository settings, not here:
# Settings → Code security → Dependabot security updates
# This file configures update *behaviour*: version updates below, and (via a
# group with `applies-to: security-updates`) how security PRs are grouped.
#
# Most of this project's advisories land on transitive dependencies that
# Dependabot cannot bump on its own, because no parent release requires the
# fixed version yet. Those are pinned via `pnpm.overrides` in package.json;
# drop an override once the parent package ships a release that carries the
# fix on its own.
version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
versioning-strategy: increase
# Roll routine updates into a few PRs instead of one per package.
groups:
# Bundle all security fixes into a single PR rather than one per alert.
security:
applies-to: security-updates
patterns:
- "*"
next:
patterns:
- "next"
- "@next/*"
- "eslint-config-next"
react:
patterns:
- "react"
- "react-dom"
- "@types/react"
- "@types/react-dom"
dev-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
production-minor-patch:
dependency-type: "production"
update-types:
- "minor"
- "patch"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
actions:
patterns:
- "*"
15 changes: 13 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,22 @@
},
"pnpm": {
"overrides": {
"@hono/node-server": "^2.0.5",
"brace-expansion": "^5.0.9",
"browserslist": "^4.28.9",
"fast-uri": "^3.1.7",
"hono": "^4.13.7",
"ip-address": "^10.7.0",
"js-yaml": "^4.3.2",
"minimatch": "^10.2.1",
"postcss": "^8.5.10",
"mute-stream": "^3.0.0",
"nanoid": "^3.3.18",
"postcss": "^8.5.28",
"qs": "^6.16.0",
"shadcn>postcss-selector-parser": "^7.1.6",
"sharp": "^0.35.3",
"@hono/node-server": "^2.0.5"
"socket.io-parser": "^4.2.7",
"undici": "^7.29.1"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
Expand Down
Loading
Loading