Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@sentry/cloudflare": "10.26.0",
"@sentry/core": "10.26.0",
"@sentry/node": "10.26.0",
"@sentry/rollup-plugin": "^4.3.0",
"@sentry/rollup-plugin": "^4.6.1",
Copy link

Choose a reason for hiding this comment

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

Bug: Version mismatch between rollup and vite plugins

The @sentry/rollup-plugin was bumped to ^4.6.1 while @sentry/vite-plugin remains at ^4.3.0. This creates a version mismatch where both plugins depend on different versions of @sentry/bundler-plugin-core (4.6.1 vs 4.3.0), which in turn depend on different versions of glob (^10.5.0 vs ^9.3.2) and @sentry/cli (^2.57.0 vs ^2.51.0). This results in duplicate dependencies being installed and potential runtime inconsistencies between the two plugins when used together in the Nuxt build process.

Fix in Cursor Fix in Web

"@sentry/vite-plugin": "^4.3.0",
"@sentry/vue": "10.26.0"
},
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7108,7 +7108,7 @@
magic-string "0.30.8"
unplugin "1.0.1"

"@sentry/bundler-plugin-core@^4.6.1":
"@sentry/bundler-plugin-core@4.6.1", "@sentry/bundler-plugin-core@^4.6.1":
version "4.6.1"
resolved "https://registry.yarnpkg.com/@sentry/bundler-plugin-core/-/bundler-plugin-core-4.6.1.tgz#d6013e6233bf663114f581bbd3c3a380ff9311d4"
integrity sha512-WPeRbnMXm927m4Kr69NTArPfI+p5/34FHftdCRI3LFPMyhZDzz6J3wLy4hzaVUgmMf10eLzmq2HGEMvpQmdynA==
Expand Down Expand Up @@ -7182,12 +7182,12 @@
"@sentry/cli-win32-i686" "2.58.2"
"@sentry/cli-win32-x64" "2.58.2"

"@sentry/rollup-plugin@^4.3.0":
version "4.3.0"
resolved "https://registry.yarnpkg.com/@sentry/rollup-plugin/-/rollup-plugin-4.3.0.tgz#d23fe49e48fa68dafa2b0933a8efabcc964b1df9"
integrity sha512-Ebk6cTGTNohnLEvHtwDKYlMRs8Qit/ybOflIKlQziBHjd51GtxG9TPIu9NYU0fJXa428aYNluto3BfgdMp+c+Q==
"@sentry/rollup-plugin@^4.6.1":
version "4.6.1"
resolved "https://registry.yarnpkg.com/@sentry/rollup-plugin/-/rollup-plugin-4.6.1.tgz#28dece8d6fad3044fd634724f6334f6b9b8f3ded"
integrity sha512-4G4oo05BhP7CjXdpTVFPInBgDNcuE5WKglALbCa2H9CY4ta8nHHPn2ni+d0WjhUIp6m5E1e+0NQ+0SxuFTCHVw==
dependencies:
"@sentry/bundler-plugin-core" "4.3.0"
"@sentry/bundler-plugin-core" "4.6.1"
unplugin "1.0.1"

"@sentry/vite-plugin@^4.1.0", "@sentry/vite-plugin@^4.3.0":
Expand Down
Loading