⬆️ bump @opentelemetry/exporter-* devDeps to ^0.218.0#82
Conversation
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Aligns test/example OTel exporters with the runtime sdk-node bump in elysiajs#81 so the test surface and runtime deps share one OTel line. No consumer-facing change (devDeps only).
76817d0 to
d2c8c38
Compare
|
Consolidating into #81 — one PR for the full |
Summary
Follow-up to the runtime-dep bump PR (which targets the same
0.200.0→0.218.0move forsdk-node+instrumentation). This one bumps the OTel exporter devDeps so the test/example surface stays on the same OTel line as the runtime deps:"devDependencies": { ... - "@opentelemetry/exporter-metrics-otlp-proto": "^0.200.0", - "@opentelemetry/exporter-trace-otlp-http": "^0.200.0", - "@opentelemetry/exporter-trace-otlp-proto": "^0.200.0", + "@opentelemetry/exporter-metrics-otlp-proto": "^0.218.0", + "@opentelemetry/exporter-trace-otlp-http": "^0.218.0", + "@opentelemetry/exporter-trace-otlp-proto": "^0.218.0", ... }Why
devDeps only — no consumer impact. Without this, the test suite and examples are exercising a different OTel exporter line (0.200.x) from the runtime deps (0.218.x post the parent PR). Keeping them aligned makes test results representative of what consumers will see.
Sequencing
Branched on top of
bump-otel-sdk-node-to-0.218. Best to merge after the parent PR lands; this one rebases cleanly ontomainonce that's done.Verification
bun run buildsucceeds (CJS + ESM).bun test --preload ./test/test-setup.ts: 61 pass / 1 fail, same single pre-existing@elysiajs/edenimport failure that's already onmain. No new regressions.The 2.x stable devDeps (
context-async-hooks,exporter-jaeger,sdk-metrics,sdk-trace-node,sdk-trace-web) are left at their current^2.0.0ranges — they're on a wide enough caret to converge naturally with whateversdk-node@0.218.0pulls in transitively.