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

build(deps): bump the dependencies group with 16 updates #311

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 31, 2023

Bumps the dependencies group with 16 updates:

Package From To
@faker-js/faker 8.0.2 8.2.0
@sentry/integrations 7.69.0 7.77.0
@sentry/node 7.69.0 7.77.0
@sentry/tracing 7.69.0 7.77.0
@solana/web3.js 1.78.5 1.87.3
cron 2.4.3 3.1.6
dayjs 1.11.9 1.11.10
telegraf 4.13.1 4.15.0
winston 3.10.0 3.11.0
@types/bs58 4.0.1 4.0.3
@types/pg 8.10.2 8.10.7
@types/superagent 4.1.18 4.1.20
@typescript-eslint/eslint-plugin 6.7.0 6.9.1
@typescript-eslint/parser 6.7.0 6.9.1
eslint 8.49.0 8.52.0
eslint-plugin-import 2.28.1 2.29.0

Updates @faker-js/faker from 8.0.2 to 8.2.0

Release notes

Sourced from @​faker-js/faker's releases.

v8.2.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from @​faker-js/faker's changelog.

8.2.0 (2023-10-14)

Features

Bug Fixes

New Locales

  • locale: add airline database science commerce and vehicle for zh_CN (#2395) (9c96c0a)
  • locale: add street_name to en_US, en_GB and en (#2371) (491d319)
  • locale: add unionpay credit card for zh_CN (#2338) (74eeccc)

8.1.0 (2023-09-19)

Features

Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by division-by-zero, a new releaser for @​faker-js/faker since your current version.


Updates @sentry/integrations from 7.69.0 to 7.77.0

Release notes

Sourced from @​sentry/integrations's releases.

7.77.0

  • feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • feat(remix): Update sentry-cli version to ^2.21.2 (#9401)
  • feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR config (#9412)
  • fix(feedback): Fixing feedback import (#9403)
  • fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • fix(utils): Avoid keeping a reference of last used event (#9387)

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 77.46 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 56.69 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 30.97 KB
@​sentry/browser - Webpack (gzipped) 21.29 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 67.83 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.09 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 21.23 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 216.89 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.28 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.28 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.8 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 77.84 KB
@​sentry/react - Webpack (gzipped) 21.34 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 94.18 KB
@​sentry/nextjs Client - Webpack (gzipped) 47.86 KB

7.76.0

Important Changes

  • feat(core): Add cron monitor wrapper helper (#9395)

This release adds Sentry.withMonitor(), a wrapping function that wraps a callback with a cron monitor that will automatically report completions and failures:

import * as Sentry from '@sentry/node';
// withMonitor() will send checkin when callback is started/finished
// works with async and sync callbacks.
const result = Sentry.withMonitor(
'dailyEmail',
() => {
// withMonitor return value is same return value here
return sendEmail();
},
// Optional upsert options
{
</tr></table>

... (truncated)

Changelog

Sourced from @​sentry/integrations's changelog.

7.77.0

  • feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • feat(remix): Update sentry-cli version to ^2.21.2 (#9401)
  • feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR config (#9412)
  • fix(feedback): Fixing feedback import (#9403)
  • fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • fix(utils): Avoid keeping a reference of last used event (#9387)

7.76.0

Important Changes

  • feat(core): Add cron monitor wrapper helper (#9395)

This release adds Sentry.withMonitor(), a wrapping function that wraps a callback with a cron monitor that will automatically report completions and failures:

import * as Sentry from '@sentry/node';
// withMonitor() will send checkin when callback is started/finished
// works with async and sync callbacks.
const result = Sentry.withMonitor(
'dailyEmail',
() => {
// withCheckIn return value is same return value here
return sendEmail();
},
// Optional upsert options
{
schedule: {
type: 'crontab',
value: '0 * * * *',
},
// 🇨🇦🫡
timezone: 'Canada/Eastern',
},
);

Other Changes

  • chore(angular-ivy): Allow Angular 17 in peer dependencies (#9386)
  • feat(nextjs): Instrument SSR page components (#9346)
  • feat(nextjs): Trace errors in page component SSR (#9388)
  • fix(nextjs): Instrument route handlers with jsx and tsx file extensions (#9362)
  • fix(nextjs): Trace with performance disabled (#9389)
  • fix(replay): Ensure replay_id is not added to DSC if session expired (#9359)

... (truncated)

Commits
  • a807adf release: 7.77.0
  • cf4df75 Merge pull request #9417 from getsentry/prepare-release/7.77.0
  • 3e619dc meta: Update CHANGELOG for 7.77.0
  • 8285f54 fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • 2ec3582 feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • 1005925 fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR ...
  • a8cf899 ref(replay): Streamline rrweb internal error check (#9391)
  • ddbda3c fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • 4371b2c build: Clean ember and deno packages properly (#9411)
  • 89a4d42 feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • Additional commits viewable in compare view

Updates @sentry/node from 7.69.0 to 7.77.0

Release notes

Sourced from @​sentry/node's releases.

7.77.0

  • feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • feat(remix): Update sentry-cli version to ^2.21.2 (#9401)
  • feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR config (#9412)
  • fix(feedback): Fixing feedback import (#9403)
  • fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • fix(utils): Avoid keeping a reference of last used event (#9387)

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 77.46 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 56.69 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 30.97 KB
@​sentry/browser - Webpack (gzipped) 21.29 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 67.83 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.09 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 21.23 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 216.89 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.28 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.28 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.8 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 77.84 KB
@​sentry/react - Webpack (gzipped) 21.34 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 94.18 KB
@​sentry/nextjs Client - Webpack (gzipped) 47.86 KB

7.76.0

Important Changes

  • feat(core): Add cron monitor wrapper helper (#9395)

This release adds Sentry.withMonitor(), a wrapping function that wraps a callback with a cron monitor that will automatically report completions and failures:

import * as Sentry from '@sentry/node';
// withMonitor() will send checkin when callback is started/finished
// works with async and sync callbacks.
const result = Sentry.withMonitor(
'dailyEmail',
() => {
// withMonitor return value is same return value here
return sendEmail();
},
// Optional upsert options
{
</tr></table>

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

7.77.0

  • feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • feat(remix): Update sentry-cli version to ^2.21.2 (#9401)
  • feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR config (#9412)
  • fix(feedback): Fixing feedback import (#9403)
  • fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • fix(utils): Avoid keeping a reference of last used event (#9387)

7.76.0

Important Changes

  • feat(core): Add cron monitor wrapper helper (#9395)

This release adds Sentry.withMonitor(), a wrapping function that wraps a callback with a cron monitor that will automatically report completions and failures:

import * as Sentry from '@sentry/node';
// withMonitor() will send checkin when callback is started/finished
// works with async and sync callbacks.
const result = Sentry.withMonitor(
'dailyEmail',
() => {
// withCheckIn return value is same return value here
return sendEmail();
},
// Optional upsert options
{
schedule: {
type: 'crontab',
value: '0 * * * *',
},
// 🇨🇦🫡
timezone: 'Canada/Eastern',
},
);

Other Changes

  • chore(angular-ivy): Allow Angular 17 in peer dependencies (#9386)
  • feat(nextjs): Instrument SSR page components (#9346)
  • feat(nextjs): Trace errors in page component SSR (#9388)
  • fix(nextjs): Instrument route handlers with jsx and tsx file extensions (#9362)
  • fix(nextjs): Trace with performance disabled (#9389)
  • fix(replay): Ensure replay_id is not added to DSC if session expired (#9359)

... (truncated)

Commits
  • a807adf release: 7.77.0
  • cf4df75 Merge pull request #9417 from getsentry/prepare-release/7.77.0
  • 3e619dc meta: Update CHANGELOG for 7.77.0
  • 8285f54 fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • 2ec3582 feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • 1005925 fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR ...
  • a8cf899 ref(replay): Streamline rrweb internal error check (#9391)
  • ddbda3c fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • 4371b2c build: Clean ember and deno packages properly (#9411)
  • 89a4d42 feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • Additional commits viewable in compare view

Updates @sentry/tracing from 7.69.0 to 7.77.0

Release notes

Sourced from @​sentry/tracing's releases.

7.77.0

  • feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • feat(remix): Update sentry-cli version to ^2.21.2 (#9401)
  • feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR config (#9412)
  • fix(feedback): Fixing feedback import (#9403)
  • fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • fix(utils): Avoid keeping a reference of last used event (#9387)

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 77.46 KB
@​sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) 56.69 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 30.97 KB
@​sentry/browser - Webpack (gzipped) 21.29 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 67.83 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.09 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 21.23 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 216.89 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 88.28 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 63.28 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.8 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 77.84 KB
@​sentry/react - Webpack (gzipped) 21.34 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 94.18 KB
@​sentry/nextjs Client - Webpack (gzipped) 47.86 KB

7.76.0

Important Changes

  • feat(core): Add cron monitor wrapper helper (#9395)

This release adds Sentry.withMonitor(), a wrapping function that wraps a callback with a cron monitor that will automatically report completions and failures:

import * as Sentry from '@sentry/node';
// withMonitor() will send checkin when callback is started/finished
// works with async and sync callbacks.
const result = Sentry.withMonitor(
'dailyEmail',
() => {
// withMonitor return value is same return value here
return sendEmail();
},
// Optional upsert options
{
</tr></table>

... (truncated)

Changelog

Sourced from @​sentry/tracing's changelog.

7.77.0

  • feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • feat(remix): Update sentry-cli version to ^2.21.2 (#9401)
  • feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR config (#9412)
  • fix(feedback): Fixing feedback import (#9403)
  • fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • fix(utils): Avoid keeping a reference of last used event (#9387)

7.76.0

Important Changes

  • feat(core): Add cron monitor wrapper helper (#9395)

This release adds Sentry.withMonitor(), a wrapping function that wraps a callback with a cron monitor that will automatically report completions and failures:

import * as Sentry from '@sentry/node';
// withMonitor() will send checkin when callback is started/finished
// works with async and sync callbacks.
const result = Sentry.withMonitor(
'dailyEmail',
() => {
// withCheckIn return value is same return value here
return sendEmail();
},
// Optional upsert options
{
schedule: {
type: 'crontab',
value: '0 * * * *',
},
// 🇨🇦🫡
timezone: 'Canada/Eastern',
},
);

Other Changes

  • chore(angular-ivy): Allow Angular 17 in peer dependencies (#9386)
  • feat(nextjs): Instrument SSR page components (#9346)
  • feat(nextjs): Trace errors in page component SSR (#9388)
  • fix(nextjs): Instrument route handlers with jsx and tsx file extensions (#9362)
  • fix(nextjs): Trace with performance disabled (#9389)
  • fix(replay): Ensure replay_id is not added to DSC if session expired (#9359)

... (truncated)

Commits
  • a807adf release: 7.77.0
  • cf4df75 Merge pull request #9417 from getsentry/prepare-release/7.77.0
  • 3e619dc meta: Update CHANGELOG for 7.77.0
  • 8285f54 fix(nextjs): Match only numbers as orgid in tunnelRoute (#9416)
  • 2ec3582 feat(replay): Allow to treeshake & configure compression worker URL (#9409)
  • 1005925 fix(angular-ivy): Adjust package entry points to support Angular 17 with SSR ...
  • a8cf899 ref(replay): Streamline rrweb internal error check (#9391)
  • ddbda3c fix(nextjs): Strictly validate tunnel target parameters (#9415)
  • 4371b2c build: Clean ember and deno packages properly (#9411)
  • 89a4d42 feat: Move LinkedErrors integration to @​sentry/core (#9404)
  • Additional commits viewable in compare view

Updates @solana/web3.js from 1.78.5 to 1.87.3

Release notes

Sourced from @​solana/web3.js's releases.

v1.87.3

1.87.3 (2023-10-26)

Bug Fixes

  • temporarily lock to Node 18.x for CI/CD workflow (#1785) (6910664)

v1.87.2

1.87.2 (2023-10-19)

Bug Fixes

  • experimental: fix scalar enum codec options (#1751) (72efece)

v1.87.1

1.87.1 (2023-10-09)

Bug Fixes

  • unclosed string literal in code example, async keyword for the function (#1702) (2cae718)

v1.87.0

1.87.0 (2023-10-06)

Features

v1.86.0

1.86.0 (2023-10-06)

Features

  • experimental: add blockNotifications websocket method (#1653) (867084a)

v1.85.0

1.85.0 (2023-10-06)

Features

  • experimental: add programNotifications websocket method (#1651) (5432cbe)

v1.84.0

1.84.0 (2023-10-06)

... (truncated)

Commits
  • 6910664 fix: temporarily lock to Node 18.x for CI/CD workflow (#1785)
  • 3baf697 refactor(experimental): add function to check if a transaction is fully signe...
  • b2f9f0a refactor(experimental): add transaction decoder + codec (#1782)
  • 1d46529 refactor(experimental): add tests for decompiling durable nonce transaction (...
  • d63fb95 refactor(experimental): fix bug in setTransactionLifetimeUsingDurableNonce (#...
  • 589c379 refactor(experimental): allow the nonce authority account to be writable (#1777)
  • 68e85dc refactor(experimental): add support for decompiling a compiled transaction (#...
  • df45965 refactor(experimental): export address and keypair compats (#1778)
  • 2938d71 refactor(experimental): add support for pkcs8 to exportKey polyfill (#1756)
  • 58b1699 refactor(experimental): add Ed25519 importKey polyfill (#1755)
  • Additional commits viewable in compare view

Updates cron from 2.4.3 to 3.1.6

Release notes

Sourced from cron's releases.

v3.1.6

3.1.6 (2023-10-29)

🐛 Bug Fixes

⚙️ Continuous Integrations

  • action: update actions/checkout action to v4 (#755) (d0d70c6)
  • action: update github/codeql-action action to v2.22.4 (#752) (04454c3)
  • action: update github/codeql-action action to v2.22.5 (#758) (2dff183)
  • action: update ossf/scorecard-action action to v2.3.1 (#754) (41d21f1)

♻️ Chores

v3.1.5

3.1.5 (2023-10-26)

🐛 Bug Fixes

  • detect multiple zeros as an invalid step (#743) [skip ci] (b0bf677)
  • re-add runOnce property to CronJob (#751) (a61d8c9)

📚 Documentation

  • readme: API documentation overhaul (#716) [skip ci] (23fb0a3)

⚙️ Continuous Integrations

  • action: update actions/setup-node action to v4 (#749) (ef850f3)

♻️ Chores

... (truncated)

Changelog

Sourced from cron's changelog.

3.1.6 (2023-10-29)

🐛 Bug Fixes

⚙️ Continuous Integrations

  • action: update actions/checkout action to v4 (#755) (d0d70c6)
  • action: update github/codeql-action action to v2.22.4 (#752) (04454c3)
  • action: update github/codeql-action action to v2.22.5 (#758) (2dff183)
  • action: update ossf/scorecard-action action to v2.3.1 (Description has been truncated

Bumps the dependencies group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@faker-js/faker](https://github.com/faker-js/faker) | `8.0.2` | `8.2.0` |
| [@sentry/integrations](https://github.com/getsentry/sentry-javascript) | `7.69.0` | `7.77.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `7.69.0` | `7.77.0` |
| [@sentry/tracing](https://github.com/getsentry/sentry-javascript) | `7.69.0` | `7.77.0` |
| [@solana/web3.js](https://github.com/solana-labs/solana-web3.js) | `1.78.5` | `1.87.3` |
| [cron](https://github.com/kelektiv/node-cron) | `2.4.3` | `3.1.6` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.9` | `1.11.10` |
| [telegraf](https://github.com/telegraf/telegraf) | `4.13.1` | `4.15.0` |
| [winston](https://github.com/winstonjs/winston) | `3.10.0` | `3.11.0` |
| [@types/bs58](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bs58) | `4.0.1` | `4.0.3` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.10.2` | `8.10.7` |
| [@types/superagent](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/superagent) | `4.1.18` | `4.1.20` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.7.0` | `6.9.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.7.0` | `6.9.1` |
| [eslint](https://github.com/eslint/eslint) | `8.49.0` | `8.52.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.28.1` | `2.29.0` |


Updates `@faker-js/faker` from 8.0.2 to 8.2.0
- [Release notes](https://github.com/faker-js/faker/releases)
- [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
- [Commits](faker-js/faker@v8.0.2...v8.2.0)

Updates `@sentry/integrations` from 7.69.0 to 7.77.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@7.69.0...7.77.0)

Updates `@sentry/node` from 7.69.0 to 7.77.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@7.69.0...7.77.0)

Updates `@sentry/tracing` from 7.69.0 to 7.77.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@7.69.0...7.77.0)

Updates `@solana/web3.js` from 1.78.5 to 1.87.3
- [Release notes](https://github.com/solana-labs/solana-web3.js/releases)
- [Commits](solana-labs/solana-web3.js@v1.78.5...v1.87.3)

Updates `cron` from 2.4.3 to 3.1.6
- [Release notes](https://github.com/kelektiv/node-cron/releases)
- [Changelog](https://github.com/kelektiv/node-cron/blob/main/CHANGELOG.md)
- [Commits](kelektiv/node-cron@v2.4.3...v3.1.6)

Updates `dayjs` from 1.11.9 to 1.11.10
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.9...v1.11.10)

Updates `telegraf` from 4.13.1 to 4.15.0
- [Release notes](https://github.com/telegraf/telegraf/releases)
- [Commits](telegraf/telegraf@v4.13.1...v4.15.0)

Updates `winston` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston@v3.10.0...v3.11.0)

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

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

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

Updates `@typescript-eslint/eslint-plugin` from 6.7.0 to 6.9.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.9.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.7.0 to 6.9.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.9.1/packages/parser)

Updates `eslint` from 8.49.0 to 8.52.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.49.0...v8.52.0)

Updates `eslint-plugin-import` from 2.28.1 to 2.29.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.28.1...v2.29.0)

---
updated-dependencies:
- dependency-name: "@faker-js/faker"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@sentry/integrations"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@sentry/tracing"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@solana/web3.js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cron
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: dayjs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: telegraf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: winston
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/bs58"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/pg"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/superagent"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: 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 Oct 31, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 6, 2023

Superseded by #312.

@dependabot dependabot bot closed this Nov 6, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-402c2654dc branch November 6, 2023 14:18
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