Skip to content

Commit 821018d

Browse files
authored
Merge pull request #11 from Fred-Wu/fixes/lifecycle-dataloading
Improvments based on official vscode-R's PR REditorSupport#1708 and REditorSupport#1717
2 parents 8b7d8c1 + 05dc784 commit 821018d

8 files changed

Lines changed: 1075 additions & 471 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 3.2.0 - 2026-07-06
4+
5+
### Bug Fixes
6+
7+
* 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.
8+
9+
### Minor
10+
11+
* Added formatted current-row and total-row feedback while dragging the data viewer's vertical scrollbar.
12+
13+
### Maintenance
14+
15+
* Upgraded AG Grid Community to 35.2.1 and refactored the existing data viewer to use the AG Grid 35 grid and theme APIs.
16+
* Removed `data.table` as a dependency.
17+
318
## 3.1.0 - 2026-06-16
419

520
### Bug Fixes

R/session/init.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ init_first <- function() {
1717
}
1818

1919
# check required packages
20-
required_packages <- c("jsonlite", "rlang", "data.table")
20+
required_packages <- c("jsonlite", "rlang")
2121
missing_packages <- required_packages[
2222
!vapply(required_packages, requireNamespace,
2323
logical(1L), quietly = TRUE
@@ -48,7 +48,6 @@ init_last <- function() {
4848
# cleanup previous version
4949
removeTaskCallback("vscode-R")
5050
options(vscodeR = NULL)
51-
options(datatable.quiet = TRUE)
5251
.vsc.name <- "tools:vscode"
5352
if (.vsc.name %in% search()) {
5453
detach(.vsc.name, character.only = TRUE)

0 commit comments

Comments
 (0)