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 backend group across 1 directory with 16 updates #199

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 Aug 5, 2024

Bumps the backend group with 15 updates in the /backend directory:

Package From To
@sentry/cli 2.31.2 2.33.1
@sentry/node 8.0.0-rc.2 8.22.0
@supabase/ssr 0.3.0 0.4.0
fastify 4.27.0 4.28.1
soundcloud.ts 0.5.2 0.5.3
supabase 1.165.0 1.187.10
@types/node 20.12.11 22.1.0
@typescript-eslint/eslint-plugin 6.21.0 8.0.0
@typescript-eslint/parser 6.21.0 8.0.0
eslint 8.57.0 9.8.0
eslint-plugin-n 16.6.2 17.10.1
eslint-plugin-promise 6.1.1 7.0.0
nodemon 3.1.0 3.1.4
pino-pretty 11.0.0 11.2.2
typescript 5.4.5 5.5.4

Updates @sentry/cli from 2.31.2 to 2.33.1

Release notes

Sourced from @​sentry/cli's releases.

2.33.1

Security fix

This release contains a fix for a bug where auth tokens would, under the following circumstances, be logged to stdout:

  • The auth token was passed as a command line argument to Sentry CLI (via --auth-token)
  • The log level was set to info or debug
    • The default log level is warn, so users using the default log level were unaffected by this bug

We now redact the --auth-token argument and anything else that looks like it might be an auth token when logging the arguments that the Sentry CLI was called with (see #2115 and #2118 for details).

Other fixes & improvements

2.33.0

Various fixes & improvements

2.32.2

Various fixes & improvements

2.32.1

Release performed for technical reasons. This release is identical to 2.32.0.

2.32.0

Various fixes & improvements

Changelog

Sourced from @​sentry/cli's changelog.

2.33.1

Security fix

This release contains a fix for a bug where auth tokens would, under the following circumstances, be logged to stdout:

  • The auth token was passed as a command line argument to Sentry CLI (via --auth-token)
  • The log level was set to info or debug
    • The default log level is warn, so users using the default log level were unaffected by this bug

We now redact the --auth-token argument and anything else that looks like it might be an auth token when logging the arguments that the Sentry CLI was called with (see #2115 and #2118 for details).

Other fixes & improvements

2.33.0

Various fixes & improvements

2.32.2

Various fixes & improvements

2.32.1

Release performed for technical reasons. This release is identical to 2.32.0.

2.32.0

Various fixes & improvements

Commits
  • 5aaf7c1 Update CHANGELOG.md
  • eac9527 release: 2.33.1
  • acb5700 meta: Revert upload-artifact bump (#2110) (#2119)
  • 5c1ac1f fix: Improve token redaction in CLI arg logging
  • 8b89630 ref(token): Use secrecy crate to store auth token (#2116)
  • 3d05326 test(tokens): Add test to ensure tokens redacted
  • 2665d8a fix: Redact auth tokens when logging CLI args
  • 61a3294 test: Delete apparently-unnecessary test
  • 8ce98a0 ref(token): Separate validation warning from parsing
  • 8343763 fix: Improve "project not found" message (#2112)
  • Additional commits viewable in compare view

Updates @sentry/node from 8.0.0-rc.2 to 8.22.0

Release notes

Sourced from @​sentry/node's releases.

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

// functions/_middleware.js
import * as Sentry from '@sentry/cloudflare';
export const onRequest = Sentry.sentryPagesPlugin({
dsn: PUBLIC_DSN,
// Set tracesSampleRate to 1.0 to capture 100% of spans for tracing.
tracesSampleRate: 1.0,
});

Other Changes

  • feat(meta-sdks): Remove runtime tags (#13105)
  • feat(nestjs): Automatic instrumentation of nestjs guards (#13129)
  • feat(nestjs): Filter all HttpExceptions (#13120)
  • feat(replay): Capture exception when internal_sdk_error client report happens (#13072)
  • fix: Use globalThis for code injection (#13132)

Bundle size 📦

Path Size
@​sentry/browser 22.45 KB
@​sentry/browser (incl. Tracing) 34.22 KB
@​sentry/browser (incl. Tracing, Replay) 70.28 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.62 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 74.68 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 87.26 KB
@​sentry/browser (incl. Tracing, Replay, Feedback, metrics) 89.11 KB
@​sentry/browser (incl. metrics) 26.75 KB
@​sentry/browser (incl. Feedback) 39.37 KB
@​sentry/browser (incl. sendFeedback) 27.06 KB
@​sentry/browser (incl. FeedbackAsync) 31.7 KB
@​sentry/react 25.22 KB
@​sentry/react (incl. Tracing) 37.22 KB
@​sentry/vue 26.6 KB
@​sentry/vue (incl. Tracing) 36.06 KB
@​sentry/svelte 22.58 KB
CDN Bundle 23.64 KB

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.22.0

Important Changes

  • feat(cloudflare): Add plugin for cloudflare pages (#13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

// functions/_middleware.js
import * as Sentry from '@sentry/cloudflare';
export const onRequest = Sentry.sentryPagesPlugin({
dsn: PUBLIC_DSN,
// Set tracesSampleRate to 1.0 to capture 100% of spans for tracing.
tracesSampleRate: 1.0,
});

Other Changes

  • feat(meta-sdks): Remove runtime tags (#13105)
  • feat(nestjs): Automatic instrumentation of nestjs guards (#13129)
  • feat(nestjs): Filter all HttpExceptions (#13120)
  • feat(replay): Capture exception when internal_sdk_error client report happens (#13072)
  • fix: Use globalThis for code injection (#13132)

8.21.0

Important Changes

  • Alpha release of Official Cloudflare SDK
    • feat(cloudflare): Add withSentry method (#13025)
    • feat(cloudflare): Add cloudflare sdk scaffolding (#12953)
    • feat(cloudflare): Add basic cloudflare package and tests (#12861)

This release contains the alpha version of @sentry/cloudflare, our SDK for the Cloudflare Workers JavaScript Runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

Please note that only Cloudflare Workers are tested and supported - official Cloudflare Pages support will come in an upcoming release.

Other Changes

  • feat(feedback): Make cropped screenshot area draggable (#13071)

... (truncated)

Commits

Updates @supabase/ssr from 0.3.0 to 0.4.0

Release notes

Sourced from @​supabase/ssr's releases.

v0.4.0

0.4.0 (2024-06-24)

Features

  • full rewrite using getAll and setAll cookie methods (#1) (b6ae192)

Bug Fixes

  • allow use of createBrowserClient without window present (#20) (27d868d)
  • deprecate parse, serialize exports for more useful functions (#14) (0b5f881)
  • fix createBrowserClient deprecation tsdoc (#17) (1df70ad)

v0.4.0-rc.6

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.5

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.4

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.3

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.2

This is a release candidate. See release-please PR #12 for context.

Changelog

Sourced from @​supabase/ssr's changelog.

0.4.0 (2024-06-24)

Features

  • full rewrite using getAll and setAll cookie methods (#1) (b6ae192)

Bug Fixes

  • allow use of createBrowserClient without window present (#20) (27d868d)
  • deprecate parse, serialize exports for more useful functions (#14) (0b5f881)
  • fix createBrowserClient deprecation tsdoc (#17) (1df70ad)
Commits
  • 8dae532 chore(main): release 0.4.0 (#12)
  • 27d868d fix: allow use of createBrowserClient without window present (#20)
  • 1df70ad fix: fix createBrowserClient deprecation tsdoc (#17)
  • 0b5f881 fix: deprecate parse, serialize exports for more useful functions (#14)
  • d01c628 ci: fix doubling of rc version identifier (#13)
  • b6ae192 feat: full rewrite using getAll and setAll cookie methods (#1)
  • b115940 ci: add release please action (#10)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by stdim, a new releaser for @​supabase/ssr since your current version.


Updates @supabase/supabase-js from 2.43.1 to 2.45.0

Release notes

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

v2.45.0

2.45.0 (2024-07-29)

Features

v2.44.4

2.44.4 (2024-07-15)

Bug Fixes

v2.44.3

2.44.3 (2024-07-08)

Bug Fixes

  • imports not working w/ Metro bundler (564df44)

v2.44.2

2.44.2 (2024-06-28)

Bug Fixes

v2.44.1

2.44.1 (2024-06-27)

Bug Fixes

  • postgrest-js esm typings (5d92d48)

v2.44.0

2.44.0 (2024-06-25)

Features

v2.43.6

2.43.6 (2024-06-25)

... (truncated)

Commits

Updates fastify from 4.27.0 to 4.28.1

Release notes

Sourced from fastify's releases.

v4.28.1

What's Changed

Full Changelog: fastify/fastify@v4.28.0...v4.28.1

v4.28.0

What's Changed

Full Changelog: fastify/fastify@v4.27.0...v4.28.0

Commits

Updates soundcloud.ts from 0.5.2 to 0.5.3

Commits

Updates supabase from 1.165.0 to 1.187.10

Release notes

Sourced from supabase's releases.

v1.187.10

Changelog

Bug fixes

  • a923832e9028ae368b670795ca47e9510cafc12e: fix: ignore missing table when listing remote migrations (#2573) (@​sweatybridge)

Others

  • 1dedb59dd27c887aa660e834d410eb1b9eb61502: chore: update openapi spec and codegen (#2571) (@​sweatybridge)

v1.187.9

Changelog

Bug fixes

  • 06133db0c0938cc226e9156f42acf16d19dc5158: fix: Bump studio to the latest image version (#2572) (@​ivasilov)

Others

  • 53d0330babd772e012234169cfa0be74e4290fb9: chore(deps): bump tar from 7.4.2 to 7.4.3 (#2568) (@​dependabot[bot])

v1.187.8

Changelog

Bug fixes

  • d630cf83149635618dd0568110f43795751eec8a: fix: write functions entrypoint to predefined path (@​sweatybridge)

Others

  • 68ca923092a3c9e30534cd16b6ffa97b50b41fb8: chore: minor style changes (@​sweatybridge)

v1.187.7

Changelog

Bug fixes

  • af171b6ac3147b34f785e5378fd06dea40290ff5: fix: print config line diff for clarity (@​sweatybridge)
  • d1012f4532a35537dffdf078f2cb3418915682f5: fix: remove unmodifiable api configs (@​sweatybridge)

Others

  • 3d925f190b4b3f15aa45e4a2bfdd4dd3e46903c9: chore: improve test cleanup (@​sweatybridge)

v1.187.6

Changelog

Bug fixes

  • 1179ca6599ccdf497153449208b554156ae77744: fix(db): bump postgres version for new wrappers (#2555) (@​sweatybridge)
  • d4fc8469a4dbc62e84eeafefc05954e2cde308d7: fix(studio): bump to latest version (#2550) (@​sweatybridge)

Others

  • 75c359d79b88e2f83bb0847ce7c37f303afb5986: chore(deps): bump tar from 7.4.1 to 7.4.2 (#2554) (@​dependabot[bot])
  • dd2b65fdcb1f8c8c81110549dd3cc76e1a0400e7: chore: add code examples for using supabase pkg (#2556) (@​sweatybridge)

v1.187.5

Changelog

Bug fixes

  • 821da8fec7c43073d0b41e497deaf4a9cd445d4a: fix: use http scheme for vector docker host (#2545) (@​sweatybridge)

v1.187.4

Changelog

Bug fixes

  • 4c150b6b11539bb1b89dfd1d210692ec58e93113: fix: pin bubbletea to avoid messing up line breaks (@​sweatybridge)

Others

  • 084d99b09a255924db913b151369bb47bba8cf76: chore(deps): bump tar from 7.4.0 to 7.4.1 (#2542) (@​dependabot[bot])
  • 3f88398c18c4c8e5bff6336b570e2cc975c620ca: chore: update dependabot to ignore 0 major version (@​sweatybridge)

... (truncated)

Commits
  • a923832 fix: ignore missing table when listing remote migrations (#2573)
  • 1dedb59 chore: update openapi spec and codegen (#2571)
  • 06133db fix: Bump studio to the latest image version (#2572)
  • 53d0330 chore(deps): bump tar from 7.4.2 to 7.4.3 (#2568)
  • d630cf8 fix: write functions entrypoint to predefined path
  • 68ca923 chore: minor style changes
  • 3d925f1 chore: improve test cleanup
  • d1012f4 fix: remove unmodifiable api configs
  • af171b6 fix: print config line diff for clarity
  • dd2b65f chore: add code examples for using supabase pkg (#2556)
  • Additional commits viewable in compare view

Updates @types/node from 20.12.11 to 22.1.0

Commits

Updates @typescript-eslint/eslint-plugin from 6.21.0 to 8.0.0

Release notes

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

v8.0.0

8.0.0 (2024-07-31)

🚀 Features

  • stricter parent types for the AST (#9560)
  • speed up non-type-aware linting with project service (#8322)
  • v8 integration branch (#9165)
  • ast-spec: remove deprecated type params (#8933)
  • eslint-plugin: remove formatting/layout rules (#8833)
  • eslint-plugin: [prefer-nullish-coalescing] change ignoreConditionalTests default to true (#8872)
  • eslint-plugin: deprecate no-loss-of-precision extension rule (#8832)
  • eslint-plugin: [no-unused-vars] align catch behavior to ESLint 9 (#8971)
  • eslint-plugin: split no-empty-object-type out from ban-types and no-empty-interfaces (#8977)
  • eslint-plugin: remove deprecated no-throw-literal rule (#9092)
  • eslint-plugin: apply initial config changes for v8 (#9079)
  • eslint-plugin: remove no-useless-template-literals (#9207)
  • eslint-plugin: [no-floating-promises] add 'allowForKnownSafeCalls' option (#9234)
  • eslint-plugin: replace ban-types with no-restricted-types, no-unsafe-function-type, no-wrapper-object-types (#9102)
  • eslint-plugin: [no-unused-vars] add reportUnusedIgnorePattern option (#9324)
  • eslint-plugin: [no-unused-vars] support ignoreClassWithStaticInitBlock (#9325)
  • eslint-plugin: [no-unused-vars] handle comma operator for assignments, treat for-of the same as for-in (#9326)
  • eslint-plugin: [no-unused-vars] report if var used only in typeof (#9330)
  • eslint-plugin: [no-floating-promises] disable checkThenables by default for v8 (#9559)
  • eslint-plugin: [return-await] add return-await to strict-type-checked preset (#9604)
  • eslint-plugin: [no-unnecessary-type-parameters] promote to strict (#9662)
  • parser: always enable comment, loc, range, tokens (#8617)
  • rule-tester: support multipass fixes (#8883)
  • rule-tester: switched to flat config (#9603)
  • type-utils: remove getTokenAtPosition (#9444)
  • type-utils: support intersection types in TypeOrValueSpecifier (#9633)
  • typescript-estree: remove slow deprecated and isolated programs (#8834)
  • typescript-estree: split TSMappedType typeParameter into constraint and key (#7065)
  • typescript-estree: rename automaticSingleRunInference to disallowAutomaticSingleRunInference (#8922)
  • typescript-estree: stabilize EXPERIMENTAL_useProjectService as projectService (#9084)
  • typescript-estree: remove EXPERIMENTAL_useSourceOfProjectReferenceRedirect (#9104)
  • typescript-estree: also remove projectService in withoutProjectParserOptions (#9287)
  • typescript-estree: exposes ProjectService logs through the plugin (#9337)
  • utils: add Linter configType constructor option (#8999)
  • utils: swap LegacyESLint out for FlatESLint as ESLint export (#8972)
  • utils: remove deprecated context helpers (#9000)
  • utils: allow specifying additional rule meta.docs in RuleCreator (#9025)

🩹 Fixes

  • correct eslint-plugin's peerDependency on parser@8 (#9089)
  • bring back in allowdefaultprojectforfiles rename (7dfceeeea)
  • disable projectService in disabled-type-checked shared config (#9460)
  • eslint-plugin: include alpha pre-releases in parser peer dependency (#9099)

... (truncated)

Changelog

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

8.0.0 (2024-07-31)

🚀 Features

  • stricter parent types for the AST

  • typescript-estree: split TSMappedType typeParameter into constraint and key

  • eslint-plugin: remove formatting/layout rules

  • eslint-plugin: [prefer-nullish-coalescing] change ignoreConditionalTests default to true

  • eslint-plugin: deprecate no-loss-of-precision extension rule

  • eslint-plugin: [no-unused-vars] align catch behavior to ESLint 9

  • typescript-estree: rename automaticSingleRunInference to disallowAutomaticSingleRunInference

  • utils: allow specifying additional rule meta.docs in RuleCreator

  • eslint-plugin: split no-empty-object-type out from ban-types and no-empty-interfaces

  • rule-tester: support multipass fixes

  • typescript-estree: stabilize EXPERIMENTAL_useProjectService as projectService

  • eslint-plugin: remove deprecated no-throw-literal rule

  • eslint-plugin: apply initial config changes for v8

  • eslint-plugin: remove no-useless-template-literals

  • eslint-plugin: [no-floating-promises] add 'allowForKnownSafeCalls' option

  • eslint-plugin: replace ban-types with no-restricted-types, no-unsafe-function-type, no-wrapper-object-types

  • eslint-plugin: [no-unused-vars] add reportUnusedIgnorePattern option

  • eslint-plugin: [no-unused-vars] support ignoreClassWithStaticInitBlock

  • eslint-plugin: [no-unused-vars] handle comma operator for assignments, treat for-of the same as for-in

  • eslint-plugin: [no-unused-vars] report if var used only in typeof

  • eslint-plugin: [no-floating-promises] disable checkThenables by default for v8

  • rule-tester: switched to flat config

  • eslint-plugin: [no-unnecessary-type-parameters] promote to strict

... (truncated)

Commits
  • 1db993a chore(release): publish 8.0.0
  • ce09260 docs(eslint-plugin): [no-unnecessary-type-parameters] add admonition about ru...
  • b8274d3 fix(rule-tester): provide Linter a cwd in its constructor (#9678)
  • 1b0468e Merge branch 'main'
  • 838dd0c chore: use parserOptions.projectService internally (#9659)
  • 35cf3d2 chore(release): publish 7.18.0
  • 46a5709 docs: link no-duplicate-type-constituents and no-redundant-type-constituents ...
  • 9eec790 fix(eslint-plugin): [strict-boolean-expressions] support branded booleans (#9...
  • 9927a29 docs: add ast-spec, type-utils docs with docusaurus-plugin-typedoc (#9293)
  • 6cebdf6 feat(eslint-plugin): [no-unnecessary-type-parameters] promote to strict (#9662)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 6.21.0 to 8.0.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.0.0

8.0.0 (2024-07-31)

🚀 Features

  • stricter parent types for the AST (#9560)
  • speed up non-type-aware linting with project service (#8322)
  • v8 integration branch (#9165)
  • ast-spec: remove deprecated type params (#8933)
  • eslint-plugin: remove formatting/layout rules (#8833)
  • eslint-plugin: [prefer-nullish-coalescing] change ignoreConditionalTests default to true (#8872)
  • eslint-plugin: deprecate no-loss-of-precision extension rule (#8832)
  • eslint-plugin: [no-unused-vars] align catch behavior to ESLint 9 (#8971)
  • eslint-plugin: split no-empty-object-type out from ban-types and no-empty-interfaces (#8977)
  • eslint-plugin: remove deprecated no-throw-literal rule (#9092)
  • eslint-plugin: apply initial config changes for v8 (#9079)
  • eslint-plugin: remove no-useless-template-literals (#9207)
  • eslint-plugin: [no-floating-promises] add 'allowForKnownSafeCalls' option (#9234)
  • eslint-plugin: replace ban-types with no-restricted-types, no-unsafe-function-type, no-wrapper-object-types (#9102)
  • eslint-plugin: [no-unused-vars] add reportUnusedIgnorePattern option (#9324)
  • eslint-plugin: [no-unused-vars] support ignoreClassWithStaticInitBlock (#9325)
  • eslint-plugin: [no-unused-vars] handle comma operator for assignments, treat for-of the same as for-in (#9326)
  • eslint-plugin: [no-unused-vars] report if var used only in typeof (#9330)
  • eslint-plugin: [no-floating-promises] disable checkThenables by default for v8 (#9559)
  • eslint-plugin: [return-await] add return-await to strict-type-checked preset (#9604)
  • eslint-plugin: [no-unnecessary-type-parameters] promote to strict (#9662)
  • parser: always enable comment, loc, range, tokens (#8617)
  • rule-tester: support multipass fixes (#8883)
  • rule-tester: switched to f...

    Description has been truncated

Bumps the backend group with 15 updates in the /backend directory:

| Package | From | To |
| --- | --- | --- |
| [@sentry/cli](https://github.com/getsentry/sentry-cli) | `2.31.2` | `2.33.1` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `8.0.0-rc.2` | `8.22.0` |
| [@supabase/ssr](https://github.com/supabase/ssr) | `0.3.0` | `0.4.0` |
| [fastify](https://github.com/fastify/fastify) | `4.27.0` | `4.28.1` |
| [soundcloud.ts](https://github.com/Tenpi/soundcloud.ts) | `0.5.2` | `0.5.3` |
| [supabase](https://github.com/supabase/cli) | `1.165.0` | `1.187.10` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.11` | `22.1.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.21.0` | `8.0.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.21.0` | `8.0.0` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.8.0` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `16.6.2` | `17.10.1` |
| [eslint-plugin-promise](https://github.com/eslint-community/eslint-plugin-promise) | `6.1.1` | `7.0.0` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.0` | `3.1.4` |
| [pino-pretty](https://github.com/pinojs/pino-pretty) | `11.0.0` | `11.2.2` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.5` | `5.5.4` |



Updates `@sentry/cli` from 2.31.2 to 2.33.1
- [Release notes](https://github.com/getsentry/sentry-cli/releases)
- [Changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-cli@2.31.2...2.33.1)

Updates `@sentry/node` from 8.0.0-rc.2 to 8.22.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.0.0-rc.2...8.22.0)

Updates `@supabase/ssr` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/supabase/ssr/releases)
- [Changelog](https://github.com/supabase/ssr/blob/main/CHANGELOG.md)
- [Commits](supabase/ssr@v0.3.0...v0.4.0)

Updates `@supabase/supabase-js` from 2.43.1 to 2.45.0
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/RELEASE.md)
- [Commits](supabase/supabase-js@v2.43.1...v2.45.0)

Updates `fastify` from 4.27.0 to 4.28.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v4.27.0...v4.28.1)

Updates `soundcloud.ts` from 0.5.2 to 0.5.3
- [Commits](https://github.com/Tenpi/soundcloud.ts/commits)

Updates `supabase` from 1.165.0 to 1.187.10
- [Release notes](https://github.com/supabase/cli/releases)
- [Changelog](https://github.com/supabase/cli/blob/develop/.goreleaser.yml)
- [Commits](supabase/cli@v1.165.0...v1.187.10)

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

Updates `@typescript-eslint/eslint-plugin` from 6.21.0 to 8.0.0
- [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/v8.0.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.21.0 to 8.0.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.0.0/packages/parser)

Updates `eslint` from 8.57.0 to 9.8.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.8.0)

Updates `eslint-plugin-n` from 16.6.2 to 17.10.1
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@16.6.2...v17.10.1)

Updates `eslint-plugin-promise` from 6.1.1 to 7.0.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-promise/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-promise/blob/main/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-promise@v6.1.1...v7.0.0)

Updates `nodemon` from 3.1.0 to 3.1.4
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.0...v3.1.4)

Updates `pino-pretty` from 11.0.0 to 11.2.2
- [Release notes](https://github.com/pinojs/pino-pretty/releases)
- [Commits](pinojs/pino-pretty@v11.0.0...v11.2.2)

Updates `typescript` from 5.4.5 to 5.5.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.5...v5.5.4)

---
updated-dependencies:
- dependency-name: "@sentry/cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: "@supabase/ssr"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: "@supabase/supabase-js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: fastify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: soundcloud.ts
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend
- dependency-name: supabase
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: backend
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: backend
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: backend
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: backend
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: backend
- dependency-name: eslint-plugin-promise
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: backend
- dependency-name: nodemon
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: backend
- dependency-name: pino-pretty
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: backend
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 5, 2024
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants