Skip to content

Commit

Permalink
Merge pull request #1272 from Permify/next
Browse files Browse the repository at this point in the history
feat: update attribute key from 'environment' to 'project.id'
  • Loading branch information
tolgaOzen authored May 28, 2024
2 parents 73adf79 + 1cb1575 commit 5431afb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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": "v0.8.7",
"version": "v0.8.8",
"contact": {
"name": "API Support",
"url": "https://github.com/Permify/permify/issues",
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 = "v0.8.7"
Version = "v0.8.8"
)

// Function to create a single line of the ASCII art with centered content and color
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 pkg/telemetry/tracer.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func NewTracer(exporter trace.SpanExporter) func(context.Context) error {
semconv.SchemaURL,
semconv.ServiceNameKey.String("permify"),
attribute.String("id", internal.Identifier),
attribute.String("environment", internal.Identifier),
attribute.String("project.id", internal.Identifier),
attribute.String("version", internal.Version),
attribute.String("host_name", hostName),
attribute.String("os", runtime.GOOS),
Expand Down
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: "v0.8.7";
version: "v0.8.8";
contact: {
name: "API Support";
url: "https://github.com/Permify/permify/issues";
Expand Down

0 comments on commit 5431afb

Please sign in to comment.