-
Notifications
You must be signed in to change notification settings - Fork 544
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: update otel core dependencies #2257
feat: update otel core dependencies #2257
Conversation
@@ -42,7 +42,7 @@ import type { InstrumentationOption } from '@opentelemetry/instrumentation'; | |||
*/ | |||
export function createTestNodeSdk(opts: { | |||
serviceName?: string; | |||
instrumentations: InstrumentationOption[]; | |||
instrumentations: (Instrumentation | Instrumentation[])[] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewer note: this was open-telemetry/opentelemetry-js#4675
@@ -154,7 +154,7 @@ describe('[email protected]', () => { | |||
afterEach(done => { | |||
context.disable(); | |||
memoryExporter.reset(); | |||
instrumentation.setConfig(); | |||
instrumentation.setConfig({}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewer note: this was due to open-telemetry/opentelemetry-js#4695
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2257 +/- ##
==========================================
- Coverage 90.97% 90.40% -0.58%
==========================================
Files 146 149 +3
Lines 7492 7514 +22
Branches 1502 1573 +71
==========================================
- Hits 6816 6793 -23
- Misses 676 721 +45 |
Updates all experimental OpenTelemetry core dependencies, addresses breaking changes.
(Ready for review when tests pass)