Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 3.2.0 - 2026-07-06

### Bug Fixes

* Improved the R language server lifecycle for Quarto R chunks with delayed shutdown, cancellation of pending shutdowns, serialised restart handling, correct virtual-document routing and selectors, and cleanup of stopped clients and listeners.

### Minor

* Added formatted current-row and total-row feedback while dragging the data viewer's vertical scrollbar.

### Maintenance

* Upgraded AG Grid Community to 35.2.1 and refactored the existing data viewer to use the AG Grid 35 grid and theme APIs.
* Removed `data.table` as a dependency.

## 3.1.0 - 2026-06-16

### Bug Fixes
Expand Down
3 changes: 1 addition & 2 deletions R/session/init.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ init_first <- function() {
}

# check required packages
required_packages <- c("jsonlite", "rlang", "data.table")
required_packages <- c("jsonlite", "rlang")
missing_packages <- required_packages[
!vapply(required_packages, requireNamespace,
logical(1L), quietly = TRUE
Expand Down Expand Up @@ -48,7 +48,6 @@ init_last <- function() {
# cleanup previous version
removeTaskCallback("vscode-R")
options(vscodeR = NULL)
options(datatable.quiet = TRUE)
.vsc.name <- "tools:vscode"
if (.vsc.name %in% search()) {
detach(.vsc.name, character.only = TRUE)
Expand Down
Loading
Loading