Skip to content

Commit 2e9ac5d

Browse files
committed
release: v9.0.0
1 parent 32f197c commit 2e9ac5d

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

CHANGELOG.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,32 @@ You can see the docs for every version at [here](https://dbots.js.org/#/docs).
99

1010
## [Unreleased]
1111

12+
## [9.0.0] - 2021-04-08
13+
14+
### Global breaking changes:
15+
16+
- `serviceClasses`: the `serviceClasses` property will no longer be exported as a member of the module. You can still get a record with every list using `Service.getAll()`. (#203)
17+
- We're dropping support for internal class names: that means that from now on, we could change the service class names without marking it as a breaking change. In order to avoid issues with your code, please use the `Service.get()` method to get service classes, instead of importing them directly. This version already contains some changes to class names, so make sure that you're importing them in the supported way. (#203)
18+
- Removed services: Arcane, BotsDataBase, DiscordAppsDev, DiscordBotsDirectory, ListMyBots, ParadiseBots (#204).
19+
These lists have been removed because they've been shut down.
20+
21+
More list-specific breaking changes are listed below
22+
23+
### Fixed:
24+
25+
- **BREAKING** InfinityBots: update list name, aliases and URL (#199)
26+
- The package file now has a proper typings field
27+
- Clients: the fillers now calculate the user count using each guild's member count, instead of relying on the user cache size (ref #182)
28+
- Clients: improved consistency in getters' return types
29+
- DiscordJS: fixed the way that the filler gets the shard ID for discord.js@v12 (#184)
30+
- BotListSpace: update list name and URL (#202)
31+
32+
### Added:
33+
34+
- New service: FatesList (#186)
35+
36+
### Fixed:
37+
1238
## [8.0.2] - 2021-03-23
1339

1440
### Fixed:
@@ -186,7 +212,7 @@ You can also refer to issue #71.
186212
- Update endpoints for ListMyBots, GlennBotList and DiscordBotList.
187213

188214
<!-- prettier-ignore -->
189-
[Unreleased]: https://github.com/dbots-pkg/dbots.js/compare/v8.0.2...HEAD
215+
[Unreleased]: https://github.com/dbots-pkg/dbots.js/compare/v9.0.0...HEAD
190216
[4.0.0]: https://github.com/dbots-pkg/dbots.js/compare/v3.0.1...v4.0.0
191217
[4.1.0]: https://github.com/dbots-pkg/dbots.js/compare/v4.0.0...v4.1.0
192218
[5.0.0]: https://github.com/dbots-pkg/dbots.js/compare/v4.1.0...v5.0.0
@@ -203,3 +229,4 @@ You can also refer to issue #71.
203229
[8.0.0]: https://github.com/dbots-pkg/dbots.js/compare/v7.0.1...v8.0.0
204230
[8.0.1]: https://github.com/dbots-pkg/dbots.js/compare/v8.0.0...v8.0.1
205231
[8.0.2]: https://github.com/dbots-pkg/dbots.js/compare/v8.0.1...v8.0.2
232+
[9.0.0]: https://github.com/dbots-pkg/dbots.js/compare/v8.0.2...v9.0.0

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dbots",
3-
"version": "8.0.2",
3+
"version": "9.0.0",
44
"description": "Discord bot list poster and stats retriever",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",

0 commit comments

Comments
 (0)