Skip to content

Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group across 1 directory - #7

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm_and_yarn-0189ad7b96
Closed

Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group across 1 directory#7
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm_and_yarn-0189ad7b96

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 1, 2025

Copy link
Copy Markdown

Bumps the npm_and_yarn group with 1 update in the / directory: cross-spawn.

Updates cross-spawn from 7.0.3 to 7.0.6

Changelog

Sourced from cross-spawn's changelog.

7.0.6 (2024-11-18)

Bug Fixes

  • update cross-spawn version to 7.0.5 in package-lock.json (f700743)

7.0.5 (2024-11-07)

Bug Fixes

  • fix escaping bug introduced by backtracking (640d391)

7.0.4 (2024-11-07)

Bug Fixes

Commits
  • 77cd97f chore(release): 7.0.6
  • 6717de4 chore: upgrade standard-version
  • f700743 fix: update cross-spawn version to 7.0.5 in package-lock.json
  • 9a7e3b2 chore: fix build status badge
  • 0852683 chore(release): 7.0.5
  • 640d391 fix: fix escaping bug introduced by backtracking
  • bff0c87 chore: remove codecov
  • a7c6abc chore: replace travis with github workflows
  • 9b9246e chore(release): 7.0.4
  • 5ff3a07 fix: disable regexp backtracking (#160)
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the npm_and_yarn group with 1 update in the / directory: [cross-spawn](https://github.com/moxystudio/node-cross-spawn).


Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

---
updated-dependencies:
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

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

dependabot Bot commented on behalf of github Feb 1, 2025

Copy link
Copy Markdown
Author

Superseded by #8.

@dependabot dependabot Bot closed this Feb 1, 2025
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/npm_and_yarn-0189ad7b96 branch February 1, 2025 18:03
LoveAndCoding pushed a commit that referenced this pull request Jul 17, 2026
Addresses the remaining High findings + connection Mediums/Lows (all
verified real except one disproven; each revert-verified with tests):
- HIGH #4: parser/lexer/pipeline 'error' events now route through
  onPipelineError → controlled connection teardown (was uncaught →
  process crash; the amplifier behind the two parser-crash Criticals).
- HIGH #5: compression codec errors now force a real teardown via the
  socket close cascade (was a silent permanent wedge — connected stayed
  true, reads dead, writes fed a destroyed deflate).
- HIGH #6: STARTTLS/COMPRESS/UNAUTHENTICATE negotiations + CAPABILITY
  round trips bounded by a command timeout (ImapClientTimeouts.command
  is now actually wired through; was dead config) — a silent server no
  longer hangs connect() forever.
- HIGH #7: CommandQueue gained a stopped flag; add-after-stop rejects
  synchronously instead of parking forever (and can't dispatch a stale
  command against a reconnected socket); unauthenticate() got the
  missing !this.socket guard.
- HIGH #9: _logoutPromise cleared in the disconnected bridge — logout()
  after reconnect actually sends LOGOUT and tears down (was a stale
  resolved-promise no-op leaving a live authenticated connection).
- Capability epochs (I-2): connection-local registry invalidated on
  COMPRESS/UNAUTHENTICATE; new secureUpgrade event invalidates the
  client registry the instant STARTTLS succeeds.
- Also: implicit-TLS connect() re-entrancy guard; stale STARTTLS-swap
  error listener detached; boundary-injection split-write hardening
  (postBoundaryDiscard) + topology-surgery-throw guards that always
  release the queue; disconnect() awaits real socket close;
  authenticate()/logout() race maps to a typed StateError;
  decompression-bomb output cap (256 MiB); updates() iterator
  listener-leak on the CapabilityError join-reject path; replace.ts
  binary now gated on BINARY/IMAP4rev2; ALERT stray-space trust-marking
  bypass tightened; two throw-site server-text sanitizations.

Escape-hatch cleartext-credential bypass: doc-strengthened, not
functionally guarded (a real fix needs a CommandWriter-level
security-context plumb-through — architecturally significant, flagged
for follow-up). assertIn() dead-code finding DISPROVEN (it is live and
tested in state.ts). Negotiation FIN-detection: timeout bound judged
sufficient; instant-FIN reaction flagged as a larger follow-up.

Tests 2053 pass (+34 files), typecheck 0, eslint 0 errors, compliance
per-row identical (1138/6/2/451, problems []). The 22 raw compliance
vitest failures are pre-existing (8 adjudicated rows + 14 driver-env/
import-hygiene carry-forwards) — verified byte-identical with these
changes reverted.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jvj25KC7SRUFHsyTzswqsW
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants