From 79e2982b6d59a952cd53c873b1b3c642b5df3ab3 Mon Sep 17 00:00:00 2001 From: Randy Lai Date: Fri, 1 May 2026 10:49:44 -0700 Subject: [PATCH 1/2] chore(release): 0.3.18 --- DESCRIPTION | 4 ++-- NEWS.md | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2c67a811..0c2c6196 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Type: Package Package: languageserver Title: Language Server Protocol -Version: 0.3.17.9999 -Date: 2026-03-09 +Version: 0.3.18 +Date: 2026-05-01 Authors@R: c(person(given = "Randy", family = "Lai", diff --git a/NEWS.md b/NEWS.md index 91624822..b002fdb9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,14 @@ +# languageserver 0.3.18 + +**Closed issues:** + +- avoid rlang formatting crash in callr subprocess (#723) +- Multi root support (#719) + +**Merged pull requests:** + +- test: enable parallel execution and streamline CI workflows (#720) + # languageserver 0.3.17 **Closed issues:** From 447901a2f2d1f6ebb892136a3a168e79eed5e210 Mon Sep 17 00:00:00 2001 From: Randy Lai Date: Fri, 1 May 2026 20:02:45 -0700 Subject: [PATCH 2/2] Update NEWS.md and add callr import to task.R --- NEWS.md | 6 ++++-- R/task.R | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index b002fdb9..39ad3d79 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,11 +2,13 @@ **Closed issues:** -- avoid rlang formatting crash in callr subprocess (#723) -- Multi root support (#719) +- Failed to run diagnostics: ! in callr subprocess. Caused by error in `call[[1L]]` (#723) **Merged pull requests:** +- Bump codecov/codecov-action from 5 to 6 (#724) +- fix: avoid rlang formatting crash in callr subprocess (#723) (#725) +- Multi root support (#719) - test: enable parallel execution and streamline CI workflows (#720) # languageserver 0.3.17 diff --git a/R/task.R b/R/task.R index d15ec774..e0f3132f 100644 --- a/R/task.R +++ b/R/task.R @@ -1,3 +1,4 @@ +#' @import callr Task <- R6::R6Class("Task", private = list( process = NULL,