Skip to content

chore: update permify api version v1.3.2 #2050

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

Merged
merged 2 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/api-reference/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Permify API",
"description": "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.",
"version": "v1.3.1",
"version": "v1.3.2",
"contact": {
"name": "API Support",
"url": "https://github.com/Permify/permify/issues",
Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference/openapiv2/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Permify API",
"description": "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.",
"version": "v1.3.1",
"version": "v1.3.2",
"contact": {
"name": "API Support",
"url": "https://github.com/Permify/permify/issues",
Expand Down
3 changes: 2 additions & 1 deletion internal/engines/balancer/balancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ func NewCheckEngineWithBalancer(
ctx context.Context,
checker invoke.Check,
schemaReader storage.SchemaReader,
no string,
dst *config.Distributed,
srv *config.GRPC,
authn *config.Authn,
Expand All @@ -47,7 +48,7 @@ func NewCheckEngineWithBalancer(
// Set up TLS credentials if paths are provided
if srv.TLSConfig.Enabled && srv.TLSConfig.CertPath != "" {
isSecure = true
creds, err = credentials.NewClientTLSFromFile(srv.TLSConfig.CertPath, "")
creds, err = credentials.NewClientTLSFromFile(srv.TLSConfig.CertPath, no)
if err != nil {
return nil, fmt.Errorf("could not load TLS certificate: %s", err)
}
Expand Down
2 changes: 1 addition & 1 deletion internal/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var Identifier = ""
*/
const (
// Version is the last release of the Permify (e.g. v0.1.0)
Version = "v1.3.1"
Version = "v1.3.2"
)

// Function to create a single line of the ASCII art with centered content and color
Expand Down
1 change: 1 addition & 0 deletions pkg/cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ func serve() func(cmd *cobra.Command, args []string) error {
ctx,
checker,
schemaReader,
cfg.NameOverride,
&cfg.Distributed,
&cfg.Server.GRPC,
&cfg.Authn,
Expand Down
2 changes: 1 addition & 1 deletion pkg/pb/base/v1/openapi.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 proto/base/v1/openapi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "Permify API";
description: "Permify is an open source authorization service for creating fine-grained and scalable authorization systems.";
version: "v1.3.1";
version: "v1.3.2";
contact: {
name: "API Support";
url: "https://github.com/Permify/permify/issues";
Expand Down