Skip to content

chore(deps): bump the minor-and-patch group in /agentbot-backend with 5 updates#116

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/agentbot-backend/minor-and-patch-60fb70e273
Open

chore(deps): bump the minor-and-patch group in /agentbot-backend with 5 updates#116
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/agentbot-backend/minor-and-patch-60fb70e273

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 18, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group in /agentbot-backend with 5 updates:

Package From To
@coinbase/cdp-sdk 1.49.2 1.51.0
@openrouter/sdk 0.10.2 0.13.7
@sentry/node 10.51.0 10.58.0
pg 8.18.0 8.21.0
ts-jest 29.4.6 29.4.11

Updates @coinbase/cdp-sdk from 1.49.2 to 1.51.0

Commits
Install script changes

This version adds prepublish script that runs during installation. Review the package contents before updating.


Updates @openrouter/sdk from 0.10.2 to 0.13.7

Release notes

Sourced from @​openrouter/sdk's releases.

typescript - v0.13.7 - 2026-06-15 21:23:01

Generated by Speakeasy CLI## Typescript SDK Changes:

  • openrouter.beta.responses.send():
    • request.responsesRequest.input.union(Array<>)[].union(OutputFusionServerToolItem) Added
    • response Changed (Breaking ⚠️)
  • openrouter.presets.createPresetsResponses():
    • request.responsesRequest.input.union(Array<>)[].union(OutputFusionServerToolItem) Added

Publishing Completed

typescript - v0.13.6 - 2026-06-15 17:30:33

Generated by Speakeasy CLI## Typescript SDK Changes:

  • openrouter.beta.responses.send():
    • request.responsesRequest.plugins[].union(fusion).preset Added
  • openrouter.chat.send():
    • request.chatRequest.plugins[].union(fusion).preset Added
  • openrouter.presets.createPresetsChatCompletions():
    • request.chatRequest.plugins[].union(fusion).preset Added
  • openrouter.presets.createPresetsMessages():
    • request.messagesRequest.plugins[].union(fusion).preset Added
  • openrouter.presets.createPresetsResponses():
    • request.responsesRequest.plugins[].union(fusion).preset Added

typescript - v0.13.5 - 2026-06-15 16:30:14

Generated by Speakeasy CLI## Typescript SDK Changes:

  • openrouter.beta.responses.send():
    • request.responsesRequest.input.union(Array<>)[].union(class (7)).content.union(Array<>)[].union(output_text).annotations[].union(url_citation).content Added
    • response Changed
  • openrouter.presets.createPresetsResponses():
    • request.responsesRequest.input.union(Array<>)[].union(class (7)).content.union(Array<>)[].union(output_text).annotations[].union(url_citation).content Added

typescript - v0.13.4 - 2026-06-15 13:49:32

Generated by Speakeasy CLI

2026-06-15 13:49:32

Changes

Based on:

Generated

  • [typescript v0.13.4] .

Releases

typescript - v0.13.3 - 2026-06-13 05:09:46

Generated by Speakeasy CLI## Typescript SDK Changes:

  • openrouter.oAuth.createAuthCode():
    • request.requestBody.workspaceId Added
    • error.status[403] Added

... (truncated)

Changelog

Sourced from @​openrouter/sdk's changelog.

2025-08-22 16:09:25

Changes

Based on:

Generated

  • [typescript v0.1.2] .

2025-09-23 21:23:27

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.2] .

Releases

2025-10-01 17:53:43

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.17] .

Releases

2025-10-18 05:44:43

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.41] .

Releases

2025-10-18 19:30:25

Changes

Based on:

Generated

  • [typescript v0.0.0-beta.42] .

Releases

... (truncated)

Commits
  • b2e9619 ## Typescript SDK Changes:
  • cd54b4a chore: update OpenAPI spec from monorepo (#470)
  • 489c271 ## Typescript SDK Changes:
  • 55f1a69 chore: update OpenAPI spec from monorepo (#469)
  • fa9479b ## Typescript SDK Changes:
  • 08b07e1 chore: update OpenAPI spec from monorepo (#468)
  • 9b3b9ad ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.763.2
  • a07d5dc chore: update OpenAPI spec from monorepo (#467)
  • 2cec96d ## Typescript SDK Changes:
  • 5b60d49 chore: update OpenAPI spec from monorepo (#466)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​openrouter/sdk since your current version.

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates @sentry/node from 10.51.0 to 10.58.0

Release notes

Sourced from @​sentry/node's releases.

10.58.0

Important Changes

  • feat(hono): Add support for the Deno runtime (#21450)

    @sentry/hono now supports the Deno runtime via a new @sentry/hono/deno entry point. Install @sentry/deno as a peer dependency and initialize Sentry through the sentry() middleware:

    import { Hono } from 'hono';
    import { sentry } from '@sentry/hono/deno';
    const app = new Hono();
    app.use(
    sentry(app, {
    dsn: 'DSN', // or Deno.env.get('SENTRY_DSN')
    tracesSampleRate: 1.0,
    }),
    );
    Deno.serve(app.fetch);

  • feat(core): Extract objects as structured logs in consoleLoggingIntegration (#21385)

    The consoleLoggingIntegration now extracts structured log attributes when the first argument is a plain object.

    // Object keys become log attributes
    console.log({ userId: 123, action: 'login' }, 'User logged in');
    // → attributes: { userId: 123, action: "login" }
    // Non-object first args use template + parameters (unchanged)
    console.log('Hello', 'world', 123);
    // → sentry.message.template: "Hello {} {}"

  • feat(react-router): Stabilize the instrumentation API (#21470)

    React Router's instrumentation API is now stable — the @experimental markers have been removed from createSentryServerInstrumentation, createSentryClientInstrumentation, and the related helpers and types. The manual server wrappers wrapServerLoader and wrapServerAction are now deprecated in favor of it. Export instrumentations = [Sentry.createSentryServerInstrumentation()] from your entry.server.tsx to instrument all loaders and actions without wrapping them individually.

Other Changes

  • feat(hono): Add HTTP connection info to server spans (#21408)
  • feat(node-core): Attach log message and fields to pino error events (#21422)
  • feat(react-router): Always build client instrumentation and deprecate useInstrumentationAPI (#21432)
  • feat(react-router): Rename client navigation roots from the route pattern (#21463)
  • fix(astro): Resolve middleware export types (#21414)

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

10.58.0

Important Changes

  • feat(hono): Add support for the Deno runtime (#21450)

    @sentry/hono now supports the Deno runtime via a new @sentry/hono/deno entry point. Install @sentry/deno as a peer dependency and initialize Sentry through the sentry() middleware:

    import { Hono } from 'hono';
    import { sentry } from '@sentry/hono/deno';
    const app = new Hono();
    app.use(
    sentry(app, {
    dsn: 'DSN', // or Deno.env.get('SENTRY_DSN')
    tracesSampleRate: 1.0,
    }),
    );
    Deno.serve(app.fetch);

  • feat(core): Extract objects as structured logs in consoleLoggingIntegration (#21385)

    The consoleLoggingIntegration now extracts structured log attributes when the first argument is a plain object.

    // Object keys become log attributes
    console.log({ userId: 123, action: 'login' }, 'User logged in');
    // → attributes: { userId: 123, action: "login" }
    // Non-object first args use template + parameters (unchanged)
    console.log('Hello', 'world', 123);
    // → sentry.message.template: "Hello {} {}"

  • feat(react-router): Stabilize the instrumentation API (#21470)

    React Router's instrumentation API is now stable — the @experimental markers have been removed from createSentryServerInstrumentation, createSentryClientInstrumentation, and the related helpers and types. The manual server wrappers wrapServerLoader and wrapServerAction are now deprecated in favor of it. Export instrumentations = [Sentry.createSentryServerInstrumentation()] from your entry.server.tsx to instrument all loaders and actions without wrapping them individually.

Other Changes

  • feat(hono): Add HTTP connection info to server spans (#21408)
  • feat(node-core): Attach log message and fields to pino error events (#21422)
  • feat(react-router): Always build client instrumentation and deprecate useInstrumentationAPI (#21432)
  • feat(react-router): Rename client navigation roots from the route pattern (#21463)

... (truncated)

Commits
  • 29a6f45 release: 10.58.0
  • 7fa42c9 Merge pull request #21530 from getsentry/prepare-release/10.58.0
  • 0486221 meta(changelog): Update changelog for 10.58.0
  • 66b04b6 chore(deps): Bump nx to 22.7.5 (#21527)
  • d8dcc45 ref(node): Migrate vendored generic-pool instrumentation to Sentry APIs (#21523)
  • b35c4de test(node): Replace lru-memoizer fake unit test with integration coverage (#2...
  • 0d3f1b1 fix(nextjs): Mark redirect server actions as ok instead of internal_error...
  • 1bf2bad ref(node): Streamline dataloader instrumentation (#21475)
  • 0a6e864 test: Skip nuxt-5 E2E test (#21524)
  • 73024d4 test(astro): Add Astro 7 e2e app (#21471)
  • Additional commits viewable in compare view

Updates pg from 8.18.0 to 8.21.0

Changelog

Sourced from pg's changelog.

pg@8.21.0

pg@8.20.0

  • Add onConnect callback to pg.Pool constructor options allowing for async initialization of newly created & connected pooled clients.

pg@8.19.0

Commits
  • 544b1ce Publish
  • cc03fa5 Add scramMaxIterations option to limit SCRAM iteration count (#3677)
  • f776327 Remove compatibility code for unsupported versions of Node (<16) (#3678)
  • f252870 cleanup: pg utils (#3675)
  • c8da6ab Assorted test cleanup (#3673)
  • fa47e73 fix: Client#end callback being called multiple times when first is no-op (#...
  • 88a7e60 cleanup: Move declaration to more natural place
  • 2095247 cleanup: Combine duplicated code in Client#query and avoid unneeded early n...
  • 0ac3edd fix: apply SASLprep (RFC 4013) to passwords before SCRAM-SHA-256 PBKDF2 (#3669)
  • be880d4 Assorted test fixes and cleanup (#3672)
  • Additional commits viewable in compare view

Updates ts-jest from 29.4.6 to 29.4.11

Release notes

Sourced from ts-jest's releases.

v29.4.11

Please refer to CHANGELOG.md for details.

v29.4.10

Please refer to CHANGELOG.md for details.

v29.4.9

Please refer to CHANGELOG.md for details.

v29.4.8

No release notes provided.

v29.4.7

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.4.11 (2026-05-21)

Bug Fixes

  • preserve Bundler on the CJS path under TypeScript >= 6 (3941818), closes #4198

29.4.10 (2026-05-18)

Bug Fixes

  • pass resolutionMode to ts.resolveModuleName for hybrid module support (b557a85)
  • rebuild Program when consecutive compiles need different module kinds (a82a2b3), closes #4774
  • respect tsconfig moduleResolution instead of forcing Node10 (1bffffc)
  • transformer: transpile mjs files from node_modules for CJS mode (96d025d)
  • transformer: use a consistent comparator in hoist-jest sortStatements (8a8fd2f)

29.4.9 (2026-04-01)

Bug Fixes

  • use correct registry for npm OIDC trusted publishing (f8a9cc9)

29.4.8 (2026-04-01)

Bug Fixes

  • wrong published assets

29.4.7 (2026-04-01)

Features

Commits
  • bff2d64 chore(release): 29.4.11
  • 3941818 fix: preserve Bundler on the CJS path under TypeScript >= 6
  • efb3c2f build(deps): bump webpack-dev-server from 5.2.2 to 5.2.4 in /website
  • 4e46fad ci: refactor release workflow
  • 96b3ac0 chore(release): 29.4.10
  • e98ec64 build(deps): update github/codeql-action digest to 458d36d
  • 21ac58f build(deps): update jest packages
  • 0fdc96d build(deps): update dependency semver to ^7.8.0
  • 4b95551 build(deps): update dependency jest-environment-jsdom to ^30.4.1 (#5311)
  • 7b88447 build(deps): update eslint packages to ^8.59.3 (#5310)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for ts-jest since your current version.


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 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 minor-and-patch group in /agentbot-backend with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@coinbase/cdp-sdk](https://github.com/coinbase/cdp-sdk) | `1.49.2` | `1.51.0` |
| [@openrouter/sdk](https://github.com/OpenRouterTeam/typescript-sdk) | `0.10.2` | `0.13.7` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `10.51.0` | `10.58.0` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.18.0` | `8.21.0` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.6` | `29.4.11` |


Updates `@coinbase/cdp-sdk` from 1.49.2 to 1.51.0
- [Changelog](https://github.com/coinbase/cdp-sdk/blob/main/RELEASE.md)
- [Commits](https://github.com/coinbase/cdp-sdk/commits)

Updates `@openrouter/sdk` from 0.10.2 to 0.13.7
- [Release notes](https://github.com/OpenRouterTeam/typescript-sdk/releases)
- [Changelog](https://github.com/OpenRouterTeam/typescript-sdk/blob/main/RELEASES.md)
- [Commits](OpenRouterTeam/typescript-sdk@v0.10.2...v0.13.7)

Updates `@sentry/node` from 10.51.0 to 10.58.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.51.0...10.58.0)

Updates `pg` from 8.18.0 to 8.21.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.21.0/packages/pg)

Updates `ts-jest` from 29.4.6 to 29.4.11
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.4.6...v29.4.11)

---
updated-dependencies:
- dependency-name: "@coinbase/cdp-sdk"
  dependency-version: 1.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@openrouter/sdk"
  dependency-version: 0.13.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@sentry/node"
  dependency-version: 10.58.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: pg
  dependency-version: 8.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ts-jest
  dependency-version: 29.4.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

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 Jun 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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants