Skip to content

Commit 34f679c

Browse files
authored
Merge branch 'main' into glossary
2 parents 0cfcd1f + b20f3bd commit 34f679c

File tree

671 files changed

+16378
-8378
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

671 files changed

+16378
-8378
lines changed

.cspell.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,4 @@ words: # Valid words across all locales
7777
- nvmrc
7878
- opentelemetrybot
7979
- warnf
80+
- warnidf

.cspell/en-words.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ lifecycles
7373
lightstep
7474
Loffay
7575
Mancuso
76+
Marylia
7677
microservices
7778
mongodb
7879
ndjson
@@ -92,6 +93,7 @@ otel-endusers
9293
otelcol
9394
otep
9495
otlp
96+
Otmar
9597
packagist
9698
pageinfo
9799
Paixão

.cspell/es-palabras.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,10 @@ agregable
2626
milisegundos
2727
subproyecto
2828
autoinstrumentación
29+
muestreado
30+
muestreador
31+
muestreo
32+
muestreen
33+
muestrear
34+
muestrearse
35+
muestreados

.github/copilot-instructions.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ info here.
105105

106106
```
107107
.
108-
├── README.md # Project overview and contribution guidelines
109-
├── package.json # Node.js dependencies and npm scripts
110-
├── hugo.yaml # Hugo configuration with mounts and language settings
108+
├── README.md # Project overview and contribution guidelines
109+
├── package.json # Node.js dependencies and npm scripts
110+
├── config/**/*.yaml # Hugo configuration with mounts and language settings
111111
├── content/ # Main content (English and translations)
112112
├── content-modules/ # Git submodules for specifications and community docs
113113
├── layouts/ # Hugo templates and partial templates
@@ -168,13 +168,14 @@ npm run fix:markdown # Auto-fix markdown issues
168168
- Uses Hugo v0.148.2 with extended features
169169
- Theme: Docsy (Google's documentation theme)
170170
- Multilingual support enabled for 8+ languages
171-
- Content mounting from submodules defined in `hugo.yaml`
171+
- Content mounting from submodules defined in
172+
`config/_default/module-template.yaml`
172173
- Generated files placed in `public/` directory
173174

174175
### Frequently Accessed Files
175176

176177
- `package.json` - Dependencies and scripts
177-
- `hugo.yaml` - Site configuration and content mounts
178+
- `config/_default/*.yaml` - Site configuration and content mounts
178179
- `content/en/docs/contributing/development.md` - Development setup guide
179180
- `.warnings-skip-list.txt` - Known acceptable build warnings
180181
- `.cspell.yml` - Spell checking configuration

.github/localization.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ default_lang_commit: <commit-hash-of-english-page>
153153

154154
1. Create issue with localization request
155155
2. Translate homepage only: `content/LANG_ID/_index.md`
156-
3. Maintainers will update `hugo.yaml`, cSpell configuration, and create
156+
3. Maintainers will update Hugo config, cSpell configuration, and create
157157
language-specific tools
158158

159159
### Language-Specific Tooling

.github/scripts/check-refcache.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ fi
4343
DIFFS_FOUND=0
4444
for file in $REFCACHE_FILES; do
4545
if ! diff -q "$REFERENCE_FILE" "$file" >/dev/null 2>&1; then
46-
echo " - $file differs"
4746
DIFFS_FOUND=1
47+
echo " - $file differs"
48+
diff "$REFERENCE_FILE" "$file" | tail -n 100
49+
echo ""
4850
else
4951
echo " - $file is identical"
5052
fi

.github/workflows/auto-update-community-members.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v5
2121

2222
- name: Set up Node.js
23-
uses: actions/setup-node@v5
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version: '22'
2626

.github/workflows/build-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
jq '.dependencies |= {minisearch: .minisearch} | del(.optionalDependencies)' package.json > tmp/package-min.json
3030
cp tmp/package-min.json package.json
3131
32-
- uses: actions/setup-node@v5
32+
- uses: actions/setup-node@v6
3333
with:
3434
node-version-file: .nvmrc
3535
cache: npm
@@ -43,7 +43,7 @@ jobs:
4343
GET: no # For details, see: https://opentelemetry.io/docs/contributing/development/#submodule-changes
4444
PIN_SKIP: ${{ inputs.submodule_path_regex }}
4545

46-
- uses: actions/upload-artifact@v4
46+
- uses: actions/upload-artifact@v5
4747
with:
4848
name: build-log-etc
4949
path: |
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
steps:
5959
- uses: actions/checkout@v5
60-
- uses: actions/download-artifact@v5
60+
- uses: actions/download-artifact@v6
6161
with: { name: build-log-etc }
6262
- name: Fail when refcache contains entries with HTTP status 4XX
6363
run: |
@@ -74,7 +74,7 @@ jobs:
7474
runs-on: ubuntu-latest
7575
steps:
7676
- uses: actions/checkout@v5
77-
- uses: actions/download-artifact@v5
77+
- uses: actions/download-artifact@v6
7878
with: { name: build-log-etc }
7979
- run: cat tmp/build-log.txt
8080
- run: scripts/check-build-log.sh

.github/workflows/check-links.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
package.json > tmp/package-min.json
3838
cp tmp/package-min.json package.json
3939
40-
- uses: actions/setup-node@v5
40+
- uses: actions/setup-node@v6
4141
with:
4242
node-version-file: .nvmrc
4343
cache: npm
@@ -58,7 +58,7 @@ jobs:
5858
run: npm run log:build
5959
continue-on-error: true
6060

61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v5
6262
with:
6363
name: build-artifacts
6464
path: |
@@ -90,10 +90,10 @@ jobs:
9090
regex: '^(..[^/]|[a-m]./)'
9191
steps:
9292
- uses: actions/checkout@v5
93-
- uses: actions/download-artifact@v5
93+
- uses: actions/download-artifact@v6
9494
with: { name: build-artifacts }
9595

96-
- uses: actions/setup-node@v5
96+
- uses: actions/setup-node@v6
9797
with:
9898
node-version-file: .nvmrc
9999
cache: npm
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
.github/scripts/check-links-shard.sh '${{ matrix.shard.id }}' '${{ matrix.shard.regex }}'
105105
106-
- uses: actions/upload-artifact@v4
106+
- uses: actions/upload-artifact@v5
107107
with:
108108
name: refcache-${{ matrix.shard.id }}
109109
path: |
@@ -116,7 +116,7 @@ jobs:
116116
runs-on: ubuntu-latest
117117
steps:
118118
- uses: actions/checkout@v5
119-
- uses: actions/download-artifact@v5
119+
- uses: actions/download-artifact@v6
120120
with:
121121
pattern: refcache-*
122122
path: tmp/check-refcache
@@ -130,7 +130,7 @@ jobs:
130130
runs-on: ubuntu-latest
131131
steps:
132132
- uses: actions/checkout@v5
133-
- uses: actions/download-artifact@v5
133+
- uses: actions/download-artifact@v6
134134
with: { name: build-artifacts }
135135
- run: cat tmp/build-log.txt
136136
- run: scripts/check-build-log.sh

.github/workflows/check-registry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
| del(.dependencies, .optionalDependencies)' \
2626
package.json > tmp/package-ci.json
2727
cp tmp/package-ci.json package.json
28-
- uses: actions/setup-node@v5
28+
- uses: actions/setup-node@v6
2929
with:
3030
node-version-file: .nvmrc
3131
cache: npm

0 commit comments

Comments
 (0)