mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 19:54:10 -06:00
41b29ff93c
* Chore: Migrate to use buf for protobuf generation * fix codeowners * fixes after review * docs/tooling for installing buf * add back codeowners * Update upgrading-dependencies.md Co-authored-by: Giuseppe Guerra <giuseppe.guerra@grafana.com> * sdk v0.229.0 --------- Co-authored-by: Giuseppe Guerra <giuseppe.guerra@grafana.com>
27 lines
898 B
Markdown
27 lines
898 B
Markdown
# Upgrading dependencies
|
|
|
|
Notes on upgrading various backend dependencies.
|
|
|
|
## Protobuf
|
|
|
|
When upgrading the [protobuf](http://github.com/golang/protobuf) library in Grafana and the plugin SDK,
|
|
you typically also want to upgrade your protobuf compiler toolchain and re-compile protobuf files.
|
|
|
|
**Note:** You need Buf CLI installed and availabile in your path, see https://buf.build/docs/installation for instructions.
|
|
|
|
Re-compile protobuf files in grafana and the plugin SDK:
|
|
|
|
```shell
|
|
cd $GRAFANA
|
|
make protobuf
|
|
cd $GRAFANA_PLUGIN_SDK_GO
|
|
mage protobuf
|
|
```
|
|
|
|
After upgrading the protobuf dependency in Grafana and the plugin SDK, it might be wise to test that things still work,
|
|
before making corresponding PRs:
|
|
|
|
- Test a plugin built with upgraded SDK on upgraded Grafana
|
|
- Test a plugin built with non-upgraded SDK on upgraded Grafana
|
|
- Test a plugin built with upgraded SDK on non-upgraded Grafana
|