@discordjs/proxy 1.2.0-dev.1664798693-b2ec865.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -1
- package/package.json +14 -15
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@discordjs/proxy@1.2.0](https://github.com/discordjs/discord.js/compare/@discordjs/proxy@1.1.0...@discordjs/proxy@1.2.0) - (2022-10-07)
|
|
6
|
+
|
|
7
|
+
## Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **proxyRequests:** Forward query parameters (#8691) ([f063625](https://github.com/discordjs/discord.js/commit/f063625836915b0fa3b0f0b89d073e877465dfd4))
|
|
10
|
+
- Footer / sidebar / deprecation alert ([ba3e0ed](https://github.com/discordjs/discord.js/commit/ba3e0ed348258fe8e51eefb4aa7379a1230616a9))
|
|
11
|
+
|
|
12
|
+
## Documentation
|
|
13
|
+
|
|
14
|
+
- Change name (#8604) ([dd5a089](https://github.com/discordjs/discord.js/commit/dd5a08944c258a847fc4377f1d5e953264ab47d0))
|
|
15
|
+
|
|
16
|
+
## Features
|
|
17
|
+
|
|
18
|
+
- Web-components (#8715) ([0ac3e76](https://github.com/discordjs/discord.js/commit/0ac3e766bd9dbdeb106483fa4bb085d74de346a2))
|
|
19
|
+
- Add `@discordjs/util` (#8591) ([b2ec865](https://github.com/discordjs/discord.js/commit/b2ec865765bf94181473864a627fb63ea8173fd3))
|
|
20
|
+
|
|
21
|
+
## Refactor
|
|
22
|
+
|
|
23
|
+
- Website components (#8600) ([c334157](https://github.com/discordjs/discord.js/commit/c3341570d983aea9ecc419979d5a01de658c9d67))
|
|
24
|
+
- Use `eslint-config-neon` for packages. (#8579) ([edadb9f](https://github.com/discordjs/discord.js/commit/edadb9fe5dfd9ff51a3cfc9b25cb242d3f9f5241))
|
|
25
|
+
|
|
5
26
|
# [@discordjs/proxy@1.1.0](https://github.com/discordjs/discord.js/compare/@discordjs/proxy@1.0.1...@discordjs/proxy@1.1.0) - (2022-08-22)
|
|
6
27
|
|
|
7
28
|
## Bug Fixes
|
|
@@ -16,7 +37,7 @@ All notable changes to this project will be documented in this file.
|
|
|
16
37
|
|
|
17
38
|
- Docs design (#8487) ([4ab1d09](https://github.com/discordjs/discord.js/commit/4ab1d09997a18879a9eb9bda39df6f15aa22557e))
|
|
18
39
|
|
|
19
|
-
# [@discordjs/proxy@1.0.
|
|
40
|
+
# [@discordjs/proxy@1.0.1](https://github.com/discordjs/discord.js/tree/@discordjs/proxy@1.0.1) - (2022-07-27)
|
|
20
41
|
|
|
21
42
|
## Bug Fixes
|
|
22
43
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@discordjs/proxy",
|
|
3
|
-
"version": "1.2.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Tools for running an HTTP proxy for Discord's API",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "vitest run",
|
|
7
7
|
"build": "tsup",
|
|
8
|
-
"lint": "prettier --check . && cross-env TIMING=1 eslint src __tests__ --ext mjs
|
|
9
|
-
"format": "prettier --write . && cross-env TIMING=1 eslint src __tests__ --ext mjs
|
|
8
|
+
"lint": "prettier --check . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts",
|
|
9
|
+
"format": "prettier --write . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts --fix",
|
|
10
10
|
"fmt": "yarn format",
|
|
11
|
-
"docs": "downlevel-dts dist docs/dist --to=3.7 &&
|
|
11
|
+
"docs": "downlevel-dts dist docs/dist --to=3.7 && api-extractor run --local",
|
|
12
12
|
"prepack": "yarn lint && yarn test && yarn build",
|
|
13
13
|
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/proxy/*'",
|
|
14
14
|
"release": "cliff-jumper"
|
|
@@ -55,26 +55,25 @@
|
|
|
55
55
|
"homepage": "https://discord.js.org",
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@discordjs/rest": "^1.0.0",
|
|
58
|
-
"@discordjs/util": "^0.1.0
|
|
58
|
+
"@discordjs/util": "^0.1.0",
|
|
59
59
|
"tslib": "^2.4.0",
|
|
60
|
-
"undici": "^5.
|
|
60
|
+
"undici": "^5.11.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"@types/node": "^16.11.60",
|
|
63
|
+
"@favware/cliff-jumper": "^1.8.8",
|
|
64
|
+
"@microsoft/api-extractor": "^7.32.0",
|
|
65
|
+
"@types/node": "^16.11.64",
|
|
67
66
|
"@types/supertest": "^2.0.12",
|
|
68
|
-
"@vitest/coverage-c8": "^0.
|
|
67
|
+
"@vitest/coverage-c8": "^0.24.0",
|
|
69
68
|
"cross-env": "^7.0.3",
|
|
70
69
|
"downlevel-dts": "^0.10.1",
|
|
71
70
|
"eslint": "^8.24.0",
|
|
72
|
-
"eslint-config-neon": "^0.1.
|
|
71
|
+
"eslint-config-neon": "^0.1.35",
|
|
73
72
|
"prettier": "^2.7.1",
|
|
74
|
-
"supertest": "^6.
|
|
73
|
+
"supertest": "^6.3.0",
|
|
75
74
|
"tsup": "^6.2.3",
|
|
76
|
-
"typescript": "^4.8.
|
|
77
|
-
"vitest": "^0.
|
|
75
|
+
"typescript": "^4.8.4",
|
|
76
|
+
"vitest": "^0.24.0"
|
|
78
77
|
},
|
|
79
78
|
"engines": {
|
|
80
79
|
"node": ">=16.9.0"
|