Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(deps): bump github.com/disgoorg/disgo from 0.13.17 to 0.13.20 (#3377
)

Bumps [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo)
from 0.13.17 to 0.13.20.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/disgoorg/disgo/releases">github.com/disgoorg/disgo's
releases</a>.</em></p>
<blockquote>
<h2>v0.13.20 - Forum Channel Updates</h2>
<h2>What's Changed</h2>
<ul>
<li>implement recent forum updates by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/197">disgoorg/disgo#197</a></li>
<li>populate <code>GuildID</code> in <code>Message</code>s from
interactions by <a
href="https://github.com/TopiSenpai"><code>@​TopiSenpai</code></a> in <a
href="https://github.com/disgoorg/disgo/commit/9ebbc6ea227122bf682cc66056effdb27d934743">https://github.com/disgoorg/disgo/commit/9ebbc6ea227122bf682cc66056effdb27d934743</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/disgoorg/disgo/compare/v0.13.19...v0.13.20">https://github.com/disgoorg/disgo/compare/v0.13.19...v0.13.20</a></p>
<h2>v0.13.19 - Pagination and Improved Presence UX</h2>
<h2>What's Changed</h2>
<ul>
<li>pagination helpers by <a
href="https://github.com/TopiSenpai"><code>@​TopiSenpai</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/183">disgoorg/disgo#183</a></li>
<li>improve presence UX by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/196">disgoorg/disgo#196</a></li>
<li>payload type consistency fixes by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/198">disgoorg/disgo#198</a></li>
<li>add <code>JumpURL()</code> to <code>Message</code> by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github.com/disgoorg/disgo/commit/97dd956ee7952c8c835b4fece7f4a230a95a1210">https://github.com/disgoorg/disgo/commit/97dd956ee7952c8c835b4fece7f4a230a95a1210</a></li>
<li>add <code>GuildFeatureInvitesDisabled</code> by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/192">disgoorg/disgo#192</a></li>
<li>rename <code>CommandNameLocalizations</code> to
<code>NameLocalizations</code> by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github.com/disgoorg/disgo/commit/31933fcdeb97d018ffac3047187050c0c7d678fc">https://github.com/disgoorg/disgo/commit/31933fcdeb97d018ffac3047187050c0c7d678fc</a></li>
<li>replace <code>rest.UpdateSelfNick</code> with
<code>rest.UpdateCurrentMember</code> by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/199">disgoorg/disgo#199</a></li>
</ul>
<h2>Breaking</h2>
<ul>
<li><code>gateway.WithPresence(...)</code> was renamed to
<code>gateway.WithPresenceOpts(...)</code> and
<code>gateway.NewXPresence(...)</code> funcs were renamed to
<code>gateway.WithXPresence(...)</code>. This change makes all presence
data optional, meaning you won't have to pass unwanted data on every
presence update.</li>
</ul>
<p>Example:</p>
<pre lang="go"><code>bot.WithGatewayConfigOpts(

gateway.WithPresenceOpts(gateway.WithListeningActivity(&quot;music&quot;)),
	...
)
</code></pre>
<p>New funcs:
<code>gateway.WithOnlineStatus(...)</code>
<code>gateway.WithAfk(...)</code>
<code>gateway.WithSince(...)</code></p>
<ul>
<li>some payload field types were changed to match the behavior of the
Discord API</li>
<li><code>CommandNameLocalizations</code> fields were renamed to
<code>NameLocalizations</code></li>
<li>the <code>limit</code> parameter in
<code>rest.GetGuildScheduledEventUsers</code> was moved</li>
<li><code>rest.UpdateSelfNick</code> was replaced with
<code>rest.UpdateCurrentMember</code> as the old endpoint is deprecated
(structs were also renamed accordingly)</li>
<li><code>MaxAgree</code> in <code>InviteCreate</code> was renamed to
<code>MaxAge</code> (this probably didn't even need to be mentioned
since no one complained lol)</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/disgoorg/disgo/compare/v0.13.18...v0.13.19">https://github.com/disgoorg/disgo/compare/v0.13.18...v0.13.19</a></p>
<h2>v0.13.18 - Gateway Resume URL Handling</h2>
<h2>What's Changed</h2>
<ul>
<li>implement gateway resume URL handling by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/186">disgoorg/disgo#186</a></li>
<li>replace <code>DeleteMessageDays</code> with
<code>DeleteMessageSeconds</code> and make <code>rest.AddBan</code> take
a <code>time.Duration</code> by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/195">disgoorg/disgo#195</a></li>
<li>add <code>MessageURL</code> format to <code>Message</code> by <a
href="https://github.com/TopiSenpai"><code>@​TopiSenpai</code></a> in <a
href="https://github.com/disgoorg/disgo/commit/9f10939de2cacb3aceeb053d4f7e463b862a805f">https://github.com/disgoorg/disgo/commit/9f10939de2cacb3aceeb053d4f7e463b862a805f</a></li>
<li>add <code>ApplicationCommands</code> to <code>AuditLog</code> by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/193">disgoorg/disgo#193</a></li>
<li>add <code>Scopes</code> to <code>BotIntegration</code> by <a
href="https://github.com/caneleex"><code>@​caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/190">disgoorg/disgo#190</a></li>
</ul>
<h2>Breaking Changes</h2>
<ul>
<li><code>rest.AddBan</code> now takes a <code>time.Duration</code>
instead of an <code>int</code> of <code>deleteMessageDays</code></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/disgoorg/disgo/commit/f04f4638bb9fd919d2413e7a8b965ec5c649d3cc"><code>f04f463</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/197">#197</a>
from disgoorg/patch/forum-updates</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/78ef75c52659f33a616f951afe1118fb7b9d731b"><code>78ef75c</code></a>
remove embedding</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/76def4ee6c13b3a7359e1cd92f7290532bdbe906"><code>76def4e</code></a>
Update discord/thread.go</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/5aab1eaabda4326a223be13093c1ad5ece2b2d84"><code>5aab1ea</code></a>
Merge branch 'development' into patch/forum-updates</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/9ebbc6ea227122bf682cc66056effdb27d934743"><code>9ebbc6e</code></a>
populate missing guild_id field in messages returned by
interactions</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/364ec0664880936bf90a62f799bde545a0ce6c06"><code>364ec06</code></a>
fix &quot;unknown&quot; misspells</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/1c504a9a970080cb0615d63bbe5010e8a48ef5d5"><code>1c504a9</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/183">#183</a>
from disgoorg/feature/pagination-helpers</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/0fa09014337ac81cd58ffee687f0fd69550d657f"><code>0fa0901</code></a>
fix pagination example</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/15bdcc1e326bf6646be5c75b715fa739be8e7a52"><code>15bdcc1</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/192">#192</a>
from disgoorg/patch/invites-disabled-feature</li>
<li><a
href="https://github.com/disgoorg/disgo/commit/37d3de27da1ef698b6f8b05327a9bec659e61f73"><code>37d3de2</code></a>
remove unneeded UnmarshalChannel for threads in audit log</li>
<li>Additional commits viewable in <a
href="https://github.com/disgoorg/disgo/compare/v0.13.17...v0.13.20">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/disgoorg/disgo&package-manager=go_modules&previous-version=0.13.17&new-version=0.13.20)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Sep 15, 2022
1 parent 8a36f2e commit ad330ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -15,7 +15,7 @@ require (
github.com/charmbracelet/lipgloss v0.6.1-0.20220911181249-6304a734e792
github.com/dghubble/go-twitter v0.0.0-20211115160449-93a8679adecb
github.com/dghubble/oauth1 v0.7.1
github.com/disgoorg/disgo v0.13.17
github.com/disgoorg/disgo v0.13.20
github.com/disgoorg/snowflake/v2 v2.0.0
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
github.com/google/go-github/v47 v47.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -268,8 +268,8 @@ github.com/dghubble/sling v1.4.0/go.mod h1:0r40aNsU9EdDUVBNhfCstAtFgutjgJGYbO1oN
github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8=
github.com/dimchansky/utfbom v1.1.1 h1:vV6w1AhK4VMnhBno/TPVCoK9U/LP0PkLCS9tbxHdi/U=
github.com/dimchansky/utfbom v1.1.1/go.mod h1:SxdoEBH5qIqFocHMyGOXVAybYJdr71b1Q/j0mACtrfE=
github.com/disgoorg/disgo v0.13.17 h1:c74j4OXdSJN31f8zugcaqQ0oi1keVPtb9J7TuNJ2eWk=
github.com/disgoorg/disgo v0.13.17/go.mod h1:Cyip4bCYHD3rHgDhBPT9cLo81e9AMbDe8ocM50UNRM4=
github.com/disgoorg/disgo v0.13.20 h1:8TJndGmgF6ZdbMxlkjWPBDpMMFp5jCfMNgZwesQKwGA=
github.com/disgoorg/disgo v0.13.20/go.mod h1:Cyip4bCYHD3rHgDhBPT9cLo81e9AMbDe8ocM50UNRM4=
github.com/disgoorg/log v1.2.0 h1:sqlXnu/ZKAlIlHV9IO+dbMto7/hCQ474vlIdMWk8QKo=
github.com/disgoorg/log v1.2.0/go.mod h1:3x1KDG6DI1CE2pDwi3qlwT3wlXpeHW/5rVay+1qDqOo=
github.com/disgoorg/snowflake/v2 v2.0.0 h1:+xvyyDddXmXLHmiG8SZiQ3sdZdZPbUR22fSHoqwkrOA=
Expand Down

0 comments on commit ad330ce

Please sign in to comment.