From f18075eb4761dee296e05dfa2ed50ba574329ee5 Mon Sep 17 00:00:00 2001 From: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Date: Thu, 11 Jan 2024 01:36:03 +0000 Subject: [PATCH 1/3] Update opentelemetry-specification version to 1.29.0 --- content-modules/opentelemetry-specification | 2 +- scripts/content-modules/adjust-pages.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content-modules/opentelemetry-specification b/content-modules/opentelemetry-specification index b064af8f1545..c6520a732870 160000 --- a/content-modules/opentelemetry-specification +++ b/content-modules/opentelemetry-specification @@ -1 +1 @@ -Subproject commit b064af8f1545ca61ca99d6a07c37f9fb33186e51 +Subproject commit c6520a73287040ca16499cba62cea1b3508dc4da diff --git a/scripts/content-modules/adjust-pages.pl b/scripts/content-modules/adjust-pages.pl index 448629e59827..9b9673a9071a 100755 --- a/scripts/content-modules/adjust-pages.pl +++ b/scripts/content-modules/adjust-pages.pl @@ -19,7 +19,7 @@ my $specBasePath = '/docs/specs'; my $path_base_for_github_subdir = "content/en$specBasePath"; my %versions = qw( - spec: 1.28.0 + spec: 1.29.0 otlp: 1.0.0 semconv: 1.24.0 ); From 4c41a7559f0364e197783d5bf4588e0ccaad4f1d Mon Sep 17 00:00:00 2001 From: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Date: Thu, 11 Jan 2024 06:07:19 +0000 Subject: [PATCH 2/3] Results from /fix:refcache --- static/refcache.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/refcache.json b/static/refcache.json index 1909ff429c64..1e5029d59ad0 100644 --- a/static/refcache.json +++ b/static/refcache.json @@ -6987,6 +6987,10 @@ "StatusCode": 206, "LastSeen": "2023-06-29T18:41:53.764072-04:00" }, + "https://www.w3.org/TR/baggage/#baggage-string": { + "StatusCode": 206, + "LastSeen": "2024-01-11T06:07:13.666570443Z" + }, "https://www.w3.org/TR/baggage/#header-content": { "StatusCode": 206, "LastSeen": "2023-12-16T15:16:50.350520378Z" @@ -7055,6 +7059,10 @@ "StatusCode": 200, "LastSeen": "2023-06-29T18:43:02.782058-04:00" }, + "https://yaml.org/spec/1.2.2/": { + "StatusCode": 206, + "LastSeen": "2024-01-11T06:07:16.115841487Z" + }, "https://youtu.be/9iaGG-YZw5I": { "StatusCode": 200, "LastSeen": "2023-06-01T17:03:14.742262-04:00" From 7a87e9bf7fbf2b8c93497a395b36d0ed12d02db9 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Thu, 11 Jan 2024 07:07:39 -0500 Subject: [PATCH 3/3] Drop link-check since it's being done in the spec repo --- scripts/content-modules/adjust-pages.pl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scripts/content-modules/adjust-pages.pl b/scripts/content-modules/adjust-pages.pl index 9b9673a9071a..191d283e0143 100755 --- a/scripts/content-modules/adjust-pages.pl +++ b/scripts/content-modules/adjust-pages.pl @@ -113,14 +113,6 @@ () s|\.\./semantic_conventions/README.md|$semConvRef| if $ARGV =~ /overview/; s|\.\./specification/(.*?\))|../otel/$1)|g if $ARGV =~ /otel\/specification/; - # TODO: drop the following warning once the checks are enabled in the spec repos - if ( - /\((https:\/\/github.com\/open-telemetry\/opentelemetry-specification\/\w+\/.*?\/specification([^\)]*))\)/ && - $ARGV !~ /tmp\/(opamp|otlp\/docs|semconv)|semantic_conventions/ - ) { - printf STDOUT "WARNING: link to spec page encoded as an external URL, but should be a local path, fix this upstream;\n File: $ARGV \n Link: $1\n"; - } - # Match markdown inline links or link definitions to OTel spec pages: "[...](URL)" or "[...]: URL" s|(\]:\s+\|\()https://github.com/open-telemetry/opentelemetry-specification/\w+/(main\|v$otelSpecVers)/specification(.*?\)?)|$1$specBasePath/otel$3|;