Skip to content

Commit 6da2fae

Browse files
committed
Update Hugo to 0.144.2 and other NPM packages
1 parent c3365f2 commit 6da2fae

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -122,16 +122,16 @@
122122
"ajv-errors": "^3.0.0",
123123
"ajv-formats": "^3.0.1",
124124
"autoprefixer": "^10.4.20",
125-
"cspell": "^8.17.3",
125+
"cspell": "^8.17.5",
126126
"gulp": "^5.0.0",
127-
"hugo-extended": "0.143.1",
127+
"hugo-extended": "0.144.2",
128128
"js-yaml": "^4.1.0",
129129
"markdown-link-check": "^3.13.6",
130130
"markdownlint": "^0.37.4",
131131
"markdownlint-cli2": "^0.17.2",
132132
"postcss-cli": "^11.0.0",
133-
"prettier": "3.5.1",
134-
"puppeteer": "^24.2.0",
133+
"prettier": "3.5.2",
134+
"puppeteer": "^24.3.0",
135135
"require-dir": "^1.2.0",
136136
"textlint": "^14.4.2",
137137
"textlint-filter-rule-allowlist": "^4.0.0",
@@ -142,20 +142,20 @@
142142
},
143143
"dependencies": {
144144
"@opentelemetry/api": "^1.9.0",
145-
"@opentelemetry/auto-instrumentations-web": "^0.45.0",
145+
"@opentelemetry/auto-instrumentations-web": "^0.45.1",
146146
"@opentelemetry/context-zone": "^1.30.1",
147147
"@opentelemetry/core": "^1.30.1",
148-
"@opentelemetry/exporter-trace-otlp-http": "^0.57.1",
149-
"@opentelemetry/instrumentation": "^0.57.1",
148+
"@opentelemetry/exporter-trace-otlp-http": "^0.57.2",
149+
"@opentelemetry/instrumentation": "^0.57.2",
150150
"@opentelemetry/resources": "^1.30.1",
151151
"@opentelemetry/sdk-trace-base": "^1.30.1",
152152
"@opentelemetry/sdk-trace-web": "^1.30.1",
153-
"@opentelemetry/semantic-conventions": "^1.29.0",
153+
"@opentelemetry/semantic-conventions": "^1.30.0",
154154
"path": "^0.12.7"
155155
},
156156
"optionalDependencies": {
157-
"netlify-cli": "^18.0.4",
158-
"npm-check-updates": "^17.1.14"
157+
"netlify-cli": "^19.0.0",
158+
"npm-check-updates": "^17.1.15"
159159
},
160160
"enginesComment": "Ensure that engines.node value stays consistent with the project's .nvmrc",
161161
"engines": {

scripts/content-modules/adjust-pages.pl

+8-7
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,12 @@ ($$$)
104104
return 0;
105105
}
106106

107-
# sub patchEventAliases() {
108-
# return unless $ARGV =~ /^tmp\/otel\/specification\/logs\//
109-
# && applyPatchOrPrintMsgIf('2025-01-23-event-aliases', 'spec', '1.41.0');
110-
#
111-
# my $aliases = '^( - )(event-(api|sdk))$';
112-
# s|$aliases|$1./$2|;
113-
# }
107+
sub patchMissionHeadingIDs() {
108+
return unless $ARGV =~ /^tmp\/otel\/specification\/specification-principles.md/
109+
&& applyPatchOrPrintMsgIf('2025-02-25-mission-heading-IDs', 'spec', '1.42.0');
110+
111+
s|(#we-value-)_(.*?)_|$1$2|;
112+
}
114113

115114
sub patchSemConv1_30_0() {
116115
return unless $ARGV =~ /^tmp\/semconv\/docs\//
@@ -205,6 +204,8 @@ ()
205204

206205
# SPECIFICATION custom processing
207206

207+
patchMissionHeadingIDs();
208+
208209
s|\(https://github.com/open-telemetry/opentelemetry-specification\)|($specBasePath/otel/)|;
209210
s|(\]\()/specification/|$1$specBasePath/otel/)|;
210211
s|\.\./specification/(.*?\))|../otel/$1|g if $ARGV =~ /otel\/specification/;

0 commit comments

Comments
 (0)