Skip to content

Commit

Permalink
release(http): bump to 0.8.1
Browse files Browse the repository at this point in the history
Additions

Add the API error codes `20029 WriteActionsReached` and `50055
InvalidGuild` ([#1326] - [@zeylahellyer]).

Changes

Only send the interaction authorization token when responding to
interactions ([#1317] - [@zeylahellyer]).

Fixes

Fix an issue where interaction and webhook tokens were invalidating the
entire client ([#1318] - [@zeylahellyer]). The client now only
invalidates a token if the request that failed was actually using it.

`CommandBorrowed::kind` is now properly serialized as `type` ([#1323] -
[@7596ff]).

Fix a variety of routes in `RouteDisplay` after adding tests ([#1327] -
[@zeylahellyer]). The fixed routes are `CreateGuildPrune`,
`SyncGuildIntegration`, and `UpdateUserVoiceState`.

[#1317]: #1317
[#1318]: #1318
[#1323]: #1323
[#1326]: #1326
[#1327]: #1327

[@7596ff]: https://github.com/7596ff
[@zeylahellyer]: https://github.com/zeylahellyer
  • Loading branch information
7596ff committed Dec 15, 2021
1 parent eba8f77 commit 7852048
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@

Changelog for `twilight-http`.

## [0.8.1] - 2021-12-15

### Additions

Add the API error codes `20029 WriteActionsReached` and `50055 InvalidGuild`
([#1326] - [@zeylahellyer]).

### Changes

Only send the interaction authorization token when responding to interactions
([#1317] - [@zeylahellyer]).

### Fixes

Fix an issue where interaction and webhook tokens were invalidating the entire
client ([#1318] - [@zeylahellyer]). The client now only invalidates a token if
the request that failed was actually using it.

`CommandBorrowed::kind` is now properly serialized as `type` ([#1323] -
[@7596ff]).

Fix a variety of routes in `RouteDisplay` after adding tests ([#1327] -
[@zeylahellyer]). The fixed routes are `CreateGuildPrune`,
`SyncGuildIntegration`, and `UpdateUserVoiceState`.

[#1317]: https://github.com/twilight-rs/twilight/pull/1317
[#1318]: https://github.com/twilight-rs/twilight/pull/1318
[#1323]: https://github.com/twilight-rs/twilight/pull/1323
[#1326]: https://github.com/twilight-rs/twilight/pull/1326
[#1327]: https://github.com/twilight-rs/twilight/pull/1327

## [0.8.0] - 2021-12-03

### Additions
Expand Down Expand Up @@ -1433,6 +1464,8 @@ Initial release.

[0.2.0-beta.1:app integrations]: https://github.com/discord/discord-api-docs/commit/a926694e2f8605848bda6b57d21c8817559e5cec

[0.8.1]: https://github.com/twilight-rs/twilight/releases/tag/http-0.8.1
[0.8.0]: https://github.com/twilight-rs/twilight/releases/tag/http-0.8.0
[0.7.3]: https://github.com/twilight-rs/twilight/releases/tag/http-0.7.3
[0.7.2]: https://github.com/twilight-rs/twilight/releases/tag/http-0.7.2
[0.7.1]: https://github.com/twilight-rs/twilight/releases/tag/http-0.7.1
Expand Down
2 changes: 1 addition & 1 deletion http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "twilight-http"
publish = false
readme = "README.md"
repository = "https://github.com/twilight-rs/twilight.git"
version = "0.8.0"
version = "0.8.1"

[dependencies]
hyper = { default-features = false, features = ["client", "http1", "http2", "runtime"], version = "0.14" }
Expand Down

0 comments on commit 7852048

Please sign in to comment.