Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CRAN release v 1.2.0 #49

Merged
merged 3 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Authors@R: c(person("Rich", "FitzJohn", role = c("aut", "cre"),
person("Imperial College of Science, Technology and Medicine",
role = "cph"))
Title: Vault Client for Secrets and Sensitive Data
Version: 1.1.6
Version: 1.2.0
Description: Provides an interface to a 'HashiCorp' vault server over
its http API (typically these are self-hosted; see
<https://www.vaultproject.io>). This allows for secure storage and
Expand Down
2 changes: 1 addition & 1 deletion R/vault_client_auth_ldap.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ vault_client_auth_ldap <- R6::R6Class(
##' "Configure LDAP") for the list of accepted parameters here
##' via the dots argument; these are passed through directly
##' (with the exception of `url` which is the only required
##' parameter and for which contatenation of multiple values is
##' parameter and for which concatenation of multiple values is
##' done for you.
##'
##' @param url The LDAP server to connect to. Examples:
Expand Down
1 change: 1 addition & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ hmac
io
knitr
kv
ldap
linux
nonstandard
reevaluated
Expand Down
2 changes: 1 addition & 1 deletion man/vault_client_auth_ldap.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vignettes/packages.Rmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Using vaultr in packages"
author: "Rich FitzJohn"
date: "2023-07-24"
date: "2023-11-09"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{Using vaultr in packages}
Expand Down Expand Up @@ -140,7 +140,7 @@ Sys.getenv("VAULT_TOKEN")
```

```
## [1] "e0113699-c4ce-4620-9dc8-28b4c5fa5eef"
## [1] "870e5c90-c908-bb4f-331e-c0cba32a457e"
```

## Handling lack of vault gracefully
Expand Down
4 changes: 2 additions & 2 deletions vignettes/vaultr.Rmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "vaultr"
author: "Rich FitzJohn"
date: "2023-08-21"
date: "2023-11-09"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{vaultr}
Expand Down Expand Up @@ -35,7 +35,7 @@ Sys.getenv(c("VAULT_ADDR", "VAULT_TOKEN", "VAULTR_AUTH_METHOD"))

```
## VAULT_ADDR VAULT_TOKEN
## "http://127.0.0.1:18200" "94738a1d-9fe8-46e3-04e4-287c00faea7b"
## "http://127.0.0.1:18200" "1cd28503-0d1d-cb1d-80ce-30d3bfeb2e31"
## VAULTR_AUTH_METHOD
## "token"
```
Expand Down
Loading