Skip to content

Commit 414979f

Browse files
authored
Upgrade semconv generator to v0.14.0 (open-telemetry#2725)
This unblocks open-telemetry#2702 by making the changes introduced in open-telemetry/build-tools#114 available for use. It also allows for more semantic conventions for scope attributes to be defined in the future (open-telemetry#2682). See https://github.com/open-telemetry/build-tools/releases/tag/v0.14.0.
1 parent f4e7623 commit 414979f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"MD040": false,
1111
},
1212
"yaml.schemas": {
13-
"https://raw.githubusercontent.com/open-telemetry/build-tools/v0.12.1/semantic-conventions/semconv.schema.json": [
13+
"https://raw.githubusercontent.com/open-telemetry/build-tools/v0.14.0/semantic-conventions/semconv.schema.json": [
1414
"semantic_conventions/**/*.yaml"
1515
]
1616
},

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MISSPELL = $(TOOLS_DIR)/$(MISSPELL_BINARY)
88

99
# see https://github.com/open-telemetry/build-tools/releases for semconvgen updates
1010
# Keep links in semantic_conventions/README.md and .vscode/settings.json in sync!
11-
SEMCONVGEN_VERSION=0.12.1
11+
SEMCONVGEN_VERSION=0.14.0
1212

1313
# TODO: add `yamllint` step to `all` after making sure it works on Mac.
1414
.PHONY: all

semantic_conventions/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ i.e.:
1717
Semantic conventions for the spec MUST adhere to the
1818
[attribute naming](../specification/common/attribute-naming.md) and [requirement level](../specification/common/attribute-requirement-level.md) conventions.
1919

20-
Refer to the [syntax](https://github.com/open-telemetry/build-tools/tree/v0.12.1/semantic-conventions/syntax.md)
20+
Refer to the [syntax](https://github.com/open-telemetry/build-tools/tree/v0.14.0/semantic-conventions/syntax.md)
2121
for how to write the YAML files for semantic conventions and what the YAML properties mean.
2222

2323
A schema file for VS code is configured in the `/.vscode/settings.json` of this
2424
repository, enabling auto-completion and additional checks. Refer to
25-
[the generator README](https://github.com/open-telemetry/build-tools/tree/v0.12.1/semantic-conventions/README.md) for what extension you need.
25+
[the generator README](https://github.com/open-telemetry/build-tools/tree/v0.14.0/semantic-conventions/README.md) for what extension you need.
2626

2727
## Generating markdown
2828

@@ -33,7 +33,7 @@ formatted Markdown tables for all semantic conventions in the specification. Run
3333
make table-generation
3434
```
3535

36-
For more information, see the [semantic convention generator](https://github.com/open-telemetry/build-tools/tree/v0.12.1/semantic-conventions)
36+
For more information, see the [semantic convention generator](https://github.com/open-telemetry/build-tools/tree/v0.14.0/semantic-conventions)
3737
in the OpenTelemetry build tools repository.
3838
Using this build tool, it is also possible to generate code for use in OpenTelemetry
3939
language projects.

0 commit comments

Comments
 (0)