Skip to content
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

build(deps): bump xterm from 3.13.2 to 3.14.0 #898

Merged
merged 2 commits into from
Jun 3, 2019

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps xterm from 3.13.2 to 3.14.0.

Release notes

Sourced from xterm's releases.

3.14.0

📢 Our next release will be v4, read more here 👉 #2143.

🚀 Features

📦 API

For the complete details on the new APIs, see the typings file. For APIs marked experimental we're hoping to stabilize them in v4 and want feedback from the community to make sure they are useful.

  • Support writing raw UTF-8 data directly, which may help avoid an unnecessary conversion to a relatively heavy JS string (#1904) via @​jerch
    const data = new Uint8Array([102, 111, 111]);
    term.writeUtf8(data);
  • New experimental addon API (#2065, #2116) via @​Tyriar
    // A simple example addon
    const addon = {
      activate: (term: Terminal) => {
        console.log('addon activated');
      },
      dispose: () => { }
    }
    term.loadAddon(addon);
  • New experimental buffer API (#2074) via @​Tyriar. Consumers can finally query the textual state of the terminal.
    // Print the line that the cursor is on as text
    term.buffer.getLine(term.buffer.cursorY).translateToString(true);
  • New select and getSelectionPosition APIs (#2078) via @​Tyriar
    term.select(5, 2, 10);
    console.log(term.getSelectionPosition());
    // {startColumn: 5, startRow: 2, endColumn: 15, endRow: 2}

🐞 Bug fixes

  • Add missing typings for windowsMode option (#2062) via @​Tyriar
  • Improve spacing between characters in DOM renderer (#2067) via @​starpit
  • Dispose of old data in the write buffer once it's been written if xterm.js hasn't caught up (#2120) via @​jerch
  • Fix wrong colors printing for 256 color mode (#2125) via @​jerch
  • Fix loss of data during a RIS (full reset) (#2127) via @​jerch
  • Only update the accessibiltiy announcements during an animation frame (#2128) via @​Tyriar
  • Fix a NPE in reflow (#2131) via @​Tyriar
  • Ensure underline is rendered correctly in canvas renderer (#2134) via @​Tyriar
  • Fix a font rendering issue where settings/colors wouldn't be picked up (#2140) via @​Tyriar
  • webLinks addon
... (truncated)
Commits
  • 0ed75dc Merge pull request #2145 from xtermjs/Tyriar-patch-1
  • b3a6317 v3.14.0
  • 9643de4 Merge pull request #2141 from Tyriar/ts_3.5
  • ab1263f typescript@3.5
  • 9ebe094 Merge pull request #2140 from Tyriar/2136_fix_dom_renderer
  • 0c3f2d7 Revert "Revert "fix: don't use Math.floor in DomRenderer charWidth computation""
  • a39da0f Ensure DOM renderer has styles injected on ctor
  • adac12e Merge pull request #2134 from Tyriar/fix_underline
  • 030fb78 Merge branch 'master' into fix_underline
  • 96b3eb9 Draw underline over char glyph
  • 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 ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label May 31, 2019
@malept malept merged commit ed8b2ab into master Jun 3, 2019
@malept malept deleted the dependabot/npm_and_yarn/xterm-3.14.0 branch June 3, 2019 04:54
dsanders11 pushed a commit that referenced this pull request Jan 14, 2023
…ty defaults (#898)

Co-authored-by: Timothy Lim <tim.lim@intercom.io>
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.

1 participant