Skip to content

Commit 4b701b0

Browse files
prepping new release
1 parent ca8ff4d commit 4b701b0

File tree

11 files changed

+21
-16
lines changed

11 files changed

+21
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,9 @@
3232
- Added some clippy fixes
3333

3434
## 1.0.10
35-
- Addressed some aging dependencies
35+
- Addressed some aging dependencies
36+
37+
## 1.0.11
38+
- The update from 1.0.10 caused a major bug where choctaw_hog was reporting 0 results. This was due to a change in the
39+
behavior of the Rust Git library. The change is fixed and tested on MacOS.
40+
- Added the Slack hog - hante hog

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rusty_hogs"
3-
version = "1.0.10"
3+
version = "1.0.11"
44
authors = ["Scott Cutler <scutler@newrelic.com>"]
55
edition = "2018"
66
description = "This project provides a set of scanners that will use regular expressions to try and detect the presence of sensitive information such as API keys, passwords, and personal information. It includes a set of regular expressions by default, but will also accept a JSON object containing your custom regular expressions."

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ Download and unzip the [latest ZIP](https://github.com/newrelic/rusty-hog/releas
5151
on the releases tab. Then, run each binary with `-h` to see the usage.
5252

5353
```shell script
54-
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.10/rustyhogs-darwin-choctaw_hog-1.0.10.zip
55-
unzip rustyhogs-darwin-choctaw_hog-1.0.10.zip
54+
wget https://github.com/newrelic/rusty-hog/releases/download/v1.0.11/rustyhogs-darwin-choctaw_hog-1.0.11.zip
55+
unzip rustyhogs-darwin-choctaw_hog-1.0.11.zip
5656
darwin_releases/choctaw_hog -h
5757
```
5858

@@ -61,8 +61,8 @@ Rusty Hog Docker images can be found at the authors personal DockerHub page [her
6161
A Docker Image is built for each Hog and for each release. So to use choctaw_hog you would run the following commands:
6262

6363
```shell script
64-
docker pull wetfeet2000/choctaw_hog:1.0.10
65-
docker run -it --rm wetfeet2000/choctaw_hog:1.0.10 --help
64+
docker pull wetfeet2000/choctaw_hog:1.0.11
65+
docker run -it --rm wetfeet2000/choctaw_hog:1.0.11 --help
6666
```
6767

6868
## How to build
@@ -358,7 +358,7 @@ An example of this format is here:
358358
```
359359

360360

361-
As of version 1.0.10, the current default regex JSON used is as follows:
361+
As of version 1.0.11, the current default regex JSON used is as follows:
362362

363363
```json
364364
{

build_ghrelease.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ mv scripts/.idea ../
2727
strip darwin_releases/*
2828
for f in darwin_releases/*; do
2929
ft=$(echo $f | awk -F/ '{print $2}');
30-
zip -r rustyhogs-darwin-$ft-1.0.10.zip $f;
30+
zip -r rustyhogs-darwin-$ft-1.0.11.zip $f;
3131
done
3232
for f in musl_releases/*; do
3333
ft=$(echo $f | awk -F/ '{print $2}');
34-
zip -r rustyhogs-musl-$ft-1.0.10.zip $f;
34+
zip -r rustyhogs-musl-$ft-1.0.11.zip $f;
3535
done
3636
zip -r rustyhogs-lambda_$1.zip berkshire_lambda.zip
3737
zip -r rustyhogs-scripts_$1.zip scripts

src/bin/ankamali_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ use oauth2::{InstalledFlowAuthenticator, InstalledFlowReturnMethod};
4343
#[tokio::main]
4444
async fn main() {
4545
let matches = clap_app!(ankamali_hog =>
46-
(version: "1.0.10")
46+
(version: "1.0.11")
4747
(author: "Scott Cutler <scutler@newrelic.com>")
4848
(about: "Google Drive secret scanner in Rust.")
4949
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

src/bin/berkshire_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ use std::collections::HashSet;
4545
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
4646
fn main() {
4747
let matches = clap_app!(berkshire_hog =>
48-
(version: "1.0.10")
48+
(version: "1.0.11")
4949
(author: "Scott Cutler <scutler@newrelic.com>")
5050
(about: "S3 secret hunter in Rust. Avoid bandwidth costs, run this within a VPC!")
5151
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

src/bin/choctaw_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use rusty_hogs::{SecretScanner, SecretScannerBuilder};
5252
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
5353
fn main() {
5454
let matches = clap_app!(choctaw_hog =>
55-
(version: "1.0.10")
55+
(version: "1.0.11")
5656
(author: "Scott Cutler <scutler@newrelic.com>")
5757
(about: "Git secret scanner in Rust")
5858
(@arg REGEX: -r --regex +takes_value "Sets a custom regex JSON file")

src/bin/duroc_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const GZEXTENSIONS: &[&str] = &["gz", "tgz"];
6969
/// Main entry function that uses the [clap crate](https://docs.rs/clap/2.33.0/clap/)
7070
fn main() {
7171
let matches = clap_app!(duroc_hog =>
72-
(version: "1.0.10")
72+
(version: "1.0.11")
7373
(author: "Scott Cutler <scutler@newrelic.com>")
7474
(about: "File system secret scanner in Rust")
7575
(@arg REGEX: -r --regex +takes_value "Sets a custom regex JSON file")

src/bin/essex_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub struct ConfluencePage {
7474
#[tokio::main]
7575
async fn main() {
7676
let matches = clap_app!(gottingen_hog =>
77-
(version: "1.0.10")
77+
(version: "1.0.11")
7878
(author: "Emily Cain <ecain@newrelic.com>, Scott Cutler")
7979
(about: "Confluence secret scanner in Rust.")
8080
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

src/bin/gottingen_hog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ pub struct JiraFinding {
6060
#[tokio::main]
6161
async fn main() {
6262
let matches: ArgMatches = clap_app!(gottingen_hog =>
63-
(version: "1.0.10")
63+
(version: "1.0.11")
6464
(author: "Emily Cain <ecain@newrelic.com>")
6565
(about: "Jira secret scanner in Rust.")
6666
(@arg REGEX: --regex +takes_value "Sets a custom regex JSON file")

0 commit comments

Comments
 (0)