Skip to content

Commit 2822a5f

Browse files
upgrade to latest dependencies (knative-extensions#208)
bumping knative.dev/client 8b6076c...9b838cf: > 9b838cf upgrade to latest dependencies (# 1570) bumping github.com/spf13/cobra de187e8...178edbb: > 178edbb Bump github.com/spf13/viper from 1.9.0 to 1.10.0 (# 1561) > 9054739 Remove __complete cmd for program without subcmds (# 1563) > 19c9c74 Always include the os package import when generating the root command (# 1557) > 01e05b8 Bump github.com/spf13/viper from 1.8.1 to 1.9.0 (# 1554) > 36bff0a fix root.go.golden (# 1552) > 1854bb5 Fix some typos (mostly found by codespell) (# 1514) > ff2c55e chore(ci): use golangci-lint-action (# 1477) > 1beb476 fix: Duplicate error message from cobra init boilerplates (# 1463) > 6f84ef4 Provide option to hide default 'completion' cmd (# 1541) > ee75a2b Remove trailing spaces from bash completion command description (# 1520) > 25bab5a Fix invalid shell completion when used with ~/.cobra.yaml (# 1510) > 3fed3ef Support different bash completion options (# 1509) > 507caf5 completions: fix mixed tab/spaces indentation (# 1473) > c7a4421 fix: typo in {bash,zsh}_completions.go (# 1459) > c3573e2 Completion: Capitalize short desc, and remove extra space from long (# 1455) > dd40ab0 feat: improve completions help formatting (# 1444) > d298d79 Update shell_completions.md to have automatically rootcmd (# 1372) > 6f19fa9 fix: unbound variables in bash completion (# 1321) > d65ba12 github: add dependabot configuration file (# 1427) > 45e521e enable composing PositionalArgs (# 896) > 9e1d6f1 args_test: add helper functions (# 1426) > 62a72cd fix(diff): use arg '--strip-trailing-cr' (# 949) > 442031e Allow specifying licenses using their SPDX identifier (# 1159) > 78969f9 Remove "Lesser" from header for GPL-2.0 template (# 880) > 3c84bf8 Small correction in User Guide (# 1009) > 3ba5f15 Projects using cobra update (# 1454) > bfacc59 Addressing typos identified by @marckhouzam > 2682562 Simplifying goGet function > cf87fc4 Updating generator documentation and links > c97b7ec Update documentation to reflect the module aware generator > 9388e79 Cobra generator now works within Go modules > c9edb78 Change generator default license to none > dcf42b2 Change generator to require opting in to viper. > c0dd5cd Removing unused imports when not using Viper > f09e947 readme: remove ToC, since it's now shown by GitHub (# 1429) > d2c0cb3 DisableFlagParsing must disable flag completion (# 1161) > c1973d3 Update projects-using markdown with Tanzu (# 1501) > 4fd30b6 ci: test golang 1.16.x and 1.17.x too (# 1425) > 2a52778 go.mod: cpuguy83/go-md2man/v2 v2.0.1 (# 1460) > 56060d1 Add Meroxa CLI (# 1377) Signed-off-by: Knative Automation <[email protected]>
1 parent 2e5a2b5 commit 2822a5f

18 files changed

+650
-304
lines changed

Diff for: go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module knative.dev/kn-plugin-quickstart
33
go 1.15
44

55
require (
6-
github.com/spf13/cobra v1.2.1
6+
github.com/spf13/cobra v1.3.0
77
gotest.tools/v3 v3.0.3
8-
knative.dev/client v0.28.1-0.20220118151532-8b6076ca331e
8+
knative.dev/client v0.28.1-0.20220119125353-9b838cfb0a83
99
knative.dev/hack v0.0.0-20220118141833-9b2ed8471e30
1010

1111
)

Diff for: go.sum

+171-92
Large diffs are not rendered by default.

Diff for: vendor/github.com/spf13/cobra/Makefile

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/spf13/cobra/README.md

+8-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/spf13/cobra/args.go

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/spf13/cobra/bash_completions.go

+30-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/spf13/cobra/bash_completionsV2.go

+30-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/spf13/cobra/command_notwin.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/spf13/cobra/command_win.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)