Skip to content

Commit 0dd364a

Browse files
authoredApr 11, 2024··
docs: fix versioning links (#28341)
1 parent cf20049 commit 0dd364a

File tree

24 files changed

+25
-25
lines changed

24 files changed

+25
-25
lines changed
 

‎docs/usage/configuration-options.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2747,7 +2747,7 @@ Consider using instead `matchCurrentValue` if you wish to match against the raw
27472747
}
27482748
```
27492749

2750-
The syntax of the version range must follow the [versioning scheme](modules/versioning.md#supported-versioning) used by the matched package(s).
2750+
The syntax of the version range must follow the [versioning scheme](modules/versioning/index.md#supported-versioning) used by the matched package(s).
27512751
This is usually defined by the [manager](modules/manager/index.md#supported-managers) which discovered them or by the default versioning for the package's [datasource](modules/datasource/index.md).
27522752
For example, a Gradle package would typically need Gradle constraint syntax (e.g. `[,7.0)`) and not SemVer syntax (e.g. `<7.0`).
27532753

‎docs/usage/key-concepts/how-renovate-works.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Renovate's modules are:
2323
- [datasource](../modules/datasource/index.md)
2424
- [manager](../modules/manager/index.md)
2525
- [platform](../modules/platform/index.md)
26-
- [versioning](../modules/versioning.md)
26+
- [versioning](../modules/versioning/index.md)
2727

2828
Renovate uses these modules in order:
2929

‎lib/modules/manager/ansible/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Supports Docker-type dependency extraction from Ansible configuration files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/argocd/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ To use the `argocd` manager you must set your own `fileMatch` pattern.
22
The `argocd` manager has no default `fileMatch` pattern, because there is no common filename or directory name convention for Argo CD YAML files.
33
By setting your own `fileMatch` Renovate avoids having to check each `*.yaml` file in a repository for a Argo CD definition.
44

5-
If you need to change the versioning format, read the [versioning](../../../modules/versioning.md) documentation to learn more.
5+
If you need to change the versioning format, read the [versioning](../../../modules/versioning/index.md) documentation to learn more.
66

77
Some configuration examples:
88

‎lib/modules/manager/bazel/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Bazel is quite unlike most other "package managers" that Renovate supports, whic
22
Instead, Bazel is a build tool so supports a multitude of languages/datasources.
33
Renovate does not support all possible Bazel references, although would like to, and feature requests are welcome.
44

5-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
5+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Extracts dependencies from Bitbucket Pipelines config files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Used for updating Docker dependencies in Buildkite configuration files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/circleci/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The `circleci` manager extracts both `docker` as well as `orb` datasources from CircleCI config files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.
44

55
### Private orbs
66

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
The `cloudbuild` manager extracts `docker` datasources from [Cloud Build config files](https://cloud.google.com/build/docs/configuring-builds/create-basic-configuration).
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/crossplane/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `crossplane` manager supports these `depType`s:
1010

1111
You can use these `depType`'s to control which dependencies Renovate will upgrade.
1212

13-
If you need to change the versioning format, read the [versioning](../../../modules/versioning.md) documentation to learn more.
13+
If you need to change the versioning format, read the [versioning](../../../modules/versioning/index.md) documentation to learn more.
1414

1515
Some configuration examples:
1616

‎lib/modules/manager/custom/regex/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Before Renovate can look up a dependency and decide about updates, it needs this
2424

2525
- The dependency's name
2626
- Which `datasource` to use: npm, Docker, GitHub tags, and so on. For how to format this references see [datasource overview](../../datasource/index.md#supported-datasources)
27-
- Which version scheme to use: defaults to `semver-coerced`, but you may set another value like `pep440`. Supported versioning schemes can be found in the [versioning overview](../../versioning.md#supported-versioning)
27+
- Which version scheme to use: defaults to `semver-coerced`, but you may set another value like `pep440`. Supported versioning schemes can be found in the [versioning overview](../../versioning/index.md#supported-versioning)
2828

2929
Configuration-wise, it works like this:
3030

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Extracts all Docker images from with Docker Compose YAML files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/droneci/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Extracts Docker-type dependencies from DroneCI config files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/flux/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ If instead you have all your Flux manifests inside a `flux/` directory, you woul
8080

8181
### Versioning
8282

83-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
83+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/gitlabci/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Extracts Docker dependencies from `gitlab-ci.yml` files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.
44

55
If you use Gitlab Dependency Proxy then you can use these predefined variables as prefixes for your image:
66

‎lib/modules/manager/helm-requirements/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ The `helm-requirements` manager defines this default registryAlias:
1212

1313
If your Helm charts make use of repository aliases then you will need to configure an `registryAliases` object in your config to tell Renovate where to look for them. Be aware that alias values must be properly formatted URIs.
1414

15-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
15+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.
1616

1717
To learn how to use Helm with private packages, read [private package support, Package Manager Credentials for Artifact Updating, helm](../../../getting-started/private-packages.md#helm).

‎lib/modules/manager/helm-values/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ coreImage:
1717
tag: 2.1.3-debian-10-r38
1818
```
1919
20-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
20+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/helmfile/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The `helmfile` manager defines this default registryAlias:
1212

1313
If your Helm charts make use of repository aliases then you will need to configure an `registryAliases` object in your config to tell Renovate where to look for them. Be aware that alias values must be properly formatted URIs.
1414

15-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
15+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.
1616

1717
### Private repositories and registries
1818

‎lib/modules/manager/helmv3/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `helmv3` manager defines this default registryAlias:
1616
If you use repository aliases in your Helm charts then you must set an `registryAliases` object in your configuration file so Renovate knows where to find the repository.
1717
Alias values must be properly formatted URIs.
1818

19-
If you need to change the versioning format, read our [versioning](../../versioning.md) documentation to learn more.
19+
If you need to change the versioning format, read our [versioning](../../versioning/index.md) documentation to learn more.
2020

2121
### Private repositories and registries
2222

‎lib/modules/manager/kubernetes/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ Or if it's only a single file then something like this:
3131
}
3232
```
3333

34-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
34+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/tekton/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Read the [Tekton Pipeline remote resolution docs](https://tekton.dev/docs/pipeli
1717

1818
### Using a PipelinesAsCode remote URL reference
1919

20-
By specifying the annotation with a remote task or a remote pipeline based on the recommended way using [git based versioning](https://github.com/tektoncd/community/blob/main/teps/0115-tekton-catalog-git-based-versioning.md). How this can be used can be seen in the example below.
20+
By specifying the annotation with a remote task or a remote pipeline based on the recommended way using [git based versioning](https://github.com/tektoncd/community/blob/main/teps/0115-tekton-catalog-git-based-versioning/index.md). How this can be used can be seen in the example below.
2121

2222
```yaml title="How an annotation could look like in an pipeline-run.yaml"
2323
apiVersion: tekton.dev/v1
@@ -78,4 +78,4 @@ As an example, the following config matches all the YAML files in a repository:
7878
}
7979
```
8080

81-
See our [versioning](../../versioning.md) documentation for details on the existing versioning rules and possible alterations.
81+
See our [versioning](../../versioning/index.md) documentation for details on the existing versioning rules and possible alterations.

‎lib/modules/manager/terraform/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ You can use these `depTypes` for fine-grained control, for example to disable pa
102102
| Kubernetes StatefulSet | `kubernetes_stateful_set` | |
103103
| Kubernetes StatefulSet v1 | `kubernetes_stateful_set_v1` | |
104104

105-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
105+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/velaci/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Extracts Docker-type dependencies from VelaCI config files.
22

3-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
3+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

‎lib/modules/manager/woodpecker/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Extracts all Docker images from Woodpecker Pipeline YAML files.
44
- [Woodpecker Docs: Pipeline Syntax](https://woodpecker-ci.org/docs/usage/pipeline-syntax) ([section with dependencies](https://woodpecker-ci.org/docs/usage/pipeline-syntax#image))
55
- [`woodpecker-ci` JSON schema](https://raw.githubusercontent.com/woodpecker-ci/woodpecker/master/pipeline/schema/schema.json)
66

7-
If you need to change the versioning format, read the [versioning](../../versioning.md) documentation to learn more.
7+
If you need to change the versioning format, read the [versioning](../../versioning/index.md) documentation to learn more.

0 commit comments

Comments
 (0)
Please sign in to comment.