Skip to content

boxr 0.3.5

Compare
Choose a tag to compare
@ijlyttle ijlyttle released this 19 Nov 12:11
a809698

Improvements

  • adds automatic-retry to authentication functions, box_auth() and box_auth_service(). (#131)

  • adds box_auth_service() to support OAuth2.0 using JWT, also adds box_dir_invite() to invite a collaboration on a Box folder. This makes it easier to authenticate to box.com from remote computers (e.g. RStudio Cloud, RStudio Server) (#23)

  • modifies box_source(): adds ... argument to pass other arguments to source().

  • modifies box_write(), box_dl():

    • deprecates the filename argument in favor of file_name.
  • modifies box_auth() (#96):

    • deprecates write.Renv argument
    • copies text to the clipboard, rather than overwrite the .Renviron file
    • returns invisible(NULL) upon success
  • deprecates box_auth_on_attach() (#96)

  • adds a logo (#92, @nathancday)

  • converts pagination method from offset to marker-based paging (#79, @awong234)

  • adds option to return specified fields in box_ls() (#72, @awong234)

  • adds updated screen shots (pngs in images/) and description for creating a Box App with the new Box Developer Console UI. Also added reference for box_auth_on_attach in step 4 'And you're done'. (#57, @nathancday)

Bug Fixes

  • box_pagination() refactored to employ marker-based paging instead of offset-based paging, avoiding a hard limit of 300,000 offset (#74, @awong234)

  • fixes bug in box_pagination() to enforce integer for offset (#71, @awong234) Deprecated, pagination now uses marker-based paging.

  • fixes bug in box_search_files() (#61, @j450h1)