[PR #897] [CLOSED] Bump brace-expansion from 1.1.11 to 1.1.12 in /src/ElectronNET.WebApp/ElectronHostHook #1338

Open
opened 2026-01-29 16:59:45 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ElectronNET/Electron.NET/pull/897
Author: @dependabot[bot]
Created: 10/31/2025
Status: Closed

Base: developHead: dependabot/npm_and_yarn/src/ElectronNET.WebApp/ElectronHostHook/brace-expansion-1.1.12


📝 Commits (9)

  • ca74838 fix #647 process argv for open-file for win and linux
  • f7de17f fix #647 add initial Process class to ElectronNET.API
  • dc019ad #647 add to ElectronNET.API Process member interfaces for argv and type
  • c01ef40 fix #647 add to ElectronNET.API Process member interfaces for various fields
  • 8daf4d1 #647 update XML documentation to ElectronNET.API Process members
  • f9601a6 fix #647 make ProcessVersions Entity a record to ensure readonly access to props
  • 9a615ca Merge pull request #881 from hillin/reintroduce-#648
  • c2ba55e Merge branch 'develop'
  • 0b5dc72 Bump brace-expansion in /src/ElectronNET.WebApp/ElectronHostHook

📊 Changes

7 files changed (+333 additions, -6 deletions)

View changed files

📝 src/ElectronNET.API/API/Electron.cs (+5 -0)
src/ElectronNET.API/Process.cs (+185 -0)
src/ElectronNET.Host/api/process.js (+62 -0)
src/ElectronNET.Host/api/process.js.map (+1 -0)
src/ElectronNET.Host/api/process.ts (+73 -0)
📝 src/ElectronNET.Host/main.js (+1 -0)
📝 src/ElectronNET.WebApp/ElectronHostHook/package-lock.json (+6 -6)

📄 Description

Bumps brace-expansion from 1.1.11 to 1.1.12.

Release notes

Sourced from brace-expansion's releases.

v1.1.12

  • pkg: publish on tag 1.x c460dbd
  • fmt ccb8ac6
  • Fix potential ReDoS Vulnerability or Inefficient Regular Expression (#65) c3c73c8

https://github.com/juliangruber/brace-expansion/compare/v1.1.11...v1.1.12

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ElectronNET/Electron.NET/pull/897 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/31/2025 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `dependabot/npm_and_yarn/src/ElectronNET.WebApp/ElectronHostHook/brace-expansion-1.1.12` --- ### 📝 Commits (9) - [`ca74838`](https://github.com/ElectronNET/Electron.NET/commit/ca748384cfa341627ee59c704654c650f6df285c) fix #647 process argv for open-file for win and linux - [`f7de17f`](https://github.com/ElectronNET/Electron.NET/commit/f7de17f1ee53663a7eda00f081ff8590ba21561e) fix #647 add initial Process class to ElectronNET.API - [`dc019ad`](https://github.com/ElectronNET/Electron.NET/commit/dc019adb109345f31aa3926655ccacf0244b1acc) #647 add to ElectronNET.API Process member interfaces for argv and type - [`c01ef40`](https://github.com/ElectronNET/Electron.NET/commit/c01ef407afca1bea6024aa2985e91d0c5f6af294) fix #647 add to ElectronNET.API Process member interfaces for various fields - [`8daf4d1`](https://github.com/ElectronNET/Electron.NET/commit/8daf4d149801b24060735fb04dd12fa0aaac301f) #647 update XML documentation to ElectronNET.API Process members - [`f9601a6`](https://github.com/ElectronNET/Electron.NET/commit/f9601a6e3e7fb0d2c714088ded8bfc137d01a6bf) fix #647 make ProcessVersions Entity a record to ensure readonly access to props - [`9a615ca`](https://github.com/ElectronNET/Electron.NET/commit/9a615ca7e0d6d805ba82f3dbaa8c38e5c1bbf986) Merge pull request #881 from hillin/reintroduce-#648 - [`c2ba55e`](https://github.com/ElectronNET/Electron.NET/commit/c2ba55e333615eda1d4c5a68104de621f2bbcf2f) Merge branch 'develop' - [`0b5dc72`](https://github.com/ElectronNET/Electron.NET/commit/0b5dc720398f4b18c5011b0762a9db2dd3f31145) Bump brace-expansion in /src/ElectronNET.WebApp/ElectronHostHook ### 📊 Changes **7 files changed** (+333 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `src/ElectronNET.API/API/Electron.cs` (+5 -0) ➕ `src/ElectronNET.API/Process.cs` (+185 -0) ➕ `src/ElectronNET.Host/api/process.js` (+62 -0) ➕ `src/ElectronNET.Host/api/process.js.map` (+1 -0) ➕ `src/ElectronNET.Host/api/process.ts` (+73 -0) 📝 `src/ElectronNET.Host/main.js` (+1 -0) 📝 `src/ElectronNET.WebApp/ElectronHostHook/package-lock.json` (+6 -6) </details> ### 📄 Description Bumps [brace-expansion](https://github.com/juliangruber/brace-expansion) from 1.1.11 to 1.1.12. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/juliangruber/brace-expansion/releases">brace-expansion's releases</a>.</em></p> <blockquote> <h2>v1.1.12</h2> <ul> <li>pkg: publish on tag 1.x c460dbd</li> <li>fmt ccb8ac6</li> <li>Fix potential ReDoS Vulnerability or Inefficient Regular Expression (<a href="https://redirect.github.com/juliangruber/brace-expansion/issues/65">#65</a>) c3c73c8</li> </ul> <hr /> <p><a href="https://github.com/juliangruber/brace-expansion/compare/v1.1.11...v1.1.12">https://github.com/juliangruber/brace-expansion/compare/v1.1.11...v1.1.12</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/juliangruber/brace-expansion/commit/44f33b47c5c6a965d507421af43e86cf5971d711"><code>44f33b4</code></a> 1.1.12</li> <li><a href="https://github.com/juliangruber/brace-expansion/commit/c460dbd68e428d147b2080622d8ce126c7a08570"><code>c460dbd</code></a> pkg: publish on tag 1.x</li> <li><a href="https://github.com/juliangruber/brace-expansion/commit/ccb8ac6d4292b7661b677fe048ba6690c877f51f"><code>ccb8ac6</code></a> fmt</li> <li><a href="https://github.com/juliangruber/brace-expansion/commit/c3c73c8b088defc70851843be88ccc3af08e7217"><code>c3c73c8</code></a> Fix potential ReDoS Vulnerability or Inefficient Regular Expression (<a href="https://redirect.github.com/juliangruber/brace-expansion/issues/65">#65</a>)</li> <li>See full diff in <a href="https://github.com/juliangruber/brace-expansion/compare/1.1.11...v1.1.12">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=brace-expansion&package-manager=npm_and_yarn&previous-version=1.1.11&new-version=1.1.12)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/ElectronNET/Electron.NET/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 16:59:45 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Electron.NET#1338