Skip to content

Commit fa7a42d

Browse files
committed
feat(flagd): add new context enrichment appraoch for in-process provider
Signed-off-by: Simon Schrottner <[email protected]>
1 parent dbb2af9 commit fa7a42d

File tree

6 files changed

+114
-110
lines changed

6 files changed

+114
-110
lines changed

providers/flagd/go.mod

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/open-feature/go-sdk-contrib/providers/flagd
22

3-
go 1.23.0
3+
go 1.24.0
44

55
toolchain go1.24.4
66

@@ -14,15 +14,15 @@ require (
1414
github.com/go-logr/logr v1.4.3
1515
github.com/google/go-cmp v0.7.0
1616
github.com/hashicorp/golang-lru/v2 v2.0.7
17-
github.com/open-feature/flagd/core v0.11.5
17+
github.com/open-feature/flagd/core v0.12.1
1818
github.com/open-feature/go-sdk v1.15.1
1919
github.com/open-feature/go-sdk-contrib/tests/flagd v1.4.1
2020
github.com/testcontainers/testcontainers-go v0.32.0
2121
go.uber.org/mock v0.5.2
2222
go.uber.org/zap v1.27.0
2323
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b
24-
golang.org/x/net v0.38.0
25-
google.golang.org/grpc v1.71.0
24+
golang.org/x/net v0.41.0
25+
google.golang.org/grpc v1.73.0
2626
google.golang.org/protobuf v1.36.6
2727
)
2828

@@ -34,7 +34,6 @@ require (
3434
github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df // indirect
3535
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3636
github.com/containerd/containerd v1.7.27 // indirect
37-
github.com/containerd/errdefs v0.3.0 // indirect
3837
github.com/containerd/log v0.1.0 // indirect
3938
github.com/containerd/platforms v0.2.1 // indirect
4039
github.com/cpuguy83/dockercfg v0.3.1 // indirect
@@ -46,7 +45,7 @@ require (
4645
github.com/docker/go-connections v0.5.0 // indirect
4746
github.com/docker/go-units v0.5.0 // indirect
4847
github.com/felixge/httpsnoop v1.0.4 // indirect
49-
github.com/fsnotify/fsnotify v1.8.0 // indirect
48+
github.com/fsnotify/fsnotify v1.9.0 // indirect
5049
github.com/go-logr/stdr v1.2.2 // indirect
5150
github.com/go-ole/go-ole v1.2.6 // indirect
5251
github.com/gofrs/uuid v4.4.0+incompatible // indirect
@@ -66,7 +65,7 @@ require (
6665
github.com/moby/sys/userns v0.1.0 // indirect
6766
github.com/moby/term v0.5.0 // indirect
6867
github.com/morikuni/aec v1.0.0 // indirect
69-
github.com/open-feature/flagd-schemas v0.2.9-0.20250319190911-9b0ee43ecc47 // indirect
68+
github.com/open-feature/flagd-schemas v0.2.9-0.20250707123415-08b4c52d3b86 // indirect
7069
github.com/opencontainers/go-digest v1.0.0 // indirect
7170
github.com/opencontainers/image-spec v1.1.0 // indirect
7271
github.com/pkg/errors v0.9.1 // indirect
@@ -84,15 +83,15 @@ require (
8483
github.com/yusufpapurcu/wmi v1.2.3 // indirect
8584
github.com/zeebo/xxh3 v1.0.2 // indirect
8685
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
87-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
88-
go.opentelemetry.io/otel v1.35.0 // indirect
89-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
90-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
86+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
87+
go.opentelemetry.io/otel v1.37.0 // indirect
88+
go.opentelemetry.io/otel/metric v1.37.0 // indirect
89+
go.opentelemetry.io/otel/trace v1.37.0 // indirect
9190
go.uber.org/multierr v1.11.0 // indirect
92-
golang.org/x/crypto v0.36.0 // indirect
91+
golang.org/x/crypto v0.39.0 // indirect
9392
golang.org/x/mod v0.25.0 // indirect
94-
golang.org/x/sys v0.31.0 // indirect
93+
golang.org/x/sys v0.33.0 // indirect
9594
golang.org/x/text v0.26.0 // indirect
96-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
95+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
9796
gopkg.in/yaml.v3 v3.0.1 // indirect
9897
)

0 commit comments

Comments
 (0)