Skip to content

deps: bump @fontsource/fira-mono from 5.2.7 to 5.3.0 - #354

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/fontsource/fira-mono-5.3.0
Open

deps: bump @fontsource/fira-mono from 5.2.7 to 5.3.0#354
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/fontsource/fira-mono-5.3.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps @fontsource/fira-mono from 5.2.7 to 5.3.0.

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 [@fontsource/fira-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/fira-mono) from 5.2.7 to 5.3.0.
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/fira-mono)

---
updated-dependencies:
- dependency-name: "@fontsource/fira-mono"
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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:20am

@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

Copy link
Copy Markdown

Dependency Review

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

OpenSSF Scorecard

PackageVersionScoreDetails
npm/@fontsource/fira-mono 5.3.0 UnknownUnknown

Scanned Files

  • package-lock.json

@sonarqubecloud

Copy link
Copy Markdown

@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/settingsPreferences.test.js
PASS src/utils/proxyConfig.test.js
PASS src/utils/sanitize.test.js
  ● Console

    console.warn
      Prototype pollution attempt blocked. Rejected key: "__proto__"

    �[0m �[90m 44 |�[39m   �[36mfor�[39m (�[36mconst�[39m key �[36mof�[39m �[33mObject�[39m�[33m.�[39mkeys(obj)) {
     �[90m 45 |�[39m     �[36mif�[39m (�[33mDANGEROUS_KEYS�[39m�[33m.�[39mhas(key�[33m.�[39mtrim()�[33m.�[39mtoLowerCase())) {
    �[31m�[1m>�[22m�[39m�[90m 46 |�[39m       console�[33m.�[39mwarn(�[32m`Prototype pollution attempt blocked. Rejected ke

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