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 15 updates #298

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 15 updates:

Package From To
@faker-js/faker 8.0.2 8.1.0
@sentry/integrations 7.69.0 7.74.0
@sentry/node 7.69.0 7.74.0
@sentry/tracing 7.69.0 7.74.0
@solana/web3.js 1.78.5 1.87.1
cron 2.4.3 3.1.1
dayjs 1.11.9 1.11.10
telegraf 4.13.1 4.14.0
winston 3.10.0 3.11.0
@types/bs58 4.0.1 4.0.2
@types/pg 8.10.2 8.10.5
@types/superagent 4.1.18 4.1.19
@typescript-eslint/eslint-plugin 6.7.0 6.7.5
@typescript-eslint/parser 6.7.0 6.7.5
eslint 8.49.0 8.51.0

Updates @faker-js/faker from 8.0.2 to 8.1.0

Release notes

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

v8.1.0

What's Changed

... (truncated)

Changelog

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

8.1.0 (2023-09-19)

Features

Bug Fixes

  • helpers: prevent uniqueArray from hanging (#2239) (3dece09)
  • image: dataUri is not random (#2316) (a7d25fa)
  • locale: invalid date definitions (#2293) (3cecae9)
  • locale: limited ja first names without passing sex (#2190) (5de8874)
  • locale: remove continent from ja countries (#2194) (cdd162a)
  • locale: remove duplicated countries in ja locale (#2189) (785a38a)
  • location: avoid hyphenated surnames in city patterns (#2119) (7a4bb43)
  • location: Czech postcode format (#2268) (37898ca)
  • location: Dutch postal codes can never start with '0' (#2326) (f195e06)
  • location: Pad en_US ZIP codes left to 5 characters if needed (#2278) (0ca1e44)
  • remove unrelated from de_CH country codes (#2304) (aa1bb13)
  • test: fix imports for jsdocs example verification (#2281) (2fe1308)
  • test: typedoc signature test issues (#2280) (02fc7ca)

Changed Locales

New Locales

... (truncated)

Commits

Updates @sentry/integrations from 7.69.0 to 7.74.0

Release notes

Sourced from @​sentry/integrations's releases.

7.74.0

Important Changes

  • feat(astro): Add sentryAstro integration (#9218)

This Release introduces the first alpha version of our new SDK for Astro. At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@sentry/astro";
export default defineConfig({
integrations: [
sentry({
dsn: "DSN",
sourceMapsUploadOptions: {
project: "astro",
authToken: process.env.SENTRY_AUTH_TOKEN,
},
}),
],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes

  • feat(core): Add addIntegration utility (#9186)
  • feat(core): Add continueTrace method (#9164)
  • feat(node-experimental): Add NodeFetch integration (#9226)
  • feat(node-experimental): Use native OTEL Spans (#9161, #9214)
  • feat(node-experimental): Sample in OTEL Sampler (#9203)
  • feat(serverlesss): Allow disabling transaction traces (#9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#9227)
  • feat(utils): Move common node ANR code to utils (#9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#9200)
  • fix: Ensure we never mutate options passed to init (#9162)
  • fix(ember): Avoid pulling in utils at build time (#9221)
  • fix(ember): Drop undefined config values (#9175)
  • fix(node): Ensure mysql integration works without callback (#9222)
  • fix(node): Only require inspector when needed (#9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#9231)
  • fix(replay): bump rrweb to 2.0.1 (#9240)

... (truncated)

Changelog

Sourced from @​sentry/integrations's changelog.

7.74.0

Important Changes

  • feat(astro): Add sentryAstro integration (#9218)

This Release introduces the first alpha version of our new SDK for Astro. At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@sentry/astro";
export default defineConfig({
integrations: [
sentry({
dsn: "DSN",
sourceMapsUploadOptions: {
project: "astro",
authToken: process.env.SENTRY_AUTH_TOKEN,
},
}),
],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes

  • feat(core): Add addIntegration utility (#9186)
  • feat(core): Add continueTrace method (#9164)
  • feat(node-experimental): Add NodeFetch integration (#9226)
  • feat(node-experimental): Use native OTEL Spans (#9161, #9214)
  • feat(node-experimental): Sample in OTEL Sampler (#9203)
  • feat(serverlesss): Allow disabling transaction traces (#9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#9227)
  • feat(utils): Move common node ANR code to utils (#9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#9200)
  • fix: Ensure we never mutate options passed to init (#9162)
  • fix(ember): Avoid pulling in utils at build time (#9221)
  • fix(ember): Drop undefined config values (#9175)
  • fix(node): Ensure mysql integration works without callback (#9222)
  • fix(node): Only require inspector when needed (#9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#9231)

... (truncated)

Commits
  • 10e5d49 release: 7.74.0
  • 6a0f478 Merge pull request #9239 from getsentry/prepare-release/7.74.0
  • 85ac5e3 meta: Update CHANGELOG for 7.74.0
  • 6062d0c fix(replay): bump rrweb to 2.0.1 (#9240)
  • 73a808a fix(replay): Fix potential broken CSS in styled-components (#9234)
  • a8c8564 chore(astro): Add Astro integration keywords (#9193)
  • 1ba8d9f feat(astro): Add sentryAstro integration (#9218)
  • 8bc4d73 chore(astro): Add Astro package to Craft NPM targets (#9233)
  • 28b6d75 feat(serverlesss): allow disabling transaction traces (#9154)
  • e507110 feat(tracing): allow direct pg module to enable esbuild support (#9227)
  • Additional commits viewable in compare view

Updates @sentry/node from 7.69.0 to 7.74.0

Release notes

Sourced from @​sentry/node's releases.

7.74.0

Important Changes

  • feat(astro): Add sentryAstro integration (#9218)

This Release introduces the first alpha version of our new SDK for Astro. At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@sentry/astro";
export default defineConfig({
integrations: [
sentry({
dsn: "DSN",
sourceMapsUploadOptions: {
project: "astro",
authToken: process.env.SENTRY_AUTH_TOKEN,
},
}),
],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes

  • feat(core): Add addIntegration utility (#9186)
  • feat(core): Add continueTrace method (#9164)
  • feat(node-experimental): Add NodeFetch integration (#9226)
  • feat(node-experimental): Use native OTEL Spans (#9161, #9214)
  • feat(node-experimental): Sample in OTEL Sampler (#9203)
  • feat(serverlesss): Allow disabling transaction traces (#9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#9227)
  • feat(utils): Move common node ANR code to utils (#9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#9200)
  • fix: Ensure we never mutate options passed to init (#9162)
  • fix(ember): Avoid pulling in utils at build time (#9221)
  • fix(ember): Drop undefined config values (#9175)
  • fix(node): Ensure mysql integration works without callback (#9222)
  • fix(node): Only require inspector when needed (#9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#9231)
  • fix(replay): bump rrweb to 2.0.1 (#9240)

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

7.74.0

Important Changes

  • feat(astro): Add sentryAstro integration (#9218)

This Release introduces the first alpha version of our new SDK for Astro. At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@sentry/astro";
export default defineConfig({
integrations: [
sentry({
dsn: "DSN",
sourceMapsUploadOptions: {
project: "astro",
authToken: process.env.SENTRY_AUTH_TOKEN,
},
}),
],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes

  • feat(core): Add addIntegration utility (#9186)
  • feat(core): Add continueTrace method (#9164)
  • feat(node-experimental): Add NodeFetch integration (#9226)
  • feat(node-experimental): Use native OTEL Spans (#9161, #9214)
  • feat(node-experimental): Sample in OTEL Sampler (#9203)
  • feat(serverlesss): Allow disabling transaction traces (#9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#9227)
  • feat(utils): Move common node ANR code to utils (#9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#9200)
  • fix: Ensure we never mutate options passed to init (#9162)
  • fix(ember): Avoid pulling in utils at build time (#9221)
  • fix(ember): Drop undefined config values (#9175)
  • fix(node): Ensure mysql integration works without callback (#9222)
  • fix(node): Only require inspector when needed (#9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#9231)

... (truncated)

Commits
  • 10e5d49 release: 7.74.0
  • 6a0f478 Merge pull request #9239 from getsentry/prepare-release/7.74.0
  • 85ac5e3 meta: Update CHANGELOG for 7.74.0
  • 6062d0c fix(replay): bump rrweb to 2.0.1 (#9240)
  • 73a808a fix(replay): Fix potential broken CSS in styled-components (#9234)
  • a8c8564 chore(astro): Add Astro integration keywords (#9193)
  • 1ba8d9f feat(astro): Add sentryAstro integration (#9218)
  • 8bc4d73 chore(astro): Add Astro package to Craft NPM targets (#9233)
  • 28b6d75 feat(serverlesss): allow disabling transaction traces (#9154)
  • e507110 feat(tracing): allow direct pg module to enable esbuild support (#9227)
  • Additional commits viewable in compare view

Updates @sentry/tracing from 7.69.0 to 7.74.0

Release notes

Sourced from @​sentry/tracing's releases.

7.74.0

Important Changes

  • feat(astro): Add sentryAstro integration (#9218)

This Release introduces the first alpha version of our new SDK for Astro. At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@sentry/astro";
export default defineConfig({
integrations: [
sentry({
dsn: "DSN",
sourceMapsUploadOptions: {
project: "astro",
authToken: process.env.SENTRY_AUTH_TOKEN,
},
}),
],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes

  • feat(core): Add addIntegration utility (#9186)
  • feat(core): Add continueTrace method (#9164)
  • feat(node-experimental): Add NodeFetch integration (#9226)
  • feat(node-experimental): Use native OTEL Spans (#9161, #9214)
  • feat(node-experimental): Sample in OTEL Sampler (#9203)
  • feat(serverlesss): Allow disabling transaction traces (#9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#9227)
  • feat(utils): Move common node ANR code to utils (#9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#9200)
  • fix: Ensure we never mutate options passed to init (#9162)
  • fix(ember): Avoid pulling in utils at build time (#9221)
  • fix(ember): Drop undefined config values (#9175)
  • fix(node): Ensure mysql integration works without callback (#9222)
  • fix(node): Only require inspector when needed (#9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#9231)
  • fix(replay): bump rrweb to 2.0.1 (#9240)

... (truncated)

Changelog

Sourced from @​sentry/tracing's changelog.

7.74.0

Important Changes

  • feat(astro): Add sentryAstro integration (#9218)

This Release introduces the first alpha version of our new SDK for Astro. At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@sentry/astro";
export default defineConfig({
integrations: [
sentry({
dsn: "DSN",
sourceMapsUploadOptions: {
project: "astro",
authToken: process.env.SENTRY_AUTH_TOKEN,
},
}),
],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes

  • feat(core): Add addIntegration utility (#9186)
  • feat(core): Add continueTrace method (#9164)
  • feat(node-experimental): Add NodeFetch integration (#9226)
  • feat(node-experimental): Use native OTEL Spans (#9161, #9214)
  • feat(node-experimental): Sample in OTEL Sampler (#9203)
  • feat(serverlesss): Allow disabling transaction traces (#9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#9227)
  • feat(utils): Move common node ANR code to utils (#9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#9200)
  • fix: Ensure we never mutate options passed to init (#9162)
  • fix(ember): Avoid pulling in utils at build time (#9221)
  • fix(ember): Drop undefined config values (#9175)
  • fix(node): Ensure mysql integration works without callback (#9222)
  • fix(node): Only require inspector when needed (#9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#9231)

... (truncated)

Commits
  • 10e5d49 release: 7.74.0
  • 6a0f478 Merge pull request #9239 from getsentry/prepare-release/7.74.0
  • 85ac5e3 meta: Update CHANGELOG for 7.74.0
  • 6062d0c fix(replay): bump rrweb to 2.0.1 (#9240)
  • 73a808a fix(replay): Fix potential broken CSS in styled-components (#9234)
  • a8c8564 chore(astro): Add Astro integration keywords (#9193)
  • 1ba8d9f feat(astro): Add sentryAstro integration (#9218)
  • 8bc4d73 chore(astro): Add Astro package to Craft NPM targets (#9233)
  • 28b6d75 feat(serverlesss): allow disabling transaction traces (#9154)
  • e507110 feat(tracing): allow direct pg module to enable esbuild support (#9227)
  • Additional commits viewable in compare view

Updates @solana/web3.js from 1.78.5 to 1.87.1

Release notes

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

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)

Features

  • experimental: add accountNotifications websocket method (#1650) (d9dcd1c)

v1.83.0

1.83.0 (2023-10-06)

Features

  • experimental: add signatureNotifications websocket method (#1649) (e0b865d)

v1.82.0

1.82.0 (2023-10-06)

... (truncated)

Commits
  • 2cae718 fix: unclosed string literal in code example, async keyword for the function ...
  • 316f07d refactor(experimental): tree shakability tests were backward for most package...
  • 6cf1deb refactor(experimental): tree shakability tests were backward for most packages
  • 544cc84 refactor(experimental): the default transaction confirmation strategy (#1687)
  • 6467eba refactor(experimental): a low-level series of helpers to confirm transactions...
  • 856952e refactor(experimental): a strategy for confirming a transaction when the sign...
  • 4bb5c3f refactor(experimental): a strategy for expiring a transaction confirmation wh...
  • 5c33269 refactor(experimental): a strategy for expiring a transaction confirmation wh...
  • 524cb6e refactor(experimental): a comparator for commitments (#1698)
  • 7da1908 refactor(experimental): a function you can use to get a transaction's signatu...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by buffalojoec, a new releaser for @​solana/web3.js since your current version.


Updates cron from 2.4.3 to 3.1.1

Release notes

Sourced from cron's releases.

v3.1.1

3.1.1 (2023-10-12)

🐛 Bug Fixes

  • fix lastDate() value for intervals > 25 days (#711) (141aa00)
  • fix object constructor typings & make OC generic type optional (#712) (6536084)

📚 Documentation

  • readme: update nextDates documentation (#702) (1ad2e22)

v3.1.0

3.1.0 (2023-10-09)

✨ Features

  • improve context, onTick & onComplete typings (#705) (82c78d7)

🚨 Tests

  • check at runtime that all tests call expect (#706) [skip ci] (cc4e62f)

♻️ Chores

  • deps: update semantic-release related packages (#709) [skip ci] (b94a48a)
  • reflect repository label changes (<...

    Description has been truncated

Bumps the dependencies group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [@faker-js/faker](https://github.com/faker-js/faker) | `8.0.2` | `8.1.0` |
| [@sentry/integrations](https://github.com/getsentry/sentry-javascript) | `7.69.0` | `7.74.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `7.69.0` | `7.74.0` |
| [@sentry/tracing](https://github.com/getsentry/sentry-javascript) | `7.69.0` | `7.74.0` |
| [@solana/web3.js](https://github.com/solana-labs/solana-web3.js) | `1.78.5` | `1.87.1` |
| [cron](https://github.com/kelektiv/node-cron) | `2.4.3` | `3.1.1` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.9` | `1.11.10` |
| [telegraf](https://github.com/telegraf/telegraf) | `4.13.1` | `4.14.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.2` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.10.2` | `8.10.5` |
| [@types/superagent](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/superagent) | `4.1.18` | `4.1.19` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.7.0` | `6.7.5` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.7.0` | `6.7.5` |
| [eslint](https://github.com/eslint/eslint) | `8.49.0` | `8.51.0` |


Updates `@faker-js/faker` from 8.0.2 to 8.1.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.1.0)

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

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

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

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

Updates `cron` from 2.4.3 to 3.1.1
- [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.1)

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.14.0
- [Release notes](https://github.com/telegraf/telegraf/releases)
- [Commits](telegraf/telegraf@v4.13.1...v4.14.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.2
- [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.5
- [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.19
- [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.7.5
- [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.7.5/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.7.0 to 6.7.5
- [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.7.5/packages/parser)

Updates `eslint` from 8.49.0 to 8.51.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.51.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-patch
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint
  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 13, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 16, 2023

Superseded by #299.

@dependabot dependabot bot closed this Oct 16, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-eb869f8e9e branch October 16, 2023 14:23
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