Skip to content
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

chore(deps): bump @openapitools/openapi-generator-cli from 2.7.0 to 2.15.3 #1618

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,044 changes: 864 additions & 180 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
},
"prettier": "ory-prettier-styles",
"dependencies": {
"@openapitools/openapi-generator-cli": "^2.7.0",
"@openapitools/openapi-generator-cli": "^2.15.3",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.3"
},

Unchanged files with check annotations Beta

ctx, cancel := context.WithTimeout(g.ctx, 3*time.Second)
defer cancel()
conn, err := grpc.DialContext(ctx, remote, grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithBlock(), grpc.WithDisableHealthCheck())

Check failure on line 49 in internal/e2e/grpc_client_test.go

GitHub Actions / Run lints and checks

SA1019: grpc.DialContext is deprecated: use NewClient instead. Will be supported throughout 1.x. (staticcheck)
require.NoError(t, err)
return conn
resp, err := c.ListRelationTuples(g.ctx, &rts.ListRelationTuplesRequest{
RelationQuery: g.createQuery(q),
PageToken: pagination.Token,
PageSize: int32(pagination.Size),

Check failure on line 101 in internal/e2e/grpc_client_test.go

GitHub Actions / Run lints and checks

G115: integer overflow conversion int -> int32 (gosec)
})
require.NoError(t, err)
_, err := c.ListRelationTuples(g.ctx, &rts.ListRelationTuplesRequest{
RelationQuery: g.createQuery(q),
PageToken: pagination.Token,
PageSize: int32(pagination.Size),

Check failure on line 124 in internal/e2e/grpc_client_test.go

GitHub Actions / Run lints and checks

G115: integer overflow conversion int -> int32 (gosec)
})
require.Error(t, err)
s, ok := status.FromError(err)
resp, err := c.Expand(g.ctx, &rts.ExpandRequest{
Subject: rts.NewSubjectSet(r.Namespace, r.Object, r.Relation),
MaxDepth: int32(depth),

Check failure on line 215 in internal/e2e/grpc_client_test.go

GitHub Actions / Run lints and checks

G115: integer overflow conversion int -> int32 (gosec)
})
require.NoError(t, err)
)
func main() {
conn, err := grpc.Dial("127.0.0.1:4466", grpc.WithTransportCredentials(insecure.NewCredentials()))

Check failure on line 20 in contrib/docs-code-samples/list-api-display-objects/01-list-PM/main.go

GitHub Actions / Run lints and checks

SA1019: grpc.Dial is deprecated: use NewClient instead. Will be supported throughout 1.x. (staticcheck)
if err != nil {
panic(err.Error())
}
)
func main() {
conn, err := grpc.Dial("127.0.0.1:4466", grpc.WithTransportCredentials(insecure.NewCredentials()))

Check failure on line 20 in contrib/docs-code-samples/list-api-display-objects/02-list-coffee-break/main.go

GitHub Actions / Run lints and checks

SA1019: grpc.Dial is deprecated: use NewClient instead. Will be supported throughout 1.x. (staticcheck)
if err != nil {
panic(err.Error())
}
}()
t.Cleanup(s.Stop)
conn, err := grpc.Dial("bufnet",

Check failure on line 65 in internal/schema/handler_test.go

GitHub Actions / Run lints and checks

SA1019: grpc.Dial is deprecated: use NewClient instead. Will be supported throughout 1.x. (staticcheck)
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithContextDialer(func(context.Context, string) (net.Conn, error) { return l.Dial() }),
)
return &opl.ParseError{
Message: e.msg,
Start: &opl.SourcePosition{
Line: uint32(start.Line),

Check failure on line 87 in internal/schema/parse_errors.go

GitHub Actions / Run lints and checks

G115: integer overflow conversion int -> uint32 (gosec)
Column: uint32(start.Col),

Check failure on line 88 in internal/schema/parse_errors.go

GitHub Actions / Run lints and checks

G115: integer overflow conversion int -> uint32 (gosec)
},
End: &opl.SourcePosition{
Line: uint32(end.Line),

Check failure on line 91 in internal/schema/parse_errors.go

GitHub Actions / Run lints and checks

G115: integer overflow conversion int -> uint32 (gosec)
Column: uint32(end.Col),
},
}