Skip to content

Commit 422da8c

Browse files
committed
release: v6.3.0
1 parent 9f3bdb4 commit 422da8c

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [6.3.0] - 2024-09-25
9+
### Changed:
10+
- POST callbacks will now return responses as `InitialCallbackResponse`, multiple functions can return this instead of a boolean denoting success
11+
### Added:
12+
- SlashCreators using webservers can use the `postCallbacks` option to serve 202s to interactions and POST a callback instead
13+
- Launching activities with `MessageInteractionContext#launchActivity`
14+
- Entry points
15+
- `SlashCommand#getMention`
16+
- `MessageInteractionContext#defer` now supports using any message flags
17+
- Support for editing message flags
18+
- Support for sending polls
19+
- [types] Updated `MessageAttachmentOptions` to support voice message properties
20+
- Message classes now support the following:
21+
- call objects (`call`)
22+
- more thread properties (`position` and `thread`)
23+
- polls (`poll`)
24+
- `activity`
25+
- `applicationID`
26+
- message snapshots / forwarded messages (`messageSnapshots`)
27+
- stickers (`stickerItems`)
28+
### Fixed:
29+
- HTTP errors will now properly format request errors
30+
- Fastify/Express servers should no longer respond early to some interactions
31+
- `Message#interactionMetadata` parsing has been updated and fixed to include more data
32+
- [types] Updated AutocompleteChoice to include `name_localizations`
33+
- [types] Updated MessageAttachment to include `waveform`, `duration_secs`, `flags`, `title`, and `ephemeral`
34+
- [types] Updated `Message#components` to be an array of any component rather than just action rows (See https://github.com/discord/discord-api-docs/pull/7115)
835
## [6.2.1] - 2024-07-21
936
### Fixed:
1037
- Fixed global modal submit handlers causing errors ([#622](https://github.com/Snazzah/slash-create/pull/622))
@@ -562,7 +589,7 @@ This release features mostly completed documentation and changes to the packages
562589
## [0.1.0] - 2020-12-15
563590
- Initial release.
564591

565-
[Unreleased]: https://github.com/Snazzah/slash-create/compare/v6.2.1...HEAD
592+
[Unreleased]: https://github.com/Snazzah/slash-create/compare/v6.3.0...HEAD
566593
[0.1.0]: https://github.com/Snazzah/slash-create/releases/tag/v0.1.0
567594
[0.2.0]: https://github.com/Snazzah/slash-create/compare/v0.1.0...v0.2.0
568595
[1.0.0]: https://github.com/Snazzah/slash-create/compare/v0.2.0...v1.0.0
@@ -636,3 +663,4 @@ This release features mostly completed documentation and changes to the packages
636663
[6.1.4]: https://github.com/Snazzah/slash-create/compare/v6.1.3...v6.1.4
637664
[6.2.0]: https://github.com/Snazzah/slash-create/compare/v6.1.4...v6.2.0
638665
[6.2.1]: https://github.com/Snazzah/slash-create/compare/v6.2.0...v6.2.1
666+
[6.3.0]: https://github.com/Snazzah/slash-create/compare/v6.2.1...v6.3.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "slash-create",
3-
"version": "6.2.1",
3+
"version": "6.3.0",
44
"description": "Create and sync Discord slash commands!",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",

0 commit comments

Comments
 (0)