The version of R you are using is newer than the maximum version of R supported by this version of RStudio

I've been using RStudio for years. I just installed it on a new machine. When I try to launch it, I get an error:
The version of R you are using (R 4.6.1) is newer than the maximum version of R supported by this version of RStudio (R 4.6.0).

RStudio version: RStudio 2026.06.0+242 "Blue Plumbago " (d1dc28bb, 2026-06-18) for macOS.

Yes, technically this version of RStudio was released a few days before 4.6.1, but it was very much expected. It's really odd that the latest version of RStudio is not working with the latest version of R.

I'm able to use R 4.6.1 with that same build of RStudio without the error. I've only tried on Windows so far, but will try on Mac in a bit.

Thank you for checking. It turns out the real problem was permissions of ~/.local/share/rstudio/log. After fixing that, RStudio opened.

However, it's odd that the R version error was showing up at all.

Yup, looking at the code, this message is only shown when there is a problem at startup of RStudio. Just having a version > 4.6.0 is not enough on its own to trigger the message.

There's no problem with 4.6.1 and current RStudio. I've opened an issue to bump the constant so this red-herring message isn't shown.

This warning was added, I believe, because R 4.6.0 was a hard-break; we had to make significant changes to RStudio to support it, and earlier version of RStudio would crash with R 4.6.0.

I discovered the real issue when I tried to launch from CLI:

$ /Applications/RStudio.app/Contents/MacOS/RStudio
Error: EACCES: permission denied, mkdir '/Users/username/.local/share/rstudio/log'
    at Object.mkdirSync (node:fs:1350:26)
    at e.exports._createLogDirIfNotExist 

It would've been great to have that show up somewhere in the GUI error window.

Agreed, opened Show error at startup when permission denied on critical folder · Issue #18179 · rstudio/rstudio · GitHub.

Curiously, when I triggered that error by modifying permissions, RStudio still started.

Interesting. Maybe there is another level of error messages to uncover.