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

Bump the minor-updates group across 1 directory with 19 updates #24

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2025

Bumps the minor-updates group with 19 updates in the / directory:

Package From To
@astrojs/node 9.0.0 9.0.2
@github/relative-time-element 4.4.4 4.4.5
@octokit/auth-oauth-app 8.1.1 8.1.2
@octokit/graphql 8.1.1 8.2.0
@octokit/webhooks 13.4.1 13.5.0
@prisma/client 6.0.1 6.3.0
astro 5.0.5 5.2.3
octokit 4.0.2 4.1.0
prisma 6.0.1 6.3.0
vite 6.0.3 6.0.11
@eslint/js 9.17.0 9.19.0
@graphql-codegen/cli 5.0.3 5.0.4
@graphql-codegen/client-preset 4.5.1 4.6.1
@graphql-codegen/typescript 4.1.2 4.1.3
@graphql-codegen/typescript-document-nodes 4.0.12 4.0.13
@types/node 22.10.2 22.13.0
eslint 9.17.0 9.19.0
typescript 5.7.2 5.7.3
typescript-eslint 8.18.0 8.22.0

Updates @astrojs/node from 9.0.0 to 9.0.2

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​9.0.2

Patch Changes

@​astrojs/node@​9.0.1

Patch Changes

Changelog

Sourced from @​astrojs/node's changelog.

9.0.2

Patch Changes

9.0.1

Patch Changes

Commits

Updates @github/relative-time-element from 4.4.4 to 4.4.5

Release notes

Sourced from @​github/relative-time-element's releases.

v4.4.5

What's Changed

New Contributors

Full Changelog: github/relative-time-element@v4.4.4...v4.4.5

Commits
  • 8d86a67 Merge pull request #303 from github/node22
  • 4789b31 Use node v22
  • 8490db2 Merge pull request #298 from leduyquang753/applyDuration
  • e16b828 Merge branch 'main' into applyDuration
  • 9a9f987 Merge pull request #302 from github/keithamus-patch-1
  • c518ee0 get main branch green
  • 5e4a7e3 Unrolled duration application steps.
  • d37caed Make applyDuration reversible.
  • a80c1bf Merge pull request #297 from github/francinelucca/fix/locale-error
  • b6dbae3 Update test/relative-time.js
  • Additional commits viewable in compare view

Updates @octokit/auth-oauth-app from 8.1.1 to 8.1.2

Release notes

Sourced from @​octokit/auth-oauth-app's releases.

v8.1.2

8.1.2 (2025-01-07)

Bug Fixes

  • deps: bump Octokit deps to fix Deno compat (#504) (a5afc99)
Commits

Updates @octokit/graphql from 8.1.1 to 8.2.0

Release notes

Sourced from @​octokit/graphql's releases.

v8.2.0

8.2.0 (2025-01-31)

Features

  • allow users to specify operationName in multi-operation queries (#629) (9a1787e)

v8.1.2

8.1.2 (2024-12-31)

Bug Fixes

Commits

Updates @octokit/webhooks from 13.4.1 to 13.5.0

Release notes

Sourced from @​octokit/webhooks's releases.

v13.5.0

13.5.0 (2025-01-31)

Features

  • use verifyWithFallback to support secret rotation (#1080) (8a9682d)

v13.4.3

13.4.3 (2025-01-28)

Bug Fixes

  • make verifyAndReceive accept a string name. (#1056) (c5d1a3c)

v13.4.2

13.4.2 (2025-01-08)

Bug Fixes

  • deps: bump Octokit deps to fix Deno compat (#1090) (ffd5b28)
Commits

Updates @prisma/client from 6.0.1 to 6.3.0

Release notes

Sourced from @​prisma/client's releases.

6.3.0

Today, we are excited to share the 6.3.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟

Highlights

A brand new Prisma Studio

In this release we've included several great improvements to Prisma Studio's developer experience. You can learn all about the changes we've made in our release blog post, but here's a short list:

Prisma Studio is back in the Console

Fans of Prisma Data Browser rejoice! The new Prisma Studio is now in the Prisma Console and is available for all PostgreSQL and MySQL databases.

A new model viewer

Previously, switching from model to model in Prisma Studio would require backing all the way out to the model view, then digging in again. With our new UI, it's easy to switch from model to model while keeping your place.

image

A new editing experience

If you're trying to edit a given field in a model, Prisma Studio made it quite easy. However, if you're trying to edit every field in a given row, it could get quite annoying to keep scrolling left to right. Our new edit sidebar resolves that with the ability to edit all fields for a given row at once.

image

Clean up at the click of a button

When editing a number of models, it can get difficult to get back to a clean slate. In the new Prisma Studio, we've added a "Close all" button that puts you back to a fresh start.

image

Add limit to updateMany() and deleteMany()

Previously, limit has not existed as a valid option in top level updateMany() and deleteMany() queries. In 6.3.0 limit is now available in these queries, bringing their features more in line with other query types.

You can use limit like the following:

await prisma.user.deleteMany({
  where: { column: 'value' },
  limit: 100,
});

This will limit the number of deleted users to 100 at maximum.

Sort generator fields deterministically

... (truncated)

Commits
  • 531cb87 fix(error handling): ensure also unknown errors during interactive transactio...
  • 9cf9ccc refactor(client engine): client engine cleanups (#26159)
  • e526f4a chore(deps): update engines to 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d...
  • 00b79e5 fix(build): make typescript optional peer dependency to not accidentally bund...
  • 3c290c9 chore(compiler): ORM-517 integrate query compiler wasm into ClientEngine (#26...
  • 35aa821 feat(compiler): ORM-467 implement client side transaction manager (#26109)
  • d1a12be chore(deps): update devdependencies patch (non-major) (#26141)
  • e5acfdc feat(client): support in-memory joins in client executor (#26129)
  • 62a1a23 feat: query compiler vertical slice (#25910)
  • 6d19fd9 chore(deps): update engines to 6.3.0-16.eb5bc5493ac383a8fe3c3e7fabfc93e4d44ca...
  • Additional commits viewable in compare view

Updates astro from 5.0.5 to 5.2.3

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #13113 3a26e45 Thanks @​unprintable123! - Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.

  • #13111 23978dd Thanks @​ascorbic! - Fixes a bug that caused injected endpoint routes to return not found when trailingSlash was set to always

  • #13112 0fa5c82 Thanks @​ematipico! - Fixes a bug where the i18n middleware was blocking a server island request when the prefixDefaultLocale option is set to true

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #13095 740eb60 Thanks @​ascorbic! - Fixes a bug that caused some dev server asset requests to return 404 when trailingSlash was set to "always"

[email protected]

Minor Changes

  • #12994 5361755 Thanks @​ascorbic! - Redirects trailing slashes for on-demand pages

    When the trailingSlash option is set to always or never, on-demand rendered pages will now redirect to the correct URL when the trailing slash doesn't match the configuration option. This was previously the case for static pages, but now works for on-demand pages as well.

    Now, it doesn't matter whether your visitor navigates to /about/, /about, or even /about///. In production, they'll always end up on the correct page. For GET requests, the redirect will be a 301 (permanent) redirect, and for all other request methods, it will be a 308 (permanent, and preserve the request method) redirect.

    In development, you'll see a helpful 404 page to alert you of a trailing slash mismatch so you can troubleshoot routes.

  • #12979 e621712 Thanks @​ematipico! - Adds support for redirecting to external sites with the redirects configuration option.

    Now, you can redirect routes either internally to another path or externally by providing a URL beginning with http or https:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    redirects: {
    '/blog': 'https://example.com/blog',
    '/news': {
    status: 302,
    destination: 'https://example.com/news',
    },
    },
    });

  • #13084 0f3be31 Thanks @​ematipico! - Adds a new experimental virtual module astro:config that exposes a type-safe subset of your astro.config.mjs configuration

... (truncated)

Changelog

Sourced from astro's changelog.

5.2.3

Patch Changes

  • #13113 3a26e45 Thanks @​unprintable123! - Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.

  • #13111 23978dd Thanks @​ascorbic! - Fixes a bug that caused injected endpoint routes to return not found when trailingSlash was set to always

  • #13112 0fa5c82 Thanks @​ematipico! - Fixes a bug where the i18n middleware was blocking a server island request when the prefixDefaultLocale option is set to true

5.2.2

Patch Changes

5.2.1

Patch Changes

  • #13095 740eb60 Thanks @​ascorbic! - Fixes a bug that caused some dev server asset requests to return 404 when trailingSlash was set to "always"

5.2.0

Minor Changes

  • #12994 5361755 Thanks @​ascorbic! - Redirects trailing slashes for on-demand pages

    When the trailingSlash option is set to always or never, on-demand rendered pages will now redirect to the correct URL when the trailing slash doesn't match the configuration option. This was previously the case for static pages, but now works for on-demand pages as well.

    Now, it doesn't matter whether your visitor navigates to /about/, /about, or even /about///. In production, they'll always end up on the correct page. For GET requests, the redirect will be a 301 (permanent) redirect, and for all other request methods, it will be a 308 (permanent, and preserve the request method) redirect.

    In development, you'll see a helpful 404 page to alert you of a trailing slash mismatch so you can troubleshoot routes.

  • #12979 e621712 Thanks @​ematipico! - Adds support for redirecting to external sites with the redirects configuration option.

    Now, you can redirect routes either internally to another path or externally by providing a URL beginning with http or https:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    redirects: {
    '/blog': 'https://example.com/blog',
    '/news': {
    status: 302,
    destination: 'https://example.com/news',
    },
    },

... (truncated)

Commits

Updates octokit from 4.0.2 to 4.1.0

Release notes

Sourced from octokit's releases.

v4.1.0

4.1.0 (2025-01-08)

Features

  • deps: bump Octokit deps to fix Deno compatibility, new endpoints via @octokit/plugin-rest-endpoint-methods (#2788) (2107d79)

v4.0.3

4.0.3 (2024-12-29)

Bug Fixes

  • deps: bump @octokit/app and @octokit/types (#2763) (33d03d9)
Commits

Updates prisma from 6.0.1 to 6.3.0

Release notes

Sourced from prisma's releases.

6.3.0

Today, we are excited to share the 6.3.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟

Highlights

A brand new Prisma Studio

In this release we've included several great improvements to Prisma Studio's developer experience. You can learn all about the changes we've made in our release blog post, but here's a short list:

Prisma Studio is back in the Console

Fans of Prisma Data Browser rejoice! The new Prisma Studio is now in the Prisma Console and is available for all PostgreSQL and MySQL databases.

A new model viewer

Previously, switching from model to model in Prisma Studio would require backing all the way out to the model view, then digging in again. With our new UI, it's easy to switch from model to model while keeping your place.

image

A new editing experience

If you're trying to edit a given field in a model, Prisma Studio made it quite easy. However, if you're trying to edit every field in a given row, it could get quite annoying to keep scrolling left to right. Our new edit sidebar resolves that with the ability to edit all fields for a given row at once.

image

Clean up at the click of a button

When editing a number of models, it can get difficult to get back to a clean slate. In the new Prisma Studio, we've added a "Close all" button that puts you back to a fresh start.

image

Add limit to updateMany() and deleteMany()

Previously, limit has not existed as a valid option in top level updateMany() and deleteMany() queries. In 6.3.0 limit is now available in these queries, bringing their features more in line with other query types.

You can use limit like the following:

await prisma.user.deleteMany({
  where: { column: 'value' },
  limit: 100,
});

This will limit the number of deleted users to 100 at maximum.

Sort generator fields deterministically

... (truncated)

Commits
  • 3d913b5 feat: allow init --db if prisma folder exists (#26181)
  • 2aa68fc chore(deps): update studio to v0.508.0 (#26180)
  • d45607d fix(cli, sub-commands): better handling of esm packages (#26161)
  • 00b79e5 fix(build): make typescript optional peer dependency to not accidentally bund...
  • b413705 chore(deps): update studio to v0.505.0 (#26152)
  • 995c00f chore(platform-cli): ppg copy changes (#26115)
  • 8d9f075 chore(deps): update studio to v0.504.0 (#26131)
  • d1a12be chore(deps): update devdependencies patch (non-major) (#26141)
  • 049753e feat(cli): implement generic sub-commands (+ policy) (#26134)
  • 3046f26 feat(migrate): on prisma+postgres URLs, pass --no-engine flag to client g...
  • Additional commits viewable in compare view

Updates vite from 6.0.3 to 6.0.11

Release notes

Sourced from vite's releases.

v6.0.11

Please refer to CHANGELOG.md for details.

v6.0.10

Please refer to CHANGELOG.md for details.

v6.0.9

This version contains a breaking change due to security fixes. See GHSA-vg6x-rcgg-rjx6 for more details.

Please refer to CHANGELOG.md for details.

v6.0.8

Please refer to CHANGELOG.md for details.

v6.0.7

Please refer to CHANGELOG.md for details.

v6.0.6

Please refer to CHANGELOG.md for details.

v6.0.5

Please refer to CHANGELOG.md for details.

v6.0.4

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.0.11 (2025-01-21)

6.0.10 (2025-01-20)

6.0.9 (2025-01-20)

  • fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (bd896fb)
  • fix!: default server.cors: false to disallow fetching from untrusted origins (b09572a)
  • fix: verify token for HMR WebSocket connection (029dcd6)

6.0.8 (2025-01-20)

6.0.7 (2025-01-02)

6.0.6 (2024-12-26)

... (truncated)

Commits
  • a0ed405 release: v6.0.11
  • 3d03899 fix: allow CORS from loopback addresses by default (#19249)
  • aeb3ec8 fix: preview.allowedHosts with specific values was not respected (#19246)
  • 9654348 release: v6.0.10
  • 2495022 fix: try parse server.origin URL (#19241)
  • a55f8ba release: v6.0.9
  • bd896fb fix!: check host header to prevent DNS rebinding attacks and introduce `serve...
  • 029dcd6 fix: verify token for HMR WebSocket connection
  • b09572a fix!: default server.cors: false to disallow fetching from untrusted origins
  • c0f72a6 release: v6.0.8
  • Additional commits viewable in compare view

Updates @eslint/js from 9.17.0 to 9.19.0

Release notes

Sourced from @​eslint/js's releases.

v9.19.0

Features

  • 1637b8e feat: add --report-unused-inline-configs (#19201) (Josh Goldberg ✨)

Bug Fixes

  • aae6717 fix: sync rule type header comments automatically (#19276) (Francesco Trotta)

Documentation

  • cfea9ab docs: Clarify overrideConfig option (#19370) (Nicholas C. Zakas)
  • 2b84f66 docs: Update README (#19362) (Nicholas C. Zakas)
  • 044f93c docs: clarify frozen rule description (#19351) (Pavel)
  • 797ee7c docs: fix Bluesky links (#19368) (Milos Djermanovic)
  • 81a9c0e docs: Update README (GitHub Actions Bot)
  • 093fb3d docs: replace var with let and const in rule examples (#19365) (Tanuj Kanti)
  • 417de32 docs: replace var with const in rule examples (#19352) (jj)
  • 17f2aae docs: update getting-started config to match default generated config (#19308) (0xDev)
  • 8a0a5a8 docs: better global ignores instruction (

Bumps the minor-updates group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/node](https://github.com/withastro/adapters/tree/HEAD/packages/node) | `9.0.0` | `9.0.2` |
| [@github/relative-time-element](https://github.com/github/relative-time-element) | `4.4.4` | `4.4.5` |
| [@octokit/auth-oauth-app](https://github.com/octokit/auth-oauth-app.js) | `8.1.1` | `8.1.2` |
| [@octokit/graphql](https://github.com/octokit/graphql.js) | `8.1.1` | `8.2.0` |
| [@octokit/webhooks](https://github.com/octokit/webhooks.js) | `13.4.1` | `13.5.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.0.1` | `6.3.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.0.5` | `5.2.3` |
| [octokit](https://github.com/octokit/octokit.js) | `4.0.2` | `4.1.0` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.0.1` | `6.3.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.3` | `6.0.11` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.17.0` | `9.19.0` |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | `5.0.3` | `5.0.4` |
| [@graphql-codegen/client-preset](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/presets/client) | `4.5.1` | `4.6.1` |
| [@graphql-codegen/typescript](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typescript) | `4.1.2` | `4.1.3` |
| [@graphql-codegen/typescript-document-nodes](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/document-nodes) | `4.0.12` | `4.0.13` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.13.0` |
| [eslint](https://github.com/eslint/eslint) | `9.17.0` | `9.19.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.18.0` | `8.22.0` |



Updates `@astrojs/node` from 9.0.0 to 9.0.2
- [Release notes](https://github.com/withastro/adapters/releases)
- [Changelog](https://github.com/withastro/adapters/blob/main/packages/node/CHANGELOG.md)
- [Commits](https://github.com/withastro/adapters/commits/@astrojs/[email protected]/packages/node)

Updates `@github/relative-time-element` from 4.4.4 to 4.4.5
- [Release notes](https://github.com/github/relative-time-element/releases)
- [Commits](github/relative-time-element@v4.4.4...v4.4.5)

Updates `@octokit/auth-oauth-app` from 8.1.1 to 8.1.2
- [Release notes](https://github.com/octokit/auth-oauth-app.js/releases)
- [Commits](octokit/auth-oauth-app.js@v8.1.1...v8.1.2)

Updates `@octokit/graphql` from 8.1.1 to 8.2.0
- [Release notes](https://github.com/octokit/graphql.js/releases)
- [Commits](octokit/graphql.js@v8.1.1...v8.2.0)

Updates `@octokit/webhooks` from 13.4.1 to 13.5.0
- [Release notes](https://github.com/octokit/webhooks.js/releases)
- [Commits](octokit/webhooks.js@v13.4.1...v13.5.0)

Updates `@prisma/client` from 6.0.1 to 6.3.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/6.3.0/packages/client)

Updates `astro` from 5.0.5 to 5.2.3
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/[email protected]/packages/astro)

Updates `octokit` from 4.0.2 to 4.1.0
- [Release notes](https://github.com/octokit/octokit.js/releases)
- [Commits](octokit/octokit.js@v4.0.2...v4.1.0)

Updates `prisma` from 6.0.1 to 6.3.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/6.3.0/packages/cli)

Updates `vite` from 6.0.3 to 6.0.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.0.11/packages/vite)

Updates `@eslint/js` from 9.17.0 to 9.19.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.19.0/packages/js)

Updates `@graphql-codegen/cli` from 5.0.3 to 5.0.4
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/graphql-codegen-cli)

Updates `@graphql-codegen/client-preset` from 4.5.1 to 4.6.1
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/presets/client/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/presets/client)

Updates `@graphql-codegen/typescript` from 4.1.2 to 4.1.3
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typescript/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/typescript)

Updates `@graphql-codegen/typescript-document-nodes` from 4.0.12 to 4.0.13
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/document-nodes/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/document-nodes)

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

Updates `eslint` from 9.17.0 to 9.19.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.17.0...v9.19.0)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

Updates `typescript-eslint` from 8.18.0 to 8.22.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.22.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@astrojs/node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@github/relative-time-element"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@octokit/auth-oauth-app"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@octokit/graphql"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@octokit/webhooks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: octokit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: prisma
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: vite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@eslint/js"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@graphql-codegen/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@graphql-codegen/client-preset"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@graphql-codegen/typescript"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@graphql-codegen/typescript-document-nodes"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 3, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 10, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 10, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-updates-d3a009053c branch February 10, 2025 01:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants