23e12e8624
Commits on Apr 18, 2022
-
Put all session cookies in the UserSession
- before this change, the current cookie was not in the UserSession, which meant that if two tabs were directly addressing different servers in the cluster, using different server:port (and thus different cookie domains), the most recent cookie in one cluster would not get revoked if the other session was signed out. It's safer to make sure all cookies used by a UserSession for one member in the cluster get revoked when another server revokes a cookie (i.e. the user signs out from there)
Commits on Apr 14, 2022
Commits on Apr 6, 2022
Commits on Apr 5, 2022
-
-
reduce chance of collisions when generating port for desktop <-> rses…
…sion communication (#10885) * reduce risk of port collision when launching desktop * tweaks * add some debug logging * tweaks * naming * add extra debugging * avoid rand() when generating shared secret * avoid macro collision * avoid logging shared secret in package builds * PR feedback * remove unused headers * a couple more tweaks
Commits on Apr 3, 2022
-
-
remove some punctuation exclusions from cite ids
these punctuation chracters (".", "?", and ":") are in fact allowed the pandoc spec
Commits on Apr 2, 2022
-
-
scan for cite marks at document load time
this will fixup any nested cite marks that pandoc might create as a result of invalid multi-id cites (e.g. ones where a semicolon is not used to delimit cite ids)
-
visual editor: always treat cite marks as valid cites (i.e. don't esc…
…ape the [ or ]) we asume that the visual editors internal mark detection is more robust than any regex we can throw at the cite contents (and in any case its harmless to not escape the brackets as it merely prevents writing cites and that aren't really cites, something we are still open to with the regex)
Commits on Apr 1, 2022
Commits on Mar 28, 2022
-
-
-
-
tweak CSS for enhanced R help (#10843)
* tweak CSS for enhanced R help * help equations be a bit more visible * more targeted selector
Commits on Mar 25, 2022
Commits on Mar 24, 2022
-
Merge pull request #10817 from rstudio/feature/dsl-env-jobs
Feature/dsl env jobs
Commits on Mar 23, 2022
Commits on Mar 21, 2022
Commits on Mar 17, 2022
-
-
Merge pull request #10781 from rstudio/bugfix/session-restore-pandoc
Fix session restore when pandoc location does not exist
Commits on Mar 16, 2022
-
Merge pull request #10798 from rstudio/bugfix/pt-windows-r-download
Fix location for downloading R in Windows dockerfile (Prairie Trillium)
-
-
Merge branch 'prairie-trillium' of https://github.com/rstudio/rstudio …
…into bugfix/session-restore-pandoc
-
-
removed check for existing RSTUDIO_PANDOC env during resume
- in my testing, I see that RSTUDIO_PANDOC is not set when we resume - looking at the code, I see that it's set later when initializing the RMarkdown module, only if it's not already set at that time.