Skip to content
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

Bump the minor-and-patch group across 1 directory with 13 updates #199

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 26, 2025

Bumps the minor-and-patch group with 13 updates in the / directory:

Package From To
@blockaid/client 0.31.0 0.34.2
@fastify/cors 10.0.1 10.0.2
@fastify/helmet 13.0.0 13.0.1
@fastify/rate-limit 10.2.1 10.2.2
@sentry/node 8.43.0 8.51.0
fastify 5.1.0 5.2.1
ioredis 5.4.1 5.4.2
pino 9.5.0 9.6.0
stellar-sdk 13.0.0-beta.1 13.1.0
@types/node 22.10.2 22.10.10
lint-staged 15.2.11 15.4.2
ts-loader 9.5.1 9.5.2
typescript 5.7.2 5.7.3

Updates @blockaid/client from 0.31.0 to 0.34.2

Release notes

Sourced from @​blockaid/client's releases.

v0.34.2

0.34.2 (2025-01-23)

Full Changelog: v0.34.1...v0.34.2

Features

Chores

v0.34.1

0.34.1 (2025-01-05)

Full Changelog: v0.34.0...v0.34.1

Features

Chores

v0.34.0

0.34.0 (2024-12-22)

Full Changelog: v0.33.0...v0.34.0

Features

Bug Fixes

... (truncated)

Changelog

Sourced from @​blockaid/client's changelog.

0.34.2 (2025-01-23)

Full Changelog: v0.34.1...v0.34.2

Features

Chores

0.34.1 (2025-01-05)

Full Changelog: v0.34.0...v0.34.1

Features

Chores

0.34.0 (2024-12-22)

Full Changelog: v0.33.0...v0.34.0

Features

Bug Fixes

Chores

... (truncated)

Commits

Updates @fastify/cors from 10.0.1 to 10.0.2

Release notes

Sourced from @​fastify/cors's releases.

v10.0.2

What's Changed

New Contributors

Full Changelog: fastify/fastify-cors@v10.0.1...v10.0.2

Commits
  • cd695cd 10.0.2
  • 0c6a85d docs(readme): spelling and grammar fixes (#351)
  • bc34d54 refactor: prefix unused params with underscores (#350)
  • 4471cd7 perf(index): use optional chaining (#349)
  • ea9dbf7 docs(readme): remove useless brackets
  • 941a260 build(deps-dev): add eslint, peer dep of neostandard (#348)
  • 9d4585c chore(deps-dev): bump neostandard from 0.11.9 to 0.12.0 (#347)
  • 050d9e1 docs(readme): update ci badge syntax (#346)
  • e674abc docs(readme): point ci badge at master/main branch (#345)
  • fb4b3d5 chore(package): update contributors
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by fdawgs, a new releaser for @​fastify/cors since your current version.


Updates @fastify/helmet from 13.0.0 to 13.0.1

Release notes

Sourced from @​fastify/helmet's releases.

v13.0.1

What's Changed

New Contributors

Full Changelog: fastify/fastify-helmet@v13.0.0...v13.0.1

Commits
  • d16c06d 13.0.1
  • 7d46361 test: prefix unused params with underscores (#277)
  • 8c04dca docs(readme): grammar fix (#276)
  • 2b6c4b5 docs(readme): remove useless brackets
  • fe375fc build(deps-dev): add eslint, peer dep of neostandard (#275)
  • 73dbf25 build(deps-dev): bump neostandard from 0.11.9 to 0.12.0 (#274)
  • cc90562 docs: update the compatibility table (#273)
  • 3d3b743 docs(readme): update ci badge syntax (#271)
  • 8015fcc docs(readme): point ci badge at master/main branch (#270)
  • b63bb22 chore(package): update contributors
  • Additional commits viewable in compare view

Updates @fastify/rate-limit from 10.2.1 to 10.2.2

Release notes

Sourced from @​fastify/rate-limit's releases.

v10.2.2

What's Changed

Full Changelog: fastify/fastify-rate-limit@v10.2.1...v10.2.2

Commits
  • 3040ff6 10.2.2
  • 7283c72 docs(readme): spelling and grammar fixes (#407)
  • 65545aa refactor: prefix unused params with underscores (#406)
  • a1c44eb docs(readme): use simple english (#405)
  • 64d16ab docs(readme): standardize license link (#404)
  • e642070 docs(readme): remove useless brackets
  • 26d82fe chore(package): add funding and contribs (#403)
  • d7d5a00 build(deps-dev): Bump @​sinonjs/fake-timers from 13.0.5 to 14.0.0 (#402)
  • 42842fe build(deps-dev): add eslint, peer dep of neostandard (#401)
  • 5f2c09d types: use node: prefix for builtins (#400)
  • Additional commits viewable in compare view

Updates @sentry/node from 8.43.0 to 8.51.0

Release notes

Sourced from @​sentry/node's releases.

8.51.0

Important Changes

  • feat(v8/node): Add prismaInstrumentation option to Prisma integration as escape hatch for all Prisma versions (#15128)

    This release adds a compatibility API to add support for Prisma version 6. To capture performance data for Prisma version 6:

    1. Install the @prisma/instrumentation package on version 6.

    2. Pass a new PrismaInstrumentation() instance as exported from @prisma/instrumentation to the prismaInstrumentation option:

      import { PrismaInstrumentation } from '@prisma/instrumentation';
      Sentry.init({
      integrations: [
      prismaIntegration({
      // Override the default instrumentation that Sentry uses
      prismaInstrumentation: new PrismaInstrumentation(),
      }),
      ],
      });

      The passed instrumentation instance will override the default instrumentation instance the integration would use, while the prismaIntegration will still ensure data compatibility for the various Prisma versions.

    3. Remove the previewFeatures = ["tracing"] option from the client generator block of your Prisma schema.

Other Changes

  • feat(v8/browser): Add multiplexedtransport.js CDN bundle (#15046)
  • feat(v8/browser): Add Unleash integration (#14948)
  • feat(v8/deno): Deprecate Deno SDK as published on deno.land (#15121)
  • feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • fix(v8/aws-lambda): Avoid overwriting root span name (#15054)
  • fix(v8/core): fatal events should set session as crashed (#15073)
  • fix(v8/node/nestjs): Use method on current fastify request (#15104)

Work in this release was contributed by @​tjhiggins, and @​nwalters512. Thank you for your contributions!

Bundle size 📦

Path Size
@​sentry/browser 23.29 KB
@​sentry/browser - with treeshaking flags 23.17 KB
@​sentry/browser (incl. Tracing) 35.85 KB
@​sentry/browser (incl. Tracing, Replay) 73.2 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 66.66 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 77.51 KB

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.51.0

Important Changes

  • feat(v8/node): Add prismaInstrumentation option to Prisma integration as escape hatch for all Prisma versions (#15128)

    This release adds a compatibility API to add support for Prisma version 6. To capture performance data for Prisma version 6:

    1. Install the @prisma/instrumentation package on version 6.

    2. Pass a new PrismaInstrumentation() instance as exported from @prisma/instrumentation to the prismaInstrumentation option:

      import { PrismaInstrumentation } from '@prisma/instrumentation';
      Sentry.init({
      integrations: [
      prismaIntegration({
      // Override the default instrumentation that Sentry uses
      prismaInstrumentation: new PrismaInstrumentation(),
      }),
      ],
      });

      The passed instrumentation instance will override the default instrumentation instance the integration would use, while the prismaIntegration will still ensure data compatibility for the various Prisma versions.

    3. Remove the previewFeatures = ["tracing"] option from the client generator block of your Prisma schema.

Other Changes

  • feat(v8/browser): Add multiplexedtransport.js CDN bundle (#15046)
  • feat(v8/browser): Add Unleash integration (#14948)
  • feat(v8/deno): Deprecate Deno SDK as published on deno.land (#15121)
  • feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • fix(v8/aws-lambda): Avoid overwriting root span name (#15054)
  • fix(v8/core): fatal events should set session as crashed (#15073)
  • fix(v8/node/nestjs): Use method on current fastify request (#15104)

Work in this release was contributed by @​tjhiggins, and @​nwalters512. Thank you for your contributions!

8.50.0

  • feat(v8/react): Add support for React Router createMemoryRouter (#14985)

8.49.0

  • feat(v8/browser): Flush offline queue on flush and browser online event (#14969)
  • feat(v8/react): Add a handled prop to ErrorBoundary (#14978)
  • fix(profiling/v8): Don't put require, __filename and __dirname on global object (#14952)

... (truncated)

Commits
  • 3a0e160 release: 8.51.0
  • e9a5f00 meta: Update Changelog for 8.51.0 (#15113)
  • d9138ff feat(node/v8): Add prismaInstrumentation option to Prisma integration as es...
  • d7aa93f feat(v8/sveltekit): Deprecate fetchProxyScriptNonce option (#15011)
  • 79c2c2a feat(deno): Deprecate Deno SDK as published on deno.land (#15121)
  • b0dc860 feat(flags/v8): Add Unleash integration (#14948)
  • 5f47fbb chore(v8/deps): Deduplicate yarn.lock (#15094)
  • 8b870ba fix(v8/node/nestjs): Use method on current fastify request (#15104)
  • d296ce0 fix(v8/core): fatal events should set session as crashed (#15073)
  • dd2201e chore(v8/deps): Upgrade to Vitest 2.1.8 and Vite 5.4.11 (#15038)
  • Additional commits viewable in compare view

Updates fastify from 5.1.0 to 5.2.1

Release notes

Sourced from fastify's releases.

v5.2.1

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.2.0...v5.2.1

v5.2.0

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by climba03003, a new releaser for fastify since your current version.


Updates ioredis from 5.4.1 to 5.4.2

Release notes

Sourced from ioredis's releases.

v5.4.2

5.4.2 (2024-12-20)

Bug Fixes

  • Connection instability when using socketTimeout parameter (#1937) (ca5e940), closes #1919
Changelog

Sourced from ioredis's changelog.

5.4.2 (2024-12-20)

Bug Fixes

  • Connection instability when using socketTimeout parameter (#1937) (ca5e940), closes #1919
Commits

Updates pino from 9.5.0 to 9.6.0

Release notes

Sourced from pino's releases.

v9.6.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.5.0...v9.6.0

Commits

Bumps the minor-and-patch group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@blockaid/client](https://github.com/blockaid-official/blockaid-client-node) | `0.31.0` | `0.34.2` |
| [@fastify/cors](https://github.com/fastify/fastify-cors) | `10.0.1` | `10.0.2` |
| [@fastify/helmet](https://github.com/fastify/fastify-helmet) | `13.0.0` | `13.0.1` |
| [@fastify/rate-limit](https://github.com/fastify/fastify-rate-limit) | `10.2.1` | `10.2.2` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `8.43.0` | `8.51.0` |
| [fastify](https://github.com/fastify/fastify) | `5.1.0` | `5.2.1` |
| [ioredis](https://github.com/luin/ioredis) | `5.4.1` | `5.4.2` |
| [pino](https://github.com/pinojs/pino) | `9.5.0` | `9.6.0` |
| [stellar-sdk](https://github.com/stellar/js-stellar-sdk) | `13.0.0-beta.1` | `13.1.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.10.10` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.11` | `15.4.2` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `9.5.1` | `9.5.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |



Updates `@blockaid/client` from 0.31.0 to 0.34.2
- [Release notes](https://github.com/blockaid-official/blockaid-client-node/releases)
- [Changelog](https://github.com/blockaid-official/blockaid-client-node/blob/main/CHANGELOG.md)
- [Commits](blockaid-official/blockaid-client-node@v0.31.0...v0.34.2)

Updates `@fastify/cors` from 10.0.1 to 10.0.2
- [Release notes](https://github.com/fastify/fastify-cors/releases)
- [Commits](fastify/fastify-cors@v10.0.1...v10.0.2)

Updates `@fastify/helmet` from 13.0.0 to 13.0.1
- [Release notes](https://github.com/fastify/fastify-helmet/releases)
- [Commits](fastify/fastify-helmet@v13.0.0...v13.0.1)

Updates `@fastify/rate-limit` from 10.2.1 to 10.2.2
- [Release notes](https://github.com/fastify/fastify-rate-limit/releases)
- [Commits](fastify/fastify-rate-limit@v10.2.1...v10.2.2)

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

Updates `fastify` from 5.1.0 to 5.2.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.1.0...v5.2.1)

Updates `ioredis` from 5.4.1 to 5.4.2
- [Release notes](https://github.com/luin/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.4.1...v5.4.2)

Updates `pino` from 9.5.0 to 9.6.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.5.0...v9.6.0)

Updates `stellar-sdk` from 13.0.0-beta.1 to 13.1.0
- [Release notes](https://github.com/stellar/js-stellar-sdk/releases)
- [Changelog](https://github.com/stellar/js-stellar-sdk/blob/master/CHANGELOG.md)
- [Commits](stellar/js-stellar-sdk@v13.0.0-beta.1...v13.1.0)

Updates `@types/node` from 22.10.2 to 22.10.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `lint-staged` from 15.2.11 to 15.4.2
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.11...v15.4.2)

Updates `ts-loader` from 9.5.1 to 9.5.2
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v9.5.1...v9.5.2)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

---
updated-dependencies:
- dependency-name: "@blockaid/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@fastify/cors"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@fastify/helmet"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@fastify/rate-limit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: fastify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ioredis
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: pino
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: stellar-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ts-loader
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

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 Jan 26, 2025
Copy link

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@blockaid/[email protected] 🔁 npm/@blockaid/[email protected] None 0 1.07 MB blockaiduser
npm/@fastify/[email protected] 🔁 npm/@fastify/[email protected] None 0 114 kB airhorns, allevo, climba03003, ...16 more
npm/@fastify/[email protected] None 0 4.96 kB jsumners
npm/@fastify/[email protected] 🔁 npm/@fastify/[email protected] None 0 69.6 kB fdawgs
npm/@fastify/[email protected] None 0 36.5 kB matteo.collina
npm/@fastify/[email protected] 🔁 npm/@fastify/[email protected] None 0 192 kB fdawgs
npm/@prisma/[email protected] 🔁 npm/@prisma/[email protected] Transitive: filesystem +2 634 kB prismabot
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 3.58 MB billyvg, evanpurkhiser, haza, ...7 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 3.18 MB billyvg, evanpurkhiser, haza, ...7 more
npm/@sentry/[email protected] 🔁 npm/@sentry/[email protected] None 0 1.02 MB billyvg, evanpurkhiser, haza, ...7 more
npm/@stellar/[email protected] None 0 3.72 MB stellar-npm-ci
npm/[email protected] 🔁 npm/[email protected] None 0 201 kB abetomo
npm/[email protected] 🔁 npm/[email protected] None 0 2.57 MB climba03003
npm/[email protected] network 0 57.1 kB divyamsingh234
npm/[email protected] 🔁 npm/[email protected] None 0 698 kB ioredis-robot
npm/[email protected] 🔁 npm/[email protected] None 0 62.3 kB whitequark
npm/[email protected] 🔁 npm/[email protected] Transitive: environment +11 417 kB okonet
npm/[email protected] 🔁 npm/[email protected] None 0 746 kB davidmarkclements, jsumners, matteo.collina, ...1 more
npm/[email protected] None 0 42.2 kB fdawgs
npm/[email protected] 🔁 npm/[email protected] None 0 14.9 MB stellar-npm-ci
npm/[email protected] 🔁 npm/[email protected] Transitive: network +1 484 kB blakeembrey, jbrantly, johnnyreilly
npm/[email protected] 🔁 npm/[email protected] None 0 22.7 MB typescript-bot
npm/[email protected] 🔁 npm/[email protected] None 0 681 kB eemeli

🚮 Removed packages: npm/[email protected], npm/[email protected]

View full report↗︎

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 2, 2025

Superseded by #202.

@dependabot dependabot bot closed this Feb 2, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-0899b52c49 branch February 2, 2025 02:38
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