Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps @opentelemetry/instrumentation-graphql from 0.52.0 to 0.56.0.

Release notes

Sourced from @​opentelemetry/instrumentation-graphql's releases.

instrumentation-user-interaction: v0.53.0

0.53.0 (2025-11-06)

Features

  • deps: update deps matching '@opentelemetry/*' (#3210) (2d675d3)

instrumentation-long-task: v0.53.0

0.53.0 (2025-11-06)

Features

  • deps: update deps matching '@opentelemetry/*' (#3210) (2d675d3)

instrumentation-document-load: v0.54.0

0.54.0 (2025-11-06)

Features

  • deps: update deps matching '@opentelemetry/*' (#3210) (2d675d3)

instrumentation-winston: v0.53.0

0.53.0 (2025-11-06)

Features

  • deps: update deps matching '@opentelemetry/*' (#3210) (2d675d3)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​opentelemetry/winston-transport bumped from ^0.18.0 to ^0.19.0

instrumentation-router: v0.53.0

0.53.0 (2025-11-06)

Features

  • deps: update deps matching '@opentelemetry/*' (#3210) (2d675d3)

instrumentation-restify: v0.54.0

0.54.0 (2025-11-06)

... (truncated)

Changelog

Sourced from @​opentelemetry/instrumentation-graphql's changelog.

0.56.0 (2025-11-06)

Features

  • deps: update deps matching '@opentelemetry/*' (#3210) (2d675d3)
  • instrumentation-graphql: Add option to put all resolve spans under the same parent span (#3085) (4b9e3ad)

0.55.0 (2025-10-21)

Features

  • deps: update deps matching '@opentelemetry/*' (#3187) (ab96334)

0.54.0 (2025-10-06)

Features

  • deps: update deps matching '@opentelemetry/*' (#3145) (704c716)

0.53.3 (2025-09-29)

Bug Fixes

0.53.2 (2025-09-25)

Bug Fixes

0.53.1 (2025-09-24)

Bug Fixes

  • Enable union type support in @​opentelemetry/instrumentation-graphql (#1506) (#2923) (692cf0a)

0.53.0 (2025-09-10)

Features

  • deps: update deps matching '@opentelemetry/*' (#3034) (bee0a66)
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​opentelemetry/instrumentation-graphql since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 10, 2025
"@opentelemetry/instrumentation-fs": "0.24.0",
"@opentelemetry/instrumentation-generic-pool": "0.48.0",
"@opentelemetry/instrumentation-graphql": "0.52.0",
"@opentelemetry/instrumentation-graphql": "0.56.0",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Instrumentation Upgrade: Dependency Version Clash

The upgrade of @opentelemetry/instrumentation-graphql to 0.56.0 creates a dependency version conflict. This version requires @opentelemetry/instrumentation@^0.208.0, but the root package specifies @opentelemetry/instrumentation@^0.204.0. This mismatch will cause multiple versions of the same package to be installed, potentially leading to runtime conflicts, duplicate module instances, or unexpected behavior in OpenTelemetry instrumentation.

Fix in Cursor Fix in Web

Comment on lines +19127 to 19137
resolved "https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-2.0.0.tgz#295948cee94d0565314824c6bd75379d13e5b1a5"
integrity sha512-yNZhyQYqXpkT0AKq3F3KLasUSK4fHvebNH5hOsKQw2dhGSALvQ4U0BqUc5suziKvydO5u5hgN2hy1RJaho8U5A==
dependencies:
acorn "^8.14.0"
acorn-import-attributes "^1.9.5"
cjs-module-lexer "^1.2.2"
module-details-from-path "^1.0.3"

[email protected]:
version "3.1.0"
resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: The PR introduces a dependency conflict: import-in-the-middle@^1.14.2 is pinned in package.json files, but a new transitive dependency requires ^2.0.0.
Severity: CRITICAL | Confidence: 1.00

🔍 Detailed Analysis

The pull request updates @opentelemetry/instrumentation-graphql to 0.56.0, which transitively requires import-in-the-middle@^2.0.0. However, packages/node/package.json and packages/node-core/package.json still explicitly pin import-in-the-middle to ^1.14.2. This version mismatch can cause dependency resolution conflicts during installation or lead to runtime errors if import-in-the-middle v2.0.0 is installed and code expects v1.x behavior.

💡 Suggested Fix

Update the explicit import-in-the-middle dependency in packages/node/package.json and packages/node-core/package.json from ^1.14.2 to ^2.0.0 to resolve the version conflict.

🤖 Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: yarn.lock#L19122-L19137

Potential issue: The pull request updates `@opentelemetry/instrumentation-graphql` to
`0.56.0`, which transitively requires `import-in-the-middle@^2.0.0`. However,
`packages/node/package.json` and `packages/node-core/package.json` still explicitly pin
`import-in-the-middle` to `^1.14.2`. This version mismatch can cause dependency
resolution conflicts during installation or lead to runtime errors if
`import-in-the-middle` v2.0.0 is installed and code expects v1.x behavior.

Did we get this right? 👍 / 👎 to inform future reviews.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant