This is an easy-to-use free open-source music bot called Stereo. You can host it yourself or use our own hosted version. Checkout https://stereo-bot.xyz/ for more information!
prisma/prisma
### [`v3.8.0`](https://togithub.com/prisma/prisma/releases/3.8.0)
[Compare Source](https://togithub.com/prisma/prisma/compare/3.7.0...3.8.0)
Today, we are excited to share the `3.8.0` stable release 🎉
🌟 **Help us spread the word about Prisma by starring the repo or [tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@prisma%20release%20v3.8.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/3.8.0) about the release.** 🌟
#### Major improvements and new features
##### Full-text search support for MySQL is now in Preview 🚀
We're back from the holidays with a special treat for you.
Prisma now supports full-text search in MySQL. You can enable full-text support by adding the `fullTextIndex` and `fullTextSearch` Preview flags in your Prisma schema and defining `@@fulltext()` indexes on fields you'd like to use full-text search on.
```prisma
generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextIndex", "fullTextSearch"]
}
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
}
model Post {
id Int @id @default(autoincrement())
title String @unique
@@fulltext([title])
}
```
Run `prisma db push` or `prisma migrate dev` to update your database schema. Prisma Client will also be re-generated, enabling you to use full-text search in your application.
```typescript
// search for titles that contain cat, but not fox
await prisma.post.findMany({
where: {
title: {
search: "+cat -fox",
},
},
})
```
Learn more in [our documentation](https://www.prisma.io/docs/concepts/components/prisma-client/full-text-search).
##### `dataProxy` and `interactiveTransactions` Preview Features are now mutually exclusive
Before Prisma `3.8.0`, Prisma `$transaction` queries would fail whenever the Data Proxy and Interactive Transactions Preview features were used together. The `interactiveTransactions` and `dataProxy` Preview flags cannot be used together in this release. Generating the Prisma Client when both Preview features are enabled will throw an error.
##### Fixed support for `push` when adding an element to an array in MongoDB
In `3.8.0`, we fixed [`push`](https://www.prisma.io/docs/reference/api-reference/prisma-client-reference#push) support for `ObjectId`s on MongoDB.
Given the following schema:
```prisma
model Course {
id String @id @default(dbgenerated()) @map("_id") @db.ObjectId
title String
students String[] @db.Array(ObjectId)
}
```
You can now run the following query:
```typescript
// Add a new student to the course
await prisma.course.update({
where: {
id: 1
},
data: {
students: {
push: new ObjectID("...")
}
}
})
```
A special thanks to [Anthony Luzquiños](https://togithub.com/AnthonyLzq) for raising this issue!
#### Fixes and improvements
##### Prisma Migrate
- [@map field name swap causes "Field is already defined on model" error](https://togithub.com/prisma/prisma/issues/8687)
- [`generator.engineType` is not validated](https://togithub.com/prisma/prisma/issues/9120)
- [Migrate creates unnecessary migration with SQL syntax error](https://togithub.com/prisma/prisma/issues/9204)
- [Using datasource property that requires preview feature, highlights only value and not property in validation error](https://togithub.com/prisma/prisma/issues/9314)
- [Index `name` validations](https://togithub.com/prisma/prisma/issues/10082)
- [Postgres - 63 chars limit for index name](https://togithub.com/prisma/prisma/issues/10094)
- [IE: Not recognizing string type](https://togithub.com/prisma/prisma/issues/10347)
- [`previewFeatures = []` gets lost after Introspection](https://togithub.com/prisma/prisma/issues/10460)
- [Prisma format adds invalid fragments to schema if composites are present on a model](https://togithub.com/prisma/prisma/issues/10845)
- [`migrate dev` fails on second run with specific schema](https://togithub.com/prisma/prisma/issues/10983)
- [Error: \[C:\\.cargo\registry\src\github.com-1ecc6299db9ec823\tiberius-0.6.4\src\tds\codec\pre_login.rs:129:22\] unsupported prelogin token: 2 ](https://togithub.com/prisma/prisma/issues/11009)
##### Prisma Client
- [MDBE: Design document for adding `type` support to the Query Engine](https://togithub.com/prisma/prisma/issues/9360)
- [Changing prisma query params using middleware doesn't work](https://togithub.com/prisma/prisma/issues/9522)
- [Implement Mysql Fulltext Querying Capabilities](https://togithub.com/prisma/prisma/issues/10415)
- [MongoDB referentialActions in m-n relationships](https://togithub.com/prisma/prisma/issues/10498)
- [`Error querying the database: db error: ERROR: unsupported startup parameter: options`](https://togithub.com/prisma/prisma/issues/10841)
- [How to push a new ObjectId to an array?](https://togithub.com/prisma/prisma/issues/10906)
- [`@prisma/client` intermittently added and removed from `transitivePeerDependencies` in lockfile](https://togithub.com/prisma/prisma/issues/10973)
##### Language tools (e.g. VS Code)
- [Provider-aware auto-completion is not applied to all auto completions](https://togithub.com/prisma/language-tools/issues/942)
- [Add configuration option to turn off file watcher](https://togithub.com/prisma/language-tools/issues/944)
- [VSCode plugin formatting no longer uses editor `tabSize` configuration when indenting blocks](https://togithub.com/prisma/language-tools/issues/993)
##### Prisma Studio
- [warn(prisma-client) Already 10 Prisma Clients are actively running.](https://togithub.com/prisma/studio/issues/800)
- [`BigInt` breaks studio](https://togithub.com/prisma/studio/issues/802)
- [Model named "@@id"](https://togithub.com/prisma/studio/issues/806)
#### Credits
Huge thanks to [@hyochan](https://togithub.com/hyochan), [@cesconix](https://togithub.com/cesconix) for helping!
#### 📺 Join us for another "What's new in Prisma" livestream
Learn about the latest release and other news from the Prisma community by joining us for another ["What's new in Prisma"](https://www.youtube.com/watch?v=c236Qv1wBIU) livestream.
The stream takes place [on YouTube](https://www.youtube.com/watch?v=c236Qv1wBIU) on **Thursday, January 13** at **5 pm Berlin | 8 am San Francisco**.
sapphiredev/utilities
### [`v3.1.5`](https://togithub.com/sapphiredev/utilities/blob/HEAD/packages/decorators/CHANGELOG.md#315-httpsgithubcomsapphiredevutilitiescomparesapphiredecorators314sapphiredecorators315-2022-01-10)
[Compare Source](https://togithub.com/sapphiredev/utilities/compare/@sapphire/decorators@3.1.4...@sapphire/decorators@3.1.5)
**Note:** Version bump only for package [@sapphire/decorators](https://togithub.com/sapphire/decorators)
sapphiredev/framework
### [`v2.3.0`](https://togithub.com/sapphiredev/framework/blob/HEAD/CHANGELOG.md#230-httpsgithubcomsapphiredevframeworkcomparev222v230-2022-01-08)
[Compare Source](https://togithub.com/sapphiredev/framework/compare/v2.2.2...v2.3.0)
##### Features
- allow mention prefix to be disabled ([#350](https://togithub.com/sapphiredev/framework/issues/350)) ([26ef1dd](https://togithub.com/sapphiredev/framework/commit/26ef1ddb7b94e32935ec8dcc5beeeb29f1e84207))
- **arguments:** enum argument ([#354](https://togithub.com/sapphiredev/framework/issues/354)) ([9a0626c](https://togithub.com/sapphiredev/framework/commit/9a0626c4b3d89de7bcc47bbbfbefb66ff1fc8653))
##### [2.2.2](https://togithub.com/sapphiredev/framework/compare/v2.2.1...v2.2.2) (2021-12-26)
##### Bug Fixes
- **deps:** update sapphire dependencies ([#342](https://togithub.com/sapphiredev/framework/issues/342)) ([b706571](https://togithub.com/sapphiredev/framework/commit/b7065719f2475cb14330a58af46bfd6ef6d90d2f))
- fixed module building code on DiscordJS v13.4.0 ([#346](https://togithub.com/sapphiredev/framework/issues/346)) ([b0d860c](https://togithub.com/sapphiredev/framework/commit/b0d860c578578dc682125c7727d5209adff6a2af))
- make `BooleanArgument`/`resolveBoolean`'s contexts immutable ([#338](https://togithub.com/sapphiredev/framework/issues/338)) ([be130fe](https://togithub.com/sapphiredev/framework/commit/be130fed3193d7ea915a0731dad7fbbfc1dade5f))
##### [2.2.1](https://togithub.com/sapphiredev/framework/compare/v2.2.0...v2.2.1) (2021-12-06)
##### Bug Fixes
- **command:** TS Only - Fixed type of re-export of `Command.Context` ([422a093](https://togithub.com/sapphiredev/framework/commit/422a093bd88e2d47630247520ded3ca6bc28729a))
- **deps:** update sapphire dependencies ([#337](https://togithub.com/sapphiredev/framework/issues/337)) ([0d06bc0](https://togithub.com/sapphiredev/framework/commit/0d06bc07eae2bef34b66771182a33646ed0bb7ae))
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
### [`v5.9.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#591-httpsgithubcomtypescript-eslinttypescript-eslintcomparev590v591-2022-01-10)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.9.0...v5.9.1)
**Note:** Version bump only for package [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)
### [`v5.9.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#590-httpsgithubcomtypescript-eslinttypescript-eslintcomparev581v590-2022-01-03)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.1...v5.9.0)
##### Features
- **experimental-utils:** move isTypeReadonly from eslint-plugin to experimental-utils ([#3658](https://togithub.com/typescript-eslint/typescript-eslint/issues/3658)) ([a9eb0b9](https://togithub.com/typescript-eslint/typescript-eslint/commit/a9eb0b9eb2db291ea36065ec34f84bf5c5504b43))
#### [5.8.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.0...v5.8.1) (2021-12-27)
##### Bug Fixes
- **eslint-plugin:** \[consistent-indexed-object-style] do not report for circular references ([#4347](https://togithub.com/typescript-eslint/typescript-eslint/issues/4347)) ([6edebcd](https://togithub.com/typescript-eslint/typescript-eslint/commit/6edebcda00053eecf7b3e55eeb3fe5d7fb9e7db7))
- **eslint-plugin:** \[consistent-type-definitions] correct fixer with declare keyword ([#4334](https://togithub.com/typescript-eslint/typescript-eslint/issues/4334)) ([0cd911a](https://togithub.com/typescript-eslint/typescript-eslint/commit/0cd911a916805d3b1f8043584e4685f3edd5c427))
- **eslint-plugin:** \[padding-line-between-statements] make function overloading is also processed ([#4345](https://togithub.com/typescript-eslint/typescript-eslint/issues/4345)) ([d31ec26](https://togithub.com/typescript-eslint/typescript-eslint/commit/d31ec264fe5f5cd27e8f522a485e106889f2d380))
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
### [`v5.9.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#591-httpsgithubcomtypescript-eslinttypescript-eslintcomparev590v591-2022-01-10)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.9.0...v5.9.1)
**Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
### [`v5.9.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#590-httpsgithubcomtypescript-eslinttypescript-eslintcomparev581v590-2022-01-03)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.1...v5.9.0)
**Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
#### [5.8.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.0...v5.8.1) (2021-12-27)
**Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
discordjs/discord.js
### [`v13.5.1`](https://togithub.com/discordjs/discord.js/releases/13.5.1)
[Compare Source](https://togithub.com/discordjs/discord.js/compare/13.5.0...13.5.1)
#### Bug Fixes
- **sweepers:** Provide default for object param ([#7182](https://togithub.com/discordjs/discord.js/issues/7182)) ([2dabd82](https://togithub.com/discordjs/discord.js/commit/2dabd82e26134b5050f694f3a9f6524cd3d0c75c))
#### Documentation
- **Sweepers:** Fix typo ([#7165](https://togithub.com/discordjs/discord.js/issues/7165)) ([780b7ed](https://togithub.com/discordjs/discord.js/commit/780b7ed39f173a77fd9eae396133980826926906))
Configuration
📅 Schedule: "before 12pm on Sunday" (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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, click this checkbox.
This PR contains the following updates:
^3.7.0
->^3.8.0
^3.1.4
->^3.1.5
2.2.2
->2.3.0
^16.11.18
->^16.11.19
^8.3.3
->^8.3.4
^5.8.1
->^5.9.1
^5.8.1
->^5.9.1
^13.5.0
->^13.5.1
^3.7.0
->^3.8.0
Release Notes
prisma/prisma
### [`v3.8.0`](https://togithub.com/prisma/prisma/releases/3.8.0) [Compare Source](https://togithub.com/prisma/prisma/compare/3.7.0...3.8.0) Today, we are excited to share the `3.8.0` stable release 🎉 🌟 **Help us spread the word about Prisma by starring the repo or [tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@prisma%20release%20v3.8.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/3.8.0) about the release.** 🌟 #### Major improvements and new features ##### Full-text search support for MySQL is now in Preview 🚀 We're back from the holidays with a special treat for you. Prisma now supports full-text search in MySQL. You can enable full-text support by adding the `fullTextIndex` and `fullTextSearch` Preview flags in your Prisma schema and defining `@@fulltext()` indexes on fields you'd like to use full-text search on. ```prisma generator client { provider = "prisma-client-js" previewFeatures = ["fullTextIndex", "fullTextSearch"] } datasource db { provider = "mysql" url = env("DATABASE_URL") } model Post { id Int @id @default(autoincrement()) title String @unique @@fulltext([title]) } ``` Run `prisma db push` or `prisma migrate dev` to update your database schema. Prisma Client will also be re-generated, enabling you to use full-text search in your application. ```typescript // search for titles that contain cat, but not fox await prisma.post.findMany({ where: { title: { search: "+cat -fox", }, }, }) ``` Learn more in [our documentation](https://www.prisma.io/docs/concepts/components/prisma-client/full-text-search). ##### `dataProxy` and `interactiveTransactions` Preview Features are now mutually exclusive Before Prisma `3.8.0`, Prisma `$transaction` queries would fail whenever the Data Proxy and Interactive Transactions Preview features were used together. The `interactiveTransactions` and `dataProxy` Preview flags cannot be used together in this release. Generating the Prisma Client when both Preview features are enabled will throw an error. ##### Fixed support for `push` when adding an element to an array in MongoDB In `3.8.0`, we fixed [`push`](https://www.prisma.io/docs/reference/api-reference/prisma-client-reference#push) support for `ObjectId`s on MongoDB. Given the following schema: ```prisma model Course { id String @id @default(dbgenerated()) @map("_id") @db.ObjectId title String students String[] @db.Array(ObjectId) } ``` You can now run the following query: ```typescript // Add a new student to the course await prisma.course.update({ where: { id: 1 }, data: { students: { push: new ObjectID("...") } } }) ``` A special thanks to [Anthony Luzquiños](https://togithub.com/AnthonyLzq) for raising this issue! #### Fixes and improvements ##### Prisma Migrate - [@map field name swap causes "Field is already defined on model" error](https://togithub.com/prisma/prisma/issues/8687) - [`generator.engineType` is not validated](https://togithub.com/prisma/prisma/issues/9120) - [Migrate creates unnecessary migration with SQL syntax error](https://togithub.com/prisma/prisma/issues/9204) - [Using datasource property that requires preview feature, highlights only value and not property in validation error](https://togithub.com/prisma/prisma/issues/9314) - [Index `name` validations](https://togithub.com/prisma/prisma/issues/10082) - [Postgres - 63 chars limit for index name](https://togithub.com/prisma/prisma/issues/10094) - [IE: Not recognizing string type](https://togithub.com/prisma/prisma/issues/10347) - [`previewFeatures = []` gets lost after Introspection](https://togithub.com/prisma/prisma/issues/10460) - [Prisma format adds invalid fragments to schema if composites are present on a model](https://togithub.com/prisma/prisma/issues/10845) - [`migrate dev` fails on second run with specific schema](https://togithub.com/prisma/prisma/issues/10983) - [Error: \[C:\\.cargo\registry\src\github.com-1ecc6299db9ec823\tiberius-0.6.4\src\tds\codec\pre_login.rs:129:22\] unsupported prelogin token: 2 ](https://togithub.com/prisma/prisma/issues/11009) ##### Prisma Client - [MDBE: Design document for adding `type` support to the Query Engine](https://togithub.com/prisma/prisma/issues/9360) - [Changing prisma query params using middleware doesn't work](https://togithub.com/prisma/prisma/issues/9522) - [Implement Mysql Fulltext Querying Capabilities](https://togithub.com/prisma/prisma/issues/10415) - [MongoDB referentialActions in m-n relationships](https://togithub.com/prisma/prisma/issues/10498) - [`Error querying the database: db error: ERROR: unsupported startup parameter: options`](https://togithub.com/prisma/prisma/issues/10841) - [How to push a new ObjectId to an array?](https://togithub.com/prisma/prisma/issues/10906) - [`@prisma/client` intermittently added and removed from `transitivePeerDependencies` in lockfile](https://togithub.com/prisma/prisma/issues/10973) ##### Language tools (e.g. VS Code) - [Provider-aware auto-completion is not applied to all auto completions](https://togithub.com/prisma/language-tools/issues/942) - [Add configuration option to turn off file watcher](https://togithub.com/prisma/language-tools/issues/944) - [VSCode plugin formatting no longer uses editor `tabSize` configuration when indenting blocks](https://togithub.com/prisma/language-tools/issues/993) ##### Prisma Studio - [warn(prisma-client) Already 10 Prisma Clients are actively running.](https://togithub.com/prisma/studio/issues/800) - [`BigInt` breaks studio](https://togithub.com/prisma/studio/issues/802) - [Model named "@@id"](https://togithub.com/prisma/studio/issues/806) #### Credits Huge thanks to [@hyochan](https://togithub.com/hyochan), [@cesconix](https://togithub.com/cesconix) for helping! #### 📺 Join us for another "What's new in Prisma" livestream Learn about the latest release and other news from the Prisma community by joining us for another ["What's new in Prisma"](https://www.youtube.com/watch?v=c236Qv1wBIU) livestream. The stream takes place [on YouTube](https://www.youtube.com/watch?v=c236Qv1wBIU) on **Thursday, January 13** at **5 pm Berlin | 8 am San Francisco**.sapphiredev/utilities
### [`v3.1.5`](https://togithub.com/sapphiredev/utilities/blob/HEAD/packages/decorators/CHANGELOG.md#315-httpsgithubcomsapphiredevutilitiescomparesapphiredecorators314sapphiredecorators315-2022-01-10) [Compare Source](https://togithub.com/sapphiredev/utilities/compare/@sapphire/decorators@3.1.4...@sapphire/decorators@3.1.5) **Note:** Version bump only for package [@sapphire/decorators](https://togithub.com/sapphire/decorators)sapphiredev/framework
### [`v2.3.0`](https://togithub.com/sapphiredev/framework/blob/HEAD/CHANGELOG.md#230-httpsgithubcomsapphiredevframeworkcomparev222v230-2022-01-08) [Compare Source](https://togithub.com/sapphiredev/framework/compare/v2.2.2...v2.3.0) ##### Features - allow mention prefix to be disabled ([#350](https://togithub.com/sapphiredev/framework/issues/350)) ([26ef1dd](https://togithub.com/sapphiredev/framework/commit/26ef1ddb7b94e32935ec8dcc5beeeb29f1e84207)) - **arguments:** enum argument ([#354](https://togithub.com/sapphiredev/framework/issues/354)) ([9a0626c](https://togithub.com/sapphiredev/framework/commit/9a0626c4b3d89de7bcc47bbbfbefb66ff1fc8653)) ##### [2.2.2](https://togithub.com/sapphiredev/framework/compare/v2.2.1...v2.2.2) (2021-12-26) ##### Bug Fixes - **deps:** update sapphire dependencies ([#342](https://togithub.com/sapphiredev/framework/issues/342)) ([b706571](https://togithub.com/sapphiredev/framework/commit/b7065719f2475cb14330a58af46bfd6ef6d90d2f)) - fixed module building code on DiscordJS v13.4.0 ([#346](https://togithub.com/sapphiredev/framework/issues/346)) ([b0d860c](https://togithub.com/sapphiredev/framework/commit/b0d860c578578dc682125c7727d5209adff6a2af)) - make `BooleanArgument`/`resolveBoolean`'s contexts immutable ([#338](https://togithub.com/sapphiredev/framework/issues/338)) ([be130fe](https://togithub.com/sapphiredev/framework/commit/be130fed3193d7ea915a0731dad7fbbfc1dade5f)) ##### [2.2.1](https://togithub.com/sapphiredev/framework/compare/v2.2.0...v2.2.1) (2021-12-06) ##### Bug Fixes - **command:** TS Only - Fixed type of re-export of `Command.Context` ([422a093](https://togithub.com/sapphiredev/framework/commit/422a093bd88e2d47630247520ded3ca6bc28729a)) - **deps:** update sapphire dependencies ([#337](https://togithub.com/sapphiredev/framework/issues/337)) ([0d06bc0](https://togithub.com/sapphiredev/framework/commit/0d06bc07eae2bef34b66771182a33646ed0bb7ae))typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
### [`v5.9.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#591-httpsgithubcomtypescript-eslinttypescript-eslintcomparev590v591-2022-01-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.9.0...v5.9.1) **Note:** Version bump only for package [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin) ### [`v5.9.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#590-httpsgithubcomtypescript-eslinttypescript-eslintcomparev581v590-2022-01-03) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.1...v5.9.0) ##### Features - **experimental-utils:** move isTypeReadonly from eslint-plugin to experimental-utils ([#3658](https://togithub.com/typescript-eslint/typescript-eslint/issues/3658)) ([a9eb0b9](https://togithub.com/typescript-eslint/typescript-eslint/commit/a9eb0b9eb2db291ea36065ec34f84bf5c5504b43)) #### [5.8.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.0...v5.8.1) (2021-12-27) ##### Bug Fixes - **eslint-plugin:** \[consistent-indexed-object-style] do not report for circular references ([#4347](https://togithub.com/typescript-eslint/typescript-eslint/issues/4347)) ([6edebcd](https://togithub.com/typescript-eslint/typescript-eslint/commit/6edebcda00053eecf7b3e55eeb3fe5d7fb9e7db7)) - **eslint-plugin:** \[consistent-type-definitions] correct fixer with declare keyword ([#4334](https://togithub.com/typescript-eslint/typescript-eslint/issues/4334)) ([0cd911a](https://togithub.com/typescript-eslint/typescript-eslint/commit/0cd911a916805d3b1f8043584e4685f3edd5c427)) - **eslint-plugin:** \[padding-line-between-statements] make function overloading is also processed ([#4345](https://togithub.com/typescript-eslint/typescript-eslint/issues/4345)) ([d31ec26](https://togithub.com/typescript-eslint/typescript-eslint/commit/d31ec264fe5f5cd27e8f522a485e106889f2d380))typescript-eslint/typescript-eslint (@typescript-eslint/parser)
### [`v5.9.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#591-httpsgithubcomtypescript-eslinttypescript-eslintcomparev590v591-2022-01-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.9.0...v5.9.1) **Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser) ### [`v5.9.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#590-httpsgithubcomtypescript-eslinttypescript-eslintcomparev581v590-2022-01-03) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.1...v5.9.0) **Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser) #### [5.8.1](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.8.0...v5.8.1) (2021-12-27) **Note:** Version bump only for package [@typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)discordjs/discord.js
### [`v13.5.1`](https://togithub.com/discordjs/discord.js/releases/13.5.1) [Compare Source](https://togithub.com/discordjs/discord.js/compare/13.5.0...13.5.1) #### Bug Fixes - **sweepers:** Provide default for object param ([#7182](https://togithub.com/discordjs/discord.js/issues/7182)) ([2dabd82](https://togithub.com/discordjs/discord.js/commit/2dabd82e26134b5050f694f3a9f6524cd3d0c75c)) #### Documentation - **Sweepers:** Fix typo ([#7165](https://togithub.com/discordjs/discord.js/issues/7165)) ([780b7ed](https://togithub.com/discordjs/discord.js/commit/780b7ed39f173a77fd9eae396133980826926906))Configuration
📅 Schedule: "before 12pm on Sunday" (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by WhiteSource Renovate. View repository job log here.