@discordjs/proxy 1.1.0 → 1.2.0-dev.1661256254-28bc4f4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +2 -22
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -2,41 +2,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- # [@discordjs/proxy@1.1.0](https://github.com/discordjs/discord.js/tree/@discordjs/proxy@1.1.0) - (2022-08-22)
5
+ # [@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
6
 
7
7
  ## Bug Fixes
8
8
 
9
9
  - **proxyRequests:** Typo in error message (#8537) ([dd44e8b](https://github.com/discordjs/discord.js/commit/dd44e8b6ec141e630af4543bd3babcce39aa2887))
10
- - **proxy-container:** Proper deps (#8120) ([17867f9](https://github.com/discordjs/discord.js/commit/17867f9154d0dd16357f4ff29da641e23a33a9fa))
11
- - **proxy:** Add docs script ([a45bef4](https://github.com/discordjs/discord.js/commit/a45bef4cad77dac1a4138fd0d52b769ce09b5678))
12
-
13
- ## Documentation
14
-
15
- - Add codecov coverage badge to readmes (#8226) ([f6db285](https://github.com/discordjs/discord.js/commit/f6db285c073898a749fe4591cbd4463d1896daf5))
16
10
 
17
11
  ## Features
18
12
 
19
13
  - **website:** Show `constructor` information (#8540) ([e42fd16](https://github.com/discordjs/discord.js/commit/e42fd1636973b10dd7ed6fb4280ee1a4a8f82007))
20
- - Codecov (#8219) ([f10f4cd](https://github.com/discordjs/discord.js/commit/f10f4cdcd88ca6be7ec735ed3a415ba13da83db0))
21
- - Proxy container (#8000) ([2681929](https://github.com/discordjs/discord.js/commit/2681929e4263032ad34a99ecb42465c320b271ba))
22
- - **docgen:** Update typedoc ([b3346f4](https://github.com/discordjs/discord.js/commit/b3346f4b9b3d4f96443506643d4631dc1c6d7b21))
23
- - Website (#8043) ([127931d](https://github.com/discordjs/discord.js/commit/127931d1df7a2a5c27923c2f2151dbf3824e50cc))
24
- - **docgen:** Typescript support ([3279b40](https://github.com/discordjs/discord.js/commit/3279b40912e6aa61507bedb7db15a2b8668de44b))
25
- - Docgen package (#8029) ([8b979c0](https://github.com/discordjs/discord.js/commit/8b979c0245c42fd824d8e98745ee869f5360fc86))
26
- - Use vitest instead of jest for more speed ([8d8e6c0](https://github.com/discordjs/discord.js/commit/8d8e6c03decd7352a2aa180f6e5bc1a13602539b))
27
- - Add scripts package for locally used scripts ([f2ae1f9](https://github.com/discordjs/discord.js/commit/f2ae1f9348bfd893332a9060f71a8a5f272a1b8b))
28
- - @discordjs/proxy (#7925) ([1ba2d2a](https://github.com/discordjs/discord.js/commit/1ba2d2a898613e5fcc119a97dce935f4db91162c))
29
14
 
30
15
  ## Refactor
31
16
 
32
17
  - Docs design (#8487) ([4ab1d09](https://github.com/discordjs/discord.js/commit/4ab1d09997a18879a9eb9bda39df6f15aa22557e))
33
- - Move all the config files to root (#8033) ([769ea0b](https://github.com/discordjs/discord.js/commit/769ea0bfe78c4f1d413c6b397c604ffe91e39c6a))
34
-
35
- ## Styling
36
-
37
- - Cleanup tests and tsup configs ([6b8ef20](https://github.com/discordjs/discord.js/commit/6b8ef20cb3af5b5cfd176dd0aa0a1a1e98551629))
38
18
 
39
- # [@discordjs/proxy@1.0.0](https://github.com/discordjs/discord.js/tree/@discordjs/proxy@1.1.0) - (2022-07-17)
19
+ # [@discordjs/proxy@1.0.0](https://github.com/discordjs/discord.js/tree/@discordjs/proxy@1.0.0) - (2022-07-17)
40
20
 
41
21
  ## Bug Fixes
42
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@discordjs/proxy",
3
- "version": "1.1.0",
3
+ "version": "1.2.0-dev.1661256254-28bc4f4.0",
4
4
  "description": "Tools for running an HTTP proxy for Discord's API",
5
5
  "scripts": {
6
6
  "test": "vitest run",
@@ -8,7 +8,7 @@
8
8
  "lint": "prettier --check . && TIMING=1 eslint src __tests__ --ext mjs,js,ts",
9
9
  "format": "prettier --write . && TIMING=1 eslint src __tests__ --ext mjs,js,ts --fix",
10
10
  "fmt": "yarn format",
11
- "docs": "downlevel-dts . docs --to=3.7 && docgen -i src/index.ts -c docs/index.json -o docs/docs.json --typescript && api-extractor run --local",
11
+ "docs": "downlevel-dts dist docs/dist --to=3.7 && docgen -i src/index.ts -c docs/index.json -o docs/docs.json --typescript && 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"
@@ -64,14 +64,14 @@
64
64
  "@microsoft/api-extractor": "^7.29.3",
65
65
  "@types/node": "^16.11.52",
66
66
  "@types/supertest": "^2.0.12",
67
- "@typescript-eslint/eslint-plugin": "^5.33.1",
68
- "@typescript-eslint/parser": "^5.33.1",
67
+ "@typescript-eslint/eslint-plugin": "^5.34.0",
68
+ "@typescript-eslint/parser": "^5.34.0",
69
69
  "@vitest/coverage-c8": "^0.22.1",
70
70
  "downlevel-dts": "^0.10.0",
71
71
  "eslint": "^8.22.0",
72
72
  "eslint-config-marine": "^9.4.1",
73
73
  "eslint-config-prettier": "^8.5.0",
74
- "eslint-import-resolver-typescript": "^3.4.2",
74
+ "eslint-import-resolver-typescript": "^3.5.0",
75
75
  "eslint-plugin-import": "^2.26.0",
76
76
  "prettier": "^2.7.1",
77
77
  "rollup-plugin-typescript2": "^0.33.0",