Skip to content

Commit 05dc784

Browse files
committed
Bump version to v3.2.0
1 parent 541c3e0 commit 05dc784

4 files changed

Lines changed: 22 additions & 7 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/vsc.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ get_column_def <- function(name, field, value) {
8989
type <- "dateColumn"
9090
filter <- "agDateColumnFilter"
9191
} else if (inherits(value, "POSIXct") ||
92-
inherits(value, "POSIXlt")) {
92+
inherits(value, "POSIXlt")) {
9393
type <- "datetimeColumn"
9494
filter <- "agDateColumnFilter"
9595
} else if (is.logical(value)) {
@@ -199,8 +199,8 @@ dataview_filter_condition <- function(values, condition) {
199199
} else if (is.logical(values) && op == "false") {
200200
result <- !is.na(values) & !values
201201
} else if (inherits(values, "Date") ||
202-
inherits(values, "POSIXct") ||
203-
inherits(values, "POSIXlt")) {
202+
inherits(values, "POSIXct") ||
203+
inherits(values, "POSIXlt")) {
204204
if (inherits(values, "Date")) {
205205
comparable <- as.Date(values)
206206
low <- as.Date(if (is.null(condition$dateFrom)) condition$filter else condition$dateFrom)
@@ -418,7 +418,7 @@ dataview_table <- local({
418418
}
419419

420420
column_names <- if (inherits(data, "ArrowTabular") ||
421-
inherits(data, "polars_data_frame")) {
421+
inherits(data, "polars_data_frame")) {
422422
names(data)
423423
} else {
424424
colnames(data)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "r",
33
"displayName": "R",
44
"description": "R Extension for Visual Studio Code",
5-
"version": "3.1.0",
5+
"version": "3.2.0",
66
"author": "REditorSupport",
77
"license": "SEE LICENSE IN LICENSE",
88
"publisher": "REditorSupport",

0 commit comments

Comments
 (0)