@@ -214,18 +214,18 @@ fields:
214214 ` string` value that identifies the bundle revision.
215215
216216* `rego_version` - An optional field that specifies the rego-version of the Rego source files
217- in the bundle. The value of this field is an `integer`; where `0` corresponds to v0 Rego (current OPA v0.x syntax),
218- and `1` corresponds to v1 Rego ([ OPA v1.0](../opa-1/) syntax).
219- If the field is not included in the manifest, OPA will enforce v0 syntax, or v1 if executed with
220- the `--v1 -compatible` flag.
221- An existing bundle `rego_version` field takes precedence to the `--v1 -compatible` flag.
217+ in the bundle. The value of this field is an `integer`; where `0` corresponds to v0 Rego ([ OPA v0.x](../v0-compatibility/) syntax),
218+ and `1` corresponds to v1 Rego (current OPA v1.x syntax).
219+ If the field is not included in the manifest, OPA will enforce v1 syntax, or v0 if executed with
220+ the `--v0 -compatible` flag.
221+ An existing bundle `rego_version` field takes precedence to the `--v0 -compatible` flag.
222222
223223* `file_rego_versions` - An optional field that specifies per-file rego-version overrides to the
224224 ` rego_version` field. The value of this field is a `map` where the keys are file paths relative to the
225225 bundle root directory (paths are absolute and start with `/`) and the values are `integer` rego-versions.
226226 Glob patterns are accepted, to allow for a single entry to apply to multiple files. The behaviour is undefined
227227 for overlapping patterns. If a file is not matched by any pattern, the `rego_version` field is used.
228- Existing bundle `rego_version` and `file_rego_versions` fields takes precedence to the `--v1 -compatible` flag.
228+ Existing bundle `rego_version` and `file_rego_versions` fields takes precedence to the `--v0 -compatible` flag.
229229
230230* `roots` - If you expect to load additional data into OPA from outside the
231231 bundle (e.g., via OPA's HTTP API) you should include a top-level
0 commit comments