Releases: makigas/discordjs-reaction-role
v3.1.0
v3.0.0
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
v2.1.0
v2.0.2
v2.0.1
v2.0.0
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
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)