Go to file
Marius Kittler 043a49773c Accepting request 1153216 from home:dmolkentin:infrarun
- Update to version 10.3.3:
  Bugfixes:
  * Elasticsearch: Fix creating of legend so it is
     backward compatible with frontend produced frames
  * ShareModal: Fixes url sync issue that caused issue
     with save drawer
- Update to version 10.3.2:
  * (unreleased)
- Update to version 10.3.1:
  * Upstream build changes only, no functional changes
- Update to version 10.3.0:
  
  Features and enhancements
  * Alerting: Guided legacy alerting upgrade dry-run.
  * Explore: Preserve time range when creating a dashboard panel
    from Explore.
  * Explore: Init with mixed DS if there's no root DS in the URL and
    queries have multiple datasources.
  * QueryEditor: Display error even if error field is empty.
  * K8s: Enable api-server by default.
  * Parca: Add standalone building configuration.
  * Auth: Hide forgot password if grafana auth is disabled.
  * Plugins: Add uninstall requested message for cloud plugins.
  * Loki: Open log context in new tab.
  * Alerting: Allow linking to library panels.
  * Loki: Drop all errors in volume requests.
  * Loki Logs volume: Added a query splitting loading indicator to
    the Logs Volume graph.
  * Plugins: Disable add new data source for incomplete install.
  * RBAC: Render team, service account and user list when a user

OBS-URL: https://build.opensuse.org/request/show/1153216
OBS-URL: https://build.opensuse.org/package/show/server:monitoring/grafana?expand=0&rev=128
2024-02-29 13:15:42 +00:00
_constraints Accepting request 967538 from home:jordimassaguerpla:branches:server:monitoring:add_constraints_to_grafana 2022-04-07 15:58:22 +00:00
_service Accepting request 1153216 from home:dmolkentin:infrarun 2024-02-29 13:15:42 +00:00
_servicedata Accepting request 1153216 from home:dmolkentin:infrarun 2024-02-29 13:15:42 +00:00
.gitattributes Accepting request 583279 from security:logging 2018-03-07 10:11:57 +00:00
.gitignore Accepting request 583279 from security:logging 2018-03-07 10:11:57 +00:00
0001-Add-source-code-reference.patch Accepting request 1066405 from home:mkittler:branches:server:monitoring 2023-02-22 08:46:39 +00:00
grafana-10.3.3.tar.gz Accepting request 1153216 from home:dmolkentin:infrarun 2024-02-29 13:15:42 +00:00
grafana-rpmlintrc Accepting request 583279 from security:logging 2018-03-07 10:11:57 +00:00
grafana.changes Accepting request 1153216 from home:dmolkentin:infrarun 2024-02-29 13:15:42 +00:00
grafana.spec Accepting request 1153216 from home:dmolkentin:infrarun 2024-02-29 13:15:42 +00:00
Makefile Accepting request 1078603 from home:mkittler:branches:server:monitoring 2023-04-13 11:52:38 +00:00
README Accepting request 874474 from home:tserong:branches:server:monitoring 2021-02-26 14:07:38 +00:00
vendor.tar.gz Accepting request 1153216 from home:dmolkentin:infrarun 2024-02-29 13:15:42 +00:00

The tarball is generated via the OBS source service, but Grafana
needs to ship the compiled frontend assets as well, which have to
be built by running yarn inside the source tree (see
https://github.com/grafana/grafana/blob/master/contribute/developer-guide.md#frontend).
This can't be done at build time on OBS, because it involves
downloading and installing packages from the internet, so instead
we have a Makefile which does the following:

- Runs `osc service disabledrun` to get the latest source tarball
- Unpacks the tarball to a temporary directory
- Runs `yarn install --pure-lockfile && yarn build`
- Adds the generated "vendor" and "public" content to the tarball,
  then compresses it with xz.
- The tarball can then be used by OBS to build an RPM.

In order for this to work you need to have npm >= 14 and yarn installed.

  # zypper in npm14
  # zypper in obs-service-download_files obs-service-go_modules \
        obs-service-obs_scm
  # npm install -g yarn

Then, to package a new release of Grafana, run `make` then `osc ci`
and you should be good.

If you have a patch for the Javascript frontend to apply you need
to do the following:

- Create the patch and add it with `osc add <PATCH>` to the repo
- Open the Makefile
- Add after the `cd $$basename && \` the patch with:
  `patch -p1 < ../../000x-<NAME>.patch && \`
- Do NOT add the patch to the Specfile.
- Then use the process of building Grafana as described above.

Please direct any questions to Tim Serong <tserong@suse.com>
If Tim is not available you may also contact Enno Gotthold <egotthold@suse.de>