Skip to content

deps: Add missing peer dependencies #16751

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

Draft
wants to merge 9 commits into
base: develop
Choose a base branch
from
Draft

Conversation

mydea
Copy link
Member

@mydea mydea commented Jun 27, 2025

This adds missing peer dependencies that yarn complains about. Nothing should change, fundamentally.

Extracted this out of #16744

@mydea mydea self-assigned this Jun 27, 2025
@mydea mydea force-pushed the fn/add-peer-dependencies branch from 485df2e to d477e77 Compare June 27, 2025 08:16
Copy link
Contributor

github-actions bot commented Jun 27, 2025

size-limit report 📦

Path Size % Change Change
@sentry/browser 23.81 kB -0.73% -173 B 🔽
@sentry/browser - with treeshaking flags 22.53 kB -5.15% -1.22 kB 🔽
@sentry/browser (incl. Tracing) 38.65 kB -0.5% -194 B 🔽
@sentry/browser (incl. Tracing, Replay) 76.7 kB -0.38% -285 B 🔽
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.67 kB -4.85% -3.4 kB 🔽
@sentry/browser (incl. Tracing, Replay with Canvas) 81.43 kB -0.39% -312 B 🔽
@sentry/browser (incl. Tracing, Replay, Feedback) 93.47 kB -0.38% -355 B 🔽
@sentry/browser (incl. Feedback) 40.48 kB -0.67% -270 B 🔽
@sentry/browser (incl. sendFeedback) 28.49 kB -0.74% -210 B 🔽
@sentry/browser (incl. FeedbackAsync) 33.38 kB -0.61% -204 B 🔽
@sentry/react 25.58 kB -0.68% -175 B 🔽
@sentry/react (incl. Tracing) 40.61 kB -0.56% -227 B 🔽
@sentry/vue 28.25 kB -0.4% -111 B 🔽
@sentry/vue (incl. Tracing) 40.49 kB -0.53% -212 B 🔽
@sentry/svelte 23.83 kB -0.75% -178 B 🔽
CDN Bundle 25.36 kB -0.55% -139 B 🔽
CDN Bundle (incl. Tracing) 38.7 kB -0.55% -211 B 🔽
CDN Bundle (incl. Tracing, Replay) 74.58 kB -0.34% -248 B 🔽
CDN Bundle (incl. Tracing, Replay, Feedback) 80 kB -0.36% -289 B 🔽
CDN Bundle - uncompressed 74.08 kB -0.56% -415 B 🔽
CDN Bundle (incl. Tracing) - uncompressed 114.77 kB -0.57% -650 B 🔽
CDN Bundle (incl. Tracing, Replay) - uncompressed 228.45 kB -0.45% -1.02 kB 🔽
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 241.25 kB -0.44% -1.04 kB 🔽
@sentry/nextjs (client) 42.22 kB -0.59% -250 B 🔽
@sentry/sveltekit (client) 39.09 kB -0.61% -238 B 🔽
@sentry/node 160.26 kB +3.87% +5.97 kB 🔺
@sentry/node - without tracing 100.41 kB +1.81% +1.78 kB 🔺
@sentry/aws-serverless 128.5 kB +3.3% +4.1 kB 🔺

View base workflow run

@mydea mydea force-pushed the fn/add-peer-dependencies branch 2 times, most recently from c752ad0 to 25687c2 Compare June 27, 2025 09:02
Copy link

codecov bot commented Jun 27, 2025

❌ Unsupported file format

Upload processing failed due to unsupported file format. Please review the parser error message:
Error deserializing json

Caused by:
expected value at line 1 column 1

For more help, visit our troubleshooting guide.

@mydea mydea force-pushed the fn/add-peer-dependencies branch from f66c60e to 8e4e86b Compare June 27, 2025 10:42
@@ -59,7 +59,6 @@ sentryTest('should add resource spans to pageload transaction', async ({ getLoca

const expectedScripts = [
'/init.bundle.js',
'/subject.bundle.js',
Copy link
Member Author

Choose a reason for hiding this comment

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

this (subject) is not defined for this test, apparently some changed webpack version emits or does not emit the empty file anymore, but this should be OK.

"@nestjs/common": "11.0.16",
"@nestjs/core": "10.4.6",
"@nestjs/platform-express": "10.4.6",
"@nestjs/common": "11.1.3",
Copy link
Member Author

Choose a reason for hiding this comment

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

bumping & aligning to latest as that fixes some transitive dependency security issue.

@@ -71,7 +71,7 @@
"ember-source": "~4.12.4",
"ember-template-lint": "~4.16.1",
"eslint-plugin-ember": "11.9.0",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-n": "15.0.0",
Copy link
Member Author

Choose a reason for hiding this comment

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

downgrading because this actually requires eslint 8

@@ -1,7 +1,7 @@
import type { ClientOptions, Context } from '@sentry/core';
import { captureException, getClient, getTraceMetaTags, logger } from '@sentry/core';
import type { VueOptions } from '@sentry/vue/src/types';
import type { CapturedErrorContext } from 'nitropack';
import type { CapturedErrorContext } from 'nitropack/types';
Copy link
Member Author

Choose a reason for hiding this comment

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

this apparently changed in a newer nitropack version 😭

@@ -6,7 +6,7 @@ export type RollupConfig = {
plugins: unknown[];
};

export type SolidStartInlineConfig = Parameters<typeof defineConfig>[0];
export type SolidStartInlineConfig = NonNullable<Parameters<typeof defineConfig>[0]>;
Copy link
Member Author

Choose a reason for hiding this comment

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

type is now possible undefined, which leads to problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy