Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#169)
Browse files Browse the repository at this point in the history
* fix(deps): update all non-major dependencies

* chore: a few bits tried to escape, but we caught them

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jeroen Claassens <[email protected]>
  • Loading branch information
renovate[bot] and favna authored Jan 13, 2025
1 parent fba0ecc commit c69abb4
Show file tree
Hide file tree
Showing 8 changed files with 476 additions and 489 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Gemboard Docker image
uses: docker/build-push-action@v6.10.0
uses: docker/build-push-action@v6.11.0
with:
push: true
context: ./
Expand Down
574 changes: 287 additions & 287 deletions .yarn/releases/yarn-4.5.3.cjs → .yarn/releases/yarn-4.6.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-git-hooks.cjs
spec: 'https://raw.githubusercontent.com/trufflehq/yarn-plugin-git-hooks/main/bundles/%40yarnpkg/plugin-git-hooks.js'

yarnPath: .yarn/releases/yarn-4.5.3.cjs
yarnPath: .yarn/releases/yarn-4.6.0.cjs
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
"dev": "tsup --watch --onSuccess \"yarn start\""
},
"dependencies": {
"@prisma/client": "^6.1.0",
"@prisma/client": "^6.2.1",
"@sapphire/decorators": "^6.1.1",
"@sapphire/framework": "^5.3.1",
"@sapphire/framework": "^5.3.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"@skyra/start-banner": "^2.0.1",
"bufferutil": "^4.0.9",
"colorette": "^2.0.20",
"discord.js": "^14.16.3",
"discord.js": "^14.17.3",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"utf-8-validate": "^6.0.5",
Expand All @@ -48,10 +48,10 @@
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.10.3",
"@swc/core": "^1.10.7",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.10.2",
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
Expand All @@ -62,7 +62,7 @@
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^6.1.0",
"prisma": "^6.2.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "~5.4.5"
Expand Down Expand Up @@ -93,7 +93,7 @@
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@4.5.3",
"packageManager": "yarn@4.6.0",
"volta": {
"node": "20.18.1"
}
Expand Down
3 changes: 2 additions & 1 deletion src/commands/leaderboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getGuildIds } from '#utils/utils';
import { ApplyOptions } from '@sapphire/decorators';
import { Command, Result, UserError } from '@sapphire/framework';
import { isNullish } from '@sapphire/utilities';
import { EmbedBuilder, bold, userMention } from 'discord.js';
import { ApplicationIntegrationType, EmbedBuilder, bold, userMention } from 'discord.js';

@ApplyOptions<Command.Options>({
preconditions: ['ValidServer', 'ValidCommandChannel'],
Expand All @@ -17,6 +17,7 @@ export class SlashCommand extends Command {
(builder) =>
builder //
.setName(this.name)
.setIntegrationTypes(ApplicationIntegrationType.GuildInstall)
.setDescription(this.description),
{ guildIds: getGuildIds() }
);
Expand Down
4 changes: 2 additions & 2 deletions src/commands/star.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getGuildIds } from '#utils/utils';
import { ApplyOptions } from '@sapphire/decorators';
import { Command, UserError } from '@sapphire/framework';
import { isNullish } from '@sapphire/utilities';
import { ApplicationCommandType, type Message, type MessageContextMenuCommandInteraction } from 'discord.js';
import { ApplicationCommandType, ApplicationIntegrationType, type Message, type MessageContextMenuCommandInteraction } from 'discord.js';

@ApplyOptions<Command.Options>({
preconditions: ['IsMessageContextMenuCommand', 'NoSelfStar', 'NoBotStar', 'ValidServer', 'ValidChannel']
Expand All @@ -16,7 +16,7 @@ export class SlashCommand extends Command {
(builder) =>
builder //
.setName('Star Message')
// @ts-expect-error temporarily ignore the error because discord.js broke types
.setIntegrationTypes(ApplicationIntegrationType.GuildInstall)
.setType(ApplicationCommandType.Message),

{ guildIds: getGuildIds() }
Expand Down
4 changes: 2 additions & 2 deletions src/commands/unstar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getGuildIds } from '#utils/utils';
import { ApplyOptions } from '@sapphire/decorators';
import { Command, UserError } from '@sapphire/framework';
import { isNullish } from '@sapphire/utilities';
import { ApplicationCommandType, type MessageContextMenuCommandInteraction } from 'discord.js';
import { ApplicationCommandType, ApplicationIntegrationType, type MessageContextMenuCommandInteraction } from 'discord.js';

@ApplyOptions<Command.Options>({
preconditions: ['IsMessageContextMenuCommand', 'NoSelfStar', 'NoBotStar', 'ValidServer', 'ValidChannel']
Expand All @@ -20,7 +20,7 @@ export class SlashCommand extends Command {
(builder) =>
builder //
.setName('Unstar Message')
// @ts-expect-error temporarily ignore the error because discord.js broke types
.setIntegrationTypes(ApplicationIntegrationType.GuildInstall)
.setType(ApplicationCommandType.Message),

{ guildIds: getGuildIds() }
Expand Down
Loading

0 comments on commit c69abb4

Please sign in to comment.