Collect Version Histories For Vendor Products
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
1.8 KiB

6 years ago
---
output: rmarkdown::github_document
---
# vershist
Collect Version Histories For Vendor Products
## Description
Provides a set of functions to gather version histories of products
(mainly software products) from their sources (generally websites).
## What's Inside The Tin
The following functions are implemented:
Core:
- `apache_httpd_version_history`: Retrieve Apache httpd Version Release History
- `lighttpd_version_history`: Retrieve lighttpd Version Release History
- `mongodb_version_history`: Retrieve MongoDB Version Release History
6 years ago
- `mysql_version_history`: Retrieve MySQL Version Release History
- `nginx_version_history`: Retrieve nginx Version Release History
6 years ago
- `openresty_version_history`: Retrieve openresty Version Release History
- `sendmail_version_history`: Retrieve sendmail Version Release History
6 years ago
- `sqlite_version_history`: Retrieve sqlite Version Release History
6 years ago
Utility:
- `is_valid`: Test if semantic version strings are valid
## Installation
```{r eval=FALSE}
devtools::install_github("hrbrmstr/vershist")
```
```{r message=FALSE, warning=FALSE, error=FALSE, include=FALSE}
options(width=120)
```
## Usage
```{r message=FALSE, warning=FALSE, error=FALSE}
library(vershist)
# current verison
packageVersion("vershist")
```
Apache
6 years ago
```{r apache, cache=TRUE}
6 years ago
apache_httpd_version_history()
```
lighttpd
6 years ago
```{r lighttpd, cache=TRUE}
6 years ago
lighttpd_version_history()
```
mongodb
6 years ago
```{r mongodb, cache=TRUE}
6 years ago
mongodb_version_history()
```
6 years ago
MySQL
```{r mysql, cache=TRUE}
mysql_version_history()
```
6 years ago
nginx
6 years ago
```{r nginx, cache=TRUE}
6 years ago
nginx_version_history()
```
6 years ago
openresty
6 years ago
```{r openresty, cache=TRUE}
6 years ago
openresty_version_history()
```
6 years ago
SQLite
```{r sqlite, cache=TRUE}
sqlite_version_history()
```
6 years ago
sendmail
6 years ago
```{r sendmail, cache=TRUE}
6 years ago
sendmail_version_history()
```