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 #192

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

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

Package From To
@sentry/cli 2.31.2 2.32.1
@sentry/node 8.0.0-rc.2 8.13.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.178.2
@types/node 20.12.11 20.14.9
@typescript-eslint/eslint-plugin 6.21.0 7.14.1
@typescript-eslint/parser 6.21.0 7.14.1
eslint 8.57.0 9.6.0
eslint-plugin-n 16.6.2 17.9.0
eslint-plugin-promise 6.1.1 6.4.0
nodemon 3.1.0 3.1.4
pino-pretty 11.0.0 11.2.1
typescript 5.4.5 5.5.2

Updates @sentry/cli from 2.31.2 to 2.32.1

Release notes

Sourced from @​sentry/cli's releases.

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.32.1

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

2.32.0

Various fixes & improvements

Commits

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

Release notes

Sourced from @​sentry/node's releases.

8.13.0

Important Changes

  • feat(nestjs): Add Nest SDK This release adds a dedicated SDK for NestJS (@sentry/nestjs) in alpha state. The SDK is a drop-in replacement for the Sentry Node SDK (@sentry/node) supporting the same set of features. See the docs for how to use the SDK.

Other Changes

  • deps: Bump bundler plugins to 2.20.1 (#12641)
  • deps(nextjs): Remove react peer dep and allow rc (#12670)
  • feat: Update OTEL deps (#12635)
  • feat(deps): bump @​prisma/instrumentation from 5.15.0 to 5.15.1 (#12627)
  • feat(node): Add context info for missing instrumentation (#12639)
  • fix(feedback): Improve feedback error message (#12647)

Bundle size 📦

Path Size
@​sentry/browser 22.22 KB
@​sentry/browser (incl. Tracing) 33.31 KB
@​sentry/browser (incl. Tracing, Replay) 69.09 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.42 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 73.15 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 85.75 KB
@​sentry/browser (incl. Tracing, Replay, Feedback, metrics) 87.61 KB
@​sentry/browser (incl. metrics) 26.5 KB
@​sentry/browser (incl. Feedback) 38.86 KB
@​sentry/browser (incl. sendFeedback) 26.84 KB
@​sentry/browser (incl. FeedbackAsync) 31.45 KB
@​sentry/react 24.97 KB
@​sentry/react (incl. Tracing) 36.36 KB
@​sentry/vue 26.33 KB
@​sentry/vue (incl. Tracing) 35.17 KB
@​sentry/svelte 22.36 KB
CDN Bundle 23.42 KB
CDN Bundle (incl. Tracing) 35.05 KB
CDN Bundle (incl. Tracing, Replay) 69.18 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 74.38 KB
CDN Bundle - uncompressed 68.8 KB
CDN Bundle (incl. Tracing) - uncompressed 103.66 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 214.13 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 226.84 KB
@​sentry/nextjs (client) 36.24 KB
@​sentry/sveltekit (client) 33.95 KB
@​sentry/node 130.61 KB
@​sentry/node - without tracing 91.63 KB
@​sentry/aws-serverless 116.8 KB

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.13.0

Important Changes

  • feat(nestjs): Add Nest SDK This release adds a dedicated SDK for NestJS (@sentry/nestjs) in alpha state. The SDK is a drop-in replacement for the Sentry Node SDK (@sentry/node) supporting the same set of features. See the docs for how to use the SDK.

Other Changes

  • deps: Bump bundler plugins to 2.20.1 (#12641)
  • deps(nextjs): Remove react peer dep and allow rc (#12670)
  • feat: Update OTEL deps (#12635)
  • feat(deps): bump @​prisma/instrumentation from 5.15.0 to 5.15.1 (#12627)
  • feat(node): Add context info for missing instrumentation (#12639)
  • fix(feedback): Improve feedback error message (#12647)

8.12.0

Important Changes

  • feat(solid): Remove need to pass router hooks to solid integration (breaking)

This release introduces breaking changes to the @sentry/solid package (which is currently out in alpha).

We've made it easier to get started with the solid router integration by removing the need to pass use* hooks explicitly to solidRouterBrowserTracingIntegration. Import solidRouterBrowserTracingIntegration from @sentry/solid/solidrouter and add it to Sentry.init

import * as Sentry from '@sentry/solid';
import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@sentry/solid/solidrouter';
import { Router } from '@solidjs/router';
Sentry.init({
dsn: 'PUBLIC_DSN',
integrations: [solidRouterBrowserTracingIntegration()],
tracesSampleRate: 1.0, //  Capture 100% of the transactions
});
const SentryRouter = withSentryRouterRouting(Router);

  • feat(core): Return client from init method (#12585)

Sentry.init() now returns a client directly, so you don't need to explicitly call getClient() anymore:

const client = Sentry.init();

... (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.44.2

Release notes

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

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)

Bug Fixes

v2.43.5

2.43.5 (2024-06-16)

Bug Fixes

v2.43.4

2.43.4 (2024-05-23)

Reverts

  • Revert "fix: use proper dual-packaging" (4ad906d)
  • Revert "fix: bump postgrest-js" (24de3b7)

v2.43.3

... (truncated)

Commits
  • b8a5d71 fix: Bump up realtime-js 2.10.2 (#1235)
  • 5d92d48 fix: postgrest-js esm typings
  • 37dc1ae feat: Bump realtime-js 2.10.1 (#1231)
  • 450aa49 fix: postgrest-js 1.15.6
  • cb7b046 fix: bump dependencies. (#1225)
  • 2ffce15 chore(deps): bump storage-js dependency (#1224)
  • 9e606cf chore(deps): resolve dependabot alerts
  • c8768c2 chore(deps): bump next from 14.0.1 to 14.1.1 in /examples/next-storage
  • 8c4e0ca chore(deps): bump next from 14.0.1 to 14.1.1 in /examples/next-ts
  • 8d5fe92 chore(deps): bump next from 14.0.1 to 14.1.1 in /examples/next-todo
  • Additional commits viewable in compare view

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.178.2

Release notes

Sourced from supabase's releases.

v1.178.2

Changelog

Bug fixes

  • 928ac14d30d5881414c9e2ce03d1fcb2301ca77d: fix(pooler): check if tenant exists before creating (@​sweatybridge)

Others

  • 7b664c9f128b8f59b80d70210d6c49a0815a85c6: chore: remove unnecessary logging from supabase start (@​sweatybridge)

v1.178.1

Changelog

Bug fixes

  • 8e9085491843580b9c090a0cb8c3d56ef45ffebc: fix: bump edge-runtime to 1.54.6 (#2443) (@​nyannyacha)

v1.178.0

Changelog

Features

  • 7b17eb85334b082dc83a808b075500b1bb18962f: feat(auth): add custom smtp support (#2427) (@​rhnaxifg4y)

v1.177.1

Changelog

Bug fixes

  • 5156c7636f3e99f98f3dbb832ce7de836a7cd5f9: fix: bump edge-runtime to 1.54.5 (#2441) (@​nyannyacha)

Others

  • 27ce8300089302fc4d2e77608a0b6a36bedccadd: chore(deps): bump docker/build-push-action from 5 to 6 (#2439) (@​dependabot[bot])
  • 941a1fd05530b1fe72bec7339e673c0282049f6a: chore(deps): bump tar from 7.2.0 to 7.4.0 (#2442) (@​dependabot[bot])

v1.177.0

Changelog

Features

  • da7b6f7dd7ae5eac61b299d7b641240951e1da69: feat(auth): support session timeout configs (#2433) (@​hf)

Bug fixes

  • 075e469a348062efca4013ad08a4f05ea998e43e: fix: bump edge-runtime to 1.54.4 (#2437) (@​nyannyacha)

Others

  • 492927bfeb06fc142d9ce7e8421b93c03d808951: chore(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#2436) (@​dependabot[bot])

v1.176.11

Changelog

Bug fixes

  • 41dbdad31db0e7f1407f6bcf41ded2716466f769: fix: bump edge-runtime to 1.54.3 (#2432) (@​nyannyacha)

v1.176.10

Changelog

Bug fixes

  • 76b92cc3cb71b284fffdbb5a16ac47820f83ee9b: fix: remove volume name from docker mount path (#2429) (@​sweatybridge)

v1.176.9

Changelog

Bug fixes

  • e5644dedc5dbb7374da6d7dc642a228fc4dcbebc: fix: console prompt conflict with bubble tea (#2425) (@​sweatybridge)

v1.176.8

... (truncated)

Commits
  • 928ac14 fix(pooler): check if tenant exists before creating
  • 7b664c9 chore: remove unnecessary logging from supabase start
  • 8e90854 fix: bump edge-runtime to 1.54.6 (#2443)
  • 7b17eb8 feat(auth): add custom smtp support (#2427)
  • 5156c76 fix: bump edge-runtime to 1.54.5 (#2441)
  • 941a1fd chore(deps): bump tar from 7.2.0 to 7.4.0 (#2442)
  • 27ce830 chore(deps): bump docker/build-push-action from 5 to 6 (#2439)
  • 075e469 fix: bump edge-runtime to 1.54.4 (#2437)
  • da7b6f7 feat(auth): support session timeout configs (#2433)
  • 492927b chore(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#2436)
  • Additional commits viewable in compare view

Updates @types/node from 20.12.11 to 20.14.9

Commits

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

Release notes

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

v7.14.1

7.14.1 (2024-06-24)

🚀 Features

  • support TypeScript 5.5 (#9397)
  • ast-spec: tighter types and documentation for declaration/* (#9211)

🩹 Fixes

  • keep warnAbountTSVersion in sync with package.json (#9400)
  • eslint-plugin: [no-extraneous-class] handle abstract members (#9367)
  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types (#9378)
  • eslint-plugin: [no-invalid-this] support AccessorProperty (#9411)
  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types (#9376)
  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens (#9380)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.14.0

7.14.0 (2024-06-24)

We followed this up soon after with 7.14.1 - see the combined release notes here https://github.com/typescript-eslint/typescript-eslint/releases/tag/v7.14.1

You can read about our versioning strategy and releases on our website.

v7.13.1

7.13.1 (2024-06-17)

🩹 Fixes

  • eslint-plugin: [prefer-readonly] refine report locations (#8894)
  • eslint-plugin: [return-await] support explicit resource management (#9044)
  • eslint-plugin: [no-unsafe-member-access] differentiate a types-error any from a true any (#9291)

❤️ Thank You

... (truncated)

Changelog

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

7.14.1 (2024-06-24)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types

  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens

❤️ Thank You

  • Jake Bailey

You can read about our versioning strategy and releases on our website.

7.14.0 (2024-06-24)

🚀 Features

  • support TypeScript 5.5

🩹 Fixes

  • eslint-plugin: [no-extraneous-class] handle abstract members

  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types

  • eslint-plugin: [no-invalid-this] support AccessorProperty

❤️ Thank You

  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

7.13.1 (2024-06-17)

🩹 Fixes

  • eslint-plugin: [prefer-readonly] refine report locations

... (truncated)

Commits
  • b4fe94f chore(release): publish 7.14.1
  • f29150f fix(eslint-plugin): [prefer-nullish-coalescing] ensure ternary fix does not r...
  • 9b7731d fix(eslint-plugin): [prefer-nullish-coalescing] treat enums and literals as t...
  • dfc4469 chore(release): publish 7.14.0
  • 635133a docs: split troubleshooting into granular sections (#9024)
  • c322099 fix(eslint-plugin): [no-invalid-this] support AccessorProperty (#9411)
  • 23e6468 fix(eslint-plugin): [prefer-nullish-coalescing] handle intersected primitive ...
  • 5c4a5de feat(ast-spec): tighter types and documentation for declaration/* (#9211)
  • e47123d fix(eslint-plugin): [no-extraneous-class] handle abstract members (#9367)
  • dc18229 feat: support TypeScript 5.5 (#9397)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 6.21.0 to 7.14.1

Release notes

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

v7.14.1

7.14.1 (2024-06-24)

🚀 Features

  • support TypeScript 5.5 (#9397)
  • ast-spec: tighter types and documentation for declaration/* (#9211)

🩹 Fixes

  • keep warnAbountTSVersion in sync with package.json (#9400)
  • eslint-plugin: [no-extraneous-class] handle abstract members (#9367)
  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types (#9378)
  • eslint-plugin: [no-invalid-this] support AccessorProperty (#9411)
  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types (#9376)
  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens (#9380)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.14.0

7.14.0 (2024-06-24)

We followed this up soon after with 7.14.1 - see the combined release notes here https://github.com/typescript-eslint/typescript-eslint/releases/tag/v7.14.1

You can read about our versioning strategy and releases on our website.

v7.13.1

7.13.1 (2024-06-17)

🩹 Fixes

  • eslint-plugin: [prefer-readonly] refine report locations (#8894)
  • eslint-plugin: [return-await] support explicit resource management (#9044)
  • eslint-plugin: [no-unsafe-member-access] differentiate a types-error any from a true any (#9291)

❤️ Thank You

... (truncated)

Changelog

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

7.14.1 (2024-06-24)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

7.14.0 (2024-06-24)

🚀 Features

  • support TypeScript 5.5

❤️ Thank You

  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

7.13.1 (2024-06-17)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

7.13.0 (2024-06-10)

🚀 Features

  • parser, typescript-estree: export withoutProjectParserOptions utility

❤️ Thank You

  • Fotis Papadogeorgopoulos
  • Joshua Chen
  • Kirk Waiblinger
  • Tobiloba Adedeji
  • Vinccool96
  • YeonJuan

You can read about our versioning strategy and releases on our website.

... (truncated)

Commits
  • b4fe94f chore(release): publish 7.14.1
  • dfc4469 chore(release): publish 7.14.0
  • 1212a8f chore(release): publish 7.13.1
  • 8a178ed chore(release): publish 7.13.0
  • c9a6dd9 feat(parser, typescript-estree): export withoutProjectParserOptions utility (...
  • 7e93b28 chore(release): publish 7.12.0
  • 2bbf656 fix(types): correct typing ParserOptions (#9202)
  • e360541 chore(release): publish 7.11.0
  • c18226e chore(release): publish 7.10.0
  • 77fc366 chore(release): publish 7.9.0
  • Additional commits viewable in compare view

Updates eslint from 8.57.0 to 9.6.0

Release notes

Sourced from eslint's releases.

v9.6.0

Features

  • e2b16e2 feat: Implement feature flags (#18516) (Nicholas C. Zakas)
  • 8824aa1 feat: add ecmaVersion: 2025, parsing duplicate named capturing groups (#18596) (Milos Djermanovic)

Bug Fixes

  • 1613e2e fix: Allow escaping characters in config patterns on Windows (#18628) (Milos Djermanovic)
  • 21d3766 fix: no-unused-vars include caught errors pattern in report message (#18609) (Kirk Waiblinger)
  • d7a7736 fix: improve no-unused-vars message on unused caught errors (#18608) (Kirk Waiblinger)
  • f9e95d2 fix: correct locations of invalid /* eslint */ comments (#18593) (Milos Djermanovic)

Documentation

  • 13dbecd docs: Limit search to just docs (#18627) (Nicholas C. Zakas)
  • 375227f docs: Update getting-started.md - add pnpm to init eslint config (#18599) (Kostiantyn Ochenash)
  • 44915bb docs: Update README (GitHub Actions Bot)
  • d50db7b docs: Update vscode-eslint info (#18595) (Nicholas C. Zakas)

Chores

  • b15ee30 chore: upgrade @​eslint/js@​9.6.0 (#18632) (Milos Djermanovic)
  • d655503 chore: package.json update for @​eslint/js release (Jenkins)
  • 7c78ad9 refactor: Use language.visitorKeys and check for non-JS SourceCode (#18625) (Nicholas C. Zakas)
  • 69ff64e refactor: Return value of applyInlineConfig() (#18623) (Nicholas C. Zakas)
  • d2d06f7 refactor: use / separator when adjusting ignorePatterns on Windows (#18613) (Milos Djermanovic)
  • 6421973 refactor: fix disable directives for languages with 0-based lines (#18605) (Milos Djermanovic)
  • 0a13539 refactor: Allow optional methods for languages (#18604) (Nicholas C. Zakas)
  • c7ddee0 chore: make internal-rules not being a package (#18601) (Milos Djermanovic)
  • 3379164 chore: remove .eslintrc.js (#18011) (唯然)
  • d0c3a32 chore: update knip (with webdriver-io plugin) (#18594) (Lars Kappert)

v9.5.0

Features

  • b2d256c feat: no-sparse-arrays report on "comma" instead of the whole array (#18579) (fisker Cheung)

Bug Fixes

  • 6880286 fix: treat * as a universal pattern (#18586) (Milos Djermanovic)
  • 7fbe211 fix: message template for all files ignored (#18564) (Milos Djermanovic)
  • 469cb36 fix: Don't lint the same file multiple times (#18552) (Milos Djermanovic)
  • 5cff638 fix: improve message for ignored files without a matching config (#18404) (Francesco Trotta)

Documentation

  • 455f7fd docs: add section about including .gitignore files (#18590) (Milos Djermanovic)
  • 721eafe docs: update info about universal files patterns (#18587) (Francesco Trotta)
  • 8127127 docs: Update README (GitHub Actions Bot)
  • 55c2a66 docs: Update README (GitHub Actions Bot)
  • eb76282 docs: Update README (GitHub Actions Bot)
  • ff6e96e docs: baseConfig and overrideConfig can be arrays (#18571) (Milos Djermanovic)
  • d2d83e0 docs: Add mention of eslint-transforms to v9 migration guide (#18566) (Nicholas C. Zakas)
  • 9ce6832 docs: add callout box for unintuitive behavior (#18567) (Ben McCann)
  • b8db99c docs: Add VS Code info to config migration guide (#18555) (Nicholas C. Zakas)
  • 518a35c docs: Mention config migrator (#18561) (Nicholas C. Zakas)

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.6.0 - June 28, 2024

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.32.1` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `8.0.0-rc.2` | `8.13.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.178.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.11` | `20.14.9` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.21.0` | `7.14.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.21.0` | `7.14.1` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.6.0` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `16.6.2` | `17.9.0` |
| [eslint-plugin-promise](https://github.com/eslint-community/eslint-plugin-promise) | `6.1.1` | `6.4.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.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.5` | `5.5.2` |



Updates `@sentry/cli` from 2.31.2 to 2.32.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.32.1)

Updates `@sentry/node` from 8.0.0-rc.2 to 8.13.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.13.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.44.2
- [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.44.2)

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.178.2
- [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.178.2)

Updates `@types/node` from 20.12.11 to 20.14.9
- [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 7.14.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.14.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.21.0 to 7.14.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.14.1/packages/parser)

Updates `eslint` from 8.57.0 to 9.6.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.6.0)

Updates `eslint-plugin-n` from 16.6.2 to 17.9.0
- [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.9.0)

Updates `eslint-plugin-promise` from 6.1.1 to 6.4.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...v6.4.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.1
- [Release notes](https://github.com/pinojs/pino-pretty/releases)
- [Commits](pinojs/pino-pretty@v11.0.0...v11.2.1)

Updates `typescript` from 5.4.5 to 5.5.2
- [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.2)

---
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-minor
  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-minor
  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 Jul 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 29, 2024

Superseded by #198.

1 similar comment
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 29, 2024

Superseded by #198.

@dependabot dependabot bot closed this Jul 29, 2024
@dependabot dependabot bot closed this Jul 29, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/backend/backend-a42131e0aa branch July 29, 2024 02:42
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