Skip to content

Fix code scanning alert no. 108: Incomplete string escaping or encoding#1778

Closed
robfrank wants to merge 1 commit into
mainfrom
alert-autofix-108
Closed

Fix code scanning alert no. 108: Incomplete string escaping or encoding#1778
robfrank wants to merge 1 commit into
mainfrom
alert-autofix-108

Conversation

@robfrank
Copy link
Copy Markdown
Collaborator

Fixes https://github.com/ArcadeData/arcadedb/security/code-scanning/108

To fix the problem, we need to ensure that all occurrences of the double-quote character (") are replaced, not just the first one. This can be achieved by using a regular expression with the global flag (g). This change will ensure that every instance of the double-quote character in the string is replaced, thus providing complete escaping.

  • Modify the replace method call on line 4025 to use a regular expression with the global flag.
  • No additional imports or dependencies are required for this change.

Suggested fixes powered by Copilot Autofix. Review carefully before merging.

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
@robfrank robfrank requested a review from lvca October 19, 2024 15:57
@robfrank robfrank added this to the 24.11.1 milestone Oct 19, 2024
@robfrank robfrank added the enhancement New feature or request label Oct 19, 2024
@robfrank robfrank marked this pull request as ready for review October 19, 2024 15:57
}

return word.replace('"', "");
return word.replace(/"/g, "");
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are you patching jQuery data tables in our code base?

@robfrank robfrank closed this Oct 20, 2024
@robfrank robfrank deleted the alert-autofix-108 branch June 20, 2025 07:41
mergify Bot added a commit that referenced this pull request May 10, 2026
Bumps `jline.version` from 4.0.14 to 4.1.0.
Updates `org.jline:jline-terminal` from 4.0.14 to 4.1.0
Release notes

*Sourced from [org.jline:jline-terminal's releases](https://github.com/jline/jline3/releases).*

> JLine 4.1.0
> -----------
>
> JLine 4.1 is the first minor release of the 4.x series, bringing new features, significant performance improvements, internal refactoring, and many bug fixes across terminal handling, encoding, and platform support.
>
> Highlights include streaming pipes with concurrent pipeline execution, a new `Sized` interface for uniform terminal size access, optimized display rendering with direct byte buffers, modernized signal handling via Panama FFM `sigaction()`, and a comprehensive overhaul of termios constant mappings across all supported platforms.
>
> 🚀 New features and improvements
> -------------------------------
>
> * refactor: introduce Sized interface and Size.of() factory methods ([#1731](https://redirect.github.com/jline/jline3/pull/1731)) [`@​Elec332`](https://github.com/Elec332)
> * feat: Added UnknownCommandException for Shell module ([#1780](https://redirect.github.com/jline/jline3/pull/1780)) [`@​Elec332`](https://github.com/Elec332)
> * feat: bulk read for NonBlockingPumpInputStream ([#1778](https://redirect.github.com/jline/jline3/pull/1778)) [`@​gnodet`](https://github.com/gnodet)
> * feat: add filterable(boolean) option to list and checkbox prompts ([#1784](https://redirect.github.com/jline/jline3/pull/1784)) [`@​ingokegel`](https://github.com/ingokegel)
> * refactor: Deduplicate AttributedCharSequence#emitStyleChange. ([#1788](https://redirect.github.com/jline/jline3/pull/1788)) [`@​Elec332`](https://github.com/Elec332)
> * perf: optimize Display.update for minimal allocation and output bytes ([#1785](https://redirect.github.com/jline/jline3/pull/1785)) [`@​gnodet`](https://github.com/gnodet)
> * feat: streaming pipes with concurrent pipeline execution ([#1777](https://redirect.github.com/jline/jline3/pull/1777)) [`@​gnodet`](https://github.com/gnodet)
> * feat: optimize output rendering with direct byte buffer ([#1749](https://redirect.github.com/jline/jline3/pull/1749)) [`@​gnodet`](https://github.com/gnodet)
> * feat: modernize signal handling via Panama FFM sigaction() ([#1750](https://redirect.github.com/jline/jline3/pull/1750)) [`@​gnodet`](https://github.com/gnodet)
> * feat: Add /dev/tty fallback for terminals with piped streams ([#1728](https://redirect.github.com/jline/jline3/pull/1728)) [`@​gnodet`](https://github.com/gnodet)
>
> 🐛 Bug Fixes
> -----------
>
> * Fix status bar duplication after vertical resize ([#1860](https://redirect.github.com/jline/jline3/pull/1860)) [`@​Abdelilah-AIT-HAMOU`](https://github.com/Abdelilah-AIT-HAMOU)
> * fix: remove proactive isNativeAccessEnabled() checks from terminal providers ([#1859](https://redirect.github.com/jline/jline3/pull/1859)) [`@​gnodet`](https://github.com/gnodet)
> * fix: prevent DA response bytes from leaking to parent shell ([#1856](https://redirect.github.com/jline/jline3/issues/1856)) ([#1857](https://redirect.github.com/jline/jline3/pull/1857)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct inverted bounds check in readBuffered methods ([#1853](https://redirect.github.com/jline/jline3/pull/1853)) [`@​gnodet`](https://github.com/gnodet)
> * fix: wire up unmapped termios constants in JNI and FFM providers ([#1838](https://redirect.github.com/jline/jline3/pull/1838)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct Solaris termios constants from octal to proper hex ([#1837](https://redirect.github.com/jline/jline3/pull/1837)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct FreeBSD PENDIN and NOFLSH termios constants ([#1834](https://redirect.github.com/jline/jline3/pull/1834)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct Linux PENDIN termios constant ([#1835](https://redirect.github.com/jline/jline3/pull/1835)) [`@​gnodet`](https://github.com/gnodet)
> * fix: add missing CDTR\_IFLOW readback in OsX toAttributes ([#1836](https://redirect.github.com/jline/jline3/pull/1836)) [`@​gnodet`](https://github.com/gnodet)
> * fix: replace Thread.sleep() with synchronization in TmuxEncodingTest ([#1827](https://redirect.github.com/jline/jline3/pull/1827)) [`@​gnodet`](https://github.com/gnodet)
> * fix: add VT100 response feedback to SwingTerminal and WebTerminal ([#1824](https://redirect.github.com/jline/jline3/pull/1824)) [`@​gnodet`](https://github.com/gnodet)
> * fix: use console encoding instead of default charset in Tmux ([#1826](https://redirect.github.com/jline/jline3/pull/1826)) [`@​gnodet`](https://github.com/gnodet)
> * fix: tail -n counts lines correctly when input lacks trailing newline (fixes [#1787](https://redirect.github.com/jline/jline3/issues/1787)) ([#1823](https://redirect.github.com/jline/jline3/pull/1823)) [`@​gnodet`](https://github.com/gnodet)
> * fix: use terminal encoding instead of default charset in VirtualTerminal (fixes [#1821](https://redirect.github.com/jline/jline3/issues/1821)) ([#1822](https://redirect.github.com/jline/jline3/pull/1822)) [`@​gnodet`](https://github.com/gnodet)
> * fix: close terminal in PromptBuilderTest to prevent resource leak (fixes [#1810](https://redirect.github.com/jline/jline3/issues/1810)) ([#1820](https://redirect.github.com/jline/jline3/pull/1820)) [`@​gnodet`](https://github.com/gnodet)
> * fix: resolve redirect targets against session working directory ([#1781](https://redirect.github.com/jline/jline3/pull/1781)) [`@​gnodet`](https://github.com/gnodet)
> * fix: erase probe emoji after grapheme cluster width detection (fixes [#1801](https://redirect.github.com/jline/jline3/issues/1801)) ([#1770](https://redirect.github.com/jline/jline3/pull/1770)) [`@​ingokegel`](https://github.com/ingokegel)
> * fix: close PTY streams before shutdown to prevent hang on macOS (fixes [#1808](https://redirect.github.com/jline/jline3/issues/1808)) ([#1817](https://redirect.github.com/jline/jline3/pull/1817)) [`@​gnodet`](https://github.com/gnodet)
> * fix: register all FFM foreign function signatures for GraalVM native-image ([#1802](https://redirect.github.com/jline/jline3/pull/1802)) [`@​gnodet`](https://github.com/gnodet)
> * fix: close terminals properly in tests (fixes [#1806](https://redirect.github.com/jline/jline3/issues/1806)) ([#1814](https://redirect.github.com/jline/jline3/pull/1814)) [`@​gnodet`](https://github.com/gnodet)
> * fix: deprecate SwingTerminal.dispose() in favor of close() (fixes [#1805](https://redirect.github.com/jline/jline3/issues/1805)) ([#1811](https://redirect.github.com/jline/jline3/pull/1811)) [`@​gnodet`](https://github.com/gnodet)
> * fix: avoid NPE when closing terminal with null masterOutput ([#1813](https://redirect.github.com/jline/jline3/pull/1813)) [`@​gnodet`](https://github.com/gnodet)
> * fix: Fix AttributedStyle color chaining ([#1792](https://redirect.github.com/jline/jline3/pull/1792)) [`@​Elec332`](https://github.com/Elec332)
> * fix: remove spurious (short) casts in Size setters ([#1791](https://redirect.github.com/jline/jline3/pull/1791)) [`@​gnodet`](https://github.com/gnodet)
> * fix: move Terminal parameter to first position in columnSubSequence and columnSplitLength ([#1790](https://redirect.github.com/jline/jline3/pull/1790)) [`@​gnodet`](https://github.com/gnodet)
> * fix: compiler error in ScreenTerminal.dump() ([#1773](https://redirect.github.com/jline/jline3/pull/1773)) [`@​Elec332`](https://github.com/Elec332)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump actions/upload-pages-artifact from 4 to 5 ([#1783](https://redirect.github.com/jline/jline3/pull/1783)) @[dependabot[bot]](https://github.com/apps/dependabot)

... (truncated)


Commits

* [`bdec53e`](jline/jline3@bdec53e) chore: fix release-drafter config for 4.x branches
* [`2af04cf`](jline/jline3@2af04cf) refactor: introduce Sized interface and Size.of() factory methods ([#1731](https://redirect.github.com/jline/jline3/issues/1731))
* [`5ef0aab`](jline/jline3@5ef0aab) fix: status bar duplication after vertical resize ([#1860](https://redirect.github.com/jline/jline3/issues/1860))
* [`6141618`](jline/jline3@6141618) fix: remove proactive isNativeAccessEnabled() checks from terminal providers ...
* [`7818927`](jline/jline3@7818927) refactor: unify terminal probe response handling
* [`8a6a1d3`](jline/jline3@8a6a1d3) fix: prevent DA response bytes from leaking to parent shell ([#1856](https://redirect.github.com/jline/jline3/issues/1856))
* [`0d19e52`](jline/jline3@0d19e52) - Added UnknownCommandException ([#1780](https://redirect.github.com/jline/jline3/issues/1780))
* [`0703cc0`](jline/jline3@0703cc0) feat: bulk read(byte[], int, int) for NonBlockingPumpInputStream ([#1776](https://redirect.github.com/jline/jline3/issues/1776))
* [`8325740`](jline/jline3@8325740) fix: use maven.multiModuleProjectDirectory for test-jar path
* [`b2e362a`](jline/jline3@b2e362a) fix: deduplicate ReaderTestSupport between reader and builtins ([#1807](https://redirect.github.com/jline/jline3/issues/1807))
* Additional commits viewable in [compare view](jline/jline3@4.0.14...4.1.0)
  
Updates `org.jline:jline-reader` from 4.0.14 to 4.1.0
Release notes

*Sourced from [org.jline:jline-reader's releases](https://github.com/jline/jline3/releases).*

> JLine 4.1.0
> -----------
>
> JLine 4.1 is the first minor release of the 4.x series, bringing new features, significant performance improvements, internal refactoring, and many bug fixes across terminal handling, encoding, and platform support.
>
> Highlights include streaming pipes with concurrent pipeline execution, a new `Sized` interface for uniform terminal size access, optimized display rendering with direct byte buffers, modernized signal handling via Panama FFM `sigaction()`, and a comprehensive overhaul of termios constant mappings across all supported platforms.
>
> 🚀 New features and improvements
> -------------------------------
>
> * refactor: introduce Sized interface and Size.of() factory methods ([#1731](https://redirect.github.com/jline/jline3/pull/1731)) [`@​Elec332`](https://github.com/Elec332)
> * feat: Added UnknownCommandException for Shell module ([#1780](https://redirect.github.com/jline/jline3/pull/1780)) [`@​Elec332`](https://github.com/Elec332)
> * feat: bulk read for NonBlockingPumpInputStream ([#1778](https://redirect.github.com/jline/jline3/pull/1778)) [`@​gnodet`](https://github.com/gnodet)
> * feat: add filterable(boolean) option to list and checkbox prompts ([#1784](https://redirect.github.com/jline/jline3/pull/1784)) [`@​ingokegel`](https://github.com/ingokegel)
> * refactor: Deduplicate AttributedCharSequence#emitStyleChange. ([#1788](https://redirect.github.com/jline/jline3/pull/1788)) [`@​Elec332`](https://github.com/Elec332)
> * perf: optimize Display.update for minimal allocation and output bytes ([#1785](https://redirect.github.com/jline/jline3/pull/1785)) [`@​gnodet`](https://github.com/gnodet)
> * feat: streaming pipes with concurrent pipeline execution ([#1777](https://redirect.github.com/jline/jline3/pull/1777)) [`@​gnodet`](https://github.com/gnodet)
> * feat: optimize output rendering with direct byte buffer ([#1749](https://redirect.github.com/jline/jline3/pull/1749)) [`@​gnodet`](https://github.com/gnodet)
> * feat: modernize signal handling via Panama FFM sigaction() ([#1750](https://redirect.github.com/jline/jline3/pull/1750)) [`@​gnodet`](https://github.com/gnodet)
> * feat: Add /dev/tty fallback for terminals with piped streams ([#1728](https://redirect.github.com/jline/jline3/pull/1728)) [`@​gnodet`](https://github.com/gnodet)
>
> 🐛 Bug Fixes
> -----------
>
> * Fix status bar duplication after vertical resize ([#1860](https://redirect.github.com/jline/jline3/pull/1860)) [`@​Abdelilah-AIT-HAMOU`](https://github.com/Abdelilah-AIT-HAMOU)
> * fix: remove proactive isNativeAccessEnabled() checks from terminal providers ([#1859](https://redirect.github.com/jline/jline3/pull/1859)) [`@​gnodet`](https://github.com/gnodet)
> * fix: prevent DA response bytes from leaking to parent shell ([#1856](https://redirect.github.com/jline/jline3/issues/1856)) ([#1857](https://redirect.github.com/jline/jline3/pull/1857)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct inverted bounds check in readBuffered methods ([#1853](https://redirect.github.com/jline/jline3/pull/1853)) [`@​gnodet`](https://github.com/gnodet)
> * fix: wire up unmapped termios constants in JNI and FFM providers ([#1838](https://redirect.github.com/jline/jline3/pull/1838)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct Solaris termios constants from octal to proper hex ([#1837](https://redirect.github.com/jline/jline3/pull/1837)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct FreeBSD PENDIN and NOFLSH termios constants ([#1834](https://redirect.github.com/jline/jline3/pull/1834)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct Linux PENDIN termios constant ([#1835](https://redirect.github.com/jline/jline3/pull/1835)) [`@​gnodet`](https://github.com/gnodet)
> * fix: add missing CDTR\_IFLOW readback in OsX toAttributes ([#1836](https://redirect.github.com/jline/jline3/pull/1836)) [`@​gnodet`](https://github.com/gnodet)
> * fix: replace Thread.sleep() with synchronization in TmuxEncodingTest ([#1827](https://redirect.github.com/jline/jline3/pull/1827)) [`@​gnodet`](https://github.com/gnodet)
> * fix: add VT100 response feedback to SwingTerminal and WebTerminal ([#1824](https://redirect.github.com/jline/jline3/pull/1824)) [`@​gnodet`](https://github.com/gnodet)
> * fix: use console encoding instead of default charset in Tmux ([#1826](https://redirect.github.com/jline/jline3/pull/1826)) [`@​gnodet`](https://github.com/gnodet)
> * fix: tail -n counts lines correctly when input lacks trailing newline (fixes [#1787](https://redirect.github.com/jline/jline3/issues/1787)) ([#1823](https://redirect.github.com/jline/jline3/pull/1823)) [`@​gnodet`](https://github.com/gnodet)
> * fix: use terminal encoding instead of default charset in VirtualTerminal (fixes [#1821](https://redirect.github.com/jline/jline3/issues/1821)) ([#1822](https://redirect.github.com/jline/jline3/pull/1822)) [`@​gnodet`](https://github.com/gnodet)
> * fix: close terminal in PromptBuilderTest to prevent resource leak (fixes [#1810](https://redirect.github.com/jline/jline3/issues/1810)) ([#1820](https://redirect.github.com/jline/jline3/pull/1820)) [`@​gnodet`](https://github.com/gnodet)
> * fix: resolve redirect targets against session working directory ([#1781](https://redirect.github.com/jline/jline3/pull/1781)) [`@​gnodet`](https://github.com/gnodet)
> * fix: erase probe emoji after grapheme cluster width detection (fixes [#1801](https://redirect.github.com/jline/jline3/issues/1801)) ([#1770](https://redirect.github.com/jline/jline3/pull/1770)) [`@​ingokegel`](https://github.com/ingokegel)
> * fix: close PTY streams before shutdown to prevent hang on macOS (fixes [#1808](https://redirect.github.com/jline/jline3/issues/1808)) ([#1817](https://redirect.github.com/jline/jline3/pull/1817)) [`@​gnodet`](https://github.com/gnodet)
> * fix: register all FFM foreign function signatures for GraalVM native-image ([#1802](https://redirect.github.com/jline/jline3/pull/1802)) [`@​gnodet`](https://github.com/gnodet)
> * fix: close terminals properly in tests (fixes [#1806](https://redirect.github.com/jline/jline3/issues/1806)) ([#1814](https://redirect.github.com/jline/jline3/pull/1814)) [`@​gnodet`](https://github.com/gnodet)
> * fix: deprecate SwingTerminal.dispose() in favor of close() (fixes [#1805](https://redirect.github.com/jline/jline3/issues/1805)) ([#1811](https://redirect.github.com/jline/jline3/pull/1811)) [`@​gnodet`](https://github.com/gnodet)
> * fix: avoid NPE when closing terminal with null masterOutput ([#1813](https://redirect.github.com/jline/jline3/pull/1813)) [`@​gnodet`](https://github.com/gnodet)
> * fix: Fix AttributedStyle color chaining ([#1792](https://redirect.github.com/jline/jline3/pull/1792)) [`@​Elec332`](https://github.com/Elec332)
> * fix: remove spurious (short) casts in Size setters ([#1791](https://redirect.github.com/jline/jline3/pull/1791)) [`@​gnodet`](https://github.com/gnodet)
> * fix: move Terminal parameter to first position in columnSubSequence and columnSplitLength ([#1790](https://redirect.github.com/jline/jline3/pull/1790)) [`@​gnodet`](https://github.com/gnodet)
> * fix: compiler error in ScreenTerminal.dump() ([#1773](https://redirect.github.com/jline/jline3/pull/1773)) [`@​Elec332`](https://github.com/Elec332)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump actions/upload-pages-artifact from 4 to 5 ([#1783](https://redirect.github.com/jline/jline3/pull/1783)) @[dependabot[bot]](https://github.com/apps/dependabot)

... (truncated)


Commits

* [`bdec53e`](jline/jline3@bdec53e) chore: fix release-drafter config for 4.x branches
* [`2af04cf`](jline/jline3@2af04cf) refactor: introduce Sized interface and Size.of() factory methods ([#1731](https://redirect.github.com/jline/jline3/issues/1731))
* [`5ef0aab`](jline/jline3@5ef0aab) fix: status bar duplication after vertical resize ([#1860](https://redirect.github.com/jline/jline3/issues/1860))
* [`6141618`](jline/jline3@6141618) fix: remove proactive isNativeAccessEnabled() checks from terminal providers ...
* [`7818927`](jline/jline3@7818927) refactor: unify terminal probe response handling
* [`8a6a1d3`](jline/jline3@8a6a1d3) fix: prevent DA response bytes from leaking to parent shell ([#1856](https://redirect.github.com/jline/jline3/issues/1856))
* [`0d19e52`](jline/jline3@0d19e52) - Added UnknownCommandException ([#1780](https://redirect.github.com/jline/jline3/issues/1780))
* [`0703cc0`](jline/jline3@0703cc0) feat: bulk read(byte[], int, int) for NonBlockingPumpInputStream ([#1776](https://redirect.github.com/jline/jline3/issues/1776))
* [`8325740`](jline/jline3@8325740) fix: use maven.multiModuleProjectDirectory for test-jar path
* [`b2e362a`](jline/jline3@b2e362a) fix: deduplicate ReaderTestSupport between reader and builtins ([#1807](https://redirect.github.com/jline/jline3/issues/1807))
* Additional commits viewable in [compare view](jline/jline3@4.0.14...4.1.0)
  
Updates `org.jline:jline-terminal-jni` from 4.0.14 to 4.1.0
Release notes

*Sourced from [org.jline:jline-terminal-jni's releases](https://github.com/jline/jline3/releases).*

> JLine 4.1.0
> -----------
>
> JLine 4.1 is the first minor release of the 4.x series, bringing new features, significant performance improvements, internal refactoring, and many bug fixes across terminal handling, encoding, and platform support.
>
> Highlights include streaming pipes with concurrent pipeline execution, a new `Sized` interface for uniform terminal size access, optimized display rendering with direct byte buffers, modernized signal handling via Panama FFM `sigaction()`, and a comprehensive overhaul of termios constant mappings across all supported platforms.
>
> 🚀 New features and improvements
> -------------------------------
>
> * refactor: introduce Sized interface and Size.of() factory methods ([#1731](https://redirect.github.com/jline/jline3/pull/1731)) [`@​Elec332`](https://github.com/Elec332)
> * feat: Added UnknownCommandException for Shell module ([#1780](https://redirect.github.com/jline/jline3/pull/1780)) [`@​Elec332`](https://github.com/Elec332)
> * feat: bulk read for NonBlockingPumpInputStream ([#1778](https://redirect.github.com/jline/jline3/pull/1778)) [`@​gnodet`](https://github.com/gnodet)
> * feat: add filterable(boolean) option to list and checkbox prompts ([#1784](https://redirect.github.com/jline/jline3/pull/1784)) [`@​ingokegel`](https://github.com/ingokegel)
> * refactor: Deduplicate AttributedCharSequence#emitStyleChange. ([#1788](https://redirect.github.com/jline/jline3/pull/1788)) [`@​Elec332`](https://github.com/Elec332)
> * perf: optimize Display.update for minimal allocation and output bytes ([#1785](https://redirect.github.com/jline/jline3/pull/1785)) [`@​gnodet`](https://github.com/gnodet)
> * feat: streaming pipes with concurrent pipeline execution ([#1777](https://redirect.github.com/jline/jline3/pull/1777)) [`@​gnodet`](https://github.com/gnodet)
> * feat: optimize output rendering with direct byte buffer ([#1749](https://redirect.github.com/jline/jline3/pull/1749)) [`@​gnodet`](https://github.com/gnodet)
> * feat: modernize signal handling via Panama FFM sigaction() ([#1750](https://redirect.github.com/jline/jline3/pull/1750)) [`@​gnodet`](https://github.com/gnodet)
> * feat: Add /dev/tty fallback for terminals with piped streams ([#1728](https://redirect.github.com/jline/jline3/pull/1728)) [`@​gnodet`](https://github.com/gnodet)
>
> 🐛 Bug Fixes
> -----------
>
> * Fix status bar duplication after vertical resize ([#1860](https://redirect.github.com/jline/jline3/pull/1860)) [`@​Abdelilah-AIT-HAMOU`](https://github.com/Abdelilah-AIT-HAMOU)
> * fix: remove proactive isNativeAccessEnabled() checks from terminal providers ([#1859](https://redirect.github.com/jline/jline3/pull/1859)) [`@​gnodet`](https://github.com/gnodet)
> * fix: prevent DA response bytes from leaking to parent shell ([#1856](https://redirect.github.com/jline/jline3/issues/1856)) ([#1857](https://redirect.github.com/jline/jline3/pull/1857)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct inverted bounds check in readBuffered methods ([#1853](https://redirect.github.com/jline/jline3/pull/1853)) [`@​gnodet`](https://github.com/gnodet)
> * fix: wire up unmapped termios constants in JNI and FFM providers ([#1838](https://redirect.github.com/jline/jline3/pull/1838)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct Solaris termios constants from octal to proper hex ([#1837](https://redirect.github.com/jline/jline3/pull/1837)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct FreeBSD PENDIN and NOFLSH termios constants ([#1834](https://redirect.github.com/jline/jline3/pull/1834)) [`@​gnodet`](https://github.com/gnodet)
> * fix: correct Linux PENDIN termios constant ([#1835](https://redirect.github.com/jline/jline3/pull/1835)) [`@​gnodet`](https://github.com/gnodet)
> * fix: add missing CDTR\_IFLOW readback in OsX toAttributes ([#1836](https://redirect.github.com/jline/jline3/pull/1836)) [`@​gnodet`](https://github.com/gnodet)
> * fix: replace Thread.sleep() with synchronization in TmuxEncodingTest ([#1827](https://redirect.github.com/jline/jline3/pull/1827)) [`@​gnodet`](https://github.com/gnodet)
> * fix: add VT100 response feedback to SwingTerminal and WebTerminal ([#1824](https://redirect.github.com/jline/jline3/pull/1824)) [`@​gnodet`](https://github.com/gnodet)
> * fix: use console encoding instead of default charset in Tmux ([#1826](https://redirect.github.com/jline/jline3/pull/1826)) [`@​gnodet`](https://github.com/gnodet)
> * fix: tail -n counts lines correctly when input lacks trailing newline (fixes [#1787](https://redirect.github.com/jline/jline3/issues/1787)) ([#1823](https://redirect.github.com/jline/jline3/pull/1823)) [`@​gnodet`](https://github.com/gnodet)
> * fix: use terminal encoding instead of default charset in VirtualTerminal (fixes [#1821](https://redirect.github.com/jline/jline3/issues/1821)) ([#1822](https://redirect.github.com/jline/jline3/pull/1822)) [`@​gnodet`](https://github.com/gnodet)
> * fix: close terminal in PromptBuilderTest to prevent resource leak (fixes [#1810](https://redirect.github.com/jline/jline3/issues/1810)) ([#1820](https://redirect.github.com/jline/jline3/pull/1820)) [`@​gnodet`](https://github.com/gnodet)
> * fix: resolve redirect targets against session working directory ([#1781](https://redirect.github.com/jline/jline3/pull/1781)) [`@​gnodet`](https://github.com/gnodet)
> * fix: erase probe emoji after grapheme cluster width detection (fixes [#1801](https://redirect.github.com/jline/jline3/issues/1801)) ([#1770](https://redirect.github.com/jline/jline3/pull/1770)) [`@​ingokegel`](https://github.com/ingokegel)
> * fix: close PTY streams before shutdown to prevent hang on macOS (fixes [#1808](https://redirect.github.com/jline/jline3/issues/1808)) ([#1817](https://redirect.github.com/jline/jline3/pull/1817)) [`@​gnodet`](https://github.com/gnodet)
> * fix: register all FFM foreign function signatures for GraalVM native-image ([#1802](https://redirect.github.com/jline/jline3/pull/1802)) [`@​gnodet`](https://github.com/gnodet)
> * fix: close terminals properly in tests (fixes [#1806](https://redirect.github.com/jline/jline3/issues/1806)) ([#1814](https://redirect.github.com/jline/jline3/pull/1814)) [`@​gnodet`](https://github.com/gnodet)
> * fix: deprecate SwingTerminal.dispose() in favor of close() (fixes [#1805](https://redirect.github.com/jline/jline3/issues/1805)) ([#1811](https://redirect.github.com/jline/jline3/pull/1811)) [`@​gnodet`](https://github.com/gnodet)
> * fix: avoid NPE when closing terminal with null masterOutput ([#1813](https://redirect.github.com/jline/jline3/pull/1813)) [`@​gnodet`](https://github.com/gnodet)
> * fix: Fix AttributedStyle color chaining ([#1792](https://redirect.github.com/jline/jline3/pull/1792)) [`@​Elec332`](https://github.com/Elec332)
> * fix: remove spurious (short) casts in Size setters ([#1791](https://redirect.github.com/jline/jline3/pull/1791)) [`@​gnodet`](https://github.com/gnodet)
> * fix: move Terminal parameter to first position in columnSubSequence and columnSplitLength ([#1790](https://redirect.github.com/jline/jline3/pull/1790)) [`@​gnodet`](https://github.com/gnodet)
> * fix: compiler error in ScreenTerminal.dump() ([#1773](https://redirect.github.com/jline/jline3/pull/1773)) [`@​Elec332`](https://github.com/Elec332)
>
> 📦 Dependency updates
> --------------------
>
> * chore: Bump actions/upload-pages-artifact from 4 to 5 ([#1783](https://redirect.github.com/jline/jline3/pull/1783)) @[dependabot[bot]](https://github.com/apps/dependabot)

... (truncated)


Commits

* [`bdec53e`](jline/jline3@bdec53e) chore: fix release-drafter config for 4.x branches
* [`2af04cf`](jline/jline3@2af04cf) refactor: introduce Sized interface and Size.of() factory methods ([#1731](https://redirect.github.com/jline/jline3/issues/1731))
* [`5ef0aab`](jline/jline3@5ef0aab) fix: status bar duplication after vertical resize ([#1860](https://redirect.github.com/jline/jline3/issues/1860))
* [`6141618`](jline/jline3@6141618) fix: remove proactive isNativeAccessEnabled() checks from terminal providers ...
* [`7818927`](jline/jline3@7818927) refactor: unify terminal probe response handling
* [`8a6a1d3`](jline/jline3@8a6a1d3) fix: prevent DA response bytes from leaking to parent shell ([#1856](https://redirect.github.com/jline/jline3/issues/1856))
* [`0d19e52`](jline/jline3@0d19e52) - Added UnknownCommandException ([#1780](https://redirect.github.com/jline/jline3/issues/1780))
* [`0703cc0`](jline/jline3@0703cc0) feat: bulk read(byte[], int, int) for NonBlockingPumpInputStream ([#1776](https://redirect.github.com/jline/jline3/issues/1776))
* [`8325740`](jline/jline3@8325740) fix: use maven.multiModuleProjectDirectory for test-jar path
* [`b2e362a`](jline/jline3@b2e362a) fix: deduplicate ReaderTestSupport between reader and builtins ([#1807](https://redirect.github.com/jline/jline3/issues/1807))
* Additional commits viewable in [compare view](jline/jline3@4.0.14...4.1.0)
  
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)
---
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  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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants