6
6
# [Semantic versioning](https://semver.org/) is used to help the reader identify the significance of changes.
7
7
# Changes are relevant to this script and the support docs.mk GNU Make interface.
8
8
#
9
+ # ## 8.3.0 (2024-12-27)
10
+ #
11
+ # ### Added
12
+ #
13
+ # - Debug output of the final command when DEBUG=true.
14
+ #
15
+ # Useful to inspect if the script is correctly constructing the final command.
16
+ #
17
+ # ## 8.2.0 (2024-12-22)
18
+ #
19
+ # ### Removed
20
+ #
21
+ # - Special cases for Oracle and Datadog plugins now that they exist in the plugins monorepo.
22
+ #
9
23
# ## 8.1.0 (2024-08-22)
10
24
#
11
25
# ### Added
12
26
#
13
27
# - Additional website mounts for projects that use the website repository.
14
28
#
15
29
# Mounts are required for `make docs` to work in the website repository or with the website project.
16
- # The Makefile is also mounted for convenient development of the procedure that repository.
30
+ # The Makefile is also mounted for convenient development of the procedure in that repository.
17
31
#
18
32
# ## 8.0.1 (2024-07-01)
19
33
#
@@ -355,8 +369,6 @@ SOURCES_grafana_cloud_frontend_observability_faro_web_sdk='faro-web-sdk'
355
369
SOURCES_helm_charts_mimir_distributed=' mimir'
356
370
SOURCES_helm_charts_tempo_distributed=' tempo'
357
371
SOURCES_opentelemetry=' opentelemetry-docs'
358
- SOURCES_plugins_grafana_datadog_datasource=' datadog-datasource'
359
- SOURCES_plugins_grafana_oracle_datasource=' oracle-datasource'
360
372
SOURCES_resources=' website'
361
373
362
374
VERSIONS_as_code=' UNVERSIONED'
@@ -367,8 +379,6 @@ VERSIONS_grafana_cloud_k6='UNVERSIONED'
367
379
VERSIONS_grafana_cloud_data_configuration_integrations=' UNVERSIONED'
368
380
VERSIONS_grafana_cloud_frontend_observability_faro_web_sdk=' UNVERSIONED'
369
381
VERSIONS_opentelemetry=' UNVERSIONED'
370
- VERSIONS_plugins_grafana_datadog_datasource=' latest'
371
- VERSIONS_plugins_grafana_oracle_datasource=' latest'
372
382
VERSIONS_resources=' UNVERSIONED'
373
383
VERSIONS_technical_documentation=' UNVERSIONED'
374
384
VERSIONS_website=' UNVERSIONED'
@@ -378,8 +388,6 @@ PATHS_grafana_cloud='content/docs/grafana-cloud'
378
388
PATHS_helm_charts_mimir_distributed=' docs/sources/helm-charts/mimir-distributed'
379
389
PATHS_helm_charts_tempo_distributed=' docs/sources/helm-charts/tempo-distributed'
380
390
PATHS_mimir=' docs/sources/mimir'
381
- PATHS_plugins_grafana_datadog_datasource=' docs/sources'
382
- PATHS_plugins_grafana_oracle_datasource=' docs/sources'
383
391
PATHS_resources=' content'
384
392
PATHS_tempo=' docs/sources/tempo'
385
393
PATHS_website=' content'
@@ -631,7 +639,7 @@ POSIX_HERESTRING
631
639
632
640
case " ${_project} " in
633
641
# Workaround for arbitrary mounts where the version field is expected to be the local directory
634
- # and the repo field is expected to be the container directory.
642
+ # and the repo field is expected to be the container directory.
635
643
arbitrary)
636
644
echo " ${_project} ^${_version} ^${_repo} ^" # TODO
637
645
;;
@@ -801,6 +809,10 @@ case "${image}" in
801
809
| sed "s#$( proj_dst " ${proj} " ) #sources#"
802
810
EOF
803
811
812
+ if [ -n " ${DEBUG} " ]; then
813
+ debg " ${cmd} "
814
+ fi
815
+
804
816
case " ${OUTPUT_FORMAT} " in
805
817
human)
806
818
if ! command -v jq > /dev/null 2>&1 ; then
837
849
/hugo/content/docs
838
850
EOF
839
851
852
+ if [ -n " ${DEBUG} " ]; then
853
+ debg " ${cmd} "
854
+ fi
855
+
840
856
case " ${OUTPUT_FORMAT} " in
841
857
human)
842
858
${cmd} --output=line \
0 commit comments