Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0e2bbe1
Add OAuth integration support with getOAuthCredentials function
zachhannum Nov 25, 2025
8abd00f
Implement OAuth integration functions and update documentation
zachhannum Jan 2, 2026
18222b3
Allow getDelegatedAzureToken to work outside RStudio
zachhannum Jan 2, 2026
e2b0b05
Add findOAuthIntegration function and update related documentation
zachhannum Jan 5, 2026
30ab910
Fallback on RS_SERVER_ADDRESS for Workbench detection
zachhannum Jan 6, 2026
81d958c
Fallback on versionInfo for version check
zachhannum Jan 6, 2026
cbef13a
Comment cleanup
zachhannum Jan 6, 2026
7d62456
Use long_version in version compare error
zachhannum Jan 6, 2026
fa567f9
Align version compatibility error message
zachhannum Jan 6, 2026
a60f41c
Fix documentation mismatch for documentNew type parameter
zachhannum Jan 6, 2026
d1167fe
Fix documentNew signature to match documentation
zachhannum Jan 6, 2026
e3436a3
Fix test to not require specific HTTP error message
zachhannum Jan 6, 2026
64e1413
Remove optional type parameter from findOAuthIntegration function
zachhannum Jan 7, 2026
f1107a5
Use curl instead of httr for http requests
zachhannum Jan 7, 2026
e6e0d4a
Style updates
zachhannum Jan 7, 2026
fa6ff53
Improve error handling and documentation
zachhannum Jan 7, 2026
f799e13
Simplify getDelegatedAzureToken fallback
zachhannum Jan 7, 2026
b7864fb
Use withr and aggregate duplicate test conditions
zachhannum Jan 7, 2026
393422f
Add regex matching in find for parity with Python
zachhannum Jan 7, 2026
f7c6b5a
Docs
zachhannum Jan 7, 2026
d00ddd0
Apply suggestion from @atheriel
zachhannum Jan 8, 2026
98bd46a
Add input validation
zachhannum Jan 8, 2026
64782bf
Use explicit unbox instead of auto unbox
zachhannum Jan 8, 2026
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
5 changes: 4 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ Suggests:
knitr,
rmarkdown,
clipr,
covr
covr,
Comment thread
zachhannum marked this conversation as resolved.
curl,
jsonlite,
withr
VignetteBuilder: knitr
Encoding: UTF-8
4 changes: 4 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,15 @@ export(document_range)
export(executeCommand)
export(filesPaneNavigate)
export(findFun)
export(findOAuthIntegration)
export(getActiveDocumentContext)
export(getActiveProject)
export(getConsoleEditorContext)
export(getDelegatedAzureToken)
export(getMode)
export(getOAuthCredentials)
export(getOAuthIntegration)
export(getOAuthIntegrations)
export(getPersistentValue)
export(getRStudioPackageDependencies)
export(getSourceEditorContext)
Expand Down
Loading