Skip to content

Commit a319607

Browse files
committed
chore(release): builders, collection, rest and voice
1 parent 487a5a2 commit a319607

File tree

11 files changed

+415
-256
lines changed

11 files changed

+415
-256
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838
},
3939
"homepage": "https://discord.js.org",
4040
"devDependencies": {
41-
"@commitlint/cli": "^16.0.2",
41+
"@commitlint/cli": "^16.1.0",
4242
"@commitlint/config-angular": "^16.0.0",
4343
"@favware/npm-deprecate": "^1.0.4",
4444
"conventional-changelog-cli": "^2.2.2",
4545
"husky": "^7.0.4",
4646
"prettier": "^2.5.1",
47-
"turbo": "1.0.24"
47+
"turbo": "1.0.28"
4848
},
4949
"engines": {
5050
"node": ">=16.9.0"

packages/builders/CHANGELOG.md

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

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

5+
# [0.12.0](https://github.com/discordjs/discord.js/compare/@discordjs/builders@0.11.0...@discordjs/builders@0.12.0) (2021-12-08)
6+
7+
## Bug Fixes
8+
9+
- **builders:** Dont export `Button` component stuff twice (#7289) ([86d9d06](https://github.com/discordjs/discord.js/commit/86d9d0674347c08d056cd054cb4ce4253195bf94))
10+
11+
## Documentation
12+
13+
- **SlashCommandSubcommands:** Updating old links from Discord developer portal (#7224) ([bd7a6f2](https://github.com/discordjs/discord.js/commit/bd7a6f265212624199fb0b2ddc8ece39759c63de))
14+
15+
## Features
16+
17+
- Add components to /builders (#7195) ([2bb40fd](https://github.com/discordjs/discord.js/commit/2bb40fd767cf5918e3ba422ff73082734bfa05b0))
18+
19+
## Typings
20+
21+
- Make `required` a boolean (#7307) ([c10afea](https://github.com/discordjs/discord.js/commit/c10afeadc702ab98bec5e077b3b92494a9596f9c))
22+
523
# [0.11.0](https://github.com/discordjs/builders/compare/v0.10.0...v0.11.0) (2021-12-29)
624

725
## Bug Fixes

packages/builders/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@discordjs/builders",
3-
"version": "0.11.0",
3+
"version": "0.12.0",
44
"description": "A set of builders that you can use when creating your bot",
55
"scripts": {
66
"build": "tsup",
@@ -9,7 +9,7 @@
99
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
1010
"docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
1111
"prepublishOnly": "yarn build && yarn lint && yarn test",
12-
"changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'"
12+
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'"
1313
},
1414
"main": "./dist/index.js",
1515
"module": "./dist/index.mjs",
@@ -51,33 +51,33 @@
5151
},
5252
"homepage": "https://discord.js.org",
5353
"dependencies": {
54-
"@sindresorhus/is": "^4.2.1",
54+
"@sindresorhus/is": "^4.3.0",
5555
"discord-api-types": "^0.26.1",
5656
"ts-mixer": "^6.0.0",
5757
"tslib": "^2.3.1",
5858
"zod": "^3.11.6"
5959
},
6060
"devDependencies": {
61-
"@babel/core": "^7.16.5",
61+
"@babel/core": "^7.16.12",
6262
"@babel/plugin-proposal-decorators": "^7.16.5",
63-
"@babel/preset-env": "^7.16.8",
63+
"@babel/preset-env": "^7.16.11",
6464
"@babel/preset-typescript": "^7.16.5",
6565
"@discordjs/ts-docgen": "^0.3.4",
6666
"@types/jest": "^27.0.3",
6767
"@types/node": "^16.11.6",
68-
"@typescript-eslint/eslint-plugin": "^5.9.1",
69-
"@typescript-eslint/parser": "^5.9.1",
68+
"@typescript-eslint/eslint-plugin": "^5.10.0",
69+
"@typescript-eslint/parser": "^5.10.0",
7070
"babel-plugin-transform-typescript-metadata": "^0.3.2",
71-
"eslint": "^8.5.0",
71+
"eslint": "^8.7.0",
7272
"eslint-config-marine": "^9.3.2",
7373
"eslint-config-prettier": "^8.3.0",
7474
"eslint-plugin-prettier": "^4.0.0",
7575
"jest": "^27.4.7",
7676
"prettier": "^2.5.1",
7777
"standard-version": "^9.3.2",
7878
"tsup": "^5.11.11",
79-
"typedoc": "^0.22.10",
80-
"typescript": "^4.5.4"
79+
"typedoc": "^0.22.11",
80+
"typescript": "^4.5.5"
8181
},
8282
"engines": {
8383
"node": ">=16.9.0"

packages/collection/CHANGELOG.md

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

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

5+
# [0.5.0](https://github.com/discordjs/discord.js/compare/@discordjs/collection@0.4.0...@discordjs/collection@0.5.0) (2021-12-08)
6+
7+
## Refactor
8+
9+
- Make `intersect` perform a true intersection (#7211) ([d8efba2](https://github.com/discordjs/discord.js/commit/d8efba24e09aa2a8dbf028fc57a561a56e7833fd))
10+
11+
## Typings
12+
13+
- Add `ReadonlyCollection` (#7245) ([db25f52](https://github.com/discordjs/discord.js/commit/db25f529b26d7c819c1c42ad3e26c2263ea2da0e))
14+
- **Collection:** Union types on `intersect` and `difference` (#7196) ([1f9b922](https://github.com/discordjs/discord.js/commit/1f9b9225f2066e9cc66c3355417139fd25cc403c))
15+
516
# [0.4.0](https://github.com/discordjs/collection/compare/v0.3.2...v0.4.0) (2021-12-24)
617

718
## Features

packages/collection/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@discordjs/collection",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Utility data structure used in discord.js",
55
"scripts": {
66
"test": "jest --pass-with-no-tests",
@@ -9,7 +9,7 @@
99
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
1010
"docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
1111
"prepublishOnly": "yarn build && yarn lint && yarn test",
12-
"changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/collection/*'"
12+
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/collection/*'"
1313
},
1414
"main": "./dist/index.js",
1515
"module": "./dist/index.mjs",
@@ -47,24 +47,24 @@
4747
},
4848
"homepage": "https://discord.js.org",
4949
"devDependencies": {
50-
"@babel/core": "^7.16.5",
51-
"@babel/preset-env": "^7.16.8",
50+
"@babel/core": "^7.16.12",
51+
"@babel/preset-env": "^7.16.11",
5252
"@babel/preset-typescript": "^7.16.5",
5353
"@discordjs/ts-docgen": "^0.3.4",
5454
"@types/jest": "^27.0.3",
5555
"@types/node": "^16.11.6",
56-
"@typescript-eslint/eslint-plugin": "^5.9.1",
57-
"@typescript-eslint/parser": "^5.9.1",
58-
"eslint": "^8.5.0",
56+
"@typescript-eslint/eslint-plugin": "^5.10.0",
57+
"@typescript-eslint/parser": "^5.10.0",
58+
"eslint": "^8.7.0",
5959
"eslint-config-marine": "^9.3.2",
6060
"eslint-config-prettier": "^8.3.0",
6161
"eslint-plugin-prettier": "^4.0.0",
6262
"jest": "^27.4.7",
6363
"prettier": "^2.5.1",
6464
"standard-version": "^9.3.2",
6565
"tsup": "^5.11.11",
66-
"typedoc": "^0.22.10",
67-
"typescript": "^4.5.4"
66+
"typedoc": "^0.22.11",
67+
"typescript": "^4.5.5"
6868
},
6969
"engines": {
7070
"node": ">=16.9.0"

packages/discord.js/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@
5050
"@discordjs/builders": "^0.11.0",
5151
"@discordjs/collection": "^0.4.0",
5252
"@sapphire/async-queue": "^1.1.9",
53-
"@sapphire/snowflake": "^3.0.0",
53+
"@sapphire/snowflake": "^3.0.1",
5454
"@types/node-fetch": "^2.5.12",
5555
"@types/ws": "^8.2.2",
5656
"discord-api-types": "^0.26.1",
5757
"form-data": "^4.0.0",
5858
"node-fetch": "^2.6.1",
59-
"ws": "^8.4.0"
59+
"ws": "^8.4.2"
6060
},
6161
"devDependencies": {
6262
"@discordjs/docgen": "^0.11.0",
6363
"@types/node": "^16.11.12",
6464
"dtslint": "^4.2.1",
65-
"eslint": "^8.5.0",
65+
"eslint": "^8.7.0",
6666
"eslint-config-prettier": "^8.3.0",
6767
"eslint-plugin-import": "^2.25.4",
6868
"eslint-plugin-prettier": "^4.0.0",
@@ -72,7 +72,7 @@
7272
"prettier": "^2.5.1",
7373
"tsd": "^0.19.0",
7474
"tslint": "^6.1.3",
75-
"typescript": "^4.5.4"
75+
"typescript": "^4.5.5"
7676
},
7777
"engines": {
7878
"node": ">=16.9.0"

packages/rest/CHANGELOG.md

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

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

5+
# [0.3.0](https://github.com/discordjs/discord.js/compare/@discordjs/rest@0.2.0...@discordjs/rest@0.3.0) (2021-12-08)
6+
7+
## Bug Fixes
8+
9+
- **rest:** Don't add empty query (#7308) ([d0fa5aa](https://github.com/discordjs/discord.js/commit/d0fa5aaa26d316608120bca3050e14eefbe2f93b))
10+
- **rest:** Use http agent when protocol is not https (#7309) ([d8ea572](https://github.com/discordjs/discord.js/commit/d8ea572fb8a51f2f6a902c4926e814017d115708))
11+
- `ref` delay for rate limited requests (#7239) ([ed0cfd9](https://github.com/discordjs/discord.js/commit/ed0cfd91edc3a2b23a34a8ecd9db38baa12b52fa))
12+
13+
## Documentation
14+
15+
- Fix a typo and use milliseconds instead of ms (#7251) ([0dd56af](https://github.com/discordjs/discord.js/commit/0dd56afe1cdf16f1e7d9afe1f8c29c31d1833a25))
16+
17+
## Features
18+
19+
- Rest hash and handler sweeping (#7255) ([3bb4829](https://github.com/discordjs/discord.js/commit/3bb48298004d292214c6cb8f927c2fea78a42952))
20+
- Rest docs (#7281) ([9054f2f](https://github.com/discordjs/discord.js/commit/9054f2f7ad7f246431e5f53403535bf301c27a80))
21+
22+
## Refactor
23+
24+
- **files:** File data can be much more than buffer (#7238) ([86ab526](https://github.com/discordjs/discord.js/commit/86ab526d493415b14b79b51d08c3677897d219ee))
25+
- **rest:** Rename attachment to file (#7199) ([c969cbf](https://github.com/discordjs/discord.js/commit/c969cbf6524093757d47108b6a55e62dcb210e8b))
26+
27+
## Testing
28+
29+
- **voice:** Fix tests ([62c74b8](https://github.com/discordjs/discord.js/commit/62c74b8333066465e5bd295b8b102b35a506751d))
30+
531
# [0.2.0-canary.0](https://github.com/discordjs/discord.js-modules/compare/@discordjs/rest@0.1.1-canary.0...@discordjs/rest@0.2.0-canary.0) (2021-12-08)
632

733
## Bug Fixes

packages/rest/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@discordjs/rest",
3-
"version": "0.2.0-canary.0",
3+
"version": "0.3.0",
44
"description": "The REST API for discord.js",
55
"scripts": {
66
"build": "tsup && tsc --emitDeclarationOnly --incremental",
@@ -9,7 +9,7 @@
99
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
1010
"docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
1111
"prepublishOnly": "yarn build && yarn lint && yarn test",
12-
"changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/rest/*'"
12+
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/rest/*'"
1313
},
1414
"main": "./dist/index.js",
1515
"module": "./dist/index.mjs",
@@ -51,34 +51,34 @@
5151
"dependencies": {
5252
"@discordjs/collection": "^0.4.0",
5353
"@sapphire/async-queue": "^1.1.9",
54-
"@sapphire/snowflake": "^3.0.0",
54+
"@sapphire/snowflake": "^3.0.1",
5555
"discord-api-types": "^0.26.1",
5656
"form-data": "^4.0.0",
5757
"node-fetch": "^2.6.5",
5858
"tslib": "^2.3.1"
5959
},
6060
"devDependencies": {
61-
"@babel/core": "^7.16.7",
61+
"@babel/core": "^7.16.12",
6262
"@babel/plugin-proposal-decorators": "^7.16.7",
63-
"@babel/preset-env": "^7.16.8",
63+
"@babel/preset-env": "^7.16.11",
6464
"@babel/preset-typescript": "^7.16.7",
6565
"@discordjs/ts-docgen": "^0.3.4",
6666
"@types/jest": "^27.4.0",
6767
"@types/node-fetch": "^2.5.10",
68-
"@typescript-eslint/eslint-plugin": "^5.9.1",
69-
"@typescript-eslint/parser": "^5.9.1",
68+
"@typescript-eslint/eslint-plugin": "^5.10.0",
69+
"@typescript-eslint/parser": "^5.10.0",
7070
"babel-plugin-const-enum": "^1.2.0",
7171
"babel-plugin-transform-typescript-metadata": "^0.3.2",
72-
"eslint": "^8.5.0",
72+
"eslint": "^8.7.0",
7373
"eslint-config-marine": "^9.3.2",
7474
"eslint-config-prettier": "^8.3.0",
7575
"eslint-plugin-prettier": "^4.0.0",
7676
"jest": "^27.4.7",
77-
"nock": "^13.2.1",
77+
"nock": "^13.2.2",
7878
"prettier": "^2.5.1",
7979
"tsup": "^5.11.11",
80-
"typedoc": "^0.22.10",
81-
"typescript": "^4.5.4"
80+
"typedoc": "^0.22.11",
81+
"typescript": "^4.5.5"
8282
},
8383
"engines": {
8484
"node": ">=16.9.0"

packages/voice/CHANGELOG.md

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

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

5+
# [0.8.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.7.5...@discordjs/voice@0.8.0) (2021-12-08)
6+
7+
## Refactor
8+
9+
- PresenceUpdate and demuxProbe (#7248) ([1745973](https://github.com/discordjs/discord.js/commit/174597302408f13c5bb685e2fb02ae2137cb481d))
10+
11+
## Testing
12+
13+
- **voice:** Fix tests ([62c74b8](https://github.com/discordjs/discord.js/commit/62c74b8333066465e5bd295b8b102b35a506751d))
14+
- Fix voice secretbox tests ([4a2dbd6](https://github.com/discordjs/discord.js/commit/4a2dbd62382f904d596b34da0116d50e724b81c4))
15+
- Fix voice tests ([b593bd3](https://github.com/discordjs/discord.js/commit/b593bd32a98282a92fa28f2fb0a8ef239866622c))
16+
517
# [0.7.5](https://github.com/discordjs/voice/compare/v0.7.4...v0.7.5) (2021-11-12)
618

719
## Bug Fixes

packages/voice/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@discordjs/voice",
3-
"version": "0.7.5",
3+
"version": "0.8.0",
44
"description": "Implementation of the Discord Voice API for node.js",
55
"scripts": {
66
"build": "tsup && node scripts/postbuild.mjs",
@@ -54,30 +54,30 @@
5454
"prism-media": "^1.3.2",
5555
"tiny-typed-emitter": "^2.1.0",
5656
"tslib": "^2.3.1",
57-
"ws": "^8.2.3"
57+
"ws": "^8.4.2"
5858
},
5959
"devDependencies": {
60-
"@babel/core": "^7.16.0",
61-
"@babel/preset-env": "^7.16.8",
60+
"@babel/core": "^7.16.12",
61+
"@babel/preset-env": "^7.16.11",
6262
"@babel/preset-typescript": "^7.16.0",
6363
"@discordjs/ts-docgen": "^0.3.2",
6464
"@types/jest": "^27.0.2",
6565
"@types/node": "^16.11.7",
66-
"@typescript-eslint/eslint-plugin": "^5.9.1",
67-
"@typescript-eslint/parser": "^5.9.1",
68-
"eslint": "^8.2.0",
66+
"@typescript-eslint/eslint-plugin": "^5.10.0",
67+
"@typescript-eslint/parser": "^5.10.0",
68+
"eslint": "^8.7.0",
6969
"eslint-config-marine": "^9.3.2",
7070
"eslint-config-prettier": "^8.3.0",
7171
"eslint-plugin-prettier": "^4.0.0",
7272
"jest": "^27.4.7",
73-
"jest-websocket-mock": "^2.2.1",
74-
"mock-socket": "^9.0.7",
73+
"jest-websocket-mock": "^2.3.0",
74+
"mock-socket": "^9.1.0",
7575
"prettier": "^2.4.1",
7676
"standard-version": "^9.3.2",
7777
"tsup": "^5.11.11",
7878
"tweetnacl": "^1.0.3",
79-
"typedoc": "^0.22.8",
80-
"typescript": "^4.4.4"
79+
"typedoc": "^0.22.11",
80+
"typescript": "^4.5.5"
8181
},
8282
"engines": {
8383
"node": ">=16.9.0"

0 commit comments

Comments
 (0)