stellar / freighter-backend

Freighter's indexer integration layer and general backend
1 stars 3 forks source link

Bump the minor-and-patch group across 1 directory with 10 updates #141

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

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

Package From To
@blockaid/client 0.21.0 0.24.0
@sentry/node 8.23.0 8.27.0
@urql/core 5.0.5 5.0.6
axios 1.7.3 1.7.7
@types/node 22.1.0 22.5.1
@types/yargs 17.0.32 17.0.33
husky 9.1.4 9.1.5
lint-staged 15.2.8 15.2.9
ts-jest 29.2.4 29.2.5
webpack 5.93.0 5.94.0

Updates @blockaid/client from 0.21.0 to 0.24.0

Release notes

Sourced from @​blockaid/client's releases.

v0.24.0

0.24.0 (2024-08-26)

Full Changelog: v0.23.0...v0.24.0

Features

  • api: OpenAPI spec update via Stainless API (#231) (41d156b)

v0.23.0

0.23.0 (2024-08-25)

Full Changelog: v0.22.1...v0.23.0

Features

  • api: OpenAPI spec update via Stainless API (#221) (457fb0a)
  • api: OpenAPI spec update via Stainless API (#223) (82b65c0)
  • api: OpenAPI spec update via Stainless API (#224) (2c7e20e)
  • api: OpenAPI spec update via Stainless API (#225) (ca3c8a5)
  • api: OpenAPI spec update via Stainless API (#226) (b9ad536)
  • api: OpenAPI spec update via Stainless API (#227) (457b3c3)
  • api: OpenAPI spec update via Stainless API (#228) (13fa3f5)
  • api: OpenAPI spec update via Stainless API (#229) (06ad042)

v0.22.1

0.22.1 (2024-08-25)

Full Changelog: v0.22.0...v0.22.1

Features

Chores

... (truncated)

Changelog

Sourced from @​blockaid/client's changelog.

0.24.0 (2024-08-26)

Full Changelog: v0.23.0...v0.24.0

Features

  • api: OpenAPI spec update via Stainless API (#231) (41d156b)

0.23.0 (2024-08-25)

Full Changelog: v0.22.1...v0.23.0

Features

  • api: OpenAPI spec update via Stainless API (#221) (457fb0a)
  • api: OpenAPI spec update via Stainless API (#223) (82b65c0)
  • api: OpenAPI spec update via Stainless API (#224) (2c7e20e)
  • api: OpenAPI spec update via Stainless API (#225) (ca3c8a5)
  • api: OpenAPI spec update via Stainless API (#226) (b9ad536)
  • api: OpenAPI spec update via Stainless API (#227) (457b3c3)
  • api: OpenAPI spec update via Stainless API (#228) (13fa3f5)
  • api: OpenAPI spec update via Stainless API (#229) (06ad042)

0.22.1 (2024-08-25)

Full Changelog: v0.22.0...v0.22.1

Features

Chores

0.22.0 (2024-08-21)

... (truncated)

Commits
  • 6a46110 Merge pull request #232 from blockaid-official/release-please--branches--main...
  • e94771f release: 0.24.0
  • 41d156b feat(api): OpenAPI spec update via Stainless API (#231)
  • a3462ba Merge pull request #222 from blockaid-official/release-please--branches--main...
  • c979270 release: 0.23.0
  • 06ad042 feat(api): OpenAPI spec update via Stainless API (#229)
  • 13fa3f5 feat(api): OpenAPI spec update via Stainless API (#228)
  • 457b3c3 feat(api): OpenAPI spec update via Stainless API (#227)
  • b9ad536 feat(api): OpenAPI spec update via Stainless API (#226)
  • ca3c8a5 feat(api): OpenAPI spec update via Stainless API (#225)
  • Additional commits viewable in compare view


Updates @sentry/node from 8.23.0 to 8.27.0

Release notes

Sourced from @​sentry/node's releases.

8.27.0

Important Changes

  • fix(nestjs): Exception filters in main app module are not being executed (#13278)

    With this release nestjs error monitoring is no longer automatically set up after adding the SentryModule to your application, which led to issues in certain scenarios. You will now have to either add the SentryGlobalFilter to your main module providers or decorate the catch() method in your existing global exception filters with the newly released @WithSentry() decorator. See the docs for more details.

Other Changes

  • feat: Add options for passing nonces to feedback integration (#13347)
  • feat: Add support for SENTRY_SPOTLIGHT env var in Node (#13325)
  • feat(deps): bump @​prisma/instrumentation from 5.17.0 to 5.18.0 (#13327)
  • feat(feedback): Improve error message for 403 errors (#13441)
  • fix(deno): Don't rely on Deno.permissions.querySync (#13378)
  • fix(replay): Ensure we publish replay CDN bundles (#13437)

Work in this release was contributed by @​charpeni. Thank you for your contribution!

8.26.0

Important Changes

  • feat(node): Add fsInstrumentation (#13291)

    This release adds fsIntegration, an integration that instruments the fs API to the Sentry Node SDK. The integration creates spans with naming patterns of fs.readFile, fs.unlink, and so on.

    This integration is not enabled by default and needs to be registered in your Sentry.init call. You can configure via options whether to include path arguments or error messages as span attributes when an fs call fails:

    Sentry.init({
      integrations: [
        Sentry.fsIntegration({
          recordFilePaths: true,
          recordErrorMessagesAsSpanAttributes: true,
        }),
      ],
    });
    

    WARNING: This integration may add significant overhead to your application. Especially in scenarios with a lot of file I/O, like for example when running a framework dev server, including this integration can massively slow down your application.

Other Changes

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.27.0

Important Changes

  • fix(nestjs): Exception filters in main app module are not being executed (#13278)

    With this release nestjs error monitoring is no longer automatically set up after adding the SentryModule to your application, which led to issues in certain scenarios. You will now have to either add the SentryGlobalFilter to your main module providers or decorate the catch() method in your existing global exception filters with the newly released @WithSentry() decorator. See the docs for more details.

Other Changes

  • feat: Add options for passing nonces to feedback integration (#13347)
  • feat: Add support for SENTRY_SPOTLIGHT env var in Node (#13325)
  • feat(deps): bump @​prisma/instrumentation from 5.17.0 to 5.18.0 (#13327)
  • feat(feedback): Improve error message for 403 errors (#13441)
  • fix(deno): Don't rely on Deno.permissions.querySync (#13378)
  • fix(replay): Ensure we publish replay CDN bundles (#13437)

Work in this release was contributed by @​charpeni. Thank you for your contribution!

8.26.0

Important Changes

  • feat(node): Add fsInstrumentation (#13291)

    This release adds fsIntegration, an integration that instruments the fs API to the Sentry Node SDK. The integration creates spans with naming patterns of fs.readFile, fs.unlink, and so on.

    This integration is not enabled by default and needs to be registered in your Sentry.init call. You can configure via options whether to include path arguments or error messages as span attributes when an fs call fails:

    Sentry.init({
      integrations: [
        Sentry.fsIntegration({
          recordFilePaths: true,
          recordErrorMessagesAsSpanAttributes: true,
        }),
      ],
    });
    

    WARNING: This integration may add significant overhead to your application. Especially in scenarios with a lot of file I/O, like for example when running a framework dev server, including this integration can massively slow down your application.

... (truncated)

Commits


Updates @urql/core from 5.0.5 to 5.0.6

Release notes

Sourced from @​urql/core's releases.

@​urql/core@​5.0.6

Patch Changes

Changelog

Sourced from @​urql/core's changelog.

5.0.6

Patch Changes

Commits


Updates axios from 1.7.3 to 1.7.7

Release notes

Sourced from axios's releases.

Release v1.7.7

Release notes:

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

Release v1.7.6

Release notes:

Bug Fixes

  • fetch: fix content length calculation for FormData payload; (#6524) (085f568)
  • fetch: optimize signals composing logic; (#6582) (df9889b)

Contributors to this release

Release v1.7.5

Release notes:

Bug Fixes

  • adapter: fix undefined reference to hasBrowserEnv (#6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#6533) (550d885)

Contributors to this release

Release v1.7.4

Release notes:

Bug Fixes

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.7 (2024-08-31)

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

1.7.6 (2024-08-30)

Bug Fixes

  • fetch: fix content length calculation for FormData payload; (#6524) (085f568)
  • fetch: optimize signals composing logic; (#6582) (df9889b)

Contributors to this release

1.7.5 (2024-08-23)

Bug Fixes

  • adapter: fix undefined reference to hasBrowserEnv (#6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#6533) (550d885)

Contributors to this release

1.7.4 (2024-08-13)

Bug Fixes

... (truncated)

Commits
  • 5b8a826 chore(release): v1.7.7 (#6585)
  • 364993f fix(http): fixed support for IPv6 literal strings in url (#5731)
  • d198085 fix(fetch): fix stream handling in Safari by fallback to using a stream reade...
  • d584fcf chore(release): v1.7.6 (#6583)
  • bc03c6c chore(examples): fix module import (#6575)
  • df9889b fix(fetch): optimize signals composing logic; (#6582)
  • ee208cf chore(sponsor): update sponsor block (#6576)
  • 085f568 fix(fetch): fix content length calculation for FormData payload; (#6524)
  • 59cd6b0 chore(release): v1.7.5 (#6574)
  • 6700a8a fix(core): add the missed implementation of AxiosError#status property; (#6573)
  • Additional commits viewable in compare view


Updates @types/node from 22.1.0 to 22.5.1

Commits


Updates @types/yargs from 17.0.32 to 17.0.33

Commits


Updates husky from 9.1.4 to 9.1.5

Release notes

Sourced from husky's releases.

v9.1.5

What's Changed

New Contributors

Full Changelog: https://github.com/typicode/husky/compare/v9.1.4...v9.1.5

Commits


Updates lint-staged from 15.2.8 to 15.2.9

Release notes

Sourced from lint-staged's releases.

v15.2.9

Patch Changes

  • #1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.
Changelog

Sourced from lint-staged's changelog.

15.2.9

Patch Changes

  • #1463 b69ce2d Thanks @​iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warning MaxListenersExceededWarning: Possible EventEmitter memory leak detected.
Commits


Updates ts-jest from 29.2.4 to 29.2.5

Release notes

Sourced from ts-jest's releases.

v29.2.5

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.2.5 (2024-08-23)

Bug Fixes

  • build: build package with NodeNext module (9b3ade5)
  • fix: set value ts/tsx extensionsToTreatAsEsm in default esm preset (d9ff362)
  • fix(compiler): fallback to NodeJS module resolution for ts 4.8 (b7d3409), closes #4499
Commits
  • 500a863 chore(release): 29.2.5
  • dce986e build(deps): Update dependency @​babel/preset-env to ^7.25.4
  • 48a28a6 build(deps): Update dependency vite to ^5.4.2
  • d9ff362 fix: set value ts/tsx extensionsToTreatAsEsm in default esm preset
  • 00550ef test: add e2e test case for ESM features
  • 978169b build(deps): Update dependency @​types/node to v20.16.1
  • e9a643c build(deps): Update dependency @​types/node to v20.16.0
  • 535edab build(deps): Update dependency @​types/node to v20.15.0
  • 011a9d8 build(deps): Update dependency vite to ^5.4.1
  • 4eb8ccd build: update renovate bot
  • Additional commits viewable in compare view


Updates webpack from 5.93.0 to 5.94.0

Release notes

Sourced from webpack's releases.

v5.94.0

Bug Fixes

  • Added runtime condition for harmony reexport checked
  • Handle properly data/http/https protocols in source maps
  • Make bigint optimistic when browserslist not found
  • Move @​types/eslint-scope to dev deps
  • Related in asset stats is now always an array when no related found
  • Handle ASI for export declarations
  • Mangle destruction incorrect with export named default properly
  • Fixed unexpected asi generation with sequence expression
  • Fixed a lot of types

New Features

  • Added new external type "module-import"
  • Support webpackIgnore for new URL() construction
  • [CSS] @import pathinfo support

Security

  • Fixed DOM clobbering in auto public path
Commits
  • eabf85d chore(release): 5.94.0
  • 955e057 security: fix DOM clobbering in auto public path
  • 9822387 test: fix
  • cbb86ed test: fix
  • 5ac3d7f fix: unexpected asi generation with sequence expression
  • 2411661 security: fix DOM clobbering in auto public path
  • b8c03d4 fix: unexpected asi generation with sequence expression
  • f46a03c revert: do not use heuristic fallback for "module-import"
  • 60f1898 fix: do not use heuristic fallback for "module-import"
  • 66306aa Revert "fix: module-import get fallback from externalsPresets"
  • Additional commits viewable in compare view


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
socket-security[bot] commented 2 months ago

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

Package New capabilities Transitives Size Publisher
npm/@blockaid/client@0.24.0 environment, network 0 883 kB blockaiduser
npm/@opentelemetry/instrumentation-fs@0.14.0 None 0 80.6 kB dyladan
npm/@prisma/instrumentation@5.18.0 environment 0 35.6 kB prismabot
npm/@sentry/core@8.27.0 None 0 1.93 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/node@8.27.0 None 0 2.58 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/opentelemetry@8.27.0 None 0 940 kB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@sentry/types@8.27.0 None 0 331 kB sentry-bot
npm/@sentry/utils@8.27.0 None 0 1.19 MB benvinegar, billyvg, evanpurkhiser, ...8 more
npm/@types/node@22.5.1 None 0 2.19 MB types
npm/@types/yargs@17.0.33 None 0 60.4 kB types
npm/@urql/core@5.0.6 environment, network 0 921 kB jdecroock
npm/axios@1.7.7 None 0 2.14 MB emilyemorehouse, jasonsaayman, mzabriskie, ...1 more
npm/husky@9.1.5 None 0 0 B
npm/lint-staged@15.2.9 None 0 121 kB okonet
npm/ts-jest@29.2.5 None 0 328 kB anhpnnd, kul, tsjest
npm/webpack@5.94.0 None 0 5.08 MB evilebottnawi, jhnns, sokra, ...1 more

🚮 Removed packages: npm/@blockaid/client@0.21.0), npm/@prisma/instrumentation@5.17.0), npm/@sentry/core@8.23.0), npm/@sentry/node@8.23.0), npm/@sentry/opentelemetry@8.23.0), npm/@sentry/types@8.23.0), npm/@sentry/utils@8.23.0), npm/@types/eslint-scope@3.7.7), npm/@types/eslint@9.6.0), npm/@types/node@22.1.0), npm/@types/yargs@17.0.32), npm/@urql/core@5.0.5), npm/axios@1.7.3), npm/husky@9.1.4), npm/lint-staged@15.2.8), npm/ts-jest@29.2.4), npm/webpack@5.93.0)

View full report↗︎

dependabot[bot] commented 2 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.