From 3fdfed357b05bdf411588f20556cdf729850e943 Mon Sep 17 00:00:00 2001 From: Zach Hannum Date: Mon, 12 Jan 2026 21:06:00 +0000 Subject: [PATCH 1/2] Update docs site for OAuth integrations Also add setGhostText to document manipulation and getMode to version info section. --- _pkgdown.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/_pkgdown.yml b/_pkgdown.yml index d56f36b..195d2fb 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -50,6 +50,7 @@ reference: - setDocumentContents - setCursorPosition - setSelectionRanges + - setGhostText - documentSave - documentSaveAll @@ -81,6 +82,15 @@ reference: - openProject - getActiveProject + - title : OAuth & Authentication + desc : Work with OAuth integrations and authentication in Posit Workbench. + contents : + - getOAuthIntegrations + - getOAuthIntegration + - findOAuthIntegration + - getOAuthCredentials + - getDelegatedAzureToken + - title : Themes desc : Work with RStudio editor themes. contents : @@ -105,6 +115,7 @@ reference: - isAvailable - getVersion + - getMode - versionInfo - starts_with("preview") From ee6b9f0fa4cac457b423d96db2d94b19a1344268 Mon Sep 17 00:00:00 2001 From: Zach Hannum Date: Mon, 12 Jan 2026 22:42:49 +0000 Subject: [PATCH 2/2] Update pkgdown workflow to use Ubuntu latest and updated RSPM URL --- .github/workflows/pkgdown.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index 9ee741a..6890f37 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -8,9 +8,9 @@ name: pkgdown jobs: pkgdown: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest env: - RSPM: https://packagemanager.rstudio.com/cran/__linux__/bionic/latest + RSPM: https://packagemanager.rstudio.com/cran/__linux__/jammy/latest GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: @@ -33,8 +33,8 @@ jobs: path: | ${{ env.R_LIBS_USER }}/* !${{ env.R_LIBS_USER }}/pak - key: ubuntu-18.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('.github/r-depends.rds') }} - restore-keys: ubuntu-18.04-${{ steps.install-r.outputs.installed-r-version }}-1- + key: ubuntu-latest-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('.github/r-depends.rds') }} + restore-keys: ubuntu-latest-${{ steps.install-r.outputs.installed-r-version }}-1- - name: Install system dependencies if: runner.os == 'Linux'