Skip to content

Commit e151b1f

Browse files
fix(deps): update module github.com/open-feature/flagd/core to v0.11.2 (#1570)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/open-feature/flagd/core](https://redirect.github.com/open-feature/flagd) | `v0.11.1` -> `v0.11.2` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-feature%2fflagd%2fcore/v0.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-feature%2fflagd%2fcore/v0.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-feature%2fflagd%2fcore/v0.11.1/v0.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-feature%2fflagd%2fcore/v0.11.1/v0.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>open-feature/flagd (github.com/open-feature/flagd/core)</summary> ### [`v0.11.2`](https://redirect.github.com/open-feature/flagd/releases/tag/flagd/v0.11.2): flagd: v0.11.2 ##### 🐛 Bug Fixes - **deps:** update module buf.build/gen/go/open-feature/flagd/grpc/go to v1.5.1-20240215170432-1e611e2999cc.1 ([#&#8203;1372](https://redirect.github.com/open-feature/flagd/issues/1372)) ([ae24595](https://redirect.github.com/open-feature/flagd/commit/ae2459504f7eccafebccec83fa1f72b08f41a978)) - **deps:** update module github.com/open-feature/flagd/core to v0.10.1 ([#&#8203;1355](https://redirect.github.com/open-feature/flagd/issues/1355)) ([8fcfb14](https://redirect.github.com/open-feature/flagd/commit/8fcfb146b0c55712c1758201ee4bc59e83b0898c)) - **deps:** update module golang.org/x/net to v0.28.0 ([#&#8203;1380](https://redirect.github.com/open-feature/flagd/issues/1380)) ([239a432](https://redirect.github.com/open-feature/flagd/commit/239a432c18bf6780117b5d563443124887b38120)) - **deps:** update module golang.org/x/sync to v0.8.0 ([#&#8203;1378](https://redirect.github.com/open-feature/flagd/issues/1378)) ([4804c17](https://redirect.github.com/open-feature/flagd/commit/4804c17a67ea9761079ecade34ccb3446643050b)) ##### 🧹 Chore - **deps:** update dependency go to v1.22.6 ([#&#8203;1297](https://redirect.github.com/open-feature/flagd/issues/1297)) ([50b92c1](https://redirect.github.com/open-feature/flagd/commit/50b92c17cfd872d3e6b95fef3b3d96444e563715)) - **deps:** update golang docker tag to v1.23 ([#&#8203;1382](https://redirect.github.com/open-feature/flagd/issues/1382)) ([abb5ca3](https://redirect.github.com/open-feature/flagd/commit/abb5ca3e31308535c66a94300d6f6409fd370b95)) - improve gRPC sync service shutdown behavior ([#&#8203;1375](https://redirect.github.com/open-feature/flagd/issues/1375)) ([79d9085](https://redirect.github.com/open-feature/flagd/commit/79d9085a50c49a97b70febb5f444fa3ea965220b)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-feature/flagd). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6e9dbd2 commit e151b1f

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

flagd-proxy/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
buf.build/gen/go/open-feature/flagd/protocolbuffers/go v1.36.5-20250127221518-be6d1143b690.1
1010
github.com/dimiro1/banner v1.1.0
1111
github.com/mattn/go-colorable v0.1.14
12-
github.com/open-feature/flagd/core v0.11.1
12+
github.com/open-feature/flagd/core v0.11.2
1313
github.com/prometheus/client_golang v1.21.0
1414
github.com/spf13/cobra v1.9.1
1515
github.com/spf13/viper v1.19.0
@@ -128,7 +128,7 @@ require (
128128
go.uber.org/multierr v1.11.0 // indirect
129129
gocloud.dev v0.40.0 // indirect
130130
golang.org/x/crypto v0.33.0 // indirect
131-
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect
131+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac // indirect
132132
golang.org/x/oauth2 v0.24.0 // indirect
133133
golang.org/x/sys v0.30.0 // indirect
134134
golang.org/x/term v0.29.0 // indirect

flagd-proxy/go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ github.com/open-feature/flagd/core v0.11.0 h1:uyT2keRVqVptqoNOaK4Pq3LueLkcVIZ/qf
243243
github.com/open-feature/flagd/core v0.11.0/go.mod h1:jjMq0sMdCvvsoi4dWoNwUTP4jN0vC1e8OtY/giqZIIM=
244244
github.com/open-feature/flagd/core v0.11.1 h1:0qBVXcRBZOFoZ5lNK/Yba2IyUDdxUHcLsv5OhUJtltA=
245245
github.com/open-feature/flagd/core v0.11.1/go.mod h1:yzPjp7D9wNusvOyKt8wBND5PQGslcu+5e+xmaIBGgLE=
246+
github.com/open-feature/flagd/core v0.11.2 h1:3LAuLR2vXpBF80RwwCAu9JX898JasfPH7ErJEf5C5YA=
247+
github.com/open-feature/flagd/core v0.11.2/go.mod h1:rTdYFyLGP1tGwxo0X26ygIrC31nINCv8hcCq+vhFD0E=
246248
github.com/open-feature/open-feature-operator/apis v0.2.44 h1:0r4Z+RnJltuHdRBv79NFgAckhna6/M3Wcec6gzNX5vI=
247249
github.com/open-feature/open-feature-operator/apis v0.2.44/go.mod h1:xB2uLzvUkbydieX7q6/NqannBz3bt/e5BS2DeOyyw4Q=
248250
github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM=
@@ -365,6 +367,8 @@ golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 h1:yqrTHse8TCMW1M1ZCP+VAR/l0
365367
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8/go.mod h1:tujkw807nyEEAamNbDrEGzRav+ilXA7PCRAd6xsmwiU=
366368
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c h1:KL/ZBHXgKGVmuZBZ01Lt57yE5ws8ZPSkkihmEyq7FXc=
367369
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c/go.mod h1:tujkw807nyEEAamNbDrEGzRav+ilXA7PCRAd6xsmwiU=
370+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac h1:l5+whBCLH3iH2ZNHYLbAe58bo7yrN4mVcnkHDYz5vvs=
371+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac/go.mod h1:hH+7mtFmImwwcMvScyxUhjuVHR3HGaDPMn9rMSUUbxo=
368372
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
369373
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
370374
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=

flagd/go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/dimiro1/banner v1.1.0
1313
github.com/gorilla/mux v1.8.1
1414
github.com/mattn/go-colorable v0.1.14
15-
github.com/open-feature/flagd/core v0.11.1
15+
github.com/open-feature/flagd/core v0.11.2
1616
github.com/prometheus/client_golang v1.21.0
1717
github.com/rs/cors v1.11.1
1818
github.com/rs/xid v1.6.0
@@ -73,7 +73,7 @@ require (
7373
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
7474
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
7575
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
76-
github.com/diegoholiveira/jsonlogic/v3 v3.7.3 // indirect
76+
github.com/diegoholiveira/jsonlogic/v3 v3.7.4 // indirect
7777
github.com/emicklei/go-restful/v3 v3.12.0 // indirect
7878
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
7979
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -150,8 +150,8 @@ require (
150150
go.uber.org/multierr v1.11.0 // indirect
151151
gocloud.dev v0.40.0 // indirect
152152
golang.org/x/crypto v0.33.0 // indirect
153-
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c // indirect
154-
golang.org/x/mod v0.22.0 // indirect
153+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac // indirect
154+
golang.org/x/mod v0.23.0 // indirect
155155
golang.org/x/oauth2 v0.24.0 // indirect
156156
golang.org/x/sys v0.30.0 // indirect
157157
golang.org/x/term v0.29.0 // indirect

flagd/go.sum

+8
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
106106
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
107107
github.com/diegoholiveira/jsonlogic/v3 v3.7.3 h1:orvGaTW5Qdcowpr7vgfMNuqYNjQYcqtw9W1Bk4QyI38=
108108
github.com/diegoholiveira/jsonlogic/v3 v3.7.3/go.mod h1:OYRb6FSTVmMM+MNQ7ElmMsczyNSepw+OU4Z8emDSi4w=
109+
github.com/diegoholiveira/jsonlogic/v3 v3.7.4 h1:92HSmB9bwM/o0ZvrCpcvTP2EsPXSkKtAniIr2W/dcIM=
110+
github.com/diegoholiveira/jsonlogic/v3 v3.7.4/go.mod h1:OYRb6FSTVmMM+MNQ7ElmMsczyNSepw+OU4Z8emDSi4w=
109111
github.com/dimiro1/banner v1.1.0 h1:TSfy+FsPIIGLzaMPOt52KrEed/omwFO1P15VA8PMUh0=
110112
github.com/dimiro1/banner v1.1.0/go.mod h1:tbL318TJiUaHxOUNN+jnlvFSgsh/RX7iJaQrGgOiTco=
111113
github.com/emicklei/go-restful/v3 v3.12.0 h1:y2DdzBAURM29NFF94q6RaY4vjIH1rtwDapwQtU84iWk=
@@ -261,6 +263,8 @@ github.com/open-feature/flagd/core v0.11.0 h1:uyT2keRVqVptqoNOaK4Pq3LueLkcVIZ/qf
261263
github.com/open-feature/flagd/core v0.11.0/go.mod h1:jjMq0sMdCvvsoi4dWoNwUTP4jN0vC1e8OtY/giqZIIM=
262264
github.com/open-feature/flagd/core v0.11.1 h1:0qBVXcRBZOFoZ5lNK/Yba2IyUDdxUHcLsv5OhUJtltA=
263265
github.com/open-feature/flagd/core v0.11.1/go.mod h1:yzPjp7D9wNusvOyKt8wBND5PQGslcu+5e+xmaIBGgLE=
266+
github.com/open-feature/flagd/core v0.11.2 h1:3LAuLR2vXpBF80RwwCAu9JX898JasfPH7ErJEf5C5YA=
267+
github.com/open-feature/flagd/core v0.11.2/go.mod h1:rTdYFyLGP1tGwxo0X26ygIrC31nINCv8hcCq+vhFD0E=
264268
github.com/open-feature/open-feature-operator/apis v0.2.44 h1:0r4Z+RnJltuHdRBv79NFgAckhna6/M3Wcec6gzNX5vI=
265269
github.com/open-feature/open-feature-operator/apis v0.2.44/go.mod h1:xB2uLzvUkbydieX7q6/NqannBz3bt/e5BS2DeOyyw4Q=
266270
github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM=
@@ -402,6 +406,8 @@ golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 h1:yqrTHse8TCMW1M1ZCP+VAR/l0
402406
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8/go.mod h1:tujkw807nyEEAamNbDrEGzRav+ilXA7PCRAd6xsmwiU=
403407
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c h1:KL/ZBHXgKGVmuZBZ01Lt57yE5ws8ZPSkkihmEyq7FXc=
404408
golang.org/x/exp v0.0.0-20250128182459-e0ece0dbea4c/go.mod h1:tujkw807nyEEAamNbDrEGzRav+ilXA7PCRAd6xsmwiU=
409+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac h1:l5+whBCLH3iH2ZNHYLbAe58bo7yrN4mVcnkHDYz5vvs=
410+
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac/go.mod h1:hH+7mtFmImwwcMvScyxUhjuVHR3HGaDPMn9rMSUUbxo=
405411
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
406412
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
407413
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
@@ -413,6 +419,8 @@ golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
413419
golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
414420
golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
415421
golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
422+
golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM=
423+
golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
416424
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
417425
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
418426
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=

0 commit comments

Comments
 (0)