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

fix(deps): update dependency xterm to v3.14.5 - autoclosed #20

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 25, 2019

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
xterm 3.9.2 -> 3.14.5 age adoption passing confidence

Release Notes

xtermjs/xterm.js

v3.14.5

Compare Source

🐞 Bug fixes

v3.14.4

Compare Source

🐞 Bug fixes

v3.14.2

Compare Source

🐞 Bug fixes

v3.14.1

Compare Source

🐞 Bug fixes

v3.14.0

Compare Source

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

Compatible new addon versions:

  • xterm-addon-fit@0.1.0-beta1

🚀 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

📝 Documentation and internal improvements

v3.13.2

Compare Source

🐞 Bug fixes

v3.13.1

Compare Source

🐞 Bug fixes

v3.13.0

Compare Source

🚀 Features
📦 API
🐞 Bug fixes
📝 Documentation and internal improvements
🛑 Breaking changes
  • The winptyCompat addon has been moved into core and is now enabled via the windowsMode option:
    // before 3.13.0
    import winptyCompat = require('vscode-xterm/lib/addons/winptyCompat/winptyCompat');
    Terminal.applyAddon(winptyCompat); 
    const term = new Terminal();
    
    // after 3.13.0
    const term = new Terminal({ windowsMode: true });
    See the API section for more information.
⚠️ Deprecations
  • The on, off, emit and addDisposableListener APIs are now deprecated and are planned to be removed in v4.0.0 (Explicit event API xtermjs/xterm.js#2008) via @​Tyriar, they are replaced with the new "explicit event API".
    // deprecated
    term.on('resize', e => doSomething(e));
    
    // recommended
    term.onResize(e => doSomething(e));
    We took this opportunity to slim down the events, cutting out some that we thought are no longer needed. If you are using any events that were not carried over to the new event API please create an issue and let us know how you're using it to see if we should expose it.
🎉 New real-world use cases

A special thanks to @​Eugeny of the Terminus project for trialing the beta release and helping catch some nasty bugs before we released ❤️

v3.12.2

Compare Source

🐞 Bug fixes

v3.12.1

Compare Source

🐞 Bug fixes
  • Fix crash related to reflowing wrapped lines ending that ended in \t (#​2010) via @​Tyriar

v3.12.0

Compare Source

🐞 Bug fixes
📝 Documentation and internal improvements
🎉 New real-world use cases

v3.11.0

Compare Source

🆕 Features
  • Text is now wrapped and unwrapped when the terminal is horizontally resized (#​1864) via @​Tyriar, this was the most upvoted feature on GitHub

reflow

🆕 API
  • These properties on Terminal are now marked as readonly: element, textarea, rows, cols, markers (#​1871, #​1917) via @​Tyriar
🐞 Bug fixes
  • Links on lines that start with \t are no longer offset incorrectly (#​1887) via @​jerch
  • Fix NPE when \x1b[?1003h or \x1b[?1003l is sent to the terminal before open is called (#​1905) via @​pfitzseb
  • Make textarea positioning work with css transformations (#​1912) via @​mofux
📝 Documentation and internal improvements

v3.10.1

Compare Source

🐞 Bug fixes

v3.10.0

Compare Source

🆕 Features

🆕 API

🐞 Bug fixes

📝 Documentation and internal improvements


Configuration

📅 Schedule: 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 has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the chore label Mar 25, 2019
@renovate renovate bot force-pushed the renovate/xterm-3.x branch 3 times, most recently from 86f509c to d42655d Compare March 26, 2019 03:14
@renovate renovate bot force-pushed the renovate/xterm-3.x branch 3 times, most recently from 80c7b0c to 46d06cb Compare April 2, 2019 17:03
@renovate renovate bot changed the title Update dependency xterm to v3.12.0 Update dependency xterm to v3.12.1 Apr 12, 2019
@renovate renovate bot force-pushed the renovate/xterm-3.x branch 2 times, most recently from e6bdea9 to 2a8778e Compare April 13, 2019 05:52
@renovate renovate bot changed the title Update dependency xterm to v3.12.1 Update dependency xterm to v3.12.2 Apr 13, 2019
@renovate renovate bot force-pushed the renovate/xterm-3.x branch 7 times, most recently from af72d3d to 263b1cf Compare April 22, 2019 17:50
@renovate renovate bot changed the title Update dependency xterm to v3.12.2 fix(deps): update dependency xterm to v3.12.2 Apr 22, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.12.2 fix(deps): update dependency xterm to v3.13.0 May 9, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.13.0 fix(deps): update dependency xterm to v3.13.1 May 16, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.13.1 fix(deps): update dependency xterm to v3.13.2 May 21, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.13.2 fix(deps): update dependency xterm to v3.14.0 May 30, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.14.0 fix(deps): update dependency xterm to v3.14.1 May 31, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.14.1 fix(deps): update dependency xterm to v3.14.2 Jun 3, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.14.2 fix(deps): update dependency xterm to v3.14.5 Jul 13, 2019
@renovate renovate bot changed the title fix(deps): update dependency xterm to v3.14.5 fix(deps): update dependency xterm to v3.14.5 - autoclosed Mar 7, 2022
@renovate renovate bot closed this Mar 7, 2022
@renovate renovate bot deleted the renovate/xterm-3.x branch March 7, 2022 10:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant