Skip to content

noop#49

Closed
renovate[bot] wants to merge 147 commits into
mainfrom
renovate/ink-7.x
Closed

noop#49
renovate[bot] wants to merge 147 commits into
mainfrom
renovate/ink-7.x

Conversation

@renovate

@renovate renovate Bot commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
ink ^5.2.1^7.0.0 age confidence

Release Notes

vadimdemedes/ink (ink)

v7.1.0

Compare Source


v7.0.6

Compare Source

  • Fix stale frames on Windows when output exactly fills the terminal (#​971) 2c08d55

v7.0.5

Compare Source

  • Fix: Handle incomplete stack frames in error overview (#​965) b2350c1

v7.0.4

Compare Source

  • Fix: Share resize listener via emitLayoutListeners instead of per-hook listeners (#​952) 89d43d8
  • Fix: Remove useEffectEvent functions from useEffect dependency arrays (#​960) 9d534f7

v7.0.3

Compare Source

  • Fix: Drop stale <Static> output from fullStaticOutput on identity change (#​950) 669c438
  • Fix: <Static> remount via key change drops new items (#​948) be9f44c
  • Fix useBoxMetrics not accepting ref objects with an initial null value (#​945) 7c2267c

v7.0.2

Compare Source

  • Fix: Defer raw mode disable to prevent process hang on component swap dd052ea

v7.0.1

Compare Source

  • Fix: Restore useApp exit typing 42ddd40
  • Fix: Respect disableFocus() when handling Escape (#​937) cb66873

v7.0.0

Compare Source

Breaking
  • Require Node.js 22 19b5316
  • Require React 19.2+ cfaebbb
    • Ink now uses useEffectEvent internally to avoid re-subscribing input handlers on every render
  • Pressing Backspace now correctly sets key.backspace instead of key.delete (#​634) 321a2e8
    • Most terminals send the same byte for Backspace as the Delete key, which caused Ink to misreport it. If you were checking key.delete to handle backspace, switch to key.backspace
  • key.meta is no longer set to true when Escape is pressed e195912
    • Previously a backward-compat shim made plain Escape set both key.escape and key.meta. Now only key.escape is true. key.meta is reserved for actual Alt/Meta modifier combinations
New
Fixes
  • Fix incremental rendering for trailing newline (#​910) c32da0b
  • Fix useInput crash on unmapped key codes (#​902) 969a4f1
  • Fix CJK text truncation exceeding <Box> width b5f3e3a
  • Fix splitting wide characters (emoji, CJK) when overlapping writes occur (#​930) 06d53f4
  • Fix dangling staticNode reference (#​905) 0dc4dfa

Migration guide

key.backspace vs key.delete
// Before — physical backspace was reported as key.delete
useInput((input, key) => {
  if (key.delete) { /* was catching physical backspace key */ }
});

// After
useInput((input, key) => {
  if (key.backspace) { /* physical backspace key (0x7F) */ }
  if (key.delete)    { /* actual Delete key (e.g. Fn+Backspace) */ }
});
key.meta no longer set on plain Escape
// Before — key.meta was true for both Escape AND Alt+key
useInput((input, key) => {
  if (key.meta) { /* fired on plain Escape too */ }
});

// After — check key.escape explicitly for the Escape key
useInput((input, key) => {
  if (key.escape) { /* plain Escape */ }
  if (key.meta)   { /* Alt/Meta combos only */ }
});

v6.8.0

Compare Source

Improvements
  • Add renderToString() for synchronous string output (#​868) 0a0c549
  • Add support for react-devtools v7 (#​877) d633d7c
  • Allow exit() to pass a result value to waitUntilExit() 20b4a3d
  • Improve performance by caching some expensive calls (#​835) bd2f6a4
Fixes
  • Fix wrapping with nested Text (#​879) 1761c3a
  • Fix support for hyperlinks (#​871) 2bd1a74
  • Fix: Handle ended stdout during unmount 54c4e65
  • Fix duplicated <Static> output on exit 5815651
  • Fix dropped keypresses when multiple inputs arrive in one readable tick 4848547
  • Fix handling of colored output from child processes 9da2dfa

v6.7.0

Compare Source

Improvements
Fixes
  • Fix fullscreen trailing newline on initial render (#​856) 9b21b24
  • Fix MaxListenersExceededWarning when using many useInput hooks 390549d
  • Fix: Make unmount flush pending renders and await stdout drain (#​863) 5e35d73
  • Fix handling of Option+Return (soft return) on macOS (#​860) 12fe119

v6.6.0

Compare Source


v6.5.1

Compare Source


v6.5.0

Compare Source


v6.4.0

Compare Source


v6.3.1

Compare Source


v6.3.0

Compare Source


v6.2.3

Compare Source


v6.2.2

Compare Source


v6.2.1

Compare Source

  • Fix issue with screen reader mode re-rendering (#​747) e932f15
  • Fix inconsistent width handling for certain characters 557ed22

v6.2.0

Compare Source


v6.1.1

Compare Source


v6.1.0

Compare Source


v6.0.1

Compare Source

  • Fix a bug that causes static content to not be updated in time (#​723) 03872b2

v6.0.0

Compare Source

Breaking
Improvements
Fixes
  • Fix stale output when outputHeight changes from above stdout.rows to below stdout.rows (#​717) 8f2ad8f


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 3am"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/ink-7.x branch from bb4f640 to 78606b4 Compare June 28, 2026 15:12
@renovate renovate Bot force-pushed the renovate/ink-7.x branch from 78606b4 to d7b15c4 Compare June 28, 2026 17:10
@renovate renovate Bot force-pushed the renovate/ink-7.x branch from d7b15c4 to e309b91 Compare June 29, 2026 18:34
@renovate renovate Bot force-pushed the renovate/ink-7.x branch from e309b91 to 75d356d Compare June 29, 2026 22:55
@renovate renovate Bot force-pushed the renovate/ink-7.x branch from 75d356d to 8023c03 Compare July 1, 2026 20:46
@renovate renovate Bot changed the title fix(deps): update dependency ink to v7 fix(deps): update dependency ink to v7 - abandoned Jul 9, 2026
@renovate

renovate Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor Author

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@airscripts airscripts closed this Jul 9, 2026
@airscripts airscripts changed the title fix(deps): update dependency ink to v7 - abandoned noop Jul 9, 2026
@airscripts airscripts deleted the renovate/ink-7.x branch July 9, 2026 22:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants