Skip to content

chore: update xterm, xterm-addon-fit, and xterm-addon-web-links in /site #7765

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 1, 2023

Bumps xterm, xterm-addon-fit and xterm-addon-web-links. These dependencies needed to be updated together.
Updates xterm from 4.19.0 to 5.1.0

Release notes

Sourced from xterm's releases.

5.1.0

🚀 Features

Multiple texture atlas page support (#4244, #4252, #4274) via @​Tyriar

Instead of there being a hard cap of 1024x1024 on the size of the texture atlas backing the canvas and webgl renderers, multiple textures are now supported. Each individual texture is now 512x512 which allows faster uploading to the GPU and will continually merge until the maximum of 4096x4096 is reached.

The benefits in simple terms of this change are:

  • Less time from drawing a glyph to rendering it
  • Less CPU is used when lots of glyphs are used
  • Essentially unlimited space for glyphs, which is good for certain use cases but will also let us explore things like "perfect" dotted and curvy underlines in the future

Here is an example of a 512x512 texture atlas page right after the terminal has loaded and printed a powerline-based prompt:

image

And here is the 1024x1024 page after a lot of glyphs have rendered:

image

Slash and triangle custom glyphs (#4313) via @​Tyriar

Eight new powerline extra custom glyphs are supported:

image

New option scrollOnUserInput (#4289) via @​JasonXJ

You can now specify whether to scroll to the bottom of the terminal on user input, previously this was the default and only behavior. This new setting is enabled by default.

const term = new Terminal({ scrollOnUserInput: false });

🐞 Bug fixes

🏎️ Performance

... (truncated)

Commits
  • 19c760a Merge pull request #4333 from xtermjs/revert-4196-ansiheadless
  • 3a81ef5 Revert "SerializeAsHTML(): Fallback to default ansi colors when running headl...
  • 6cfdcb1 Merge pull request #4332 from Tyriar/r5_1_0
  • 30ef1fc v5.1.0
  • 84b8121 Merge pull request #4288 from jerch/fix_weblinks
  • 218cfd2 Merge branch 'master' into fix_weblinks
  • 1757f27 explicit type for link test data
  • 9411acb move link tests to demo
  • cb4102c Merge pull request #4330 from Tyriar/2533
  • 1926c9b Add sequence buttons through CSI P
  • Additional commits viewable in compare view

Updates xterm-addon-fit from 0.5.0 to 0.7.0

Commits

Updates xterm-addon-web-links from 0.6.0 to 0.8.0

Commits

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 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)

@matifali
Copy link
Member

matifali commented Jun 2, 2023

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/site/xterm-and-xterm-addon-fit-and-xterm-addon-web-links-5.1.0 branch from cc6afe2 to 1d91105 Compare June 2, 2023 05:24
@matifali
Copy link
Member

matifali commented Jun 2, 2023

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/site/xterm-and-xterm-addon-fit-and-xterm-addon-web-links-5.1.0 branch from 1d91105 to 94c2252 Compare June 2, 2023 21:15
@matifali
Copy link
Member

matifali commented Jun 3, 2023

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/site/xterm-and-xterm-addon-fit-and-xterm-addon-web-links-5.1.0 branch from 94c2252 to 070c3c3 Compare June 3, 2023 13:08
@matifali
Copy link
Member

matifali commented Jun 4, 2023

@dependabot rebase

@matifali matifali requested a review from code-asher June 4, 2023 03:21
Bumps [xterm](https://github.com/xtermjs/xterm.js), [xterm-addon-fit](https://github.com/xtermjs/xterm.js) and [xterm-addon-web-links](https://github.com/xtermjs/xterm.js). These dependencies needed to be updated together.

Updates `xterm` from 4.19.0 to 5.1.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@4.19.0...5.1.0)

Updates `xterm-addon-fit` from 0.5.0 to 0.7.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.5...0.7)

Updates `xterm-addon-web-links` from 0.6.0 to 0.8.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.6...0.8)

---
updated-dependencies:
- dependency-name: xterm
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: xterm-addon-fit
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: xterm-addon-web-links
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/site/xterm-and-xterm-addon-fit-and-xterm-addon-web-links-5.1.0 branch from 070c3c3 to 64353b7 Compare June 4, 2023 03:23
@matifali matifali requested a review from BrunoQuaresma June 5, 2023 14:59
@code-asher
Copy link
Member

Looks like rendererType was removed but I am not sure what the new way is to set the type or if there even is a way.

@code-asher
Copy link
Member

code-asher commented Jun 5, 2023

Ah I think in v5 DOM renderer is the default and you use the xterm-addon-canvas or xterm-addon-webgl addons to use canvas or webgl. Since we were using the DOM renderer I think that means we can just remove rendererType.

This option no longer exists.  Renderers other than the DOM renderer
have been split into addons.
@BrunoQuaresma BrunoQuaresma changed the title chore: bump xterm, xterm-addon-fit and xterm-addon-web-links in /site chore: update xterm, xterm-addon-fit and xterm-addon-web-links in /site Jun 5, 2023
@BrunoQuaresma BrunoQuaresma changed the title chore: update xterm, xterm-addon-fit and xterm-addon-web-links in /site chore: update xterm, xterm-addon-fit, and xterm-addon-web-links in /site Jun 5, 2023
@BrunoQuaresma BrunoQuaresma merged commit 0413ed0 into main Jun 5, 2023
@BrunoQuaresma BrunoQuaresma deleted the dependabot/npm_and_yarn/site/xterm-and-xterm-addon-fit-and-xterm-addon-web-links-5.1.0 branch June 5, 2023 16:53
@github-actions github-actions bot locked and limited conversation to collaborators Jun 5, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants