Skip to content

Build(deps): bump the web-all group across 1 directory with 8 updates#454

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/services/idun_agent_web/web-all-57444479ba
Open

Build(deps): bump the web-all group across 1 directory with 8 updates#454
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/services/idun_agent_web/web-all-57444479ba

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps the web-all group with 8 updates in the /services/idun_agent_web directory:

Package From To
@ag-ui/client 0.0.46 0.0.48
i18next 25.10.5 25.10.10
lucide-react 0.576.0 0.577.0
posthog-js 1.363.2 1.364.4
react-router-dom 7.13.1 7.13.2
vite-plugin-node-polyfills 0.25.0 0.26.0
playwright 1.58.2 1.59.0
typescript-eslint 8.57.1 8.58.0

Updates @ag-ui/client from 0.0.46 to 0.0.48

Updates i18next from 25.10.5 to 25.10.10

Release notes

Sourced from i18next's releases.

v25.10.10

  • feat: suppress support notice automatically in production environments (NODE_ENV=production)

v25.10.9

  • feat(types): export SelectorParam<Ns, KPrefix> helper type — a stable, readable alternative to Parameters<TFunction<Ns>>[0] for typing selector function props 2414

v25.10.8

  • fix(types): reorder TFunctionSelector overloads so Parameters<TFunction> resolves to the general selector signature instead of the branded SelectorKey type 2412

v25.10.7

v25.10.6

Changelog

Sourced from i18next's changelog.

25.10.10

  • feat: suppress support notice automatically in production environments (NODE_ENV=production)

25.10.9

  • feat(types): export SelectorParam<Ns, KPrefix> helper type — a stable, readable alternative to Parameters<TFunction<Ns>>[0] for typing selector function props 2414

25.10.8

  • fix(types): reorder TFunctionSelector overloads so Parameters<TFunction> resolves to the general selector signature instead of the branded SelectorKey type 2412

25.10.7

Commits
  • e0fa838 25.10.10
  • 796fdd9 feat: suppress support notice automatically in production environments (`NODE...
  • 07f585f changelog
  • 1ba9951 jsr update
  • 8ea74a9 25.10.9
  • 74220cc lint fix
  • c972af2 feat(types): export SelectorParam\<Ns, KPrefix> helper type — a stable, read...
  • 2b5313d jsr update
  • c11655f 25.10.8
  • 5bb5665 fix(types): reorder TFunctionSelector overloads so Parameters\<TFunction> ...
  • Additional commits viewable in compare view

Updates lucide-react from 0.576.0 to 0.577.0

Release notes

Sourced from lucide-react's releases.

Version 0.577.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.576.0...0.577.0

Commits

Updates posthog-js from 1.363.2 to 1.364.4

Release notes

Sourced from posthog-js's releases.

posthog-js@1.364.4

1.364.4

Patch Changes

  • #3298 2365df5 Thanks @​TueHaulund! - fix: skip deep copy for snapshot/exception events to prevent stack overflow on deeply nested DOM trees (2026-03-31)
  • Updated dependencies []:
    • @​posthog/types@​1.364.4

posthog-js@1.364.3

1.364.3

Patch Changes

  • #3300 bab5f3a Thanks @​dustinbyrne! - Strip workspace:* references from lib/package.json after build (2026-03-31)
  • Updated dependencies []:
    • @​posthog/types@​1.364.3

posthog-js@1.364.2

1.364.2

Patch Changes

posthog-js@1.364.1

1.364.1

Patch Changes

  • Updated dependencies [4bdfdbc]:
    • @​posthog/core@​1.24.3
    • @​posthog/types@​1.364.1

posthog-js@1.364.0

1.364.0

Minor Changes

  • #3285 00a5079 Thanks @​pauldambra! - Reject the strings "undefined" and "null" in posthog.identify(). All invalid distinct IDs now log a critical console error (always visible, not debug-only). (2026-03-27)

Patch Changes

... (truncated)

Commits
  • d311d75 chore: update versions and lockfile [version bump]
  • 2365df5 fix(browser): skip deep copy for snapshot events to prevent stack overflow (#...
  • 517d49b chore: update versions and lockfile [version bump]
  • 375dae9 chore(browser): ban enum usage (#3258)
  • bab5f3a fix: strip workspace:* refs from lib/package.json after build (#3300)
  • 4561c25 fix(ai): remove PostHogTraceExporter from main entry point (#3299)
  • b1adea5 feat(react): add slim entrypoint for tree-shakeable usage without posthog-js ...
  • 4d6cef4 chore: update versions and lockfile [version bump]
  • 341caaf fix(browser): wrap sendBeacon body in Blob to ensure Content-Type header is s...
  • a863914 fix(core): fix captureException ReferenceError in React Native for missing Ev...
  • Additional commits viewable in compare view

Updates react-router-dom from 7.13.1 to 7.13.2

Changelog

Sourced from react-router-dom's changelog.

7.13.2

Patch Changes

  • Updated dependencies:
    • react-router@7.13.2
Commits

Updates vite-plugin-node-polyfills from 0.25.0 to 0.26.0

Release notes

Sourced from vite-plugin-node-polyfills's releases.

v0.26.0

Commits

Updates playwright from 1.58.2 to 1.59.0

Release notes

Sourced from playwright's releases.

v1.59.0

🎬 Screencast

New page.screencast API provides a unified interface for capturing page content with:

  • Screencast recordings
  • Action annotations
  • Visual overlays
  • Real-time frame capture
  • Agentic video receipts

Screencast recording — record video with precise start/stop control, as an alternative to the recordVideo option:

await page.screencast.start({ path: 'video.webm' });
// ... perform actions ...
await page.screencast.stop();

Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:

await page.screencast.showActions({ position: 'top-right' });

screencast.showActions() accepts position ('top-left', 'top', 'top-right', 'bottom-left', 'bottom', 'bottom-right'), duration (ms per annotation), and fontSize (px). Returns a disposable to stop showing actions.

Action annotations can also be enabled in test fixtures via the video option:

// playwright.config.ts
export default defineConfig({
  use: {
    video: {
      mode: 'on',
      show: {
        actions: { position: 'top-left' },
        test: { position: 'top-right' },
      },
    },
  },
});

Visual overlays — add chapter titles and custom HTML overlays on top of the page for richer narration:

... (truncated)

Commits

Updates typescript-eslint from 8.57.1 to 8.58.0

Release notes

Sourced from typescript-eslint's releases.

v8.58.0

8.58.0 (2026-03-30)

🚀 Features

  • support TypeScript 6 (#12124)

🩹 Fixes

  • eslint-plugin: crash in no-unnecessary-type-arguments (#12163)
  • eslint-plugin: [no-extraneous-class] handle index signatures (#12142)
  • eslint-plugin: [prefer-regexp-exec] avoid fixing unknown RegExp flags (#12161)

❤️ Thank You

See GitHub Releases for more information.

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

v8.57.2

8.57.2 (2026-03-23)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chain] remove dangling closing parenthesis (#11865)
  • eslint-plugin: [array-type] ignore Array and ReadonlyArray without type arguments (#11971)
  • eslint-plugin: [no-restricted-types] flag banned generics in extends or implements (#12120)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)
  • eslint-plugin: [no-useless-default-assignment] skip reporting false positives for unresolved type parameters (#12127)
  • eslint-plugin: [prefer-readonly-parameter-types] preserve type alias infomation (#11954)
  • typescript-estree: skip createIsolatedProgram fallback for projectService (#12066, #12065)

❤️ Thank You

See GitHub Releases for more information.

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.58.0 (2026-03-30)

🚀 Features

  • support TypeScript 6 (#12124)

❤️ Thank You

See GitHub Releases for more information.

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

8.57.2 (2026-03-23)

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.

Commits

You can trigger a rebase of this PR 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the web-all group with 8 updates in the /services/idun_agent_web directory:

| Package | From | To |
| --- | --- | --- |
| @ag-ui/client | `0.0.46` | `0.0.48` |
| [i18next](https://github.com/i18next/i18next) | `25.10.5` | `25.10.10` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.576.0` | `0.577.0` |
| [posthog-js](https://github.com/PostHog/posthog-js) | `1.363.2` | `1.364.4` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.13.1` | `7.13.2` |
| [vite-plugin-node-polyfills](https://github.com/davidmyersdev/vite-plugin-node-polyfills) | `0.25.0` | `0.26.0` |
| [playwright](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.57.1` | `8.58.0` |



Updates `@ag-ui/client` from 0.0.46 to 0.0.48

Updates `i18next` from 25.10.5 to 25.10.10
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.10.5...v25.10.10)

Updates `lucide-react` from 0.576.0 to 0.577.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.577.0/packages/lucide-react)

Updates `posthog-js` from 1.363.2 to 1.364.4
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/compare/posthog-js@1.363.2...posthog-js@1.364.4)

Updates `react-router-dom` from 7.13.1 to 7.13.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.13.2/packages/react-router-dom)

Updates `vite-plugin-node-polyfills` from 0.25.0 to 0.26.0
- [Release notes](https://github.com/davidmyersdev/vite-plugin-node-polyfills/releases)
- [Commits](davidmyersdev/vite-plugin-node-polyfills@v0.25.0...v0.26.0)

Updates `playwright` from 1.58.2 to 1.59.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.0)

Updates `typescript-eslint` from 8.57.1 to 8.58.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@ag-ui/client"
  dependency-version: 0.0.48
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-all
- dependency-name: i18next
  dependency-version: 25.10.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-all
- dependency-name: lucide-react
  dependency-version: 0.577.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-all
- dependency-name: posthog-js
  dependency-version: 1.364.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-all
- dependency-name: react-router-dom
  dependency-version: 7.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-all
- dependency-name: vite-plugin-node-polyfills
  dependency-version: 0.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-all
- dependency-name: playwright
  dependency-version: 1.59.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-all
- dependency-name: typescript-eslint
  dependency-version: 8.58.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 1, 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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants