chore: Dependency updates, security fixes, and docs improvements#156
Open
TheRealAgentK wants to merge 8 commits intomainfrom
Open
chore: Dependency updates, security fixes, and docs improvements#156TheRealAgentK wants to merge 8 commits intomainfrom
TheRealAgentK wants to merge 8 commits intomainfrom
Conversation
npm audit fix resolves 17 vulnerabilities: - body-parser DoS (GHSA-wqch-xfxh-vrr4) - diff/jsdiff DoS (GHSA-73rr-hh4g-fpgx) - glob CLI command injection (GHSA-5j98-mcp5-4vw2) - js-yaml prototype pollution (GHSA-mh29-5h37-fv8m) - qs arrayLimit DoS (GHSA-6rw7-vpxm-498p, GHSA-w7fw-mjwx-w883) - tar hardlink/symlink path traversal (GHSA-r6q2-hw4h-h46w, GHSA-34x7-hfp2-rc4v, GHSA-83g3-92jg-28cx, GHSA-8qq5-rm4j-mr97) Remaining 19 vulns are in eslint/typescript-eslint/tsdoc transitive deps (ajv, minimatch) and require eslint 10 (breaking change) to fully resolve.
The import example used @raygun/aws-lambda but the actual package name is @raygun.io/aws-lambda.
- eslint-plugin-tsdoc: ^0.4.0 → ^0.5.0 (align with raygun4node) - @stylistic/eslint-plugin: ^5.1.0 → ^5.9.0 - tap: ^21.6.1 → ^21.6.2
There was a problem hiding this comment.
Pull request overview
This PR consolidates multiple Dependabot dependency updates into a single change, addresses security vulnerabilities, fixes a documentation bug in the README, and adds a new AGENTS.md guide for AI-assisted development. The changes primarily focus on keeping dependencies current while maintaining backward compatibility—no source code in lib/ has been modified.
Changes:
- Updated 7 devDependencies and 2 runtime dependencies to their latest minor/patch versions
- Fixed incorrect package import path in README from
@raygun/aws-lambdato@raygun.io/aws-lambda - Added comprehensive AGENTS.md documentation covering project structure, conventions, and raygun4node integration details
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Bumped devDependencies (@stylistic/eslint-plugin, @types/node, eslint-plugin-tsdoc, express, prettier, tap, typescript-eslint) and runtime dependencies (@types/aws-lambda, raygun) to latest versions |
| README.md | Corrected package import path from incorrect @raygun/aws-lambda to correct @raygun.io/aws-lambda |
| AGENTS.md | Added new AI agents guide documenting project overview, repository structure, build/development processes, code conventions, key patterns, and raygun4node integration details |
Comments suppressed due to low confidence (1)
AGENTS.md:45
- The reference to "../raygun4node in the workspace" is inaccurate. This project is not part of a workspace, and the raygun package is a runtime dependency installed from npm (as shown in package.json), not a local sibling directory. Consider revising to: "This package is a lightweight wrapper around the
raygunNode.js client (installed from npm as a runtime dependency)."
This package is a lightweight wrapper around the `raygun` Node.js client (`../raygun4node` in the workspace).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
chore: Dependency updates, security fixes, and docs improvements
Description 📝
npm audit fixfor transitive security fixes.Type of change
Updates
👉 DevDependency bumps — Supersedes Dependabot PRs #151, #152, #153, #154, #155:
@types/node: ^25.0.3 → ^25.3.0express: ^5.1.0 → ^5.2.1prettier: ^3.3.2 → ^3.8.1tap: ^21.1.0 → ^21.6.2typescript-eslint: ^8.39.0 → ^8.56.0eslint-plugin-tsdoc: ^0.4.0 → ^0.5.0 (aligned with raygun4node)@stylistic/eslint-plugin: ^5.1.0 → ^5.9.0👉 Security fixes — Resolves 17 of 36 npm audit vulnerabilities via
npm audit fix:👉 Runtime dependency bumps:
@types/aws-lambda: ^8.10.138 → ^8.10.160raygun: ^2.0.0 → ^2.2.4👉 Docs:
@raygun/aws-lambda→@raygun.io/aws-lambda)Test plan 🧪
rm -rf node_modules build && npm ci) builds successfullynpm test)npm run eslintandnpm run tseslint)npm run prettier -- --check)lib/— only dependency and documentation changesAuthor to check 👓
Reviewer to check ✔️