Skip to content

Commit fc907ff

Browse files
authored
Merge branch 'main' into shutdown_channel
2 parents 4e2eacc + 8a9a569 commit fc907ff

File tree

6 files changed

+4386
-1188
lines changed

6 files changed

+4386
-1188
lines changed

RELEASING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A draft PR can be created, but before releasing consider the following:
1616

1717
* Are there any pending pull requests which should be included in the next release?
1818
* Are they blockers?
19-
* Are there any unresolved issues which should be resolved before the next release?
19+
* Are there any unresolved issues which should be resolved before the next release? Check the release [blockers milestone](https://github.com/open-telemetry/opentelemetry-rust/milestones) for every release
2020
* Bring it up at a SIG meeting, this can usually get some of these questions answered sooner than later. It will also
2121
help establish a person to perform the release. Ideally this can be someone different each time to ensure that the
2222
process is documented.

opentelemetry-semantic-conventions/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
- Update to [v1.24.0](https://github.com/open-telemetry/semantic-conventions/releases/tag/v1.24.0) of the semantic conventions.
88
[#1596](https://github.com/open-telemetry/opentelemetry-rust/pull/1596)
9+
- Update to [v1.25.0](https://github.com/open-telemetry/semantic-conventions/releases/tag/v1.25.0) of the semantic conventions.
10+
[#1681](https://github.com/open-telemetry/opentelemetry-rust/pull/1681)
911

1012
## v0.14.0
1113

opentelemetry-semantic-conventions/scripts/generate-consts-from-spec.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
55
CRATE_DIR="${SCRIPT_DIR}/../"
66

77
# freeze the spec version and generator version to make generation reproducible
8-
SPEC_VERSION=1.24.0
9-
SEMCOVGEN_VERSION=0.23.0
8+
SPEC_VERSION=1.25.0
9+
SEMCOVGEN_VERSION=0.24.0
1010

1111
cd "$CRATE_DIR"
1212

@@ -36,7 +36,7 @@ docker run --rm \
3636
-v "${CRATE_DIR}/scripts/templates:/templates" \
3737
-v "${CRATE_DIR}/src:/output" \
3838
otel/semconvgen:$SEMCOVGEN_VERSION \
39-
--only resource \
39+
--only resource,attribute_group \
4040
-f /source code \
4141
--template /templates/semantic_attributes.rs.j2 \
4242
--output /output/resource.rs \
@@ -51,6 +51,6 @@ fi
5151
"${SED[@]}" "s/\(opentelemetry.io\/schemas\/\)[^\"]*\"/\1$SPEC_VERSION\"/" src/lib.rs
5252

5353
# handle doc generation failures
54-
"${SED[@]}" 's/\[2\]\.$//' src/resource.rs # remove trailing [2] from few of the doc comments
54+
"${SED[@]}" 's/\[2\]\.$//' src/resource.rs src/trace.rs # remove trailing [2] from few of the doc comments
5555

5656
cargo fmt

opentelemetry-semantic-conventions/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ pub mod trace;
2020

2121
/// The schema URL that matches the version of the semantic conventions that
2222
/// this crate defines.
23-
pub const SCHEMA_URL: &str = "https://opentelemetry.io/schemas/1.24.0";
23+
pub const SCHEMA_URL: &str = "https://opentelemetry.io/schemas/1.25.0";

0 commit comments

Comments
 (0)