Skip to content

paws.common-v0.3.12

Compare
Choose a tag to compare
@davidkretch davidkretch released this 15 Aug 17:15
· 1385 commits to main since this release
3654ece
  • Support S3 access points in all S3 operations that accept a bucket argument.
    Fixes #403.
  • Fix certain API requests for S3 that were malformed due to mistakenly
    including empty list elements, e.g. s3_put_bucket_lifecycle_configuration.
    Fixes #438.
  • Add an option to immediately close all HTTP connections, instead of the
    default behavior which will reuse connections for requests within 5 seconds.
    Using this feature allows you to switch credentials within 5 seconds without
    getting your request rejected with a SignatureDoesNotMatch error.
    Example usage: s3 <- paws::s3(config = list(close_connection = TRUE)).
    Fixes #431.