Skip to content

Commit

Permalink
release: v0.6.2 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames authored Oct 22, 2024
1 parent cae58d7 commit 9997e69
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.6.2

### [0.6.2](https://github.com/openfga/go-sdk/compare/v0.6.1...v0.6.2) (2024-10-21)

- fix: fix batch check consistency (#131)
- fix: fix data race on TelemetryInstances (#136) - thanks @Kryvchun!

NOTE: `TelemetryInstances` in `telemetry.go` has been deprecated, as its usage is intended to be internal. It will be removed in a future release.

## v0.6.1

### [0.6.1](https://github.com/openfga/go-sdk/compare/v0.6.0...v0.6.1) (2024-09-23)
Expand Down
4 changes: 2 additions & 2 deletions configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
)

const (
SdkVersion = "0.6.1"
SdkVersion = "0.6.2"

defaultUserAgent = "openfga-sdk go/0.6.1"
defaultUserAgent = "openfga-sdk go/0.6.2"
)

// RetryParams configures configuration for retry in case of HTTP too many request
Expand Down
4 changes: 2 additions & 2 deletions example/example1/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module example1

go 1.22.2

require github.com/openfga/go-sdk v0.6.1
require github.com/openfga/go-sdk v0.6.2

require (
github.com/go-logr/logr v1.4.2 // indirect
Expand All @@ -14,4 +14,4 @@ require (
)

// To reference local build, uncomment below and run `go mod tidy`
// replace github.com/openfga/go-sdk v0.6.1 => ../../
// replace github.com/openfga/go-sdk v0.6.1 => ../../
4 changes: 2 additions & 2 deletions example/opentelemetry/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ module openfga-opentelemetry-example
go 1.21

// To reference local build, uncomment below and run `go mod tidy`
// replace github.com/openfga/go-sdk v0.6.1 => ../../
// replace github.com/openfga/go-sdk v0.6.2 => ../../

require (
github.com/joho/godotenv v1.5.1
github.com/openfga/go-sdk v0.6.1
github.com/openfga/go-sdk v0.6.2
go.opentelemetry.io/otel v1.29.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.29.0
go.opentelemetry.io/otel/sdk v1.29.0
Expand Down

0 comments on commit 9997e69

Please sign in to comment.