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
53 changes: 53 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,56 @@ updates:
gh-actions-packages:
patterns:
- "*"

- package-ecosystem: "npm"
directory: "/"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Add the crashtracker npm manifest

When test/crashtracker dependencies such as express or body-parser need a security or compatibility bump, this npm entry is scoped only to /, so Dependabot will watch the root package.json/yarn.lock but never open updates for test/crashtracker/package.json and its lockfile, even though scripts/test.sh installs that package for the crashtracker test. Add a second npm entry, or use directories including /test/crashtracker, so the test package is covered too.

Useful? React with 👍 / 👎.

@szegedi szegedi Jun 22, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment is valid as test/crashtracker/package.json has real dependencies (express, body-parser, @datadog/segfaultify) that won't be watched by the root-only entry.

That said, test/crashtracker has no lockfile of its own (package-lock.json or yarn.lock), so Dependabot will not be able to reliably track it. It skips directories with no lockfiles. Also, @datadog/segfaultify would presumably be excluded the same way @datadog/* is excluded from GitHub Actions (though the npm entry doesn't have that exclusion currently).

The fix is presumably to commit a lockfile there?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, I think your most recent commit 161ab74 should address this

schedule:
interval: "weekly"
versioning-strategy: "increase"
labels:
- dependabot
- dependencies
- javascript
- semver-patch
groups:
patch-updates:
update-types:
- "patch"
minor-updates:
update-types:
- "minor"

- package-ecosystem: "npm"
directory: "/test/crashtracker"
schedule:
interval: "weekly"
versioning-strategy: "increase"
labels:
- dependabot
- dependencies
- javascript
- semver-patch
groups:
patch-updates:
update-types:
- "patch"
minor-updates:
update-types:
- "minor"

- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
labels:
- dependabot
- dependencies
- rust
- semver-patch
groups:
patch-updates:
update-types:
- "patch"
minor-updates:
update-types:
- "minor"
Loading
Loading