Skip to content

Commit 7afbdff

Browse files
authored
Update paws.common version to 0.3.10 (#415)
* Update paws.common version to 0.3.10 * Delete LazyData attribute from DESCRIPTION
1 parent 7543ada commit 7afbdff

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

paws.common/DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: paws.common
22
Type: Package
33
Title: Paws Low-Level Amazon Web Services API
4-
Version: 0.3.9
4+
Version: 0.3.10
55
Authors@R: c(
66
person("David", "Kretch", email = "[email protected]", role = c("aut", "cre")),
77
person("Adam", "Banker", email = "[email protected]", role = "aut"),
@@ -14,7 +14,6 @@ Description: Functions for making low-level API requests to Amazon Web Services
1414
Service (S3).
1515
License: Apache License (>= 2.0)
1616
Encoding: UTF-8
17-
LazyData: true
1817
Imports:
1918
base64enc,
2019
digest,

paws.common/NEWS.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# paws.common 0.3.10
2+
3+
* Use path style URLs for S3 when using custom endpoints, (e.g.
4+
localhost:9000/mybucket). This is useful when using software like MinIO. When
5+
not using custom endpoints, Paws will in general use "virtual hosted" URLs
6+
(e.g. mybucket.s3.amazonaws.com) except in special cases.
7+
8+
* Use path style URLs for S3 when using the new `s3_force_path_style` option
9+
when calling paws::s3(), e.g.:
10+
```r
11+
s3 <- paws::s3(config = list(
12+
s3_force_path_style = TRUE
13+
))
14+
```
15+
16+
* Add support and a default value for `timeout`, how long to wait in seconds
17+
for an acknowledgement of an HTTP request before failing. Default = 60.
18+
This is user configurable by adding arguments to the service call, e.g.
19+
```r
20+
svc <- paws::svc(config = list(timeout = 10))
21+
```
22+
23+
* Don't skip lower case field names for REST location elements. For example,
24+
`lexmodelbuildingservice$create_bot_version(name, checksum)` previously
25+
failed due incorrectly skipping the `name` field.
26+
127
# paws.common 0.3.9
228

329
* Support multifactor authentication, using the `mfa_serial` shared

0 commit comments

Comments
 (0)