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

chore(deps): bump the production-deps group across 1 directory with 39 updates #9444

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 Nov 22, 2024

Bumps the production-deps group with 39 updates in the / directory:

Package From To
@sentry/nextjs 8.37.1 8.40.0
@clack/prompts 0.7.0 0.8.2
@swc/core 1.7.10 1.9.3
mongoose 8.8.1 8.8.2
pg 8.11.3 8.13.1
@types/pg 8.10.2 8.11.10
@vercel/postgres 0.9.0 0.10.0
nodemailer 6.9.10 6.9.16
@types/nodemailer 6.4.14 6.4.17
@eslint-react/eslint-plugin 1.16.1 1.17.1
@eslint/js 9.14.0 9.15.0
@typescript-eslint/parser 8.14.0 8.15.0
eslint 9.14.0 9.15.0
eslint-plugin-import-x 4.4.2 4.4.3
eslint-plugin-jest-dom 5.4.0 5.5.0
eslint-plugin-regexp 2.6.0 2.7.0
typescript-eslint 8.14.0 8.15.0
graphql-scalars 1.22.2 1.23.0
graphql-http 1.22.2 1.22.3
@dnd-kit/core 6.0.8 6.1.0
file-type 19.3.0 19.6.0
react-diff-viewer-continued 3.2.6 3.4.0
sass 1.77.4 1.81.0
ci-info 4.0.0 4.1.0
@aws-sdk/client-cognito-identity 3.687.0 3.696.0
@aws-sdk/client-s3 3.687.0 3.698.0
@aws-sdk/credential-providers 3.687.0 3.696.0
@aws-sdk/lib-storage 3.687.0 3.698.0
@azure/storage-blob 12.25.0 12.26.0
@vercel/blob 0.22.3 0.26.0
@sentry/types 8.37.1 8.40.0
acorn 8.12.1 8.14.0
react-error-boundary 4.0.13 4.1.2
slate 0.91.4 0.110.2
slate-history 0.86.0 0.110.3
slate-hyperscript 0.81.3 0.100.0
slate-react 0.92.0 0.111.0
react-select 5.8.0 5.8.3
scheduler 0.0.0-experimental-3edc000d-20240926 0.23.2

Updates @sentry/nextjs from 8.37.1 to 8.40.0

Release notes

Sourced from @​sentry/nextjs's releases.

8.40.0

Important Changes

  • feat(angular): Support Angular 19 (#14398)

    The @sentry/angular SDK can now be used with Angular 19. If you're upgrading to the new Angular version, you might want to migrate from the now deprecated APP_INITIALIZER token to provideAppInitializer. In this case, change the Sentry TraceService initialization in app.config.ts:

    // Angular 18
    export const appConfig: ApplicationConfig = {
      providers: [
        // other providers
        {
          provide: TraceService,
          deps: [Router],
        },
        {
          provide: APP_INITIALIZER,
          useFactory: () => () => {},
          deps: [TraceService],
          multi: true,
        },
      ],
    };
    // Angular 19
    export const appConfig: ApplicationConfig = {
    providers: [
    // other providers
    {
    provide: TraceService,
    deps: [Router],
    },
    provideAppInitializer(() => {
    inject(TraceService);
    }),
    ],
    };

  • feat(core): Deprecate debugIntegration and sessionTimingIntegration (#14363)

    The debugIntegration was deprecated and will be removed in the next major version of the SDK. To log outgoing events, use Hook Options (beforeSend, beforeSendTransaction, ...).

    The sessionTimingIntegration was deprecated and will be removed in the next major version of the SDK. To capture session durations alongside events, use Context (Sentry.setContext()).

  • feat(nestjs): Deprecate @WithSentry in favor of @SentryExceptionCaptured (#14323)

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

8.40.0

Important Changes

  • feat(angular): Support Angular 19 (#14398)

    The @sentry/angular SDK can now be used with Angular 19. If you're upgrading to the new Angular version, you might want to migrate from the now deprecated APP_INITIALIZER token to provideAppInitializer. In this case, change the Sentry TraceService initialization in app.config.ts:

    // Angular 18
    export const appConfig: ApplicationConfig = {
      providers: [
        // other providers
        {
          provide: TraceService,
          deps: [Router],
        },
        {
          provide: APP_INITIALIZER,
          useFactory: () => () => {},
          deps: [TraceService],
          multi: true,
        },
      ],
    };
    // Angular 19
    export const appConfig: ApplicationConfig = {
    providers: [
    // other providers
    {
    provide: TraceService,
    deps: [Router],
    },
    provideAppInitializer(() => {
    inject(TraceService);
    }),
    ],
    };

  • feat(core): Deprecate debugIntegration and sessionTimingIntegration (#14363)

    The debugIntegration was deprecated and will be removed in the next major version of the SDK. To log outgoing events, use Hook Options (beforeSend, beforeSendTransaction, ...).

    The sessionTimingIntegration was deprecated and will be removed in the next major version of the SDK. To capture session durations alongside events, use Context (Sentry.setContext()).

... (truncated)

Commits
  • 7ff467c release: 8.40.0
  • 87a90a3 Merge pull request #14425 from getsentry/prepare-release/8.40.0
  • 5841854 meta(changelog): Update changelog for 8.40.0
  • d140ae6 Merge remote-tracking branch 'origin/master' into prepare-release/8.40.0
  • 90f958f ci: Skip optional E2E tests on release branches (#14424)
  • 6535500 feat(replay): Clear event buffer when full and in buffer mode (#14078)
  • 85daf90 fix(feedback): Fix non-wrapping form title (#14355)
  • ec701fd Merge pull request #14412 from getsentry/develop
  • 138417b test(feedback): Fixes lazy loaded feedback bundles (#14410)
  • c1ccdf3 Merge pull request #14408 from getsentry/prepare-release/8.40.0
  • Additional commits viewable in compare view

Updates @clack/prompts from 0.7.0 to 0.8.2

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​0.8.2

Patch Changes

  • Updated dependencies [4845f4f]
  • Updated dependencies [d7b2fb9]
    • @​clack/core@​0.3.5

@​clack/prompts@​0.8.1

Patch Changes

  • 360afeb: feat: adaptative max items
Changelog

Sourced from @​clack/prompts's changelog.

0.8.2

Patch Changes

  • Updated dependencies [4845f4f]
  • Updated dependencies [d7b2fb9]
    • @​clack/core@​0.3.5

0.8.1

Patch Changes

  • 360afeb: feat: adaptative max items

0.8.0

Minor Changes

  • 9acccde: Add tasks function for executing tasks in spinners

Patch Changes

  • b5c6b9b: Feat multiselect maxItems option
  • 50ed94a: fix: clear spinner hooks on spinner.stop
  • Updated dependencies [a04e418]
  • Updated dependencies [4f6fcf5]
    • @​clack/core@​0.3.4
Commits

Updates @swc/core from 1.7.10 to 1.9.3

Changelog

Sourced from @​swc/core's changelog.

[1.9.3] - 2024-11-22

Bug Fixes

  • (@​swc/types) Tsc build file ignored by npm (#9754) (14a5c1e)

  • (es) Source map super(...args) calls in injected constructors (#9745) (35b0ca0)

  • (es/plugin) Migrate swc plugin new to use .cargo/config.toml (#9740) (4ffb21e)

  • (es/resolver) Ignore VarDecl with declare: true (#9734) (aa0f784)

Documentation

Features

Miscellaneous Tasks

Performance

  • (es/plugin) Make analyze_source_file lazy, again (#9732) (c1d12d6)

... (truncated)

Commits
  • 12b9c7c chore: Publish 1.9.3 with swc_core v6.0.1
  • 62d3d19 chore: Update changelog
  • 6fa8ca8 chore: Publish 1.9.3-nightly-20241122.1 with swc_core v6.0.1
  • 4e903e9 chore: Publish crates with swc_core v6.0.1
  • e0fdd68 feat(visit): Derive serde for AstParentKind (#9744)
  • 14a5c1e fix(@​swc/types): tsc build file ignored by npm (#9754)
  • cd4321c doc(types): Document Assumptions API (#9746)
  • 35b0ca0 fix(es): Source map super(...args) calls in injected constructors (#9745)
  • c55e524 chore: Publish crates with swc_core v6.0.1
  • 4ffb21e fix(es/plugin): Migrate swc plugin new to use .cargo/config.toml (#9740)
  • Additional commits viewable in compare view

Updates mongoose from 8.8.1 to 8.8.2

Release notes

Sourced from mongoose's releases.

8.8.2 / 2024-11-18

  • fix(model): handle array filters when casting bulkWrite #15036 #14978
  • fix(model): make diffIndexes() avoid trying to drop default timeseries collection index #15035 #14984
  • fix: save execution stack in query as string #15039 durran
  • types(cursor): correct asyncIterator and asyncDispose for TypeScript with lib: 'esnext' #15038
  • docs(migrating_to_8): add note about removing findByIdAndRemove #15024 dragontaek-lee
Changelog

Sourced from mongoose's changelog.

8.8.2 / 2024-11-18

  • fix(model): handle array filters when casting bulkWrite #15036 #14978
  • fix(model): make diffIndexes() avoid trying to drop default timeseries collection index #15035 #14984
  • fix: save execution stack in query as string #15039 durran
  • types(cursor): correct asyncIterator and asyncDispose for TypeScript with lib: 'esnext' #15038
  • docs(migrating_to_8): add note about removing findByIdAndRemove #15024 dragontaek-lee
Commits
  • b34aba6 chore: release 8.8.2
  • f450083 docs(migrating_to_8): add note about removing findByIdAndRemove
  • 445a76d Merge pull request #15038 from Automattic/vkarpov15/gh-14976
  • 93dad98 Merge pull request #15039 from durran/error-stack
  • 85c538d fix: save execution stack in query as string
  • 48407d9 types(cursor): correct asyncIterator and asyncDispose for TypeScript with...
  • 7aba322 Merge pull request #15036 from Automattic/vkarpov15/gh-14978
  • c9cbea0 test: add test showing that bulkWrite strips out keys that arent in schema by...
  • 98edf8b Update test/model.test.js
  • 8799da2 Merge pull request #15035 from Automattic/vkarpov15/gh-14984
  • Additional commits viewable in compare view

Updates pg from 8.11.3 to 8.13.1

Changelog

Sourced from pg's changelog.

All major and minor releases are briefly explained below.

For richer information consult the commit log on github with referenced pull requests.

We do not include break-fix version release in this file.

[email protected]

[email protected]

[email protected]

  • Emit release event when client is returned to the pool.

[email protected]

[email protected]

[email protected]

[email protected]

  • Add optional config to pool to allow process to exit if pool is idle.

[email protected]

[email protected]

... (truncated)

Commits

Updates @types/pg from 8.10.2 to 8.11.10

Commits

Updates @vercel/postgres from 0.9.0 to 0.10.0

Release notes

Sourced from @​vercel/postgres's releases.

@​vercel/postgres-kysely@​0.10.0

Minor Changes

  • a2a4757: Removes utf-8-validate dependency and sets minimum Node.js version to 18.14

Patch Changes

  • Updated dependencies [a2a4757]
    • @​vercel/postgres@​0.10.0

@​vercel/postgres@​0.10.0

Minor Changes

  • a2a4757: Removes utf-8-validate dependency and sets minimum Node.js version to 18.14
Changelog

Sourced from @​vercel/postgres's changelog.

0.10.0

Minor Changes

  • a2a4757: Removes utf-8-validate dependency and sets minimum Node.js version to 18.14
Commits
  • 8804352 Version Packages (#745)
  • a2a4757 feat(postgres): remove utf-8-validate dependency and update minimum node vers...
  • 2aa04dc chore(deps): update dependency @​types/ws to v8.5.12 (#737)
  • 31c2b68 chore(deps): update dependency @​types/node to v20.14.15 (#736)
  • 0e8ede4 chore(deps): update dependency tsup to v8.1.0 (#716)
  • 7405fff chore(deps): update dependency prettier to v3.3.2 (#715)
  • c929a88 chore(deps): update dependency @​types/node to v20.14.9 (#539)
  • f6f99da chore(deps): update dependency ts-jest to v29.1.5 (#704)
  • 8511ebf chore(deps): update dependency @​changesets/cli to v2.27.7 (#684)
  • See full diff in compare view

Updates nodemailer from 6.9.10 to 6.9.16

Release notes

Sourced from nodemailer's releases.

v6.9.16

6.9.16 (2024-10-28)

Bug Fixes

  • addressparser: Correctly detect if user local part is attached to domain part (f2096c5)

v6.9.15

6.9.15 (2024-08-08)

Bug Fixes

v6.9.14

6.9.14 (2024-06-19)

Bug Fixes

  • api: Added support for Ethereal authentication (56b2205)
  • services.json: Add Email Services Provider Feishu Mail (CN) (#1648) (e9e9ecc)
  • services.json: update Mailtrap host and port in well known (#1652) (fc2c9ea)
  • well-known-services: Add Loopia in well known services (#1655) (21a28a1)

v6.9.13

6.9.13 (2024-03-20)

Bug Fixes

  • tls: Ensure servername for SMTP (d66fdd3)

v6.9.12

6.9.12 (2024-03-08)

Bug Fixes

  • message-generation: Escape single quote in address names (4ae5fad)

v6.9.11

6.9.11 (2024-02-29)

Bug Fixes

... (truncated)

Changelog

Sourced from nodemailer's changelog.

6.9.16 (2024-10-28)

Bug Fixes

  • addressparser: Correctly detect if user local part is attached to domain part (f2096c5)

6.9.15 (2024-08-08)

Bug Fixes

6.9.14 (2024-06-19)

Bug Fixes

  • api: Added support for Ethereal authentication (56b2205)
  • services.json: Add Email Services Provider Feishu Mail (CN) (#1648) (e9e9ecc)
  • services.json: update Mailtrap host and port in well known (#1652) (fc2c9ea)
  • well-known-services: Add Loopia in well known services (#1655) (21a28a1)

6.9.13 (2024-03-20)

Bug Fixes

  • tls: Ensure servername for SMTP (d66fdd3)

6.9.12 (2024-03-08)

Bug Fixes

  • message-generation: Escape single quote in address names (4ae5fad)

6.9.11 (2024-02-29)

Bug Fixes

  • headers: Ensure that Content-type is the bottom header (c7cf97e)
Commits
  • e70b9c1 chore(master): release 6.9.16 [skip-ci] (#1688)
  • bcf55be Bumped deps
  • f2096c5 fix(addressparser): Correctly detect if user local part is attached to domain...
  • 81de9eb chore(master): release 6.9.15 [skip-ci] (#1668)
  • 79b8293 fix(mime): Added GeoJSON closes #1637 (#1665)
  • baa28f6 fix: Fix memory leak (#1667)
  • f9a92ed chore(master): release 6.9.14 [skip-ci] (#1649)
  • 56b2205 fix(api): Added support for Ethereal authentication
  • 21a28a1 fix(well-known-services): Add Loopia in well known services (#1655)
  • fc2c9ea fix(services.json): update Mailtrap host and port in well known (#1652)
  • Additional commits viewable in compare view

Updates @types/nodemailer from 6.4.14 to 6.4.17

Commits

Updates @eslint-react/eslint-plugin from 1.16.1 to 1.17.1

Release notes

Sourced from @​eslint-react/eslint-plugin's releases.

v1.17.1

What's Changed

✨ New

  • feat(shared): add version detection logic;

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v1.17.0...v1.17.1

v1.17.0

What's Changed

✨ New

  • feat(plugins/naming-convention): add 'ignoreFilesWithoutCode' option to 'filename-extension'

🐞 Fixes

  • refactor(plugins/x): xhtml entities should be allowed inside of 'no-useless-fragment', closes: #850
  • fix(plugins/eslint-plugin): unexpected top-level property 'name' in legacy presets, closes #863
  • fix(plugins/eslint-plugin): rules list in 'debug' and 'disable-debug' presets

Full Changelog: Rel1cx/eslint-react@v1.16.2...v1.17.0

v1.16.2

What's Changed

🐞 Fixes

🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v1.16.1...v1.16.2

Changelog

Sourced from @​eslint-react/eslint-plugin's changelog.

v1.17.1 (Fri 22 Nov 2024)

✨ New

  • feat(shared): add version detection logic;

🐞 Fixes

v1.17.0 (Thu 21 Nov 2024)

✨ New

  • feat(plugins/naming-convention): add 'ignoreFilesWithoutCode' option to 'filename-extension'

🐞 Fixes

  • refactor(plugins/x): xhtml entities should be allowed inside of 'no-useless-fragment', closes: #850
  • fix(plugins/eslint-plugin): unexpected top-level property 'name' in legacy presets, closes #863
  • fix(plugins/eslint-plugin): rules list in 'debug' and 'disable-debug' presets

v1.16.2 (Wed 20 Nov 2024)

🐞 Fixes

🪄 Improvements

Commits

Updates @eslint/js from 9.14.0 to 9.15.0

Release notes

Sourced from @​eslint/js's releases.

v9.15.0

Features

  • 01557ce feat: Implement Language#normalizeLanguageOptions() (#19104) (Nicholas C. Zakas)
  • 2edc0e2 feat: add meta.defaultOptions (#17656) (Josh Goldberg ✨)
  • bdec50e feat: fix no-useless-computed-key false negative with __proto__ (#19123) (Milos Djermanovic)
  • 3087c9e feat: add meta object to @eslint/js plugin (#19095) (Francesco Trotta)

Bug Fixes

  • fd33f13 fix: update types for no-restricted-imports rule (#19060) (Nitin Kumar)
  • bd35098 fix: switch away from Node.js node:assert and AssertionError (#19082) (Josh Goldberg ✨)
  • 9db5b15 fix: unsafe report for no-lonely-if (#19087) (Abraham Guo)
  • 68fa497 fix: ignore files on a different drive on Windows (#19069) (Francesco Trotta)
  • 4ce625a fix: upgrade @​humanwhocodes/retry@​0.4.1 to avoid debug logs (#19102) (Milos Djermanovic)

Documentation

  • d927920 docs: fix styles in no-js mode (#18916) (Tanuj Kanti)
  • 09bc2a8 docs: Update README (GitHub Actions Bot)
  • 39089c8 docs: add no-useless-computed-key examples with object patterns (#19109) (Milos Djermanovic)
  • 895c60f docs: add missing messageId property and suggestion properties (#19122) (fnx)
  • 298625e docs: Change CLI -c to use flat config (#19103) (Nicholas C. Zakas)
  • 522d8a3 docs: add deprecation on indent, quotes and semi rule types (#19090) (Marco Pasqualetti)

Chores

  • 2967d91 chore: upgrade @​eslint/js@​9.15.0 (#19133) (Milos Djermanovic)
  • b441bee chore: package.json update for @​eslint/js release (Jenkins)
  • 7d6bf4a chore: upgrade @​eslint/core@​0.9.0 (#19131) (Milos Djermanovic)
  • 902e707 chore: upgrade @​eslint/plugin-kit@​0.2.3 (#19130) (Milos Djermanovic)
  • 5ff6c1d chore: bump cross-spawn (#19125) (Ian Bobinac)
  • cceccc7 chore: update dependency @​eslint/json to ^0.6.0 (#19117) (renovate[bot])
  • 0da3f73 chore: update algolia referrer (#19114) (Strek)
  • 4f08332 ci: unpin trunk-io/trunk-action (#19108) (Francesco Trotta)
  • 6b75683 perf: optimize text-table by replacing regex with trimEnd (#19061) (Nitin Kumar)
Changelog

Sourced from @​eslint/js's changelog.

v9.15.0 - November 15, 2024

  • 2967d91 chore: upgrade @​eslint/js@​9.15.0 (#19133) (Milos Djermanovic)
  • b441bee chore: package.json update for @​eslint/js release (Jenkins)
  • 7d6bf4a chore: upgrade @​eslint/core@​0.9.0 (#19131) (Milos Djermanovic)
  • 01557ce feat: Implement Language#normalizeLanguageOptions() (#19104) (Nicholas C. Zakas)
  • 902e707 chore: upgrade @​eslint/plugin-kit@​0.2.3 (#19130) (Milos Djermanovic)
  • 2edc0e2 feat: add meta.defaultOptions (#17656) (Josh Goldberg ✨)
  • fd33f13 fix: update types for no-restricted-imports rule (#19060) (Nitin Kumar)
  • 5ff6c1d chore: bump cross-spawn (#19125) (Ian Bobinac)
  • d927920 docs: fix styles in no-js mode (#18916) (Tanuj Kanti)
  • bdec50e feat: fix no-useless-computed-key false negative with __proto__ (#19123) (Milos Djermanovic)
  • 09bc2a8 docs: Update README (GitHub Actions Bot)
  • bd35098 fix: switch away from Node.js node:assert and AssertionError (#19082) (Josh Goldberg ✨)
  • 39089c8 docs: add no-useless-computed-key examples with object patterns (#19109) (Milos Djermanovic)

…9 updates

Bumps the production-deps group with 39 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `8.37.1` | `8.40.0` |
| [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) | `0.7.0` | `0.8.2` |
| [@swc/core](https://github.com/swc-project/swc) | `1.7.10` | `1.9.3` |
| [mongoose](https://github.com/Automattic/mongoose) | `8.8.1` | `8.8.2` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.11.3` | `8.13.1` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.10.2` | `8.11.10` |
| [@vercel/postgres](https://github.com/vercel/storage/tree/HEAD/packages/postgres) | `0.9.0` | `0.10.0` |
| [nodemailer](https://github.com/nodemailer/nodemailer) | `6.9.10` | `6.9.16` |
| [@types/nodemailer](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/nodemailer) | `6.4.14` | `6.4.17` |
| [@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin) | `1.16.1` | `1.17.1` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.14.0` | `9.15.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.14.0` | `8.15.0` |
| [eslint](https://github.com/eslint/eslint) | `9.14.0` | `9.15.0` |
| [eslint-plugin-import-x](https://github.com/un-ts/eslint-plugin-import-x) | `4.4.2` | `4.4.3` |
| [eslint-plugin-jest-dom](https://github.com/testing-library/eslint-plugin-jest-dom) | `5.4.0` | `5.5.0` |
| [eslint-plugin-regexp](https://github.com/ota-meshi/eslint-plugin-regexp) | `2.6.0` | `2.7.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.14.0` | `8.15.0` |
| [graphql-scalars](https://github.com/Urigo/graphql-scalars) | `1.22.2` | `1.23.0` |
| [graphql-http](https://github.com/graphql/graphql-http) | `1.22.2` | `1.22.3` |
| [@dnd-kit/core](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/core) | `6.0.8` | `6.1.0` |
| [file-type](https://github.com/sindresorhus/file-type) | `19.3.0` | `19.6.0` |
| [react-diff-viewer-continued](https://github.com/aeolun/react-diff-viewer-continued) | `3.2.6` | `3.4.0` |
| [sass](https://github.com/sass/dart-sass) | `1.77.4` | `1.81.0` |
| [ci-info](https://github.com/watson/ci-info) | `4.0.0` | `4.1.0` |
| [@aws-sdk/client-cognito-identity](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cognito-identity) | `3.687.0` | `3.696.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.687.0` | `3.698.0` |
| [@aws-sdk/credential-providers](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/credential-providers) | `3.687.0` | `3.696.0` |
| [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage) | `3.687.0` | `3.698.0` |
| [@azure/storage-blob](https://github.com/Azure/azure-sdk-for-js) | `12.25.0` | `12.26.0` |
| [@vercel/blob](https://github.com/vercel/storage/tree/HEAD/packages/blob) | `0.22.3` | `0.26.0` |
| [@sentry/types](https://github.com/getsentry/sentry-javascript) | `8.37.1` | `8.40.0` |
| [acorn](https://github.com/acornjs/acorn) | `8.12.1` | `8.14.0` |
| [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `4.0.13` | `4.1.2` |
| [slate](https://github.com/ianstormtaylor/slate) | `0.91.4` | `0.110.2` |
| [slate-history](https://github.com/ianstormtaylor/slate) | `0.86.0` | `0.110.3` |
| [slate-hyperscript](https://github.com/ianstormtaylor/slate) | `0.81.3` | `0.100.0` |
| [slate-react](https://github.com/ianstormtaylor/slate) | `0.92.0` | `0.111.0` |
| [react-select](https://github.com/JedWatson/react-select) | `5.8.0` | `5.8.3` |
| [scheduler](https://github.com/facebook/react/tree/HEAD/packages/scheduler) | `0.0.0-experimental-3edc000d-20240926` | `0.23.2` |



Updates `@sentry/nextjs` from 8.37.1 to 8.40.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.37.1...8.40.0)

Updates `@clack/prompts` from 0.7.0 to 0.8.2
- [Release notes](https://github.com/natemoo-re/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/natemoo-re/clack/commits/@clack/[email protected]/packages/prompts)

Updates `@swc/core` from 1.7.10 to 1.9.3
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.7.10...v1.9.3)

Updates `mongoose` from 8.8.1 to 8.8.2
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](Automattic/mongoose@8.8.1...8.8.2)

Updates `pg` from 8.11.3 to 8.13.1
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/[email protected]/packages/pg)

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

Updates `@vercel/postgres` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/vercel/storage/releases)
- [Changelog](https://github.com/vercel/storage/blob/main/packages/postgres/CHANGELOG.md)
- [Commits](https://github.com/vercel/storage/commits/@vercel/[email protected]/packages/postgres)

Updates `nodemailer` from 6.9.10 to 6.9.16
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.9.10...v6.9.16)

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

Updates `@eslint-react/eslint-plugin` from 1.16.1 to 1.17.1
- [Release notes](https://github.com/Rel1cx/eslint-react/releases)
- [Changelog](https://github.com/Rel1cx/eslint-react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Rel1cx/eslint-react/commits/v1.17.1/packages/plugins/eslint-plugin)

Updates `@eslint/js` from 9.14.0 to 9.15.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.15.0/packages/js)

Updates `@typescript-eslint/parser` from 8.14.0 to 8.15.0
- [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/v8.15.0/packages/parser)

Updates `eslint` from 9.14.0 to 9.15.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.14.0...v9.15.0)

Updates `eslint-plugin-import-x` from 4.4.2 to 4.4.3
- [Release notes](https://github.com/un-ts/eslint-plugin-import-x/releases)
- [Changelog](https://github.com/un-ts/eslint-plugin-import-x/blob/master/CHANGELOG.md)
- [Commits](un-ts/eslint-plugin-import-x@v4.4.2...v4.4.3)

Updates `eslint-plugin-jest-dom` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/testing-library/eslint-plugin-jest-dom/releases)
- [Commits](testing-library/eslint-plugin-jest-dom@v5.4.0...v5.5.0)

Updates `eslint-plugin-regexp` from 2.6.0 to 2.7.0
- [Release notes](https://github.com/ota-meshi/eslint-plugin-regexp/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-regexp@v2.6.0...v2.7.0)

Updates `typescript-eslint` from 8.14.0 to 8.15.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.15.0/packages/typescript-eslint)

Updates `graphql-scalars` from 1.22.2 to 1.23.0
- [Release notes](https://github.com/Urigo/graphql-scalars/releases)
- [Changelog](https://github.com/Urigo/graphql-scalars/blob/master/CHANGELOG.md)
- [Commits](Urigo/graphql-scalars@v1.22.2...v1.23.0)

Updates `graphql-http` from 1.22.2 to 1.22.3
- [Release notes](https://github.com/graphql/graphql-http/releases)
- [Changelog](https://github.com/graphql/graphql-http/blob/main/CHANGELOG.md)
- [Commits](graphql/graphql-http@v1.22.2...v1.22.3)

Updates `@dnd-kit/core` from 6.0.8 to 6.1.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/[email protected]/packages/core)

Updates `file-type` from 19.3.0 to 19.6.0
- [Release notes](https://github.com/sindresorhus/file-type/releases)
- [Commits](sindresorhus/file-type@v19.3.0...v19.6.0)

Updates `react-diff-viewer-continued` from 3.2.6 to 3.4.0
- [Release notes](https://github.com/aeolun/react-diff-viewer-continued/releases)
- [Changelog](https://github.com/Aeolun/react-diff-viewer-continued/blob/v3.4.0/CHANGELOG.md)
- [Commits](Aeolun/react-diff-viewer-continued@v3.2.6...v3.4.0)

Updates `sass` from 1.77.4 to 1.81.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.77.4...1.81.0)

Updates `ci-info` from 4.0.0 to 4.1.0
- [Release notes](https://github.com/watson/ci-info/releases)
- [Changelog](https://github.com/watson/ci-info/blob/master/CHANGELOG.md)
- [Commits](watson/ci-info@v4.0.0...v4.1.0)

Updates `@aws-sdk/client-cognito-identity` from 3.687.0 to 3.696.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-cognito-identity/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.696.0/clients/client-cognito-identity)

Updates `@aws-sdk/client-s3` from 3.687.0 to 3.698.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.698.0/clients/client-s3)

Updates `@aws-sdk/credential-providers` from 3.687.0 to 3.696.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-providers/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.696.0/packages/credential-providers)

Updates `@aws-sdk/lib-storage` from 3.687.0 to 3.698.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-storage/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.698.0/lib/lib-storage)

Updates `@azure/storage-blob` from 12.25.0 to 12.26.0
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/storage-blob_12.25.0...@azure/storage-blob_12.26.0)

Updates `@vercel/blob` from 0.22.3 to 0.26.0
- [Release notes](https://github.com/vercel/storage/releases)
- [Changelog](https://github.com/vercel/storage/blob/main/packages/blob/CHANGELOG.md)
- [Commits](https://github.com/vercel/storage/commits/@vercel/[email protected]/packages/blob)

Updates `@sentry/types` from 8.37.1 to 8.40.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.37.1...8.40.0)

Updates `acorn` from 8.12.1 to 8.14.0
- [Commits](acornjs/acorn@8.12.1...8.14.0)

Updates `react-error-boundary` from 4.0.13 to 4.1.2
- [Release notes](https://github.com/bvaughn/react-error-boundary/releases)
- [Commits](bvaughn/react-error-boundary@4.0.13...4.1.2)

Updates `slate` from 0.91.4 to 0.110.2
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/[email protected]@0.110.2)

Updates `slate-history` from 0.86.0 to 0.110.3
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/[email protected]@0.110.3)

Updates `slate-hyperscript` from 0.81.3 to 0.100.0
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/commits/[email protected])

Updates `slate-react` from 0.92.0 to 0.111.0
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/[email protected]@0.111.0)

Updates `react-select` from 5.8.0 to 5.8.3
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/JedWatson/react-select/compare/[email protected]@5.8.3)

Updates `scheduler` from 0.0.0-experimental-3edc000d-20240926 to 0.23.2
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/scheduler)

---
updated-dependencies:
- dependency-name: "@sentry/nextjs"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@clack/prompts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@swc/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: mongoose
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-deps
- dependency-name: pg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@types/pg"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@vercel/postgres"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-deps
- dependency-name: "@types/nodemailer"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-deps
- dependency-name: "@eslint-react/eslint-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@eslint/js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: eslint-plugin-import-x
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-deps
- dependency-name: eslint-plugin-jest-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: eslint-plugin-regexp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: typescript-eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: graphql-scalars
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: graphql-http
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-deps
- dependency-name: "@dnd-kit/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: file-type
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: react-diff-viewer-continued
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: ci-info
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@aws-sdk/client-cognito-identity"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@aws-sdk/client-s3"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@aws-sdk/credential-providers"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@aws-sdk/lib-storage"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@azure/storage-blob"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@vercel/blob"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@sentry/types"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: acorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: react-error-boundary
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: slate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: slate-history
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: slate-hyperscript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: slate-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: react-select
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-deps
- dependency-name: scheduler
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
created-by: Contributor dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants