Skip to content

Commit 49f3629

Browse files
committed
chore: discourage go install, update links
Signed-off-by: Todd Baert <[email protected]>
1 parent c12a0ae commit 49f3629

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

docs/installation.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ For more information, see [OpenFeature Operator](./reference/openfeature-operato
3232

3333
:fontawesome-brands-linux::fontawesome-brands-windows::fontawesome-brands-apple: Binaries are available in x86/ARM.
3434

35-
[Release](https://github.com/open-feature/flagd/releases)
35+
[Releases](https://github.com/open-feature/flagd/releases)
36+
37+
!!! note
38+
39+
Installing flagd with `go install github.com/open-feature/flagd/flagd@latest` is not recommended, because the module depends on potentially unpublished, local workspace modules.
40+
Please use one of the official, versioned binary releases above.
3641

3742
### systemd
3843

@@ -44,12 +49,6 @@ A systemd wrapper is available [here](https://github.com/open-feature/flagd/blob
4449
brew install flagd
4550
```
4651

47-
### Go binary
48-
49-
```shell
50-
go install github.com/open-feature/flagd/flagd@latest
51-
```
52-
5352
## Summary
5453

5554
Once flagd is installed, you can start using it within your application.

docs/reference/specifications/protos.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ FetchAllFlagsResponse is the server response containing feature flag configurati
336336

337337
| Field | Type | Label | Description |
338338
| ----- | ---- | ----- | ----------- |
339-
| flag_configuration | [string](#string) | | flagd feature flag configuration. Must be validated to schema - https://raw.githubusercontent.com/open-feature/schemas/main/json/flagd-definitions.json |
339+
| flag_configuration | [string](#string) | | flagd feature flag configuration. Must be validated to schema - https://raw.githubusercontent.com/open-feature/flagd-schemas/main/json/flags.json |
340340

341341

342342

@@ -357,6 +357,7 @@ GetMetadataRequest is the request for retrieving metadata from the sync service
357357

358358
### GetMetadataResponse
359359
GetMetadataResponse contains metadata from the sync service
360+
DEPRECATED; use flagd.sync.v1.SyncFlagsResponse.sync_context
360361

361362

362363
| Field | Type | Label | Description |
@@ -393,7 +394,8 @@ SyncFlagsResponse is the server response containing feature flag configurations
393394

394395
| Field | Type | Label | Description |
395396
| ----- | ---- | ----- | ----------- |
396-
| flag_configuration | [string](#string) | | flagd feature flag configuration. Must be validated to schema - https://raw.githubusercontent.com/open-feature/schemas/main/json/flagd-definitions.json |
397+
| flag_configuration | [string](#string) | | flagd feature flag configuration. Must be validated to schema - https://raw.githubusercontent.com/open-feature/flagd-schemas/main/json/flags.json |
398+
| sync_context | [google.protobuf.Struct](#google-protobuf-Struct) | optional | Static context to be included in in-process evaluations (optional). |
397399

398400

399401

0 commit comments

Comments
 (0)