Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 7 updates #138

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 21, 2025

Bumps the production-dependencies group with 7 updates in the / directory:

Package From To
@ankr.com/ankr.js 0.5.0 0.6.0
@floating-ui/dom 1.6.5 1.6.13
@sentry/sveltekit 8.7.0 9.13.0
@squirrel-labs/peanut-sdk 0.4.45 0.6.2
@vercel/analytics 1.3.1 1.5.0
ethers 5.7.2 5.8.0
viem 2.13.3 2.27.2

Updates @ankr.com/ankr.js from 0.5.0 to 0.6.0

Release notes

Sourced from @​ankr.com/ankr.js's releases.

v0.6.0

What's Changed

New Contributors

Full Changelog: Ankr-network/ankr.js@v0.5.2...v0.6.0

v0.6.0-alpha.0

What's Changed

New Contributors

Full Changelog: Ankr-network/ankr.js@v0.5.2...v0.6.0-alpha.0

v0.5.2 - update README

  • minor grammatical README fixes

v0.5.1 update blockchain list

Update blockchain list

Commits
  • 36fc30c Merge pull request #54 from Ankr-network/v_0_6_0
  • ff8eaa0 v0.6.0
  • 249a9fe Merge pull request #53 from Ankr-network/upgrade-axios
  • a29f3ba upgrade axios
  • 139462f Merge pull request #51 from Ankr-network/feat/SCAN-1495-add-story-chain
  • 9e5445d add story chain support
  • f6ddafd Merge pull request #48 from Hopium21/patch-1
  • 9a5ab44 Update provider.ts
  • 120dad5 Merge pull request #47 from Ankr-network/fix_workflows
  • e5563d1 simplify publish actions
  • Additional commits viewable in compare view

Updates @floating-ui/dom from 1.6.5 to 1.6.13

Release notes

Sourced from @​floating-ui/dom's releases.

@​floating-ui/dom@​1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/[email protected]

@​floating-ui/dom@​1.6.12

Patch Changes

  • fix: handle relative html offset clipping rect
  • fix(getClippingRect): allow passing DOMRect as a boundary

@​floating-ui/dom@​1.6.11

Patch Changes

@​floating-ui/dom@​1.6.10

Patch Changes

@​floating-ui/dom@​1.6.9

Patch Changes

  • fix: test if frameElement is readable to avoid errors in Safari and MSEdge with cross-origin iframes
  • Update dependencies: @floating-ui/[email protected]

@​floating-ui/dom@​1.6.8

Patch Changes

@​floating-ui/dom@​1.6.7

Patch Changes

  • chore: fix internal dependency versioning
  • Update dependencies: @floating-ui/[email protected]

@​floating-ui/dom@​1.6.6

Patch Changes

  • fix(getContainingBlock): detect top layer elements
  • fix(types): add optional getClientRects() method to VirtualElement
  • chore: fix internal deps
  • refactor: improve types and internal codebase consistency. All documented types are now exported.
  • Update dependencies: @floating-ui/[email protected]
Changelog

Sourced from @​floating-ui/dom's changelog.

1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/[email protected]

1.6.12

Patch Changes

  • fix: handle relative html offset clipping rect
  • fix(getClippingRect): allow passing DOMRect as a boundary

1.6.11

Patch Changes

1.6.10

Patch Changes

1.6.9

Patch Changes

  • fix: test if frameElement is readable to avoid errors in Safari and MSEdge with cross-origin iframes
  • Update dependencies: @floating-ui/[email protected]

1.6.8

Patch Changes

1.6.7

Patch Changes

  • chore: fix internal dependency versioning
  • Update dependencies: @floating-ui/[email protected]

1.6.6

Patch Changes

... (truncated)

Commits
  • b0dfb58 chore: version packages (#3187)
  • 87504f9 style(dom): apply prettier config (#3189)
  • 1fa2c50 chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (#3177)
  • 1d20f84 fix(getContainingBlock): check for shorthand transform CSS properties (transl...
  • 993e823 fix(autoUpdate): work around bug where intersection ratio is 1 but element ac...
  • 48c872c chore(eslint): migrate eslint configuration .eslintrc.js to eslint.config.mjs...
  • c967200 Version Packages (#3084)
  • d93e718 fix: handle relative html offset clipping rect (#3097)
  • dcca804 fix(getClippingRect): allow passing DOMRect as a boundary (#3076)
  • ecd627e Version Packages (#3041)
  • Additional commits viewable in compare view

Updates @sentry/sveltekit from 8.7.0 to 9.13.0

Release notes

Sourced from @​sentry/sveltekit's releases.

9.13.0

Important Changes

  • feat(node): Add support for winston logger (#15983)

    Sentry is adding support for structured logging. In this release we've added support for sending logs to Sentry via the winston logger to the Sentry Node SDK (and SDKs that use the Node SDK under the hood like @sentry/nestjs). The Logging APIs in the Sentry SDK are still experimental and subject to change.

    const winston = require('winston');
    const Transport = require('winston-transport');
    const transport = Sentry.createSentryWinstonTransport(Transport);
    const logger = winston.createLogger({
    transports: [transport],
    });

  • feat(core): Add wrapMcpServerWithSentry to instrument MCP servers from @modelcontextprotocol/sdk (#16032)

    The Sentry SDK now supports instrumenting MCP servers from the @modelcontextprotocol/sdk package. Compatible with versions ^1.9.0 of the @modelcontextprotocol/sdk package.

    import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
    // Create an MCP server
    const server = new McpServer({
    name: 'Demo',
    version: '1.0.0',
    });
    // Use the instrumented server in your application
    const instrumentedServer = Sentry.wrapMcpServerWithSentry(server);

  • feat(core): Move console integration into core and add to cloudflare/vercel-edge (#16024)

    Console instrumentation has been added to @sentry/cloudflare and @sentry/nextjs Edge Runtime and is enabled by default. Now calls to the console object will be captured as breadcrumbs for those SDKs.

  • feat(bun): Support new Bun.serve APIs (#16035)

    Bun 1.2.6 and above have a new Bun.serve API, which the Bun SDK now supports. The SDK instruments the new routes object that can be used to define routes for the server.

    Thanks to @​Jarred-Sumner for helping us get this supported!

Other Changes

  • feat(browser): Warn on duplicate browserTracingIntegration (#16042)
  • feat(core): Allow delayed sending with offline transport (#15937)
  • feat(deps): Bump @​sentry/webpack-plugin from 3.2.4 to 3.3.1 (#16057)

... (truncated)

Changelog

Sourced from @​sentry/sveltekit's changelog.

9.13.0

Important Changes

  • feat(node): Add support for winston logger (#15983)

    Sentry is adding support for structured logging. In this release we've added support for sending logs to Sentry via the winston logger to the Sentry Node SDK (and SDKs that use the Node SDK under the hood like @sentry/nestjs). The Logging APIs in the Sentry SDK are still experimental and subject to change.

    const winston = require('winston');
    const Transport = require('winston-transport');
    const transport = Sentry.createSentryWinstonTransport(Transport);
    const logger = winston.createLogger({
    transports: [transport],
    });

  • feat(core): Add wrapMcpServerWithSentry to instrument MCP servers from @modelcontextprotocol/sdk (#16032)

    The Sentry SDK now supports instrumenting MCP servers from the @modelcontextprotocol/sdk package. Compatible with versions ^1.9.0 of the @modelcontextprotocol/sdk package.

    import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
    // Create an MCP server
    const server = new McpServer({
    name: 'Demo',
    version: '1.0.0',
    });
    // Use the instrumented server in your application
    const instrumentedServer = Sentry.wrapMcpServerWithSentry(server);

  • feat(core): Move console integration into core and add to cloudflare/vercel-edge (#16024)

    Console instrumentation has been added to @sentry/cloudflare and @sentry/nextjs Edge Runtime and is enabled by default. Now calls to the console object will be captured as breadcrumbs for those SDKs.

  • feat(bun): Support new Bun.serve APIs (#16035)

    Bun 1.2.6 and above have a new Bun.serve API, which the Bun SDK now supports. The SDK instruments the new routes object that can be used to define routes for the server.

    Thanks to @​Jarred-Sumner for helping us get this supported!

Other Changes

  • feat(browser): Warn on duplicate browserTracingIntegration (#16042)
  • feat(core): Allow delayed sending with offline transport (#15937)

... (truncated)

Commits
  • 6e775c6 release: 9.13.0
  • 6c1d069 Merge pull request #16078 from getsentry/prepare-release/9.13.0
  • b839506 meta(changelog): Update changelog for 9.13.0
  • 55cb92c chore(dev-deps): Bump amqlib for node-integration-tests to 0.10.7 (#16074)
  • f4cc3d2 fix(serverless-aws): Overwrite root span name with GraphQL if set (#16010)
  • 6a3e7c1 ci: Update label automation to new package label style (#16053)
  • 36be635 fix(nextjs): Don't show turbopack warning for newer Next.js canaries (#16065)
  • d34e67e feat(deps): Bump @​sentry/webpack-plugin from 3.2.4 to 3.3.1 (#16057)
  • 217ac8d build(deps): Bump @​nestjs/common from 10.4.6 to 11.0.16 in /dev-packages/node...
  • cff47df feat(node): Add support for winston logger (#15983)
  • Additional commits viewable in compare view

Updates @squirrel-labs/peanut-sdk from 0.4.45 to 0.6.2

Release notes

Sourced from @​squirrel-labs/peanut-sdk's releases.

0.6.2

What's Changed

Full Changelog: peanutprotocol/peanut-sdk@0.6.1...0.6.2

0.6.1

What's Changed

Full Changelog: peanutprotocol/peanut-sdk@0.6.0...0.6.1

0.6.0

What's Changed

Removed request functions, please check (docs)[https://docs.peanut.to/request-api] to see how to interact with API

Full Changelog: peanutprotocol/peanut-sdk@0.5.17...0.6.0

0.4.61

What's Changed

Full Changelog: peanutprotocol/peanut-sdk@0.5.60...0.5.61

0.4.60

What's Changed

Full Changelog: peanutprotocol/peanut-sdk@0.4.53...0.5.60

0.5.17

What's Changed

Full Changelog: peanutprotocol/peanut-sdk@0.5.16...0.5.17

0.5.16

Full Changelog: peanutprotocol/peanut-sdk@0.5.15...0.5.16

0.5.15

... (truncated)

Commits

Updates @vercel/analytics from 1.3.1 to 1.5.0

Release notes

Sourced from @​vercel/analytics's releases.

1.5.0

What's Changed

  • fix: next/jest does not support import.meta by @​feugy in #162
  • feat: support configurable deployment basepath by @​feugy in #158

Full Changelog: vercel/analytics@1.4.1...1.5.0

1.5.0-canary.3

What's Changed

Full Changelog: vercel/analytics@1.4.1...1.5.0-canary.3

1.5.0-canary.2

What's Changed

Full Changelog: vercel/analytics@1.4.1...1.5.0-canary.2

1.5.0-canary.1

What's Changed

New Contributors

Full Changelog: vercel/analytics@1.4.0...1.5.0-canary.1

1.4.1

What's Changed

Full Changelog: vercel/analytics@1.4.0...1.4.1

1.4.0

What's Changed

Full Changelog: vercel/analytics@1.3.2...1.4.0

1.3.2

What's Changed

... (truncated)

Commits
  • 9a90468 chore: release 1.5.0 (#165)
  • 56ebed2 fix(#157): error when rendering Nuxt component (#160)
  • 68d0d13 Add an option to prefix an endpoint path with an environment variable. (#153)
  • c09b649 docs: exposes types and updates example apps for beforeSend (#154)
  • 81d0eed feat: next/remix/react supports updating beforeSend (#152)
  • 55bd2ff feat: route support for Astro, Nuxt, Remix, Sveltekit and Vue (#151)
  • 524af71 React 19 support (#149) fix(148)
  • See full diff in compare view

Updates ethers from 5.7.2 to 5.8.0

Release notes

Sourced from ethers's releases.

ethers/v5.8.0 (2025-02-25 19:15) [legacy version]

This is a security update for the legacy Ethers v5 branch, addressing two security fixes.

For those that wish to audit the specific changes in the the bundled version between v5.7 and v5.8, see this gist.

Changes

  • Updated to latest elliptic library to fix audit warnings. (f8deaae)
  • Added ENS to Sepolia. (0065547)
  • Bump ws package version to address DoS security concern. (#4791; f345816)
  • Added modern networks, updated third-party backend URLs and added QuickNode. (#3935, #4010; f7c813d)

Embedding UMD with SRI:

<script type="text/javascript"
  integrity="sha384-KpyAXoFibPIUEi79EsnN1EtEWCCrOQ8MtGsa4IrVxeZo514PYarFXujnjyu0DzgC"
  crossorigin="anonymous"
  src="https://cdnjs.cloudflare.com/ajax/libs/ethers/5.8.0/ethers.umd.min.js">
</script>
Changelog

Sourced from ethers's changelog.

ethers/v5.8.0 (2025-02-25 19:15)

  • Updated to latest elliptic library to fix audit warnings. (f8deaae)
  • Added ENS to Sepolia. (0065547)
  • Bump ws package version to address DoS security concern. (#4791; f345816)
  • Added modern networks, updated third-party backend URLs and added QuickNode. (#3935, #4010; f7c813d)
Commits
  • 5ff3dc9 admin: updated dist files with update-versions
  • 808153e admin: updated sort issue in package.json
  • f8deaae Updated to latest elliptic library to fix audit warnings.
  • c6a1b15 Updated browser tests; but karma is still defunct
  • c7c07f5 admin: update dist files
  • 01dccc7 tests: swapped goerli for sepolia; contracts re-deployed
  • 0065547 Added ENS to Sepolia.
  • d7e8ad1 admin: updated dist files
  • f345816 Bump ws package version to address DoS security concern (#4791).
  • 9f42637 tests: updates test details
  • Additional commits viewable in compare view

Updates viem from 2.13.3 to 2.27.2

Release notes

Sourced from viem's releases.

[email protected]

Patch Changes

[email protected]

Minor Changes

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

... (truncated)

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
ethers [>= 6.a, < 7]

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…y with 7 updates

Bumps the production-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@ankr.com/ankr.js](https://github.com/Ankr-network/ankr.js) | `0.5.0` | `0.6.0` |
| [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.6.5` | `1.6.13` |
| [@sentry/sveltekit](https://github.com/getsentry/sentry-javascript) | `8.7.0` | `9.13.0` |
| [@squirrel-labs/peanut-sdk](https://github.com/ProphetFund/peanut-sdk) | `0.4.45` | `0.6.2` |
| [@vercel/analytics](https://github.com/vercel/analytics/tree/HEAD/packages/web) | `1.3.1` | `1.5.0` |
| [ethers](https://github.com/ethers-io/ethers.js) | `5.7.2` | `5.8.0` |
| [viem](https://github.com/wevm/viem) | `2.13.3` | `2.27.2` |



Updates `@ankr.com/ankr.js` from 0.5.0 to 0.6.0
- [Release notes](https://github.com/Ankr-network/ankr.js/releases)
- [Commits](Ankr-network/ankr.js@v0.5.0...v0.6.0)

Updates `@floating-ui/dom` from 1.6.5 to 1.6.13
- [Release notes](https://github.com/floating-ui/floating-ui/releases)
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md)
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/[email protected]/packages/dom)

Updates `@sentry/sveltekit` from 8.7.0 to 9.13.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@8.7.0...9.13.0)

Updates `@squirrel-labs/peanut-sdk` from 0.4.45 to 0.6.2
- [Release notes](https://github.com/ProphetFund/peanut-sdk/releases)
- [Commits](https://github.com/ProphetFund/peanut-sdk/commits/0.6.2)

Updates `@vercel/analytics` from 1.3.1 to 1.5.0
- [Release notes](https://github.com/vercel/analytics/releases)
- [Commits](https://github.com/vercel/analytics/commits/1.5.0/packages/web)

Updates `ethers` from 5.7.2 to 5.8.0
- [Release notes](https://github.com/ethers-io/ethers.js/releases)
- [Changelog](https://github.com/ethers-io/ethers.js/blob/v5.8.0/CHANGELOG.md)
- [Commits](ethers-io/ethers.js@v5.7.2...v5.8.0)

Updates `viem` from 2.13.3 to 2.27.2
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/[email protected]@2.27.2)

---
updated-dependencies:
- dependency-name: "@ankr.com/ankr.js"
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@floating-ui/dom"
  dependency-version: 1.6.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@sentry/sveltekit"
  dependency-version: 9.13.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@squirrel-labs/peanut-sdk"
  dependency-version: 0.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@vercel/analytics"
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ethers
  dependency-version: 5.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: viem
  dependency-version: 2.27.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 21, 2025
Copy link

vercel bot commented Apr 21, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
commitkudos ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 21, 2025 6:52am

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