Bump xterm from 5.2.1 to 5.3.0 in /client #83

Merged
dependabot[bot] merged 1 commits from dependabot/npm_and_yarn/client/xterm-5.3.0 into main 2023-09-08 06:01:47 +00:00
dependabot[bot] commented 2023-09-08 00:53:55 +00:00 (Migrated from github.com)

Bumps xterm from 5.2.1 to 5.3.0.

Release notes

Sourced from xterm's releases.

5.3.0

🚀 Features

📦 API

  • There's a new trace log level (#4687, 4709) via @​Tyriar
    const term = new Terminal({
        logLevel: 'trace'
    });
    
  • New logger delegate option (#4563, #4564) via @​Tyriar. This new API allows the embedder to define the logging behavior, instead of always using to console
    const term = new Terminal({
        logger: {
            trace: (e, args) => console.log('trace: ', e, args),
            debug: (e, args) => console.log('debug: ', e, args),
            info: (e, args) => console.log('info: ', e, args),
            warn: (e, args) => console.log('warn: ', e, args),
            error: (e, args) => console.log('error: ', e, args)
        }
    });
    
  • New ignoreBracketedPasteMode option that allows explicitly disabling bracketed paste mode, regardless of whether the shell enables it or not (#4636) via @​Tyriar
    const term = new Terminal({
        ignoreBracketedPasteMode: true
    });
    
  • New cursorInactiveStyle option (#4657) via @​tisilent
    const term = new Terminal({
        cursorInactiveStyle: 'none'
    });
    

🐞 Bug fixes

... (truncated)

Commits
  • 2e02c37 Merge pull request #4756 from Tyriar/tyriar/5_3__2
  • 71ee3c7 Disable image addon publishing
  • 009add2 Merge pull request #4755 from Tyriar/tyriar/5_3
  • fb4b662 v5.3.0 and bump all addons
  • 7b52b8e Merge pull request #4754 from tisilent/DomRenderer-Focus-Cursor
  • c03cb2b When DomRenderer focus,render the cursor line.
  • 29dd30a Merge pull request #4735 from Tyriar/playwright
  • 68c5723 Remove debugger statement
  • 5e628d7 Use arrow functions
  • 93aae67 Readme explaining test/api
  • 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 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 [xterm](https://github.com/xtermjs/xterm.js) from 5.2.1 to 5.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/xtermjs/xterm.js/releases">xterm's releases</a>.</em></p> <blockquote> <h2>5.3.0</h2> <h2>🚀 Features</h2> <ul> <li>The default DOM-based renderer is significantly faster now (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4605">#4605</a>, <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4631">#4631</a>, <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4651">#4651</a>, <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4662">#4662</a>, <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4681">#4681</a>, <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4754">#4754</a>) via <a href="https://github.com/jerch"><code>@​jerch</code></a>, <a href="https://github.com/Tyriar"><code>@​Tyriar</code></a>, <a href="https://github.com/PerBothner"><code>@​PerBothner</code></a>, <a href="https://github.com/tisilent"><code>@​tisilent</code></a></li> <li>The smooth scroll feature now affects <code>scrollLines</code>, <code>scrollPages</code>,<code>scrollToLine</code>, <code>scrollToTop</code> and <code>scrollToBottom</code> (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4482">#4482</a>, <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4714">#4714</a>) via <a href="https://github.com/tisilent"><code>@​tisilent</code></a>, <a href="https://github.com/Tyriar"><code>@​Tyriar</code></a></li> <li><code>minimumContrastRatio</code> now applies 50% of the contrast ratio to dimmed text (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4672">#4672</a>) via <a href="https://github.com/Tyrira"><code>@​Tyrira</code></a></li> </ul> <h3>📦 API</h3> <ul> <li>There's a new <code>trace</code> log level (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4687">#4687</a>, 4709) via <a href="https://github.com/Tyriar"><code>@​Tyriar</code></a> <pre lang="ts"><code>const term = new Terminal({ logLevel: 'trace' }); </code></pre> </li> <li>New <code>logger</code> delegate option (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4563">#4563</a>, <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4564">#4564</a>) via <a href="https://github.com/Tyriar"><code>@​Tyriar</code></a>. This new API allows the embedder to define the logging behavior, instead of always using to <code>console</code> <pre lang="ts"><code>const term = new Terminal({ logger: { trace: (e, args) =&gt; console.log('trace: ', e, args), debug: (e, args) =&gt; console.log('debug: ', e, args), info: (e, args) =&gt; console.log('info: ', e, args), warn: (e, args) =&gt; console.log('warn: ', e, args), error: (e, args) =&gt; console.log('error: ', e, args) } }); </code></pre> </li> <li>New <code>ignoreBracketedPasteMode</code> option that allows explicitly disabling bracketed paste mode, regardless of whether the shell enables it or not (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4636">#4636</a>) via <a href="https://github.com/Tyriar"><code>@​Tyriar</code></a> <pre lang="ts"><code>const term = new Terminal({ ignoreBracketedPasteMode: true }); </code></pre> </li> <li>New <code>cursorInactiveStyle</code> option (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4657">#4657</a>) via <a href="https://github.com/tisilent"><code>@​tisilent</code></a> <pre lang="ts"><code>const term = new Terminal({ cursorInactiveStyle: 'none' }); </code></pre> </li> </ul> <h2>🐞 Bug fixes</h2> <ul> <li>Fix character size being affected by CSS transformations (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4366">#4366</a>) via <a href="https://github.com/arekouzounian"><code>@​arekouzounian</code></a></li> <li>Fix mouse tracking behavior (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4583">#4583</a>) via <a href="https://github.com/jerch"><code>@​jerch</code></a></li> <li>Improve rendering of the DOM renderer's underline cursor (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4584">#4584</a>) via <a href="https://github.com/dlech"><code>@​dlech</code></a></li> <li>Fix issues in the accessibility tree (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4637">#4637</a>) via <a href="https://github.com/meganrogge"><code>@​meganrogge</code></a></li> <li>Fix reset and clear leaving viewport in a bad state (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4638">#4638</a>) via <a href="https://github.com/Tyriar"><code>@​Tyriar</code></a></li> <li>Fix API facade memory leaks (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4655">#4655</a>) via <a href="https://github.com/Tyriar"><code>@​Tyriar</code></a></li> <li>Fix memory leak in cursor blink state manager (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4659">#4659</a>) via <a href="https://github.com/SvanT"><code>@​SvanT</code></a></li> <li>Fix inverse rendering when a transparent foreground is used (<a href="https://redirect.github.com/xtermjs/xterm.js/issues/4667">#4667</a>) via <a href="https://github.com/Dennnnny"><code>@​Dennnnny</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/xtermjs/xterm.js/commit/2e02c37e528c1abc200ce401f49d0d7eae330e63"><code>2e02c37</code></a> Merge pull request <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4756">#4756</a> from Tyriar/tyriar/5_3__2</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/71ee3c7a33542f2f744cf48d48abf2bd964d51e1"><code>71ee3c7</code></a> Disable image addon publishing</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/009add2b4a3753c9aa16849c184e7d54c9c9b59f"><code>009add2</code></a> Merge pull request <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4755">#4755</a> from Tyriar/tyriar/5_3</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/fb4b662756657c9c1c1fd683dfcff968712bd75f"><code>fb4b662</code></a> v5.3.0 and bump all addons</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/7b52b8ee45cb05ccf8da80c3ca024d31e6b3c03b"><code>7b52b8e</code></a> Merge pull request <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4754">#4754</a> from tisilent/DomRenderer-Focus-Cursor</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/c03cb2b016b493df1cfb6865295a16c3dfea6306"><code>c03cb2b</code></a> When DomRenderer focus,render the cursor line.</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/29dd30a98d0ec19078088db78ea5cfa87826405f"><code>29dd30a</code></a> Merge pull request <a href="https://redirect.github.com/xtermjs/xterm.js/issues/4735">#4735</a> from Tyriar/playwright</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/68c572345b1a0391ef4f31a9b6df33e8903334f9"><code>68c5723</code></a> Remove debugger statement</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/5e628d7fc60d0a1a1ea9edd27f3a12f92bd9bea9"><code>5e628d7</code></a> Use arrow functions</li> <li><a href="https://github.com/xtermjs/xterm.js/commit/93aae670baa22f351b2a9385a46061f51eb1ff0c"><code>93aae67</code></a> Readme explaining test/api</li> <li>Additional commits viewable in <a href="https://github.com/xtermjs/xterm.js/compare/5.2.1...5.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xterm&package-manager=npm_and_yarn&previous-version=5.2.1&new-version=5.3.0)](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) </details>
cloudflare-workers-and-pages[bot] commented 2023-09-08 00:53:56 +00:00 (Migrated from github.com)

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 571ec63
Status:   Deploy successful!
Preview URL: https://9fac9f56.powertools.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-clie-0444.powertools.pages.dev

View logs

## Deploying with &nbsp;<a href="https://pages.dev"><img alt="Cloudflare Pages" src="https://user-images.githubusercontent.com/23264/106598434-9e719e00-654f-11eb-9e59-6167043cfa01.png" width="16"></a> &nbsp;Cloudflare Pages <table><tr><td><strong>Latest commit:</strong> </td><td> <code>571ec63</code> </td></tr> <tr><td><strong>Status:</strong></td><td>&nbsp;✅&nbsp; Deploy successful!</td></tr> <tr><td><strong>Preview URL:</strong></td><td> <a href='https://9fac9f56.powertools.pages.dev'>https://9fac9f56.powertools.pages.dev</a> </td></tr> <tr><td><strong>Branch Preview URL:</strong></td><td> <a href='https://dependabot-npm-and-yarn-clie-0444.powertools.pages.dev'>https://dependabot-npm-and-yarn-clie-0444.powertools.pages.dev</a> </td></tr> </table> [View logs](https://dash.cloudflare.com/?to=/:account/pages/view/powertools/9fac9f56-e61a-4118-b83b-267e154c9496)
This repo is archived. You cannot comment on pull requests.
No description provided.