mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
a4a16b62c7
## 4.1.0 (2023-06-16) ### Added - Mounts of `layouts` and `config` directories for the `website` project. Ensures that local changes to mounts or shortcodes are reflected in the development server. ### Fixed - Version inference for versioned docs pages. Pages in versioned projects now have the `versioned: true` front matter set to ensure that "version" in $.Page.Scratch is set on builds. ## 4.0.0 (2023-06-06) ### Removed - `doc-validator/%` target. The behavior of the target was not as described. Instead, to limit `doc-validator` to only specific files, refer to https://grafana.com/docs/writers-toolkit/writing-guide/tooling-and-workflows/validate-technical-documentation/#run-on-specific-files. ## 3.0.0 (2023-05-18) ### Fixed - Compatibility with the updated Make targets in the `website` repository. `docs` now runs this script itself, `server-docs` builds the site with the `docs` Hugo environment. Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
12 lines
537 B
Makefile
12 lines
537 B
Makefile
# List of projects to provide to the make-docs script.
|
|
PROJECTS = grafana
|
|
|
|
# Use the doc-validator image defined in CI by default.
|
|
export DOC_VALIDATOR_IMAGE := $(shell sed -En 's, *image: "(grafana/doc-validator[^"]+)",\1,p' "$(shell git rev-parse --show-toplevel)/.github/workflows/doc-validator.yml")
|
|
|
|
# Skip some doc-validator checks.
|
|
export DOC_VALIDATOR_SKIP_CHECKS := ^(?:image.+|canonical-does-not-match-pretty-URL)$
|
|
|
|
# Use alternative image until make-docs 3.0.0 is rolled out.
|
|
export DOCS_IMAGE := grafana/docs-base:dbd975af06
|