fix osc params 1024 byte limit (#1711)
* update vte to v0.11.0, and turn off it's default-features * vte's default includes no_std, and in that case the osc params buffer is capped at 1024 bytes * add changelog entry
This commit is contained in:
parent
28a002929a
commit
a58a5ca769
3 changed files with 14 additions and 3 deletions
|
|
@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|||
* fix: bracketed paste handling regression (https://github.com/zellij-org/zellij/pull/1689)
|
||||
* fix: occasional startup crashes (https://github.com/zellij-org/zellij/pull/1706)
|
||||
* fix: gracefully handle SSH disconnects (https://github.com/zellij-org/zellij/pull/1710)
|
||||
* fix: handle osc params larger than 1024 bytes (https://github.com/zellij-org/zellij/pull/1711)
|
||||
|
||||
## [0.31.3] - 2022-08-18
|
||||
* HOTFIX: fix up-arrow regression
|
||||
|
|
|
|||
14
Cargo.lock
generated
14
Cargo.lock
generated
|
|
@ -2352,7 +2352,7 @@ version = "0.1.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8"
|
||||
dependencies = [
|
||||
"vte",
|
||||
"vte 0.10.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -2823,6 +2823,16 @@ dependencies = [
|
|||
"vte_generate_state_changes",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "vte"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1aae21c12ad2ec2d168c236f369c38ff332bc1134f7246350dca641437365045"
|
||||
dependencies = [
|
||||
"utf8parse",
|
||||
"vte_generate_state_changes",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "vte_generate_state_changes"
|
||||
version = "0.1.1"
|
||||
|
|
@ -3405,7 +3415,7 @@ dependencies = [
|
|||
"thiserror",
|
||||
"unicode-width",
|
||||
"url",
|
||||
"vte",
|
||||
"vte 0.11.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ strum = "0.20.0"
|
|||
strum_macros = "0.20.1"
|
||||
thiserror = "1.0.30"
|
||||
url = { version = "2.2.2", features = ["serde"] }
|
||||
vte = "0.10.1"
|
||||
vte = { version = "0.11.0", default-features = false }
|
||||
log = "0.4.17"
|
||||
unicode-width = "0.1.8"
|
||||
miette = { version = "3.3.0", features = ["fancy"] }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue