Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update react-router-dom 6.23.1 → 6.24.0 (minor) #219

Conversation

depfu[bot]
Copy link
Contributor

@depfu depfu bot commented Jun 26, 2024

Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ react-router-dom (6.23.1 → 6.24.0) · Repo · Changelog

Release Notes

6.24.0 (from changelog)

Date: 2024-06-24

What's Changed

Lazy Route Discovery (a.k.a. "Fog of War")

We're really excited to release our new API for "Lazy Route Discovery" in v6.24.0! For some background information, please check out the original RFC. The tl;dr; is that ever since we introduced the Data APIs in v6.4 via <RouterProvider>, we've been a little bummed that one of the tradeoffs was the lack of a compelling code-splitting story mirroring what we had in the <BrowserRouter>/<Routes> apps. We took a baby-step towards improving that story with route.lazy in v6.9.0, but with v6.24.0 we've gone the rest of the way.

With "Fog of War", you can now load portions of the route tree lazily via the new unstable_patchRoutesOnMiss option passed to createBrowserRouter (and it's memory/hash counterparts). This gives you a way to hook into spots where React Router is unable to match a given path and patch new routes into the route tree during the navigation (or fetcher call).

Here's a very small example, but please refer to the documentation for more information and use cases:

const router = createBrowserRouter(
  [
    {
      id: "root",
      path: "/",
      Component: RootComponent,
    },
  ],
  {
    async unstable_patchRoutesOnMiss({ path, patch }) {
      if (path === "/a") {
        // Load the `a` route (`{ path: 'a', Component: A }`)
        let route = await getARoute();
        // Patch the `a` route in as a new child of the `root` route
        patch("root", [route]);
      }
    },
  }
);

Minor Changes

  • Add support for Lazy Route Discovery (a.k.a. "Fog of War") (#11626)

Patch Changes

  • Fix fetcher.submit types - remove incorrect navigate/fetcherKey/unstable_viewTransition options because they are only relevant for useSubmit (#11631)
  • Allow falsy location.state values passed to <StaticRouter> (#11495)

Full Changelog: v6.23.1...v6.24.0

Does any of this look wrong? Please let us know.

↗️ react-router (indirect, 6.23.1 → 6.24.0) · Repo · Changelog

Release Notes

6.24.0 (from changelog)

Date: 2024-06-24

What's Changed

Lazy Route Discovery (a.k.a. "Fog of War")

We're really excited to release our new API for "Lazy Route Discovery" in v6.24.0! For some background information, please check out the original RFC. The tl;dr; is that ever since we introduced the Data APIs in v6.4 via <RouterProvider>, we've been a little bummed that one of the tradeoffs was the lack of a compelling code-splitting story mirroring what we had in the <BrowserRouter>/<Routes> apps. We took a baby-step towards improving that story with route.lazy in v6.9.0, but with v6.24.0 we've gone the rest of the way.

With "Fog of War", you can now load portions of the route tree lazily via the new unstable_patchRoutesOnMiss option passed to createBrowserRouter (and it's memory/hash counterparts). This gives you a way to hook into spots where React Router is unable to match a given path and patch new routes into the route tree during the navigation (or fetcher call).

Here's a very small example, but please refer to the documentation for more information and use cases:

const router = createBrowserRouter(
  [
    {
      id: "root",
      path: "/",
      Component: RootComponent,
    },
  ],
  {
    async unstable_patchRoutesOnMiss({ path, patch }) {
      if (path === "/a") {
        // Load the `a` route (`{ path: 'a', Component: A }`)
        let route = await getARoute();
        // Patch the `a` route in as a new child of the `root` route
        patch("root", [route]);
      }
    },
  }
);

Minor Changes

  • Add support for Lazy Route Discovery (a.k.a. "Fog of War") (#11626)

Patch Changes

  • Fix fetcher.submit types - remove incorrect navigate/fetcherKey/unstable_viewTransition options because they are only relevant for useSubmit (#11631)
  • Allow falsy location.state values passed to <StaticRouter> (#11495)

Full Changelog: v6.23.1...v6.24.0

Does any of this look wrong? Please let us know.

🗑️ string-width-cjs (removed)

🗑️ strip-ansi-cjs (removed)

🗑️ wrap-ansi-cjs (removed)


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu depfu bot added the depfu label Jun 26, 2024
Copy link

korbit-ai bot commented Jun 26, 2024

My review is in progress 📖 - I will have feedback for you in a few minutes!

Copy link

coderabbitai bot commented Jun 26, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

👋 Hi there!

  1. In the code diff, it seems a new dependency "color-convert" has been added with its corresponding version and integrity information.
  2. Additionally, "color-convert" requires "color-name" with a specified version, which is also being added as a new dependency.
  3. Ensure that the dependencies' versions align with project requirements and there are no conflicts or compatibility issues introduced by these changes.


Automatically generated with the help of gpt-3.5-turbo.
Feedback? Please don't hesitate to drop me an email at [email protected].

Copy link

Hi there! 👋 Thanks for opening a PR. 🎉 To get the most out of Senior Dev, please sign up in our Web App, connect your GitHub account, and add/join your organization GuilhermeStracini. After that, you will receive code reviews beginning on your next opened PR. 🚀

Copy link

Potential issues, bugs, and flaws that can introduce unwanted behavior:

  1. /POCUploadStream/ClientApp/package-lock.json:
    • The string-width-cjs and strip-ansi-cjs modules have duplicate entries with the same version 6.0.1 and same dependency requirements. This duplication can lead to inconsistencies and unnecessary overhead.

Code suggestions and improvements for better exception handling, logic, standardization, and consistency:

  1. /POCUploadStream/ClientApp/package-lock.json:
    • Consider removing the duplicate entries for string-width-cjs and strip-ansi-cjs modules. This will help in maintaining a cleaner and more maintainable package-lock.json file.
    • Ensure dependencies have consistent versioning across packages to avoid potential conflicts in the future.

Copy link

gooroo-dev bot commented Jun 26, 2024

Issue Counts

🐞Mistake 🤪Typo 🚨Security 🚀Performance 💪Best Practices 📖Readability ❓Others
0 0 0 0 0 0 0

Summary of Proposed Changes

  • 🛠️ Updated react-router-dom from version 6.23.1 to 6.24.0 in package.json.
  • 🛠️ Updated related dependencies in package-lock.json:
    • Updated @remix-run/router from 1.16.1 to 1.17.0.
    • Updated react-router from 6.23.1 to 6.24.0.
    • Updated react-router-dom from 6.23.1 to 6.24.0.
  • 🛠️ Removed outdated dependencies in package-lock.json:
    • Removed string-width-cjs.
    • Removed strip-ansi-cjs.
    • Removed wrap-ansi-cjs.

Identified Issues

No issues found in the incoming changes.

General Review

The code changes are straightforward and primarily involve updating the react-router-dom package and its related dependencies. The updates appear to be correctly reflected in both package.json and package-lock.json.

The code quality and style are consistent with standard practices for managing dependencies in a Node.js project. No issues related to mistakes, typos, security, performance, best practices, or readability were found. The updates are clear and necessary for maintaining up-to-date dependencies.

Yours, Gooroo.dev
React or reply to let me know what you think!

@guibranco guibranco enabled auto-merge (squash) June 26, 2024 02:12
Copy link
Member

@guibranco guibranco left a comment

Choose a reason for hiding this comment

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

Automatically approved by gstraccini[bot]

@guibranco
Copy link
Member

@depfu merge

Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@remix-run/[email protected] network 0 2.64 MB mjackson
npm/[email protected] None 0 26.7 kB simenb
npm/[email protected] environment, shell 0 81.9 kB simenb
npm/[email protected] None 0 1.25 MB timmywil
npm/[email protected] None 0 1.09 MB yaozilong
npm/[email protected] None 0 13.5 kB lydell
npm/[email protected] eval 0 291 kB vitaly
npm/[email protected] eval, filesystem, network, shell, unsafe 0 2.77 MB domenic
npm/[email protected] None 0 32 kB mathias
npm/[email protected] None 0 10.4 kB isaacs
npm/[email protected] None 0 19.6 kB esp
npm/[email protected] None 0 26.1 kB kriszyp
npm/[email protected] None 0 14.2 kB samn
npm/[email protected] None 0 235 kB jordanbtucker
npm/[email protected] filesystem 0 19.8 kB ryanzim
npm/[email protected] None 0 6.75 kB marcbachmann
npm/[email protected] None 0 230 kB ljharb
npm/[email protected] None 0 22.8 kB doowb
npm/[email protected] None 0 9.89 kB lukeed
npm/[email protected] None 0 23 kB lukeed
npm/[email protected] None 0 1.53 MB mcg
npm/[email protected] None 0 24.2 kB mcg
npm/[email protected] None 0 5.34 kB sindresorhus
npm/[email protected] None 0 24.9 kB gkz
npm/[email protected] filesystem 0 16.5 kB antonk52
npm/[email protected] None 0 5.39 kB eventualbuddha
npm/[email protected] eval, filesystem 0 18.4 kB sokra
npm/[email protected] None 0 36.3 kB evilebottnawi
npm/[email protected] filesystem 0 7.02 kB sindresorhus
npm/[email protected] None 0 14 kB jdalton
npm/[email protected] None 0 20.1 kB jdalton
npm/[email protected] None 0 54.1 kB jdalton
npm/[email protected] None 0 75.8 kB jdalton
npm/[email protected] None 0 25 kB jdalton
npm/[email protected] None 0 1.41 MB bnjmnt4n
npm/[email protected] environment 0 5.83 kB zertosh
npm/[email protected] None 0 17.7 kB blakeembrey
npm/[email protected] None 0 15.6 kB isaacs
npm/[email protected] None 0 373 kB antfu
npm/[email protected] filesystem 0 10 kB sindresorhus
npm/[email protected] None 0 6.07 kB daaku
npm/[email protected] None 0 548 kB mdn
npm/[email protected] None 0 11.1 kB dougwilson
npm/[email protected] filesystem 0 180 kB streamich
npm/[email protected] None 0 4.89 kB dougwilson
npm/[email protected] None 0 4.31 kB stevemao
npm/[email protected] None 0 8.9 kB zensh
npm/[email protected] network 0 5.29 kB dougwilson
npm/[email protected] None 0 55.9 kB jonschlinkert
npm/[email protected] None 0 206 kB dougwilson
npm/[email protected] None 0 18.3 kB dougwilson
npm/[email protected] environment, filesystem 0 51.7 kB broofa
npm/[email protected] None 0 4.46 kB sindresorhus
npm/[email protected] unsafe 0 112 kB evilebottnawi
npm/[email protected] None 0 1.55 kB cwmma
npm/[email protected] None 0 34.9 kB isaacs
npm/[email protected] None 0 50.7 kB ljharb
npm/[email protected] None 0 285 kB isaacs
npm/[email protected] filesystem 0 7.69 kB isaacs
npm/[email protected] None 0 6.84 kB styfle
npm/[email protected] network 0 22 kB mafintosh
npm/[email protected] None 0 21.6 kB ai
npm/[email protected] None 0 5.63 kB lauriro
npm/[email protected] None 0 5.65 kB megawac
npm/[email protected] None 0 27.4 kB dougwilson
npm/[email protected] None 0 298 kB suguru03
npm/[email protected] None 0 3.75 kB electerious
npm/[email protected] None 0 25.1 kB blakeembrey
npm/[email protected] None 0 1.66 MB davidlehn
npm/[email protected] None 0 16.3 kB broofa
npm/[email protected] None 0 26.3 kB chicoxyzzy
npm/[email protected] None 0 9.22 kB jonschlinkert
npm/[email protected] None 0 7.77 kB james.talmage
npm/[email protected] None 0 21.2 kB sindresorhus
npm/[email protected] environment 0 8.13 kB sindresorhus
npm/[email protected] None 0 5.54 kB feedic
npm/[email protected] None 0 81 kB diego
npm/[email protected] None 0 5.49 kB sindresorhus
npm/[email protected] None 0 58.9 kB addaleax
npm/[email protected] None 0 93.6 kB ljharb
npm/[email protected] None 0 28.2 kB ljharb
npm/[email protected] None 0 1.17 MB ljharb
npm/[email protected] None 0 31 kB ljharb
npm/[email protected] None 0 15.1 kB ljharb
npm/[email protected] None 0 20.8 kB ljharb
npm/[email protected] None 0 15.7 kB ljharb
npm/[email protected] None 0 30.5 kB ljharb
npm/[email protected] None 0 19.1 kB indutny
npm/[email protected] unsafe 0 13.7 kB dougwilson
npm/[email protected] None 0 7.54 kB dougwilson
npm/[email protected] None 0 4.05 kB isaacs
npm/[email protected] None 0 6.17 kB sindresorhus
npm/[email protected] environment, filesystem, shell 0 46.4 kB sindresorhus
npm/[email protected] None 0 50.2 kB gkz
npm/[email protected] None 0 7.75 kB sindresorhus
npm/[email protected] None 0 7.24 kB sindresorhus
npm/[email protected] None 0 11 kB sindresorhus
npm/[email protected] None 0 4.37 kB sindresorhus
npm/[email protected] None 0 10.2 kB blakeembrey
npm/[email protected] None 0 3.92 kB sindresorhus
npm/[email protected] None 0 5.41 kB sindresorhus
npm/[email protected] None 0 331 kB inikulin
npm/[email protected] None 0 10.3 kB dougwilson
npm/[email protected] None 0 14.8 kB blakeembrey
npm/[email protected] filesystem 0 3.92 kB sindresorhus
npm/[email protected] None 0 3.62 kB sindresorhus
npm/[email protected] None 0 3.02 kB sindresorhus
npm/[email protected] None 0 4.51 kB jbgutierrez
npm/[email protected] filesystem 0 535 kB isaacs
npm/[email protected] None 0 6.78 kB blakeembrey
npm/[email protected] filesystem 0 5.41 kB sindresorhus
npm/[email protected] None 0 11.3 kB meryn
npm/[email protected] environment 0 5.66 kB alexeyraspopov
npm/[email protected] None 0 90 kB mrmlnc
npm/[email protected] None 0 6.02 kB sindresorhus
npm/[email protected] unsafe 0 13.4 kB danez
npm/[email protected] None 0 4.75 kB sindresorhus
npm/[email protected] None 0 4.25 kB sindresorhus
npm/[email protected] None 0 9.55 kB alaguna
npm/[email protected] None 0 37.3 kB jonathantneal
npm/[email protected] None 0 188 kB ludovicofischer
npm/[email protected] None 0 17.2 kB polemius
npm/[email protected] None 0 24.9 kB alaguna
npm/[email protected] None 0 10.1 kB alaguna
npm/[email protected] None 0 15.1 kB alaguna
npm/[email protected] None 0 9.27 kB ludovicofischer
npm/[email protected] None 0 11.7 kB ludovicofischer
npm/[email protected] filesystem 0 24.8 kB alaguna
npm/[email protected] filesystem 0 38.3 kB alaguna
npm/[email protected] filesystem 0 20.6 kB alaguna
npm/[email protected] None 0 19 kB alaguna
npm/[email protected] None 0 10.7 kB ludovicofischer
npm/[email protected] None 0 8.14 kB ludovicofischer
npm/[email protected] None 0 5.05 kB ludovicofischer
npm/[email protected] None 0 9.23 kB ludovicofischer
npm/[email protected] None 0 19.8 kB alaguna
npm/[email protected] filesystem 0 19.8 kB alaguna
npm/[email protected] None 0 8.43 kB luisrudge
npm/[email protected] None 0 15.5 kB alaguna
npm/[email protected] None 0 15.5 kB alaguna
npm/[email protected] None 0 8.18 kB semigradsky
npm/[email protected] None 0 13 kB alaguna
npm/[email protected] None 0 22.2 kB alaguna
npm/[email protected] None 0 27 kB ryanzim
npm/[email protected] None 0 24.6 kB maximkoretskiy
npm/[email protected] None 0 8.36 kB ai
npm/[email protected] None 0 48 kB alaguna
npm/[email protected] environment, unsafe 0 22.7 kB ai
npm/[email protected] eval, unsafe 0 48.3 kB evilebottnawi
npm/[email protected] None 0 44.4 kB alaguna
npm/[email protected] None 0 21.2 kB semigradsky
npm/[email protected] None 0 49.5 kB ludovicofischer
npm/[email protected] None 0 23 kB ludovicofischer
npm/[email protected] None 0 18.1 kB ludovicofischer
npm/[email protected] None 0 11.1 kB ludovicofischer
npm/[email protected] None 0 6.69 kB ludovicofischer
npm/[email protected] None 0 9.51 kB ludovicofischer
npm/[email protected] None 0 12.2 kB evilebottnawi
npm/[email protected] None 0 25.6 kB evilebottnawi
npm/[email protected] None 0 15 kB evilebottnawi
npm/[email protected] None 0 9.66 kB evilebottnawi
npm/[email protected] None 0 14.1 kB ai
npm/[email protected] None 0 27.9 kB alaguna
npm/[email protected] None 0 5.06 kB ludovicofischer
npm/[email protected] None 0 7 kB ludovicofischer
npm/[email protected] None 0 8.32 kB ludovicofischer
npm/[email protected] None 0 7.47 kB ludovicofischer
npm/[email protected] None 0 12.3 kB ludovicofischer
npm/[email protected] None 0 7.1 kB ludovicofischer
npm/[email protected] None 0 5.92 kB ludovicofischer
npm/[email protected] None 0 8.78 kB ludovicofischer
npm/[email protected] None 0 6.6 kB ludovicofischer
npm/[email protected] filesystem, unsafe 0 32.1 kB jonathantneal
npm/[email protected] None 0 4.87 kB dreamseer
npm/[email protected] None 0 28.9 kB ludovicofischer
npm/[email protected] None 0 13.8 kB alaguna
npm/[email protected] None 0 6.54 kB shrpne
npm/[email protected] None 0 14.8 kB alaguna
npm/[email protected] filesystem 0 101 kB alaguna
npm/[email protected] None 0 19.9 kB alaguna
npm/[email protected] None 0 16.6 kB ludovicofischer
npm/[email protected] None 0 9.87 kB ludovicofischer
npm/[email protected] None 0 4.58 kB mattdimu
npm/[email protected] None 0 9.41 kB alaguna
npm/[email protected] None 0 184 kB evilebottnawi
npm/[email protected] None 0 13.5 kB ludovicofischer
npm/[email protected] None 0 5.21 kB ludovicofischer
npm/[email protected] None 0 27.2 kB evilebottnawi
npm/[email protected] environment, filesystem 0 187 kB ai
npm/[email protected] None 0 36.7 kB gkz
npm/[email protected] None 0 11.5 kB sindresorhus
npm/[email protected] None 0 58.9 kB ariaminaei
npm/[email protected] eval 0 70.1 kB simenb
npm/[email protected] None 0 3.17 kB cwmma
npm/[email protected] None 0 187 kB terkelg
npm/[email protected] environment 0 94.5 kB ljharb
npm/[email protected] None 0 15.4 kB dougwilson
npm/[email protected] None 0 461 kB lupomontero
npm/[email protected] None 0 32.4 kB mathias
npm/[email protected] None 0 123 kB kriskowal
npm/[email protected] None 0 229 kB ljharb
npm/[email protected] None 0 6.96 kB lpinca
npm/[email protected] None 0 8.37 kB feross
npm/[email protected] None 0 8.64 kB sindresorhus
npm/[email protected] None 0 8.1 kB cmtegner
npm/[email protected] None 0 6.36 kB cwmma
npm/[email protected] None 0 8.46 kB dougwilson
npm/[email protected] None 0 6.76 kB iansu
npm/[email protected] None 0 111 kB iansu
npm/[email protected] environment 0 4.51 MB react-bot
npm/[email protected] network 0 385 kB iansu
npm/[email protected] None 0 16.2 kB formidablelabs
npm/[email protected] environment 0 24 kB acdlite
npm/[email protected] None 0 79.1 kB fezvrasta
npm/[email protected] environment 0 60.3 kB gaearon
npm/[email protected] None 0 89.3 kB kytsang
npm/[email protected] environment 0 892 kB mjackson
npm/[email protected] environment 0 813 kB mjackson
npm/[email protected] None 0 116 kB iansu
npm/[email protected] environment 0 244 kB eps1lon
npm/[email protected] environment 0 318 kB react-bot
npm/[email protected] None 0 2.19 MB phwebi
npm/[email protected] filesystem 0 4.22 kB trysound
npm/[email protected] environment 0 122 kB matteo.collina
npm/[email protected] filesystem 0 20.5 kB paulmillr
npm/[email protected] filesystem 0 5.82 kB bnb
npm/[email protected] None 0 577 kB google-wombot
npm/[email protected] None 0 49.2 kB mathias
npm/[email protected] None 0 27.8 kB benjamn
npm/[email protected] None 0 135 kB benjamn
npm/[email protected] None 0 7.59 kB ionicabizau
npm/[email protected] None 0 36.7 kB ljharb
npm/[email protected] None 0 302 kB mysticatea
npm/[email protected] None 0 47.9 kB google-wombot
npm/[email protected] None 0 14.7 kB bnjmnt4n
npm/[email protected] None 0 65.7 kB jviereck
npm/[email protected] None 0 31.4 kB stevenvachon
npm/[email protected] None 0 169 kB ariaminaei
npm/[email protected] filesystem 0 12.1 kB troygoode
npm/[email protected] unsafe 0 3.42 kB floatdrop
npm/[email protected] None 0 8.56 kB 3rdeden
npm/[email protected] None 0 4.98 kB sindresorhus
npm/[email protected] filesystem, unsafe 0 4.64 kB sindresorhus
npm/[email protected] environment, filesystem 0 117 kB bholloway
npm/[email protected] None 0 20.3 kB lukeed
npm/[email protected] environment, filesystem 0 146 kB ljharb
npm/[email protected] None 0 18.9 kB tim-kos
npm/[email protected] None 0 9.44 kB matteo.collina
npm/[email protected] environment, filesystem 0 281 kB isaacs
npm/[email protected] eval 0 8.46 kB trysound
npm/[email protected] environment, filesystem, unsafe 0 6.7 MB lukastaegert
npm/[email protected] None 0 6.56 kB feross
npm/[email protected] None 0 32.1 kB feross
npm/[email protected] None 0 7.33 kB ljharb
npm/[email protected] None 0 42.3 kB chalker
npm/[email protected] None 0 30.2 kB jonathantneal
npm/[email protected] environment 0 86.8 kB evilebottnawi
npm/[email protected] None 0 54.6 kB isaacs
npm/[email protected] None 0 164 kB lddubeau
npm/[email protected] environment 0 93.4 kB react-bot
npm/[email protected] None 0 66.2 kB evilebottnawi
npm/[email protected] None 0 15.4 kB indutny
npm/[email protected] None 0 24.9 kB jfromaniello
npm/[email protected] None 0 93.4 kB npm-cli-ops
npm/[email protected] filesystem, network 0 50.1 kB dougwilson
npm/[email protected] None 0 16.8 kB okuryu
npm/[email protected] filesystem, network 0 93.4 kB dougwilson
npm/[email protected] None 0 25.2 kB dougwilson
npm/[email protected] None 0 4.03 kB wesleytodd
npm/[email protected] None 0 2.69 kB kevva
npm/[email protected] None 0 2.3 kB sindresorhus
npm/[email protected] None 0 39.9 kB ljharb
npm/[email protected] None 0 14.6 kB ljharb
npm/[email protected] None 0 9.96 kB isaacs
npm/[email protected] None 0 6.79 kB terkelg
npm/[email protected] filesystem, network 0 82.8 kB brycekahle
npm/[email protected] None 0 26.4 kB sokra
npm/[email protected] None 0 148 kB 7rulnik
npm/[email protected] None 0 32.1 kB evilebottnawi
npm/[email protected] filesystem 0 85.2 kB linusu
npm/[email protected] filesystem, network 0 226 kB eemeli
npm/[email protected] None 0 31.8 kB rich_harris
npm/[email protected] None 0 136 kB daviddias
npm/[email protected] network 0 57.7 kB indutny
npm/[email protected] None 0 34.8 kB alexei
npm/[email protected] None 0 8.41 kB stephank
npm/[email protected] unsafe 0 14.6 kB isaacs
npm/[email protected] None 0 23.6 kB eriwen
npm/[email protected] None 0 12.1 kB dougwilson
npm/[email protected] None 0 15.3 kB matteo.collina
npm/[email protected] None 0 4.05 kB sindresorhus
npm/[email protected] None 0 10.1 kB nwoltman
npm/[email protected] None 0 35.9 kB ljharb
npm/[email protected] None 0 21.2 kB ljharb
npm/[email protected] None 0 21.4 kB ljharb
npm/[email protected] None 0 8.12 kB sindresorhus
npm/[email protected] None 0 3 kB sindresorhus
npm/[email protected] None 0 27 kB jonschlinkert
npm/[email protected] None 0 3.05 kB sindresorhus
npm/[email protected] None 0 6.96 kB sindresorhus
npm/[email protected] None 0 60 kB evilebottnawi
npm/[email protected] None 0 30.7 kB ludovicofischer
npm/[email protected] environment 0 6.63 kB sindresorhus
npm/[email protected] None 0 6.93 kB sindresorhus
npm/[email protected] None 0 9.18 kB ljharb
npm/[email protected] None 0 48.9 kB trysound
npm/[email protected] filesystem 0 406 kB greli
npm/[email protected] None 0 57.1 kB joris-van-der-wel
npm/[email protected] environment, filesystem 0 4.6 MB adamwathan
npm/[email protected] None 0 46.9 kB sokra
npm/[email protected] filesystem 0 3.29 kB sindresorhus
npm/[email protected] filesystem 0 8.93 kB sindresorhus
npm/[email protected] None 0 6.52 kB sindresorhus
npm/[email protected] None 0 91.1 kB evilebottnawi
npm/[email protected] environment, eval 0 2.06 MB fabiosantoscode
npm/[email protected] None 0 23.6 kB coreyfarrell
npm/[email protected] None 0 11 kB substack
npm/[email protected] None 0 9.16 kB throat-bot
npm/[email protected] None 0 7.76 kB mafintosh
npm/[email protected] None 0 2.77 kB daaku
npm/[email protected] None 0 3.5 kB sindresorhus
npm/[email protected] None 0 22.9 kB jonschlinkert
npm/[email protected] None 0 4.68 kB dougwilson
npm/[email protected] None 0 111 kB awaterma
npm/[email protected] None 0 210 kB timothygu
npm/[email protected] None 0 36.3 kB philbooth
npm/[email protected] environment, filesystem, unsafe 0 203 kB jonaskello
npm/[email protected] None 0 34 kB typescript-bot
npm/[email protected] None 0 382 kB ajaff
npm/[email protected] None 0 21.2 kB gkz
npm/[email protected] None 0 42.1 kB chaijs
npm/[email protected] None 0 111 kB sindresorhus
npm/[email protected] None 0 18.5 kB dougwilson
npm/[email protected] None 0 8.84 kB feross
npm/[email protected] None 0 14.9 kB ljharb
npm/[email protected] None 0 5.01 kB google-wombot
npm/[email protected] None 0 5.05 kB google-wombot
npm/[email protected] None 0 25.7 kB google-wombot
npm/[email protected] None 0 5.98 kB google-wombot
npm/[email protected] None 0 2.88 kB sindresorhus
npm/[email protected] None 0 4.64 kB ryanzim
npm/[email protected] None 0 4.31 kB dougwilson
npm/[email protected] None 0 2.41 kB lakenen
npm/[email protected] None 0 34.3 kB anodynos
npm/[email protected] filesystem, shell 0 13.6 kB ai
npm/[email protected] None 0 533 kB garycourt
npm/[email protected] None 0 63 kB swaagie
npm/[email protected] None 0 5.48 kB tootallnate
npm/[email protected] None 0 14.8 kB ljharb
npm/[email protected] None 0 24.2 kB ariaminaei
npm/[email protected] None 0 3.72 kB jaredhanson
npm/[email protected] None 0 116 kB ctavan
npm/[email protected] filesystem, unsafe 0 43.9 kB oss-bot
npm/[email protected] None 0 8.75 kB dougwilson
npm/[email protected] None 0 16.8 kB timothygu
npm/[email protected] None 0 18 kB domenic
npm/[email protected] filesystem 0 5.8 kB daaku
npm/[email protected] None 0 9.47 kB berkeleytrue
npm/[email protected] environment, filesystem 0 56.9 kB sokra
npm/[email protected] None 0 20.9 kB indutny
npm/[email protected] None 0 25.9 kB domenic
npm/[email protected] filesystem 0 83.5 kB evilebottnawi
npm/[email protected] environment, network 0 602 kB evilebottnawi
npm/[email protected] filesystem 0 37.5 kB shellscape
npm/[email protected] environment, filesystem, network, unsafe 0 4.41 MB evilebottnawi

🚮 Removed packages: npm/@remix-run/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

Copy link

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSourceCI
Dynamic require npm/[email protected] 🚫
Uses eval npm/[email protected] 🚫
Uses eval npm/[email protected] 🚫
New author npm/[email protected] 🚫
Filesystem access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 12/15/2016, 10:00:35 PM
🚫
Filesystem access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 7/22/2016, 8:48:12 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 10/5/2013, 3:51:26 AM
🚫
Environment variable access npm/[email protected] 🚫
Trivial Package npm/[email protected] 🚫
Trivial Package npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 9/6/2016, 9:11:09 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 11/8/2018, 11:03:52 AM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/8/2018, 10:42:42 AM
🚫
Filesystem access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/30/2019, 12:53:23 PM
🚫
New author npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 5/23/2019, 1:36:45 PM
🚫
Environment variable access npm/[email protected] 🚫
Environment variable access npm/[email protected] 🚫
Filesystem access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/19/2018, 2:54:47 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/4/2015, 2:52:16 AM
🚫
Filesystem access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 6/12/2019, 6:10:21 PM
🚫
Deprecated npm/[email protected]
  • Reason: Use your platform's native performance.now() and performance.timeOrigin.
🚫
Unmaintained npm/[email protected]
  • Last Publish: 2/1/2018, 2:30:41 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/7/2019, 6:04:37 AM
🚫
Environment variable access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 10/7/2015, 6:37:40 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 2/19/2017, 2:28:49 PM
🚫
New author npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/9/2018, 9:49:47 AM
🚫
Debug access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 6/19/2019, 8:34:39 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 1/16/2017, 3:35:15 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 1/26/2018, 9:28:18 AM
🚫
Filesystem access npm/[email protected] 🚫
Filesystem access npm/[email protected] 🚫
Debug access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 5/28/2015, 8:31:04 AM
🚫
Filesystem access npm/[email protected] 🚫
Filesystem access npm/[email protected] 🚫
Trivial Package npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 1/18/2016, 2:53:56 AM
🚫
Network access npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/26/2019, 1:59:49 PM
🚫
New author npm/[email protected] 🚫
Unmaintained npm/[email protected]
  • Last Publish: 8/13/2016, 5:42:08 PM
🚫
Unmaintained npm/[email protected]
  • Last Publish: 4/25/2019, 3:16:05 AM
🚫
Environment variable access npm/[email protected] 🚫
Environment variable access npm/[email protected] 🚫
New author npm/[email protected] 🚫
Network access npm/[email protected] 🚫
Filesystem access npm/[email protected]
  • Module: fs
  • Location:

Copy link

@korbit-ai korbit-ai bot left a comment

Choose a reason for hiding this comment

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

I have reviewed your code and did not find any issues!


Please note that I can make mistakes, and you should still encourage your team to review your code as well.

Copy link

Infisical secrets check: ✅ No secrets leaked!

Scan results:

2:13AM INF scanning for exposed secrets...
2:13AM INF 216 commits scanned.
2:13AM INF scan completed in 886ms
2:13AM INF no leaks found

@guibranco guibranco merged commit d576f20 into main Jun 26, 2024
12 of 13 checks passed
@guibranco guibranco deleted the depfu/update/POCUploadStreamClientApp/npm/react-router-dom-6.24.0 branch June 26, 2024 02:13
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant