fix(deps): upgrade direct and transitive dependencies to reduce security alerts - #387
Merged
Conversation
Co-authored-by: panz3r <1754457+panz3r@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
panz3r
September 9, 2026 17:14
View session
There was a problem hiding this comment.
🔵 Needs a closer look
A lockfile refresh updates a broad set of transitive packages and should be validated by CI runs across the configured Node matrix before approval.
Pull request overview
This PR updates direct workspace devDependencies and refreshes the pnpm lockfile to pick up patched transitive dependency versions, aiming to reduce dependency/security alerts without changing runtime behavior.
Changes:
- Bumped
@types/nodefrom^26.4.1to^26.5.0across affected packages. - Updated adapter devDependencies to reference
@forward-software/react-auth^2.1.0and bumpedexpo-modules-corein the Apple adapter to^57.0.17. - Refreshed
pnpm-lock.yamlto pull newer transitive versions (e.g.,brace-expansion,nanoid,postcss,undici,rolldownbindings).
File summaries
| File | Description |
|---|---|
pnpm-lock.yaml |
Lockfile refresh to incorporate direct bumps and patched transitive dependency versions. |
packages/google-signin/package.json |
Updates devDependency versions for @forward-software/react-auth and @types/node. |
packages/apple-signin/package.json |
Updates devDependency versions for @forward-software/react-auth, @types/node, and expo-modules-core. |
lib/package.json |
Updates @types/node devDependency version. |
Review details
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
- Files reviewed: 3/4 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
panz3r
marked this pull request as ready for review
September 9, 2026 17:17
This was referenced Sep 9, 2026
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.
Affected Package(s)
@forward-software/react-auth(lib)@forward-software/react-auth-google(packages/google-signin)Related Issue(s)
Addresses repository security/quality dependency alerts from direct and transitive packages.
Motivation
This PR reduces dependency risk by moving workspace packages to newer compatible versions and refreshing the lockfile to pick up patched transitive releases. The goal is to clear actionable alerts without changing runtime behavior.
Description of Changes
@types/nodeacross workspace packages; updated adapter-local dev deps (expo-modules-corein Apple adapter, internal@forward-software/react-authdev reference in adapters).brace-expansion/nanoidpaths).image-sizealert is still upstream-unpatched in the React Native/Metro chain.{ "lib": { "@types/node": "^26.5.0" }, "packages/google-signin": { "@forward-software/react-auth": "^2.1.0", "@types/node": "^26.5.0" }, "packages/apple-signin": { "@forward-software/react-auth": "^2.1.0", "@types/node": "^26.5.0", "expo-modules-core": "^57.0.17" } }Breaking Changes
None
How to Test
Vitest) and build steps pass successfully on this PR.pnpm installto install dependencies.pnpm --filter <affected-package> testto run tests for the affected package.pnpm --filter <affected-package> buildto verify the build succeeds.pnpm --filter <affected-package> lintto check for linting errors.Checklist
Notes for Reviewers
Apple adapter (
packages/apple-signin) was also updated, but this legacy template does not include an explicit checkbox for it.