Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Nov 27, 2024

This PR contains the following updates:

Package Change Age Confidence Type Update
@discordjs/builders (source) ^1.11.3 -> ^1.13.0 age confidence dependencies minor
@prisma/client (source) ^6.16.2 -> ^6.19.0 age confidence dependencies minor
@sapphire/framework (source) ^5.3.6 -> ^5.4.0 age confidence dependencies minor
@sapphire/result (source) ^2.7.2 -> ^2.8.0 age confidence dependencies minor
@tsconfig/node20 (source) ^20.1.6 -> ^20.1.8 age confidence devDependencies patch
@types/node (source) ^20.19.17 -> ^20.19.25 age confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) ^8.44.0 -> ^8.47.0 age confidence devDependencies minor
@typescript-eslint/parser (source) ^8.44.0 -> ^8.47.0 age confidence devDependencies minor
discord-api-types (source) ^0.37.120 -> ^0.38.34 age confidence dependencies minor
discord.js (source) ^14.22.1 -> ^14.25.0 age confidence dependencies minor
eslint (source) ^9.36.0 -> ^9.39.1 age confidence devDependencies minor
ghcr.io/hazmi35/node 22-alpine -> 22.21.1-alpine age confidence final minor
ghcr.io/hazmi35/node 22-dev-alpine -> 22.21.1-dev-alpine age confidence stage minor
node (source) >=22.17.0 -> >=22.21.1 age confidence engines minor
node (source) 22 -> 22.21.1 age confidence minor
npm (source) >=7.0.0 -> >=7.24.2 age confidence engines minor
pnpm (source) 10.17.0+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef -> 10.22.0 age confidence packageManager minor
prisma (source) ^6.16.2 -> ^6.19.0 age confidence devDependencies minor
shoukaku ^4.1.1 -> ^4.2.0 age confidence dependencies minor
typescript (source) ^5.9.2 -> ^5.9.3 age confidence devDependencies patch

Release Notes

discordjs/discord.js (@​discordjs/builders)

v1.13.0

Compare Source

Features

Testing

v1.12.2

Compare Source

Bug Fixes

  • Assertions: Literal default values (43362c9)

v1.12.1

Compare Source

Bug Fixes

v1.12.0

Compare Source

Features

prisma/prisma (@​prisma/client)

v6.19.0

Compare Source

v6.18.0

Compare Source

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

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Prisma ORM

Prisma ORM is the most popular ORM in the TypeScript ecosystem. Today’s release brings a bunch of new bug fixes and overall improvements:

  • prisma init now creates a prisma.config.ts automatically

When creating a new project with 6.18.0, prisma init will now create a prisma.config.ts file automatically. This prepares new applications for the future of Prisma 7. Some fields that have been historically set in the schema.prisma file are now able to be set in the prisma.config.ts, and we encourage people to migrate over to the new structure before the release of version 7, where this file will become a requirement.

  • Support for defining your datasource in prisma.config.ts

If you’re adopting the new prisma.config.ts setup in your projects, version 6.18.0 brings the ability to set your datasource directly in your config file. Once this is in your config file, any datasource set in your schema.prisma will be ignored. To set the datasource, we also must include the new engine key which we can set to "classic" , which will be required for Prisma v7

import { defineConfig, env } from "prisma/config";
export default defineConfig({
    // The Rust-compiled schema engine 
    engine: "classic",
    datasource: {
        url: env('DATABASE_URL'),
    }
});
  • #​28291 Support multiple Prisma instances with different providers
  • #​28305 Add env helper function
  • #​28266 Add support for js or classic as engine types in prisma.config
  • #​28139 Map Bytes to Uint8Array depending on Typescript version
Preparing for Prisma v7

While it has been mentioned a few times already, many of the changes in this release are here to prepare folks for the upcoming release of Prisma v7. It’s worth repeating that these changes and the migration to prisma.config.ts will be required for Prisma v7, so we’re releasing this as opt-in features for developers. But come Prisma v7, they will be the new way of configuring your project.

Prisma Postgres

Prisma Postgres is our fully managed Postgres service designed with the same philosophy of great DX that has guided Prisma for close to a decade. With this release we are introducing the following improvements:

Database Metric in Console

Inside of your database console, you can now view metrics on your database usage and interactions. You can get insights into the follow:

  • Total egress
  • Average response size
  • Average query duration

In addition, you can also get insights into how to improve your query caching and gain better performance.

Open roles at Prisma

Interested in joining Prisma? We’re growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our Careers page and find the role that’s right for you.

Enterprise support

Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

v6.17.1

Compare Source

Today, we are issuing a patch release to address a regression in v6.17.0 that affected diffing of unsupported types, leading to unnecessary or incorrect changes when creating new migrations or running db pull. This update is recommended for all users who have any fields marked as Unsupported in their schema files.

Changes

v6.17.0

Compare Source

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

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Prisma ORM

Prisma ORM is the most popular ORM in the TypeScript ecosystem. Today's release brings a number of bug fixes and improvements to Prisma ORM.

Bug fixes and improvements
  • Added support for Entra ID (ActiveDirectory) authentication parameters for the MS SQL Server driver adapter. For example, you can use the config object to configure DefaultAzureCredential:
    import { PrismaMssql } from '@​prisma/adapter-mssql'
    import { PrismaClient } from '@​prisma/client'
    
    const config = {
      server: 'localhost',
      port: 1433,
      database: 'mydb',
      authentication: {
        type: 'azure-active-directory-default',
      },
      options: {
        encrypt: true,
      },
    }
    
    const adapter = new PrismaMssql(config)
    const prisma = new PrismaClient({ adapter })
    Learn more in this PR.
  • Relaxed the support package range for @opentelemetry/instrumentation to be compatible with ">=0.52.0 <1". Learn more in this PR.
  • Added Codex CLI detection, ensuring dangerous Prisma operations are not executed by Codex without explicit user consent. Learn more in this PR.
  • Fixed JSON column handling when using a MariaDB database. Learn more in this PR.
  • Restored the original behaviour of group-by aggregations where they would refer to columns with explicit table names which fixes a regression that would result in ambiguous column errors. Learn more in this PR.

Prisma Postgres

Prisma Postgres is our fully managed Postgres service designed with the same philosophy of great DX that has guided Prisma for close to a decade. With this release we are introducing the following improvements:

New usage workspace metrics available in your Console Dashboard

The Dashboard in your Prisma Console account now displays new metrics about your Prisma Postgres usage:

  • Key metrics
    • Estimated upcoming invoice
    • Total storage used
    • Total DBs
  • Overall usage
    • Cumulative operations
    • Operations per day
Using Prisma Postgres with any tool is ready for production

Previously, the only way to connect to Prisma Postgres was using Prisma ORM. That combination is great because it gives you connection pooling, global caching and overall an amazing DX.

That being said, we understand that preferences vary and some developers prefer to use plain SQL or lower-level query builders in their applications. As of this release, these ways for connecting to Prisma Postgres are now officially generally available and can be used in your production apps!

You can connect using Drizzle, Kysely, TypeORM, psql, or any other Postgres-compatible library, database migration tools like Atlas or interfaces like DBeaver, Postico, and more.

📚 Learn more in the docs.

Enterprise support

Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

v6.16.3

Compare Source

Today, we are issuing a 6.16.3 patch release focused on bug fixes.

🛠 Fixes

  • Prisma Client (prisma-client generator): fixed missing JSON null type definitions (JsonNull, DbNull, AnyNull) in the browser.ts entrypoint. (#​28186)

  • Prisma Migrate: don't add the default schema (namespace) to the generated migrations unless it was specified explicitly in the schema file. This restores the pre-6.13.0 behaviour that was inadvertently changed with enabling multi-schema support by default. Users who rely on database schemas for multi-tenancy can now again use the same migration files for all of their schemas. (prisma/prisma-engines#5614)

  • Prisma Client: enabled negative take with findFirst again. (prisma/prisma-engines#5616 — contributed by @​jay-l-e-e)

  • Prisma Accelerate: aligned the behaviour of the new Rust-free client with Query Engine to handle self-signed certificates consistently and ensure backward compatibility. (#​28134)

  • @prisma/adapter-mariadb: fixed error event listeners leak. (#​28177 — contributed by @​Tiaansu)

⚠️ Known Limitation: JSON null types in browser builds

The fix introduces the missing types, but the singleton instances differ between the client and browser entrypoints of the generated client. This means that values like Prisma.JsonNull imported from browser cannot yet be assigned to fields expected from the client entrypoint, and vice versa. This results in confusing TypeScript errors if you mix them. A follow-up improvement is planned to unify these utility types across entrypoints.

sapphiredev/framework (@​sapphire/framework)

v5.4.0

Compare Source

🐛 Bug Fixes

🚀 Features

  • Update sapphire dependencies (d3aad6a)

v5.3.7

Compare Source

🐛 Bug Fixes

  • Update result and lexure (c9d86ce)
  • Update code in ClientPermissions and command channel types to match latest discordjs changes (43d7e4a) (#​849 by @​favna)
  • deps: Update all non-major dependencies (e9190b8)
sapphiredev/utilities (@​sapphire/result)

v2.8.0

Compare Source

🚀 Features

v2.7.3

Compare Source

🐛 Bug Fixes

📝 Documentation

tsconfig/bases (@​tsconfig/node20)

v20.1.8

Compare Source

v20.1.7

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.47.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unused-private-class-members] new extension rule (#​10913)
❤️ Thank You

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

v8.46.4

Compare Source

🩹 Fixes
  • parser: error when both projectService and project are set (#​11333)
  • eslint-plugin: handle override modifier in promise-function-async fixer (#​11730)
  • eslint-plugin: [no-deprecated] fix double-report on computed literal identifiers (#​11006, #​10958)
❤️ Thank You

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

v8.46.3

Compare Source

🩹 Fixes
  • eslint-plugin: [no-duplicate-enum-values] support signed numbers (#​11722, #​11723)
  • eslint-plugin: [no-misused-promises] expand union type to retrieve target property (#​11706)
❤️ Thank You

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

v8.46.2

Compare Source

🩹 Fixes
  • eslint-plugin: [prefer-optional-chain] skip optional chaining when it could change the result (#​11702)
❤️ Thank You
  • mdm317

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

v8.46.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-misused-promises] special-case .finally not to report when a promise returning function is provided as an argument (#​11667)
  • eslint-plugin: [prefer-optional-chain] include mixed "nullish comparison style" chains in checks (#​11533)
❤️ Thank You
  • mdm317
  • Ronen Amiel

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

v8.46.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unsafe-member-access] add allowOptionalChaining option (#​11659)
  • rule-schema-to-typescript-types: clean up and make public (#​11633)
🩹 Fixes
  • eslint-plugin: [prefer-readonly-parameter-types] ignore tagged primitives (#​11660)
  • typescript-estree: forbid abstract method and accessor to have implementation (#​11657)
  • eslint-plugin: removed error type previously deprecated (#​11674)
  • eslint-plugin: [no-deprecated] ignore deprecated export imports (#​11603)
  • eslint-plugin: [unbound-method] improve wording around this: void and binding (#​11634)
  • rule-tester: deprecate TestCaseError#type and LintMessage#nodeType (#​11628)
  • eslint-plugin: [no-floating-promises] remove excess parentheses in suggestions (#​11487)
❤️ Thank You

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

v8.45.0

Compare Source

🚀 Features
  • eslint-plugin: expose rule name via RuleModule interface (#​11616)
🩹 Fixes
  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#​11614)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#​11617)
❤️ Thank You

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

v8.44.1

Compare Source

🩹 Fixes
  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#​11611)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#​11599)
  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#​11597)
❤️ Thank You

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.47.0

Compare Source

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.

v8.46.4

Compare Source

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.

v8.46.3

Compare Source

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.

v8.46.2

Compare Source

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.

v8.46.1

Compare Source

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.

v8.46.0

Compare Source

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.

v8.45.0

Compare Source

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.

v8.44.1

Compare Source

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.

discordjs/discord-api-types (discord-api-types)

v0.38.34

Compare Source

Features

v0.38.33

Compare Source

Features

v0.38.32

Compare Source

Features

v0.38.31

Compare Source

Bug Fixes
  • APIModalInteractionResponseCallbackComponent: remove APIFileUploadComponent (#​1406) (e37f802)
  • missing name and size property on APIFileComponent (#​1404) (7d6a934)
  • tsdoc unstable tag is block not modifier (#​1405) (6e5563e)
Features

v0.38.30

Compare Source

Features

v0.38.29

Compare Source

Bug Fixes

v0.38.28

Compare Source

Bug Fixes

v0.38.27

Compare Source

Bug Fixes

v0.38.26

Compare Source

Bug Fixes
  • add guild_id back to GatewayVoiceStateUpdateDispatchData (#​1346) (e52ac85)

v0.38.25

Compare Source

Features

v0.38.24

Compare Source

Features

v0.38.23

Compare Source

Bug Fixes
Features

v0.38.22

Compare Source

Features

v0.38.21

Compare Source

Features

v0.38.20

Compare Source

v0.38.19

Compare Source

Features
  • GatewayActivity: add url & status display type fields (#​1326) (5f9c1e1)

v0.38.18

Compare Source

Bug Fixes
Features

v0.38.17

Compare Source

Features

v0.38.16

Compare Source

Bug Fixes
  • APIApplicationCommandChannelOption: exclude directory channels (#​1300) (574e5c1)

v0.38.15

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 6am" in timezone Asia/Jakarta, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link

changeset-bot bot commented Nov 27, 2024

⚠️ No Changeset found

Latest commit: 37f4bc5

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 337f018 to 7dafffd Compare January 23, 2025 03:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 941c6c4 to 83a7017 Compare January 31, 2025 12:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 83a7017 to 0c13bfd Compare February 2, 2025 08:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0c13bfd to 5004cc0 Compare February 12, 2025 07:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5004cc0 to 0127beb Compare March 4, 2025 00:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0127beb to be942b4 Compare March 13, 2025 07:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d2ba5ac to eaaf688 Compare March 29, 2025 04:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eaaf688 to 3d10fc1 Compare April 12, 2025 15:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 63d4996 to 3d35f9e Compare April 27, 2025 03:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3df97d8 to b7d645f Compare May 3, 2025 12:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b7d645f to 491db18 Compare May 9, 2025 00:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 491db18 to d93ae32 Compare May 17, 2025 03:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from beefe32 to 73c16b0 Compare June 6, 2025 12:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 73c16b0 to 5ac1c20 Compare June 22, 2025 23:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ac1c20 to 10f9cbf Compare July 5, 2025 03:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 10f9cbf to 99e8660 Compare July 27, 2025 04:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0aa4506 to 054bb86 Compare August 11, 2025 03:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 054bb86 to da8135b Compare August 15, 2025 12:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from da8135b to 62ef06f Compare August 23, 2025 03:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 62ef06f to 4d7fb0f Compare September 1, 2025 02:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from d8c3aac to 457dbe4 Compare September 28, 2025 07:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 901bb03 to a3e6efb Compare October 5, 2025 06:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d440d03 to 30d5681 Compare October 14, 2025 04:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3dc22a0 to fdb37b9 Compare October 18, 2025 06:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 47d533c to 92903a8 Compare October 26, 2025 07:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e9cb626 to 1530f7e Compare November 3, 2025 00:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ce9afbc to b7dd0db Compare November 10, 2025 00:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b7dd0db to 6068efe Compare November 16, 2025 15:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6068efe to 37f4bc5 Compare November 19, 2025 15:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant