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

Update @elastic/kibana-cloud-security-posture dependencies (main) #201291

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

elastic-renovate-prod[bot]
Copy link
Contributor

@elastic-renovate-prod elastic-renovate-prod bot commented Nov 21, 2024

This PR contains the following updates:

Package Type Update Change
@mswjs/http-middleware (source) devDependencies patch ^0.10.1 -> ^0.10.2
@types/byte-size (source) devDependencies patch ^8.1.0 -> ^8.1.2
byte-size dependencies major ^8.1.0 -> ^9.0.0
msw (source) devDependencies minor ^2.4.12 -> ^2.6.6
xterm dependencies minor ^5.1.0 -> ^5.3.0

Release Notes

mswjs/http-middleware (@​mswjs/http-middleware)

v0.10.2

Compare Source

v0.10.2 (2024-10-25)

Bug Fixes
75lb/byte-size (byte-size)

v9.0.0

Compare Source

Whether this is a breaking change or not is debatable so it has been released as a major version just in case.

Non-breaking change since v8.2.1

These changes affect the output only, there are no changes to the API or minimum supported Node version (still v12.17).

  • Fixed an issue where precision and Intl formatting was not applied to small numbers. #​15
  • Removed minimumFractionDigits from unit number formatting. This removes superfluous precision, some examples:
    • byteSize(1000).toString() now returns 1 kB instead of 1.0 kB, removing the superfluous one decimal place of precision.
    • byteSize(1500000, { precision: 5 }).toString() now returns 1.5 MB instead of 1.50000 MB, again removing superfluous precision.
    • However, byteSize(1500010, { precision: 5 }).toString() will return 1.50001 MB as there is meaningful, non-zero precision to display.

v8.2.1

Compare Source

v8.2.0

Compare Source

v8.1.1

Compare Source

mswjs/msw (msw)

v2.6.6

Compare Source

v2.6.6 (2024-11-22)

Bug Fixes

v2.6.5

Compare Source

v2.6.5 (2024-11-16)

Bug Fixes

v2.6.4

Compare Source

v2.6.4 (2024-11-10)

Bug Fixes

v2.6.3

Compare Source

v2.6.3 (2024-11-10)

Bug Fixes

v2.6.2

Compare Source

v2.6.2 (2024-11-07)

Bug Fixes

v2.6.1

Compare Source

v2.6.1 (2024-11-06)

Bug Fixes

v2.6.0

Compare Source

v2.6.0 (2024-10-29)

Features
xtermjs/xterm.js (xterm)

v5.3.0

Compare Source

🚀 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

📝 Documentation and internal improvements

🎉 New real-world use cases


📥 Addons

xterm-addon-canvas
xterm-addon-image
xterm-addon-ligatures
xterm-addon-serialize
xterm-addon-webgl

🤝 Compatible addon versions

Addon Version
xterm-addon-attach 0.9.0
xterm-addon-canvas 0.5.0
xterm-addon-fit 0.8.0
xterm-addon-image 0.5.0
xterm-addon-ligatures 0.7.0
xterm-addon-search 0.13.0
xterm-addon-serialize 0.11.0
xterm-addon-unicode11 0.6.0
xterm-addon-web-links 0.9.0
xterm-addon-webgl 0.16.0

🌐 Website

Pull from https://github.com/xtermjs/xtermjs.org/pulls?q=is%3Apr+sort%3Aupdated-desc+is%3Aclosed

v5.2.1

Compare Source

🐞 Bug fixes

v5.2.0

Compare Source

🚀 Features

📦 API
  • Improved Windows workarounds with the new windowsPty option (#​4539) via @​Tyriar

    const term = new Terminal({
      windowsPty: {
        backend: 'conpty',
        buildNumber: 19000
      }
    });

🐞 Bug fixes

📝 Documentation and internal improvements

⚠️ Deprecations

  • windowsMode has been deprecated in favor of windowsPty
    // Before 5.2
    term = new Terminal({ windowsMode: true });
    // After 5.2
    term = new Terminal({
      windowsPty: {
        backend: 'conpty',
        buildNumber: 19000
      }
    });

🎉 New real-world use cases


📥 Addons

xterm-addon-canvas
xterm-addon-search
xterm-addon-webgl

🤝 Compatible addon versions

  • xterm-addon-attach@...
  • xterm-addon-fit@...
  • xterm-addon-ligatures@...
  • xterm-addon-search@...
  • xterm-addon-serialize@...
  • xterm-addon-unicode11@​...
  • xterm-addon-web-links@...
  • xterm-addon-webgl@...

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@elastic-renovate-prod elastic-renovate-prod bot added backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes Team:Cloud Security Cloud Security team related labels Nov 21, 2024
@elastic-renovate-prod elastic-renovate-prod bot requested a review from a team November 21, 2024 21:14
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-cloud-security-posture (Team:Cloud Security)

@elastic-renovate-prod elastic-renovate-prod bot force-pushed the renovate/main-@elastickibana-cloud-security-posture-dependencies branch from 8147700 to 078ec9e Compare November 23, 2024 01:52
@elastic-renovate-prod elastic-renovate-prod bot force-pushed the renovate/main-@elastickibana-cloud-security-posture-dependencies branch from 078ec9e to a960e9c Compare November 30, 2024 06:23
@opauloh opauloh enabled auto-merge (squash) December 3, 2024 00:48
@elastic-renovate-prod
Copy link
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@opauloh
Copy link
Contributor

opauloh commented Dec 3, 2024

/ci

@elasticmachine
Copy link
Contributor

💔 Build Failed

Failed CI Steps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes Team:Cloud Security Cloud Security team related
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants