diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2026-03-28 17:51:08 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2026-03-28 17:51:08 +0100 |
| commit | cd90ec7cdcdc55b617dfae5317b2c24b76b4148a (patch) | |
| tree | c25c13ab100caf21ee5e81e0640ce8427d42e8ab | |
| parent | bea7f3a44e6b9e102f9452af8cc6864b47d944dd (diff) | |
NVIM v0.11.7v0.11.7
Following is a list of commits (fixes/features only) in this release.
See `:help news` in Nvim for release notes.
FIXES
--------------------------------------------------------------------------------
- b1f2fe46cd59 lsp.enable() don't work correctly inside FileType event #37538
- 9b13ee041fe5 api: nvim_set_hl crashes when url= key is passed
- 3a947631243e channel: crash on failed sockconnect() (#37811)
- 7281cf883efd channel: possible hang after connecting with TCP times out (#37813)
- 7bb3c3068cad highlight: setting 'winhl' doesn't work with global ns (#37868)
- cf6660d3c162 mpack: boundary values for negative integer encoding (#38411)
- f9c67c40bcb3 lsp: call `on_list` before reading `loclist` #37645
- 818b97173e0b process: avoid buffering unnecessary UI event with PTY CWD (#37582)
- 3eef5752b383 terminal: heap UAF if buffer deleted during TermRequest (#37612)
- 37738d5ae0e6 terminal: reset `w_leftcol` after resizing terminal
- e0ea90070aa9 treesitter: escape hyphen in lua pattern
- 85d4822797c3 treesitter: normalize language aliases
- 03815969c49c watch: invalid joined path #37973
PERFORMANCE
--------------------------------------------------------------------------------
- 768b624c4056 filetype: vim.filetype.get_option cache miss when option value is false #37593
VIM PATCHES
--------------------------------------------------------------------------------
- c7f48e40b864 9.1.2119: tests: Test_language_cmd fails on OpenBSD (#37503)
- d47d317a791b 9.1.2128: Heap use after free in buf_check_timestamp()
- 79ed49cc69b6 9.1.2130: Page scrolling in Insert mode beeps (#37710)
- 4792c2996920 9.1.2132: [security]: buffer-overflow in 'helpfile' option handling (#37735)
- 03e68ad5d391 9.1.2133: Another case of buffer overflow with 'helpfile' (#37746)
- 5f6b195402c4 9.1.2136: :tab sbuffer may close old tabpage (#37765)
- b072f89d1e61 9.2.0004: Changing hidden prompt buffer cancels :startinsert/:stopinsert (#37881)
- de20500b40e2 9.2.0028: matchadd() conceal may use unrelated syntax cchar (#37974)
- 7fc228d94f68 9.2.0077: [security]: Crash when recovering a corrupted swap file (#38104)
- b9459fba2637 9.2.0078: [security]: stack-buffer-overflow in build_stl_str_hl() (#38102)
- 976db1ba4b29 9.2.0137: [security]: crash with composing char in collection range (#38261)
- bea7f3a44e6b 9.2.0202: [security]: command injection via newline in glob() (#38385)
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | runtime/nvim.appdata.xml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c397677a3..321a60782b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -142,7 +142,7 @@ endif() set(NVIM_VERSION_MAJOR 0) set(NVIM_VERSION_MINOR 11) set(NVIM_VERSION_PATCH 7) -set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers +set(NVIM_VERSION_PRERELEASE "") # for package maintainers # API level set(NVIM_API_LEVEL 13) # Bump this after any API/stdlib change. diff --git a/runtime/nvim.appdata.xml b/runtime/nvim.appdata.xml index 7f7a2dd859..e9269a1e11 100644 --- a/runtime/nvim.appdata.xml +++ b/runtime/nvim.appdata.xml @@ -26,6 +26,7 @@ </screenshots> <releases> + <release date="2026-03-28" version="0.11.7"/> <release date="2026-01-26" version="0.11.6"/> <release date="2025-11-02" version="0.11.5"/> <release date="2025-08-31" version="0.11.4"/> |
