Skip to content

deps: bump react from 19.2.7 to 19.2.8 - #359

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/react-19.2.8
Open

deps: bump react from 19.2.7 to 19.2.8#359
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/react-19.2.8

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps react from 19.2.7 to 19.2.8.

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [react](https://github.com/react/react/tree/HEAD/packages/react) from 19.2.7 to 19.2.8.
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

---
updated-dependencies:
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 10, 2026
@vercel

vercel Bot commented Aug 10, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
care-sync Error Error Aug 10, 2026 11:25am

@sonarqubecloud

Copy link
Copy Markdown

@github-actions

Copy link
Copy Markdown

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails
npm/react 19.2.8 UnknownUnknown

Scanned Files

  • package-lock.json

@github-actions

Copy link
Copy Markdown

🎉 Thank you for submitting a Pull Request to CareSync!

We appreciate your contribution.

Before review, please ensure:

✅ Your branch is up to date with the latest main branch
✅ Code follows project conventions
✅ Changes are focused and relevant
✅ Documentation is updated if necessary
✅ The application builds successfully

A maintainer will review your contribution soon.

Thank you for helping make CareSync better! 🚀

@github-actions
github-actions Bot requested a review from vallabhatech August 10, 2026 11:17
@github-actions

Copy link
Copy Markdown

🤖 CI Pipeline Results

Check Status
ESLint ❌ Failed
TypeScript ❌ Failed
Tests ❌ Failed
📋 ESLint Output
> caresync-web@0.1.0 lint
> eslint "src/**/*.{js,jsx,ts,tsx}" "server/**/*.{js,jsx}"


Oops! Something went wrong! :(

ESLint: 10.6.0

ESLint couldn't find an eslint.config.(js|mjs|cjs) file.

From ESLint v9.0.0, the default configuration file is now eslint.config.js.
If you are using a .eslintrc.* file, please follow the migration guide
to update your configuration file to the new format:

https://eslint.org/docs/latest/use/configure/migration-guide

If you still have problems after following the migration guide, please stop by
https://eslint.org/chat/help to chat with the team.
🔷 TypeScript Output
Version 6.0.3
tsc: The TypeScript Compiler - Version 6.0.3

COMMON COMMANDS

  tsc
  Compiles the current project (tsconfig.json in the working directory.)

  tsc app.ts util.ts
  Ignoring tsconfig.json, compiles the specified files with default compiler options.

  tsc -b
  Build a composite project in the working directory.

  tsc --init
  Creates a tsconfig.json with the recommended settings in the working directory.

  tsc -p ./path/to/tsconfig.json
  Compiles the TypeScript project located at the specified path.

  tsc --help --all
  An expanded version of this information, showing all possible compiler options

  tsc --noEmit
  tsc --target esnext
  Compiles the current project, with additional settings.

COMMAND LINE FLAGS

--help, -h
Print this message.

--watch, -w
Watch input files.

--all
Show all compiler options.

--version, -v
Print the compiler's version.

--init
Initializes a TypeScript project and creates a tsconfig.json file.

--project, -p
Compile the project given the path to its configuration file, or to a folder with a 'tsconfig.json'.

--showConfig
Print the final configuration instead of building.

--ignoreConfig
Ignore the tsconfig found and build with commandline options and files.

--build, -b
Build one or more projects and their dependencies, if out of date

COMMON COMPILER OPTIONS

--pretty
Enable color and formatting in TypeScript's output to make compiler errors easier to read.
type: boolean
default: true

--declaration, -d
Generate .d.ts files 
🧪 Test Output
> caresync-web@0.1.0 test
> react-app-rewired test --coverage --ci

PASS src/utils/notifications.test.js
  ● Console

    console.warn
      This browser does not support notifications.

    �[0m �[90m 50 |�[39m �[36mexport�[39m �[36masync�[39m �[36mfunction�[39m requestNotificationPermission() {
     �[90m 51 |�[39m   �[36mif�[39m (�[36mtypeof�[39m window �[33m===�[39m �[32m'undefined'�[39m �[33m||�[39m �[33m!�[39m(�[32m'Notification'�[39m �[36min�[39m window)) {
    �[31m�[1m>�[22m�[39m�[90m 52 |�[39m     console�[33m.�[39mwarn(�[32m'This browser does not support notifications.'�[39m)�[33m;�[39m
     �[90m    |�[39m             �[31m�[1m^�[22m�[39m
     �[90m 53 |�[39m     �[36mreturn�[39m �[32m'denied'�[39m�[33m;�[39m
     �[90m 54 |�[39m   }
     �[90m 55 |�[39m�[0m

      at requestNotificationPermission (src/utils/notifications.js:52:13)
      at Object.<anonymous> (src/utils/notifications.test.js:57:55)

PASS src/utils/proxyConfig.test.js
PASS src/utils/settingsPreferences.test.js
FAIL src/components/Navbar.test.jsx
  ● Test suite failed to run

    Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:
      - react:      19.2.8
      - react-dom:  19.2.7
    Learn more: https://react.dev/warnings/version-mismatch

    �[0m �[90m 1 |�[39m �[36mimport�[39m �[33mReact�[39m �[36mfrom�[39m �[32m'react'�[39m�[33m;�[39m
    �[31m�[1m>�[22m�[39m�[90m 2 |�[39m �[36mimport�[39m { fireEvent�[33m,�[39m render�[33m,�[39m s

Automated feedback by CareSync CI — fix any issues above before requesting review.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ELUSOC

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants