-
Notifications
You must be signed in to change notification settings - Fork 4
Fix CLI group create command to require all mandatory fields #102
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
Open
Copilot
wants to merge
4
commits into
main
Choose a base branch
from
copilot/fix-75347315-562e-46c8-8ad1-a7b6e1ef81e2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c8d2c39
Initial plan
Copilot 4349849
Initial analysis complete - identified missing required flags in CLI …
Copilot f091d20
Fix CLI group create command to require version and enabled flags
Copilot be07ed1
fix: removerequired 'enabled' flag from create command
xbcsmith File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,55 @@ | ||
module github.com/sassoftware/event-provenance-registry/cli | ||
|
||
go 1.21.6 | ||
go 1.24 | ||
|
||
toolchain go1.24.7 | ||
|
||
replace github.com/sassoftware/event-provenance-registry => ../ | ||
|
||
require ( | ||
github.com/adrg/xdg v0.4.0 | ||
github.com/graph-gophers/graphql-go v1.5.1-0.20230420075959-f0f4e10d6a70 | ||
github.com/adrg/xdg v0.5.3 | ||
github.com/graph-gophers/graphql-go v1.6.0 | ||
github.com/sassoftware/event-provenance-registry v0.0.0-00010101000000-000000000000 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/viper v1.18.2 | ||
github.com/spf13/cobra v1.9.1 | ||
github.com/spf13/viper v1.20.1 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-sql-driver/mysql v1.7.0 // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/hashicorp/hcl v1.0.1-vault-3 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.9.0 // indirect | ||
github.com/go-sql-driver/mysql v1.9.3 // indirect | ||
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.14.0 // indirect | ||
github.com/jackc/pgconn v1.14.3 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.2 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | ||
github.com/jackc/pgx/v5 v5.3.1 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.3 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect | ||
github.com/jackc/pgx/v5 v5.7.5 // indirect | ||
github.com/jackc/puddle/v2 v2.2.2 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect | ||
github.com/sagikazarmark/locafero v0.4.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.4 // indirect | ||
github.com/sagikazarmark/locafero v0.9.0 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/afero v1.14.0 // indirect | ||
github.com/spf13/cast v1.9.2 // indirect | ||
github.com/spf13/pflag v1.0.6 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.9.0 // indirect | ||
golang.org/x/crypto v0.18.0 // indirect | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gorm.io/datatypes v1.2.0 // indirect | ||
gorm.io/driver/mysql v1.4.7 // indirect | ||
gorm.io/driver/postgres v1.5.2 // indirect | ||
gorm.io/gorm v1.25.1 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/crypto v0.39.0 // indirect | ||
golang.org/x/sync v0.15.0 // indirect | ||
golang.org/x/sys v0.33.0 // indirect | ||
golang.org/x/text v0.26.0 // indirect | ||
gorm.io/datatypes v1.2.5 // indirect | ||
gorm.io/driver/mysql v1.6.0 // indirect | ||
gorm.io/driver/postgres v1.6.0 // indirect | ||
gorm.io/gorm v1.30.0 // indirect | ||
) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.