Skip to content

Releases: makigas/discordjs-reaction-role

v3.1.0

06 Aug 10:51
Compare
Choose a tag to compare

This release adds support for Discord.js 14. discordjs-reaction-role 3.x will still work on Discord.js 13 too, but consider upgrading.

Features

v3.0.0

01 May 10:21
Compare
Choose a tag to compare

This release contains breaking changes because the ReactionRole class is not a default export anymore. While no one likes breaking changes, this change is positive because it makes importing this package easier and less prone to errors, specially to the people using JavaScript and not TypeScript, since it finally makes it possible to require the package in a clean way. See the README.md file for examples.

⚠ BREAKING CHANGES

  • do not use an export default (aa9381b)

v2.1.1

16 Jan 10:31
Compare
Choose a tag to compare

Bug Fixes

v2.1.0

09 Oct 11:49
Compare
Choose a tag to compare

Features

  • support custom emojis by ID (370e5e2)
  • support parsing custom emojis by ID or name (82b297f)

v2.0.2

01 Oct 19:32
Compare
Choose a tag to compare

Bug Fixes

  • dist: exclude .env when uploading to npm (589fcc0)

v2.0.1

01 Sep 19:04
Compare
Choose a tag to compare

Updates dependencies. Maintenance release.

v2.0.0

14 Aug 09:49
Compare
Choose a tag to compare

This version adds support for Discord.js 13. Unfortunately, it also drops support for Discord.js 12, because the events have a different ABI, so this is a breaking change. Still using Discord.js 12 and having a hard time upgrading? 👉 Stay using discordjs-reaction-role 1.0.2, the last version supporting Discord.js 12. You can pin it in your package.json like this:

"discordjs-reaction-role": "<2.0.0"

Sorry for stating this, but consider upgrading your bot.

Features

  • add support for Discord.js 13 (37ea90c)

v1.0.2

14 Aug 09:13
Compare
Choose a tag to compare

This is a little maintenance release before I start working on testing support for Discord.js 13.

It adds a sample bot to assert that the library works. I will benefit from it by using it to quickly test that everything works before releasing a new version, or while trying to fix a bug, and you are encouraged to use it as a test case before reporting a bug if you are unsure whether the bug is on my library or in your code. It also serves as a more functional example of how to use the library.

Features

  • add E2E test to live check the lib works (6178ee4)

Bug Fixes

  • ci: only test index.spec.ts (01a18fb)

v1.0.1

14 Jul 20:55
Compare
Choose a tag to compare

Bug Fixes

  • extractRole may sometimes return undefined (#28) (db8155a)