Skip to content

Commit

Permalink
Update shared and dependencies to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thequailman committed Dec 11, 2023
1 parent 6451bae commit 35aec2d
Show file tree
Hide file tree
Showing 590 changed files with 29,390 additions and 13,283 deletions.
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @candiddev/engineering
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# YAML8n
# <img alt=logo src=yaml8n.png width=40px> YAML8n

> Easy Localizations, Great Developer Experience
Expand All @@ -16,7 +16,7 @@ Visit https://yaml8n.dev for more information.

## License

The code in this repository is licensed under the [GNU AGPL](https://www.gnu.org/licenses/agpl-3.0.en.html). Visit https://yaml8n.dev/pricing/ to purchase a license exemptions.
The code in this repository is licensed under the [GNU AGPL](https://www.gnu.org/licenses/agpl-3.0.en.html). Visit https://yaml8n.dev/pricing/ to purchase a license exemption.

## Development

Expand Down
29 changes: 15 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@ require (
github.com/candiddev/shared v0.0.0-00010101000000-000000000000
github.com/fsnotify/fsnotify v1.6.0
github.com/google/go-cmp v0.5.9
golang.org/x/text v0.12.0
golang.org/x/text v0.13.0
sigs.k8s.io/yaml v1.3.0
)

require (
cloud.google.com/go v0.110.2 // indirect
cloud.google.com/go/compute v1.19.3 // indirect
cloud.google.com/go v0.110.4 // indirect
cloud.google.com/go/compute v1.21.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/disintegration/imaging v1.6.2 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
Expand All @@ -31,6 +30,8 @@ require (
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.11.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
github.com/itchyny/gojq v0.12.14 // indirect
github.com/itchyny/timefmt-go v0.1.5 // indirect
github.com/matoous/go-nanoid/v2 v2.0.0 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/otel v1.16.0 // indirect
Expand All @@ -41,17 +42,17 @@ require (
go.opentelemetry.io/otel/sdk v1.16.0 // indirect
go.opentelemetry.io/otel/trace v1.16.0 // indirect
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/image v0.10.0 // indirect
golang.org/x/net v0.11.0 // indirect
golang.org/x/oauth2 v0.8.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/oauth2 v0.10.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.13.0 // indirect
google.golang.org/api v0.126.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
google.golang.org/grpc v1.55.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/grpc v1.58.3 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
71 changes: 32 additions & 39 deletions go.sum

Large diffs are not rendered by default.

127 changes: 127 additions & 0 deletions go.work.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions go/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ func (c *config) CLIConfig() *cli.Config {
return &c.CLI
}

func (c *config) Parse(ctx context.Context, configArgs []string, paths string) errs.Err {
return logger.Error(ctx, cfg.Parse(ctx, c, configArgs, "yaml8n", "", paths))
func (c *config) Parse(ctx context.Context, configArgs []string) errs.Err {
return logger.Error(ctx, cfg.Parse(ctx, c, configArgs, "YAML8N", c.CLI.ConfigPath))
}
2 changes: 1 addition & 1 deletion go/vendor/cloud.google.com/go/compute/internal/version.go

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

54 changes: 38 additions & 16 deletions go/vendor/github.com/candiddev/shared/go/cli/cli.go

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

77 changes: 77 additions & 0 deletions go/vendor/github.com/candiddev/shared/go/cli/jq.go

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

42 changes: 13 additions & 29 deletions go/vendor/github.com/candiddev/shared/go/cli/print.go

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

Loading

0 comments on commit 35aec2d

Please sign in to comment.