Skip to content

Commit

Permalink
Chore repository maintenance (#62)
Browse files Browse the repository at this point in the history
* chore(deps): update dependencies.

* chore(api): regenerate api.

* chore(legal): update notice.

* doc(cli): regenerate doc.

* chore(go): update to 1.16.7
  • Loading branch information
Zenithar authored Aug 9, 2021
1 parent 0d0cb53 commit 8255d79
Show file tree
Hide file tree
Showing 25 changed files with 7,704 additions and 2,648 deletions.
9,966 changes: 7,384 additions & 2,582 deletions NOTICE.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Download a [release](https://github.com/elastic/harp/releases) or build from sou

```sh
$ go version
go version go1.16.6 linux/amd64
go version go1.16.7 linux/amd64
```

> Simple go version manager - <https://github.com/stefanmaric/g>
Expand Down
4 changes: 2 additions & 2 deletions api/gen/go/cso/v1/secret.pb.go

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

4 changes: 2 additions & 2 deletions api/gen/go/cso/v1/validator_api.pb.go

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

4 changes: 2 additions & 2 deletions api/gen/go/harp/bundle/v1/bundle.pb.go

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

4 changes: 2 additions & 2 deletions api/gen/go/harp/bundle/v1/bundle_api.pb.go

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

4 changes: 2 additions & 2 deletions api/gen/go/harp/bundle/v1/patch.pb.go

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

4 changes: 2 additions & 2 deletions api/gen/go/harp/bundle/v1/ruleset.pb.go

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

4 changes: 2 additions & 2 deletions api/gen/go/harp/bundle/v1/template.pb.go

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

4 changes: 2 additions & 2 deletions api/gen/go/harp/container/v1/container.pb.go

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

2 changes: 1 addition & 1 deletion build/legal/generate-notice.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ generate_notice() {
(
cd "$PROJECT_DIR"
go mod download
go list -m -json all | "${TEMP_DIR}"/go-licence-detector \
go list -mod=readonly -m -json all | "${TEMP_DIR}"/go-licence-detector \
-depsTemplate="${SCRIPT_DIR}"/templates/dependencies.asciidoc.tmpl \
-depsOut="${PROJECT_DIR}"/docs/dependencies.asciidoc \
-noticeTemplate="${SCRIPT_DIR}"/templates/NOTICE.txt.tmpl \
Expand Down
1 change: 1 addition & 0 deletions docs/cmd/harp.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Extensible secret management tool

* [harp bug](harp_bug.md) - start a bug report
* [harp bundle](harp_bundle.md) - Bundle commands
* [harp completion](harp_completion.md) - generate the autocompletion script for the specified shell
* [harp config](harp_config.md) - Manage Service Configuration
* [harp container](harp_container.md) - Secret container commands
* [harp cso](harp_cso.md) - CSO commands
Expand Down
25 changes: 25 additions & 0 deletions docs/cmd/harp_completion.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## harp completion

generate the autocompletion script for the specified shell

### Synopsis


Generate the autocompletion script for harp for the specified shell.
See each sub-command's help for details on how to use the generated script.


### Options

```
-h, --help help for completion
```

### SEE ALSO

* [harp](harp.md) - Extensible secret management tool
* [harp completion bash](harp_completion_bash.md) - generate the autocompletion script for bash
* [harp completion fish](harp_completion_fish.md) - generate the autocompletion script for fish
* [harp completion powershell](harp_completion_powershell.md) - generate the autocompletion script for powershell
* [harp completion zsh](harp_completion_zsh.md) - generate the autocompletion script for zsh

39 changes: 39 additions & 0 deletions docs/cmd/harp_completion_bash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## harp completion bash

generate the autocompletion script for bash

### Synopsis


Generate the autocompletion script for the bash shell.

This script depends on the 'bash-completion' package.
If it is not installed already, you can install it via your OS's package manager.

To load completions in your current shell session:
$ source <(harp completion bash)

To load completions for every new session, execute once:
Linux:
$ harp completion bash > /etc/bash_completion.d/harp
MacOS:
$ harp completion bash > /usr/local/etc/bash_completion.d/harp

You will need to start a new shell for this setup to take effect.


```
harp completion bash
```

### Options

```
-h, --help help for bash
--no-descriptions disable completion descriptions
```

### SEE ALSO

* [harp completion](harp_completion.md) - generate the autocompletion script for the specified shell

33 changes: 33 additions & 0 deletions docs/cmd/harp_completion_fish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
## harp completion fish

generate the autocompletion script for fish

### Synopsis


Generate the autocompletion script for the fish shell.

To load completions in your current shell session:
$ harp completion fish | source

To load completions for every new session, execute once:
$ harp completion fish > ~/.config/fish/completions/harp.fish

You will need to start a new shell for this setup to take effect.


```
harp completion fish [flags]
```

### Options

```
-h, --help help for fish
--no-descriptions disable completion descriptions
```

### SEE ALSO

* [harp completion](harp_completion.md) - generate the autocompletion script for the specified shell

31 changes: 31 additions & 0 deletions docs/cmd/harp_completion_powershell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## harp completion powershell

generate the autocompletion script for powershell

### Synopsis


Generate the autocompletion script for powershell.

To load completions in your current shell session:
PS C:\> harp completion powershell | Out-String | Invoke-Expression

To load completions for every new session, add the output of the above command
to your powershell profile.


```
harp completion powershell [flags]
```

### Options

```
-h, --help help for powershell
--no-descriptions disable completion descriptions
```

### SEE ALSO

* [harp completion](harp_completion.md) - generate the autocompletion script for the specified shell

38 changes: 38 additions & 0 deletions docs/cmd/harp_completion_zsh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## harp completion zsh

generate the autocompletion script for zsh

### Synopsis


Generate the autocompletion script for the zsh shell.

If shell completion is not already enabled in your environment you will need
to enable it. You can execute the following once:

$ echo "autoload -U compinit; compinit" >> ~/.zshrc

To load completions for every new session, execute once:
# Linux:
$ harp completion zsh > "${fpath[1]}/_harp"
# macOS:
$ harp completion zsh > /usr/local/share/zsh/site-functions/_harp

You will need to start a new shell for this setup to take effect.


```
harp completion zsh [flags]
```

### Options

```
-h, --help help for zsh
--no-descriptions disable completion descriptions
```

### SEE ALSO

* [harp completion](harp_completion.md) - generate the autocompletion script for the specified shell

1 change: 1 addition & 0 deletions docs/cmd/harp_keygen.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Key generation commands
* [harp](harp.md) - Extensible secret management tool
* [harp keygen aes-gcm](harp_keygen_aes-gcm.md) - Generate and print an AES-GCM key
* [harp keygen aes-pmac-siv](harp_keygen_aes-pmac-siv.md) - Generate and print an AES-PMAC-SIV key
* [harp keygen aes-siv](harp_keygen_aes-siv.md) - Generate and print an AES-SIV key
* [harp keygen chacha](harp_keygen_chacha.md) - Generate and print a chacha20poly1305 key
* [harp keygen fernet](harp_keygen_fernet.md) - Generate and print a fernet key
* [harp keygen master-key](harp_keygen_master-key.md) - Generate and print a container master key
Expand Down
18 changes: 18 additions & 0 deletions docs/cmd/harp_keygen_aes-siv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## harp keygen aes-siv

Generate and print an AES-SIV key

```
harp keygen aes-siv [flags]
```

### Options

```
-h, --help help for aes-siv
```

### SEE ALSO

* [harp keygen](harp_keygen.md) - Key generation commands

3 changes: 2 additions & 1 deletion docs/cmd/harp_share_put.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ harp share put [flags]

### SEE ALSO

* [harp share](harp_share.md) - Share secret using Vault Cubbyhole
* [harp share](harp_share.md) - Share secret using Vault Cubbyhole

5 changes: 3 additions & 2 deletions docs/cmd/harp_version.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ harp version [flags]
### Options

```
-h, --help help for version
--json Display build info as json
-h, --help help for version
--json Display build info as json
--with-modules Display builtin go modules
```

### SEE ALSO
Expand Down
Loading

0 comments on commit 8255d79

Please sign in to comment.