Skip to content

fix(deps): update weekly-non-major-updates#3783

Merged
sleidig merged 1 commit intomasterfrom
renovate/weekly-non-major-updates
Mar 18, 2026
Merged

fix(deps): update weekly-non-major-updates#3783
sleidig merged 1 commit intomasterfrom
renovate/weekly-non-major-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 18, 2026

This PR contains the following updates:

Package Change Age Confidence
@angular-devkit/build-angular ^21.2.0^21.2.2 age confidence
@angular-eslint/schematics (source) ^21.2.0^21.3.1 age confidence
@angular/animations (source) ^21.2.0^21.2.4 age confidence
@angular/build ^21.2.0^21.2.2 age confidence
@angular/cdk ^21.2.0^21.2.2 age confidence
@angular/cli ^21.2.0^21.2.2 age confidence
@angular/common (source) ^21.2.0^21.2.4 age confidence
@angular/compiler (source) ^21.2.0^21.2.4 age confidence
@angular/compiler-cli (source) ^21.2.0^21.2.4 age confidence
@angular/core (source) ^21.2.0^21.2.4 age confidence
@angular/forms (source) ^21.2.0^21.2.4 age confidence
@angular/localize ^21.2.0^21.2.4 age confidence
@angular/material ^21.2.0^21.2.2 age confidence
@angular/material-moment-adapter ^21.2.0^21.2.2 age confidence
@angular/platform-browser (source) ^21.2.0^21.2.4 age confidence
@angular/platform-browser-dynamic (source) ^21.2.0^21.2.4 age confidence
@angular/router (source) ^21.2.0^21.2.4 age confidence
@angular/service-worker (source) ^21.2.0^21.2.4 age confidence
@argos-ci/cli (source) ^4.1.1^4.1.2 age confidence
@argos-ci/playwright (source) ^6.4.2^6.5.0 age confidence
@eslint/js (source) ^9.39.3^9.39.4 age confidence
@schematics/angular ^21.2.0^21.2.2 age confidence
@sentry/angular (source) ^10.42.0^10.44.0 age confidence
@sentry/cli (source) ^3.2.3^3.3.3 age confidence
@storybook/addon-docs (source) ^10.2.14^10.3.0 age confidence
@storybook/angular (source) ^10.2.14^10.3.0 age confidence
@typescript-eslint/eslint-plugin (source) ^8.56.1^8.57.1 age confidence
@typescript-eslint/parser (source) ^8.56.1^8.57.1 age confidence
angular-eslint (source) ^21.2.0^21.3.1 age confidence
babel-loader ^10.0.0^10.1.1 age confidence
eslint (source) ^9.39.3^9.39.4 age confidence
eslint-plugin-storybook (source) ^10.2.14^10.3.0 age confidence
storybook (source) ^10.2.14^10.3.0 age confidence
typescript-eslint (source) ^8.56.1^8.57.1 age confidence

Release Notes

angular-eslint/angular-eslint (@​angular-eslint/schematics)

v21.3.1

Compare Source

This was a version bump only for schematics to align it with other projects, there were no code changes.

argos-ci/argos-javascript (@​argos-ci/cli)

v4.1.2

Compare Source

Bug Fixes
  • config: fix parallelTotal and parallelIndex validation (3d64c32)
argos-ci/argos-javascript (@​argos-ci/playwright)

v6.5.0

Compare Source

Features

6.4.2 (2026-02-20)

Note: Version bump only for package @​argos-ci/playwright

6.4.1 (2026-01-31)

Note: Version bump only for package @​argos-ci/playwright

getsentry/sentry-javascript (@​sentry/angular)

v10.44.0

Compare Source

Important Changes
  • feat(effect): Add @sentry/effect SDK (Alpha) (#​19644)

    This release introduces @sentry/effect, a new SDK for Effect.ts applications. The SDK provides Sentry integration via composable Effect layers for both Node.js and browser environments.

    Compose the effectLayer with optional tracing, logging, and metrics layers to instrument your Effect application:

    import * as Sentry from '@​sentry/effect';
    import * as Layer from 'effect/Layer';
    import * as Logger from 'effect/Logger';
    
    const SentryLive = Layer.mergeAll(
      Sentry.effectLayer({ dsn: '__DSN__', tracesSampleRate: 1.0, enableLogs: true }),
      Layer.setTracer(Sentry.SentryEffectTracer),
      Logger.replace(Logger.defaultLogger, Sentry.SentryEffectLogger),
      Sentry.SentryEffectMetricsLayer,
    );

    Alpha features are still in progress, may have bugs and might include breaking changes. Please reach out on GitHub if you have any feedback or concerns.

  • feat(astro): Add Astro 6 support (#​19745)

    This release enables full support for Astro v6 by adjusting our Astro SDK's middleware to some Astro-internal
    changes. We cannot yet guarantee full support for server-islands, due to a bug in Astro v6
    but we'll follow up on this once the bug is fixed.

  • feat(hono): Add basic instrumentation for Node runtime (#​19817)

    Adds a new package @sentry/hono/node (alpha) with basic instrumentation for Hono applications running in Node.js.
    The Hono middleware for Cloudflare (@sentry/hono/cloudflare - alpha) comes with fixes, and it's now possible to access the Cloudflare Worker Bindings (env) from the options' callback.

    Start using the new Hono middlewares by installing @sentry/hono and importing the respective middleware for your runtime.
    More instructions can be found in the Hono readme.

    Alpha features are still in progress, may have bugs and might include breaking changes. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nestjs): Instrument @nestjs/bullmq @Processor decorator (#​19759)

    Automatically capture exceptions and create transactions for BullMQ queue processors in NestJS applications.

    When using the @Processor decorator from @nestjs/bullmq, the SDK now automatically wraps the process() method
    to create queue.process transactions with proper isolation scopes, preventing breadcrumb and scope leakage between
    jobs and HTTP requests. Errors thrown in processors are captured with the auto.queue.nestjs.bullmq mechanism type.

    Requires @nestjs/bullmq v10.0.0 or later.

  • feat(nestjs): Instrument @nestjs/schedule decorators (#​19735)

    Automatically capture exceptions thrown in @Cron, @Interval, and @Timeout decorated methods.

    Previously, exceptions in @Cron methods were only captured if you used the SentryCron decorator. Now they are
    captured automatically. The exception mechanism type changed from auto.cron.nestjs.async to
    auto.function.nestjs.cron. If you have Sentry queries or alerts that filter on the old mechanism type, update them
    accordingly.

  • feat(node): Expose headersToSpanAttributes option on nativeNodeFetchIntegration() (#​19770)

    Response headers like http.response.header.content-length were previously captured automatically on outgoing
    fetch spans but are now opt-in since @opentelemetry/instrumentation-undici@0.22.0. You can now configure which
    headers to capture via the headersToSpanAttributes option.

    Sentry.init({
      integrations: [
        Sentry.nativeNodeFetchIntegration({
          headersToSpanAttributes: {
            requestHeaders: ['x-custom-header'],
            responseHeaders: ['content-length', 'content-type'],
          },
        }),
      ],
    });
Other Changes
  • feat(browser/cloudflare): Export conversation id from browser and cloudflare runtimes (#​19820)
  • feat(bun): Set http response header attributes instead of response context headers (#​19821)
  • feat(core): Add sentry.timestamp.sequence attribute for timestamp tie-breaking (#​19421)
  • feat(deno): Set http response header attributes instead of response context headers (#​19822)
  • feat(deps): Bump OpenTelemetry dependencies (#​19682)
  • feat(nestjs): Use more specific span origins for NestJS guards, pipes, interceptors, and exception filters (#​19751)
  • feat(nextjs): Vercel queue instrumentation (#​19799)
  • feat(node): Avoid OTEL instrumentation for outgoing requests on Node 22+ (#​17355)
  • feat(deps): bump hono from 4.12.5 to 4.12.7 (#​19747)
  • feat(deps): bump mysql2 from 3.14.4 to 3.19.1 (#​19787)
  • feat(deps): bump simple-git from 3.30.0 to 3.33.0 (#​19744)
  • feat(deps): bump yauzl from 3.2.0 to 3.2.1 (#​19809)
  • fix(browser): Skip browserTracingIntegration setup for bot user agents (#​19708)
  • fix(cloudflare): Recreate client when previous one was disposed (#​19727)
  • fix(core): Align Vercel embedding spans with semantic conventions (#​19795)
  • fix(core): Fallback to sendDefaultPii setting in langchain and langgraph in non-node environments (#​19813)
  • fix(core): Improve Vercel AI SDK instrumentation attributes (#​19717)
  • fix(hono): Align error mechanism (#​19831)
  • fix(hono): Allow passing env and fix type issues (#​19825)
  • fix(nestjs): Fork isolation scope in @nestjs/event-emitter instrumentation (#​19725)
  • fix(nextjs): Log correct lastEventId when error is thrown in component render (#​19764)
  • fix(nextjs): Strip sourceMappingURL comments after deleting source maps in turbopack builds (#​19814)
  • fix(nuxt): Upload client source maps (#​19805)
  • fix(profiling-node): Fix NODE_VERSION rendered as [object Object] in warning (#​19788)
Internal Changes
  • chore: Add oxlint migration commits to blame ignore (#​19784)
  • chore: add oxlint typescript program suppression to workspace settings (#​19692)
  • chore: Bump oxlint and oxfmt (#​19771)
  • chore: Clean up lint and format script names (#​19719)
  • chore(agents): Be more explicit on linting and formatting (#​19803)
  • chore(ci): Extract metadata workflow (#​19680)
  • chore(deps): bump tedious from 18.6.1 to 19.2.1 (#​19786)
  • chore(deps-dev): bump file-type from 20.5.0 to 21.3.1 (#​19748)
  • chore(effect): Add Effect to craft, README and issue templates (#​19837)
  • chore(lint): Rule adjustments and fix warnings (#​19612)
  • chore(skills): Add skill-creator and update managed agent skills (#​19713)
  • docs(changelog): Add entry for @sentry/hono alpha release (#​19828)
  • docs(hono): Document usage without "*" (#​19756)
  • docs(new-release): Document sdkName for craft (#​19736)
  • docs(new-release): Update docs based on new Craft flow (#​19731)
  • ref(cloudflare): Prepare for WorkerEntrypoint (#​19742)
  • ref(nestjs): Move event instrumentation unit tests to separate file (#​19738)
  • style: Auto changes made from "yarn fix" (#​19710)
  • test(astro,cloudflare): Add an E2E test for Astro 6 on Cloudflare (#​19781)
  • test(browser): Add simulated mfe integration test (#​19768)
  • test(e2e): Add MFE e2e test using vite-plugin-federation (#​19778)
  • test(nextjs): Add vercel queue tests to next-16 (#​19798)
  • tests(core): Fix flaky metric sequence number test (#​19754)

Bundle size 📦

Path Size
@​sentry/browser 25.04 KB
@​sentry/browser - with treeshaking flags 23.57 KB
@​sentry/browser (incl. Tracing) 41.62 KB
@​sentry/browser (incl. Tracing, Profiling) 46.17 KB
@​sentry/browser (incl. Tracing, Replay) 79.51 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 69.33 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 84.11 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 96.07 KB
@​sentry/browser (incl. Feedback) 41.45 KB
@​sentry/browser (incl. sendFeedback) 29.6 KB
@​sentry/browser (incl. FeedbackAsync) 34.53 KB
@​sentry/browser (incl. Metrics) 26.29 KB
@​sentry/browser (incl. Logs) 26.43 KB
@​sentry/browser (incl. Metrics & Logs) 27.09 KB
@​sentry/react 26.75 KB
@​sentry/react (incl. Tracing) 43.9 KB
@​sentry/vue 29.38 KB
@​sentry/vue (incl. Tracing) 43.44 KB
@​sentry/svelte 25.06 KB
CDN Bundle 27.62 KB
CDN Bundle (incl. Tracing) 42.49 KB
CDN Bundle (incl. Logs, Metrics) 28.46 KB
CDN Bundle (incl. Tracing, Logs, Metrics) 43.32 KB
CDN Bundle (incl. Replay, Logs, Metrics) 66.61 KB
CDN Bundle (incl. Tracing, Replay) 78.45 KB
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) 79.33 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 83.86 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) 84.74 KB
CDN Bundle - uncompressed 80.69 KB
CDN Bundle (incl. Tracing) - uncompressed 125.55 KB
CDN Bundle (incl. Logs, Metrics) - uncompressed 83.49 KB
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed 128.35 KB
CDN Bundle (incl. Replay, Logs, Metrics) - uncompressed 204.22 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 239.66 KB
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) - uncompressed 242.45 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 252.27 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed 255.05 KB
@​sentry/nextjs (client) 46.26 KB
@​sentry/sveltekit (client) 42.06 KB
@​sentry/node-core 55.03 KB
@​sentry/node 169.1 KB
@​sentry/node - without tracing 94.09 KB
@​sentry/aws-serverless 110.68 KB
storybookjs/storybook (@​storybook/addon-docs)

v10.3.0

Compare Source

> Improved developer experience, AI-assisting tools, and broader ecosystem support

Storybook 10.3 contains hundreds of fixes and improvements including:

  • 🤖 Storybook MCP: Agentic component dev, docs, and test (Preview release for React)
  • ⚡ Vite 8 support
  • ▲ Next.js 16.2 support
  • 📝 ESLint 10 support
  • 🧪 React: Experimental react-component-meta prop extraction tool for accurate controls and args tables
  • 〰️ Addon Pseudo-States: Tailwind v4 support
  • 🔧 Addon-Vitest: Simplified configuration - no more setup files required
  • ♿ Numerous accessibility improvements across the UI
List of all updates - A11y: Add ScrollArea prop focusable for when it has static children - [#​33876](https://github.com/storybookjs/storybook/pull/33876), thanks @​Sidnioulz! - A11y: Ensure popover dialogs have an ARIA label - [#​33500](https://github.com/storybookjs/storybook/pull/33500), thanks @​gayanMatch! - A11y: Make resize handles for addon panel and sidebar accessible [#​33980](https://github.com/storybookjs/storybook/pull/33980) - A11y: Underline MDX links for WCAG SC 1.4.1 compliance - [#​33139](https://github.com/storybookjs/storybook/pull/33139), thanks @​NikhilChowdhury27! - Actions: Add expandLevel parameter to configure tree depth - [#​33977](https://github.com/storybookjs/storybook/pull/33977), thanks @​mixelburg! - Actions: Fix HandlerFunction type to support async callback props - [#​33864](https://github.com/storybookjs/storybook/pull/33864), thanks @​mixelburg! - Addon-Docs: Add React as optimizeDeps entry - [#​34176](https://github.com/storybookjs/storybook/pull/34176), thanks @​valentinpalkovic! - Addon-Docs: Add support for `sourceState: 'none'` to canvas block parameters - [#​33627](https://github.com/storybookjs/storybook/pull/33627), thanks @​quisido! - Addon-docs: Restore `docs.components` overrides for doc blocks [#​34111](https://github.com/storybookjs/storybook/pull/34111) - Addon-Vitest: Add channel API to programmatically trigger test runs - [#​33206](https://github.com/storybookjs/storybook/pull/33206), thanks @​JReinhold! - Addon-Vitest: Handle additional vitest config export patterns in postinstall - [#​34106](https://github.com/storybookjs/storybook/pull/34106), thanks @​copilot-swe-agent! - Addon-Vitest: Make Playwright `--with-deps` platform-aware to avoid `sudo` prompt on Linux [#​34121](https://github.com/storybookjs/storybook/pull/34121) - Addon-Vitest: Refactor Vitest setup to eliminate the need for a dedicated setup file - [#​34025](https://github.com/storybookjs/storybook/pull/34025), thanks @​valentinpalkovic! - Addon-Vitest: Support Vitest canaries - [#​33833](https://github.com/storybookjs/storybook/pull/33833), thanks @​valentinpalkovic! - Angular: Add moduleResolution: bundler to tsconfig - [#​34085](https://github.com/storybookjs/storybook/pull/34085), thanks @​valentinpalkovic! - Angular: only load webpack dependencies on demand - [#​34043](https://github.com/storybookjs/storybook/pull/34043), thanks @​sod! - Angular: Storybook fails with unknown option silent - [#​33736](https://github.com/storybookjs/storybook/pull/33736), thanks @​tanujbhaud! - Build: Update @​types/node - [#​34037](https://github.com/storybookjs/storybook/pull/34037), thanks @​valentinpalkovic! - Builder-Vite: Centralize Vite plugins for builder-vite and addon-vitest - [#​33819](https://github.com/storybookjs/storybook/pull/33819), thanks @​valentinpalkovic! - Builder-Vite: Fix cold-cache vitest failures for story paths containing glob special characters - [#​34044](https://github.com/storybookjs/storybook/pull/34044), thanks @​copilot-swe-agent! - Builder-Vite: Use preview annotations as entry points for optimizeDeps - [#​33875](https://github.com/storybookjs/storybook/pull/33875), thanks @​copilot-swe-agent! - CI: declare explicit permissions for stale and weekly cron workflows - [#​33902](https://github.com/storybookjs/storybook/pull/33902), thanks @​Rohan5commit! - CLI: Add vike CLI metadata - [#​34189](https://github.com/storybookjs/storybook/pull/34189), thanks @​yannbf! - CLI: Avoid hanging of postinstall during init - [#​34175](https://github.com/storybookjs/storybook/pull/34175), thanks @​valentinpalkovic! - CLI: Fix onboarding not opening - [#​33609](https://github.com/storybookjs/storybook/pull/33609), thanks @​ndelangen! - CLI: Show multiple favicons warning as debug message - [#​34069](https://github.com/storybookjs/storybook/pull/34069), thanks @​remino! - Cli: Use npm for registry URL in PNPMProxy to avoid workspace errors - [#​33571](https://github.com/storybookjs/storybook/pull/33571), thanks @​ia319! - Controls: Allow story argTypes to override control: false from meta - [#​33729](https://github.com/storybookjs/storybook/pull/33729), thanks @​jonathan-fulton! - Controls: Fix Object contrast issue and tidy up code - [#​33923](https://github.com/storybookjs/storybook/pull/33923), thanks @​Sidnioulz! - Core: Ensure telemetry is never triggered on initial load of checklist data - [#​33918](https://github.com/storybookjs/storybook/pull/33918), thanks @​ghengeveld! - Core: Fix event source URL based on refId when multiple iframes share the same origin [#​34105](https://github.com/storybookjs/storybook/pull/34105) - Core: Fix false-positive CJS warning when 'exports' appears in strings or comments - [#​33572](https://github.com/storybookjs/storybook/pull/33572), thanks @​reeseo3o! - Core: Fix handling complex viewport sizes [#​33615](https://github.com/storybookjs/storybook/pull/33615) - Core: Fix iframe reference for composed Storybook on a subpath [#​34100](https://github.com/storybookjs/storybook/pull/34100) - Core: Fix typos: occured -> occurred, recieves -> receives - [#​33727](https://github.com/storybookjs/storybook/pull/33727), thanks @​jonathan-fulton! - Core: Handle BROWSER=none correctly and improve error messages - [#​33730](https://github.com/storybookjs/storybook/pull/33730), thanks @​jonathan-fulton! - Core: Ignore empty files when indexing - [#​33782](https://github.com/storybookjs/storybook/pull/33782), thanks @​JReinhold! - Core: Register CORS middleware before index.json route - [#​33728](https://github.com/storybookjs/storybook/pull/33728), thanks @​jonathan-fulton! - Core: Revert Pull Request #​33420 from Maelryn/fix/copy-button-overlap - [#​33877](https://github.com/storybookjs/storybook/pull/33877), thanks @​Sidnioulz! - Core: Zoom tool refinements - Hide reset button when value is initial - [#​33635](https://github.com/storybookjs/storybook/pull/33635), thanks @​superLipbalm! - Docs: Edit JSON button is now accessible at 320x256 viewport (WCAG 2.1 Reflow test) - [#​33707](https://github.com/storybookjs/storybook/pull/33707), thanks @​TheSeydiCharyyev! - Docs: Make CSS ordering in DocsContainer more predictable [#​34015](https://github.com/storybookjs/storybook/pull/34015) - ESLint-plugin: Disallow extra properties in eslint plugin rule options - [#​32056](https://github.com/storybookjs/storybook/pull/32056), thanks @​andreww2012! - ESLint: bail out config setup if eslint-plugin-storybook is already imported - [#​34089](https://github.com/storybookjs/storybook/pull/34089), thanks @​copilot-swe-agent! - HMR: Fix race conditions causing stale play functions to fire on re-rendered stories - [#​33930](https://github.com/storybookjs/storybook/pull/33930), thanks @​copilot-swe-agent! - Maintenance: Revert pull request #​33930 HMR events - [#​34190](https://github.com/storybookjs/storybook/pull/34190), thanks @​yannbf! - Maintenance: Use std-env for AI agent detection in telemetry [#​34114](https://github.com/storybookjs/storybook/pull/34114) - Manifest: Add docs entries to debugger - [#​33607](https://github.com/storybookjs/storybook/pull/33607), thanks @​JReinhold! - Manifest: Rename `experimentalComponentsManifest` → `componentsManifest`, default to `true` [#​33974](https://github.com/storybookjs/storybook/pull/33974) - Manifests: Fix Attached MDX causing wrong component entries [#​34101](https://github.com/storybookjs/storybook/pull/34101) - Next.js-Vite: Fix failing postcss mutation - [#​33879](https://github.com/storybookjs/storybook/pull/33879), thanks @​valentinpalkovic! - Next.js: Move image configuration from FrameworkOptions to parameters [#​32639](https://github.com/storybookjs/storybook/pull/32639), thanks @​y-hsgw! - Preact: Support inferring props from component types - [#​33828](https://github.com/storybookjs/storybook/pull/33828), thanks @​JoviDeCroock! - React Native Web: Fix inconsistent example stories - [#​33891](https://github.com/storybookjs/storybook/pull/33891), thanks @​danielalanbates! - React: Add react-docgen-typescript to component manifest - [#​33818](https://github.com/storybookjs/storybook/pull/33818), thanks @​kasperpeulen! - Revert "Toolbar: Remove extra toolbar divider when zoom controls not shown" - [#​34099](https://github.com/storybookjs/storybook/pull/34099), thanks @​valentinpalkovic! - Test: Fix clearing mocks in Vitest [#​34078](https://github.com/storybookjs/storybook/pull/34078) - Test: Update @​testing-library/jest-dom - [#​33928](https://github.com/storybookjs/storybook/pull/33928), thanks @​valentinpalkovic! - Theming: Export interface declaration for `ThemesGlobals` - [#​33343](https://github.com/storybookjs/storybook/pull/33343), thanks @​icopp! - Toolbar: Remove extra toolbar divider when zoom controls not shown - [#​33731](https://github.com/storybookjs/storybook/pull/33731), thanks @​jonathan-fulton! - UI: Allow direct kb/mouse actions on zoom tool button - [#​33496](https://github.com/storybookjs/storybook/pull/33496), thanks @​Sidnioulz! - UI: Avoid large animation for reduced motion users - [#​33530](https://github.com/storybookjs/storybook/pull/33530), thanks @​Sidnioulz! - UI: Ensure Link without href is keyboard-reachable - [#​34163](https://github.com/storybookjs/storybook/pull/34163), thanks @​Sidnioulz! - UI: Fix `z-index` problem with `popover`s and `modal`s nesting - [#​33757](https://github.com/storybookjs/storybook/pull/33757), thanks @​ndelangen! - UI: Fix code/copy buttons overlap with content - [#​33889](https://github.com/storybookjs/storybook/pull/33889), thanks @​Sidnioulz! - UI: Fix Copy button overlapping code in portrait mode - [#​33420](https://github.com/storybookjs/storybook/pull/33420), thanks @​Maelryn! - UI: Fix modal text selection - [#​33967](https://github.com/storybookjs/storybook/pull/33967), thanks @​Sidnioulz! - UI: Fix tab navigation after closing addon panel - [#​33971](https://github.com/storybookjs/storybook/pull/33971), thanks @​copilot-swe-agent! - UI: Handle kb nav edge cases when preview and panel are hidden - [#​33588](https://github.com/storybookjs/storybook/pull/33588), thanks @​Sidnioulz! - UI: Hide addon panel Drag on pages without a panel - [#​34162](https://github.com/storybookjs/storybook/pull/34162), thanks @​Sidnioulz! - UI: Hide manifest tag for now - [#​34165](https://github.com/storybookjs/storybook/pull/34165), thanks @​Sidnioulz! - UI: Make disabled Buttons keyboard-focusable - [#​34166](https://github.com/storybookjs/storybook/pull/34166), thanks @​Sidnioulz! - UI: Make TagsFilter state persistent [#​33374](https://github.com/storybookjs/storybook/pull/33374) - UI: Use correct selector for addon panel focus check - [#​34164](https://github.com/storybookjs/storybook/pull/34164), thanks @​Sidnioulz! - UI: Zoom faster when pressing shift - [#​34185](https://github.com/storybookjs/storybook/pull/34185), thanks @​Sidnioulz! - Viewport: Skip viewport validation before parameters load - [#​33794](https://github.com/storybookjs/storybook/pull/33794), thanks @​ia319! - Vite: Add mock entries to optimizeDeps.entries - [#​34167](https://github.com/storybookjs/storybook/pull/34167), thanks @​valentinpalkovic! - Vue3-Vite: Allow paths in docgen tsconfig option [#​32310](https://github.com/storybookjs/storybook/pull/32310), thanks @​Thomaash!
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.57.1

Compare Source

🩹 Fixes
  • eslint-plugin: [prefer-optional-chain] no report for property on intersection type (#​12126)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.57.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

angular-eslint/angular-eslint (angular-eslint)

v21.3.1

Compare Source

This was a version bump only for angular-eslint to align it with other projects, there were no code changes.

typescript-eslint/typescript-eslint (typescript-eslint)

v8.57.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: Branch creation - "after 00:00 and before 04:00 on Wednesday" in timezone Etc/UTC, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 18, 2026
@renovate renovate bot requested review from Abhinegi2 and sleidig March 18, 2026 01:20
@github-actions
Copy link
Copy Markdown
Contributor

Deployed to https://pr-3783.aam-digital.net/

@argos-ci
Copy link
Copy Markdown

argos-ci bot commented Mar 18, 2026

The latest updates on your projects. Learn more about Argos notifications ↗︎

Build Status Details Updated (UTC)
default (Inspect) ✅ No changes detected - Mar 18, 2026, 2:45 PM

@renovate renovate bot force-pushed the renovate/weekly-non-major-updates branch 2 times, most recently from 25b660f to a57ea85 Compare March 18, 2026 13:03
@renovate renovate bot force-pushed the renovate/weekly-non-major-updates branch from a57ea85 to 8ca35bb Compare March 18, 2026 14:40
@sleidig sleidig merged commit 9f3baa8 into master Mar 18, 2026
11 checks passed
@sleidig sleidig deleted the renovate/weekly-non-major-updates branch March 18, 2026 14:49
@aam-digital-ci
Copy link
Copy Markdown
Collaborator

🎉 This PR is included in version 3.74.0-master.18 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

@aam-digital-ci aam-digital-ci added the released on @master managed by CI (semantic-release) label Mar 18, 2026
@aam-digital-ci
Copy link
Copy Markdown
Collaborator

🎉 This PR is included in version 3.74.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

@aam-digital-ci aam-digital-ci added the released managed by CI (semantic-release) label Mar 18, 2026
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 released on @master managed by CI (semantic-release) released managed by CI (semantic-release)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants