Skip to content

Commit c05f653

Browse files
authored
chore: Release create-discord-app/bot (#11198)
* build: bump versions * build: specify `monoRepo` Specifying that this is a monorepo seems to fix changelog generation and the conventional bumping. * chore(create-discord-bot): release [email protected]
1 parent 0c1ff5e commit c05f653

File tree

8 files changed

+40
-12
lines changed

8 files changed

+40
-12
lines changed

packages/create-discord-bot/.cliff-jumperrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"name": "create-discord-bot",
33
"packagePath": "packages/create-discord-bot",
44
"tagTemplate": "{{name}}@{{new-version}}",
5-
"identifierBase": false
5+
"identifierBase": false,
6+
"monoRepo": true
67
}

packages/create-discord-bot/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
# [[email protected]](https://github.com/discordjs/discord.js/compare/[email protected]@4.1.0) - (2025-10-24)
6+
7+
## Bug Fixes
8+
9+
- **guide:** Miscellaneous fixes (#11147) ([a97ac82](https://github.com/discordjs/discord.js/commit/a97ac82619f0a807a7b816afa0140ba9161aa50d)) by @Jiralite
10+
11+
## Documentation
12+
13+
- Replace Discord API with Discord Developers (#10968) ([3a060f7](https://github.com/discordjs/discord.js/commit/3a060f74945da78535440890be0a5df8bd0ee36b)) by @Jiralite
14+
15+
## Features
16+
17+
- Bump discord.js in create-discord-bot/app (#11048) ([4b6060d](https://github.com/discordjs/discord.js/commit/4b6060dcd8fc7b3f065fd51fb0fa1a576ee4fca7)) by @vladfrangu
18+
19+
## Refactor
20+
21+
- Update deno template and loader logic (#11060) ([8ca279e](https://github.com/discordjs/discord.js/commit/8ca279e0c3764f4f059c5d3f895b2c76678859e1)) by @almeidx
22+
- **create-discord-bot:** Replace deps with built-in apis (#10971) ([ee3ca6f](https://github.com/discordjs/discord.js/commit/ee3ca6f7c629b169a976edf66b54b0dfe5c3a486)) by @SuperchupuDev
23+
24+
### New Contributors
25+
26+
* @didinele made their first contribution in #11152
27+
* @Jiralite made their first contribution in #11147
28+
* @almeidx made their first contribution in #11133
29+
* @vladfrangu made their first contribution in #11048
30+
* @SuperchupuDev made their first contribution in #10971
31+
532
# [[email protected]](https://github.com/discordjs/discord.js/compare/[email protected]@4.0.0) - (2025-06-21)
633

734
## Bug Fixes

packages/create-discord-bot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "create-discord-bot",
4-
"version": "4.0.0",
4+
"version": "4.1.0",
55
"description": "A simple way to create a startup Discord bot.",
66
"scripts": {
77
"build": "tsc --noEmit && tsup",

packages/create-discord-bot/template/Bun/JavaScript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
1212
},
1313
"dependencies": {
14-
"@discordjs/core": "^2.2.2",
15-
"discord.js": "^14.22.1"
14+
"@discordjs/core": "^2.3.0",
15+
"discord.js": "^14.24.0"
1616
},
1717
"devDependencies": {
1818
"eslint": "^9.37.0",

packages/create-discord-bot/template/Bun/TypeScript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"start": "bun run src/index.[REPLACE_IMPORT_EXT]"
1212
},
1313
"dependencies": {
14-
"@discordjs/core": "^2.2.2",
15-
"discord.js": "^14.22.1"
14+
"@discordjs/core": "^2.3.0",
15+
"discord.js": "^14.24.0"
1616
},
1717
"devDependencies": {
1818
"@sapphire/ts-config": "^5.0.1",

packages/create-discord-bot/template/Deno/deno.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
},
2020
},
2121
"imports": {
22-
"@discordjs/core": "npm:@discordjs/core@^2.2.2",
23-
"discord.js": "npm:discord.js@^14.22.1",
22+
"@discordjs/core": "npm:@discordjs/core@^2.3.0",
23+
"discord.js": "npm:discord.js@^14.24.0",
2424
"zod": "npm:zod@^3.25.76",
2525
},
2626
}

packages/create-discord-bot/template/JavaScript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"deploy": "node --env-file=.env src/util/deploy.js"
1212
},
1313
"dependencies": {
14-
"@discordjs/core": "^2.2.2",
15-
"discord.js": "^14.22.1"
14+
"@discordjs/core": "^2.3.0",
15+
"discord.js": "^14.24.0"
1616
},
1717
"devDependencies": {
1818
"eslint": "^9.37.0",

packages/create-discord-bot/template/TypeScript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"start": "node --env-file=.env dist/index.js"
1313
},
1414
"dependencies": {
15-
"@discordjs/core": "^2.2.2",
16-
"discord.js": "^14.22.1"
15+
"@discordjs/core": "^2.3.0",
16+
"discord.js": "^14.24.0"
1717
},
1818
"devDependencies": {
1919
"@sapphire/ts-config": "^5.0.1",

0 commit comments

Comments
 (0)