Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.5.0
to 0.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/golang/tools/releases">golang.org/x/tools's
releases</a>.</em></p>
<blockquote>
<h1>gopls/v0.6.0</h1>
<h2>Features</h2>
<h3>Default to <code>-mod=readonly</code></h3>
<p>In Go 1.16, the Go command will no longer modify user's
<code>go.mod</code> and <code>go.sum</code> files automatically (<a
href="https://tip.golang.org/doc/go1.16#tools">https://tip.golang.org/doc/go1.16#tools</a>).
In order to match this behavior, <code>gopls</code> now also uses
<code>-mod=readonly</code> when running the <code>go</code> command. Any
errors reported by the <code>go</code> command will be presented with a
suggested fix to make the necessary fixes to your <code>go.mod</code> or
<code>go.sum</code> files. As a consequence, your workspace may be in a
partially broken state while you have errors in your <code>go.mod</code>
or <code>go.sum</code> file. <a
href="https://github-redirect.dependabot.com/golang/go/issues/42266">golang/go#42266</a>
will mitigate this, but it will likely not be resolved until
February.</p>
<p><strong>Not recommended</strong>: If you must opt out of this
behavior, you can set the <a
href="https://github.com/golang/tools/blob/master/gopls/doc/settings.md#allowmodfilemodifications-bool"><code>allowModfileModifications</code></a>
configuration to <code>true</code>.</p>
<h3>Default to <code>GOPROXY=off</code></h3>
<p><code>gopls</code> no longer accesses the network implicitly. This
should improve latency in all cases, but it also means that
<code>gopls</code> will no longer automatically download modules that
are not found in your local module cache. The one exception is that
<code>gopls</code> will still download dependencies on start-up, so it
will continue to work as expected if you have cloned a repository for
the first time. If <code>gopls</code> detects a missing module, it will
offer you a suggested fix that downloads it.</p>
<p><strong>Not recommended</strong>: If you must opt out of this
behavior, you can set the <a
href="https://github.com/golang/tools/blob/master/gopls/doc/settings.md#allowimplicitnetworkaccess-bool"><code>allowImplicitNetworkaccess</code></a>
configuration to <code>true</code>.</p>
<h3>Inclusion/exclusion filters for directories</h3>
<p><code>gopls</code> now supports excluding certain directories in your
workspace from analysis. This may be useful if you are only working on a
subset of a large repository. Note that these filters are not propagated
to the <code>go</code> command, so <code>gopls</code> will still load
metadata for these directories, which may be expensive.
<strong>Configure the included/excluded directories through the <a
href="https://github.com/golang/tools/blob/master/gopls/doc/settings.md#directoryfilters-string"><code>directoryFilters</code></a>
setting.</strong></p>
<h3>Debouncing for diagnostics</h3>
<p>Diagnostics are now reported instantly only for the packages
currently being edited. Diagnostics for other packages in the workspace
will now only be computed after 250 milliseconds, meaning that, if you
are actively typing, <code>gopls</code> will not start these more costly
operations. This should significantly reduce CPU utilization. This
debounce delay can be optionally configured via the <a
href="https://github.com/golang/tools/blob/master/gopls/doc/settings.md#experimentaldiagnosticsdelay-timeduration"><code>experimentalDiagnosticsDelay</code></a>
setting.</p>
<h3>"Upgrade direct dependencies" code lens</h3>
<p>In <a
href="https://github.com/golang/tools/releases/tag/gopls%2Fv0.5.4"><code>gopls/v0.5.4</code></a>,
we removed the per-require "Upgrade dependency" code lens, as
it was very high latency, and its UX did not meet user needs. Some users
have expressed disappointment about this, so, to bridge the gap, we have
separated the existing "Upgrade all dependencies" code lens
into two: "Upgrade transitive dependencies" and "Upgrade
direct dependencies". The first is the equivalent of running
<code>go get -u all</code>, while the second <code>go get</code>s each
of your module's requires independently. We are continuing to work on
improving these features and will likely bring back the "Upgrade
dependency" code lens as a suggested fix (learn more: <a
href="https://github-redirect.dependabot.com/golang/go/issues/38339">golang/go#38339</a>).</p>
<h3>Support for filling a partially-populated struct</h3>
<p>The "Fill struct" suggested fix will now be suggested for
structs that have some, but not all, fields set.</p>
<h3>Experimental</h3>
<h4>Field alignment analyzer</h4>
<p>A new analyzer has been added to suggest reordering fields in a
struct in order to achieve the optimal alignment in memory. It is still
off by default, but can be enabled by adding the following to your
<code>gopls</code> settings:</p>
<pre lang="json5"><code>"analyses": {
"fieldalignment": true
}
</code></pre>
<h2>Fixes</h2>
<h3>Improvements to diagnostics tracking</h3>
<p>Diagnostic messages were not being updated correctly when the <a
href="https://github.com/golang/tools/blob/master/gopls/doc/settings.md#codelenses-mapstringbool"><code>GC
details</code></a> code lens was toggled on. New handling to
differentiate diagnostics by sources should have resolved this
issue.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d0863f03da"><code>d0863f0</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="545ca87cb5"><code>545ca87</code></a>
gopls/internal/regtest/marker: require go/packages</li>
<li><a
href="1ace7dbcb0"><code>1ace7db</code></a>
go,gopls: remove license from package doc comments</li>
<li><a
href="ebad375bab"><code>ebad375</code></a>
gopls/internal/lsp/protocol: prevent license rendering in godoc</li>
<li><a
href="10a39ef32d"><code>10a39ef</code></a>
gopls/internal/lsp/regtest: address additional comments on
marker.go</li>
<li><a
href="69920f2e63"><code>69920f2</code></a>
gopls/internal/regtest/marker: add missing tests for hover</li>
<li><a
href="24a13c6fad"><code>24a13c6</code></a>
gopls/internal/regtest: fill out features of the new marker tests</li>
<li><a
href="2b149ce94b"><code>2b149ce</code></a>
gopls/internal/regtest: add a regtest-based version of the marker
tests</li>
<li><a
href="edddc5fc32"><code>edddc5f</code></a>
go/packages: don't discard errors loading export data</li>
<li><a
href="a762c82c1b"><code>a762c82</code></a>
go/ssa: add MultiConvert instruction</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/tools/compare/v0.5.0...v0.6.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.5.0&new-version=0.6.0)](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>
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.79.1 to 0.80.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9e8a56f022"><code>9e8a56f</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1645">#1645</a>
from blacknon/master</li>
<li><a
href="c6a3d13acd"><code>c6a3d13</code></a>
Merge remote-tracking branch 'refs/remotes/origin/master'</li>
<li><a
href="2544230e10"><code>2544230</code></a>
UpdateSnippetOptionにFilesを追加</li>
<li><a
href="9e38892900"><code>9e38892</code></a>
Formatted the project using gofumpt</li>
<li><a
href="f46a273ab9"><code>f46a273</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1597">#1597</a>
from abdellaui/bugfix/rename_projects_NameRegexDelet...</li>
<li><a
href="79679f4c0b"><code>79679f4</code></a>
Tweak PR a little…</li>
<li><a
href="4b328c1100"><code>4b328c1</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1612">#1612</a>
from FantasyTeddy/update-protected-branches</li>
<li><a
href="1b76c1c3c7"><code>1b76c1c</code></a>
Few minor tweaks…</li>
<li><a
href="51f101e636"><code>51f101e</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1642">#1642</a>
from theoriginalstove/1583-custom-headers</li>
<li><a
href="ab870cff19"><code>ab870cf</code></a>
Tweak the PR a little</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.79.1...v0.80.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/xanzy/go-gitlab&package-manager=go_modules&previous-version=0.79.1&new-version=0.80.0)](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>
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some
time.
Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.5.0
to 0.6.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a9f661cb6e"><code>a9f661c</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="310bfa40f1"><code>310bfa4</code></a>
cryptobyte: reject negative Unwrite argument</li>
<li><a
href="59ff47295c"><code>59ff472</code></a>
all: fix some comments</li>
<li>See full diff in <a
href="https://github.com/golang/crypto/compare/v0.5.0...v0.6.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.5.0&new-version=0.6.0)](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>
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.4.0
to 0.5.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="adbaf66a0b"><code>adbaf66</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="e07593a4c4"><code>e07593a</code></a>
oauth2: remove direct dependency on golang.org/x/net</li>
<li>See full diff in <a
href="https://github.com/golang/oauth2/compare/v0.4.0...v0.5.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/oauth2&package-manager=go_modules&previous-version=0.4.0&new-version=0.5.0)](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>
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some
time.
Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.79.0 to 0.79.1.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="4620d0f31d"><code>4620d0f</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1638">#1638</a>
from PatrickRice-KSC/revert-project-member-change</li>
<li><a
href="e21596f6d3"><code>e21596f</code></a>
Revert the change to project member accepting ISO time</li>
<li>See full diff in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.79.0...v0.79.1">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/xanzy/go-gitlab&package-manager=go_modules&previous-version=0.79.0&new-version=0.79.1)](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>
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.78.0 to 0.79.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="36b86c5b7f"><code>36b86c5</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1632">#1632</a>
from timofurrer/get-pull-mirror</li>
<li><a
href="5d8c3e5c45"><code>5d8c3e5</code></a>
Change model name</li>
<li><a
href="dda6e96e5e"><code>dda6e96</code></a>
Update projects.go</li>
<li><a
href="8ea7323dc6"><code>8ea7323</code></a>
Update projects.go</li>
<li><a
href="5d94d607fe"><code>5d94d60</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1635">#1635</a>
from mycrEEpy/user-login-failed-event</li>
<li><a
href="d2a481edeb"><code>d2a481e</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1634">#1634</a>
from PatrickRice-KSC/align-pages-domain-attributes</li>
<li><a
href="c56397a6c8"><code>c56397a</code></a>
Add missing system hook event for user_failed_login</li>
<li><a
href="7ac72bd6ad"><code>7ac72bd</code></a>
Add the ability to retrieve certificate information to Pages
Domains</li>
<li><a
href="ceca19a225"><code>ceca19a</code></a>
Implement function to get pull mirror details from a project</li>
<li><a
href="cec93a2c94"><code>cec93a2</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1631">#1631</a>
from mrf/mrf/1630-projectmember-struct-expires-date</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.78.0...v0.79.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/xanzy/go-gitlab&package-manager=go_modules&previous-version=0.78.0&new-version=0.79.0)](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>
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some
time.
Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.2.0
to 0.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/golang/tools/releases">golang.org/x/tools's
releases</a>.</em></p>
<blockquote>
<h2>gopls/v0.5.0</h2>
<p>A full list of issues closed can be found in the <a
href="https://github.com/golang/go/milestone/138?closed=1">gopls/v0.5.0
milestone</a>.</p>
<h2>Memory usage</h2>
<ul>
<li>Rewrite of caching model, resulting in significant memory usage
improvements (<a
href="https://github.com/heschik"><code>@heschik</code></a>).</li>
</ul>
<h2>New features</h2>
<ul>
<li>Extract to function: Support for extracting code blocks that contain
return statements (<a
href="https://github.com/joshbaum"><code>@joshbaum</code></a>).</li>
<li>Workspace symbols: Support for <a
href="https://github.com/junegunn/fzf#search-syntax">fzf-style search
syntax</a> (<a
href="https://github.com/findleyr"><code>@findleyr</code></a>). The
following syntax is supported:
<ul>
<li><code>'</code> for exact matching</li>
<li><code>^</code> for prefix matching</li>
<li><code>$</code> for suffix matching</li>
</ul>
</li>
</ul>
<p><strong>Note</strong>: This feature does not yet work in VS Code. See
<a
href="https://github-redirect.dependabot.com/golang/vscode-go/issues/647">golang/vscode-go#647</a>
and <a
href="https://github-redirect.dependabot.com/microsoft/vscode/issues/106788">microsoft/vscode#106788</a>.</p>
<ul>
<li>An experimental new code lens to view GC optimization details (<a
href="https://github.com/pjweinb"><code>@pjweinb</code></a>). Once the
code lens is enabled, you will see a <code>Toggle gc details</code>
annotation at the top of your file. Clicking it will show optimization
diagnostics produced by the Go compiler, and clicking it once again will
hide these diagnostics. Enable the code lens by adding the following to
your settings:
<pre lang="json5"><code>"codelens": {
"gc_details": true
}
</code></pre>
</li>
<li><code>go mod tidy</code> and <code>go mod vendor</code> code lenses
for <code>go.mod</code> files (<a
href="https://github.com/dandua98"><code>@dandua98</code></a>).</li>
<li>Support for filling in matching in-scope variables instead of just
empty values in fillstruct and fillreturns (<a
href="https://github.com/joshbaum"><code>@joshbaum</code></a>).</li>
<li>Autocompletion within import statements (<a
href="https://github.com/dandua98"><code>@dandua98</code></a>).</li>
<li>Autocompletion within package declarations (<a
href="https://github.com/dandua98"><code>@dandua98</code></a>).</li>
</ul>
<h2>Improvements</h2>
<ul>
<li>Improvements to workspace symbols ranking and fuzzy matching (<a
href="https://github.com/findleyr"><code>@findleyr</code></a>, <a
href="https://github.com/myitcv"><code>@myitcv</code></a>).</li>
<li>Better completion suggestions in type switch case clauses and for
calls to <code>append</code>, function literals, and unnamed types (<a
href="https://github.com/muirdm"><code>@muirdm</code></a>).</li>
</ul>
<h2>Thank you</h2>
<p>Thank you to everyone who contributed to this release!</p>
<p><a href="https://github.com/heschik"><code>@heschik</code></a>
<a href="https://github.com/findleyr"><code>@findleyr</code></a>
<a href="https://github.com/pjweinb"><code>@pjweinb</code></a>
<a href="https://github.com/joshbaum"><code>@joshbaum</code></a>
<a href="https://github.com/mcjcloud"><code>@mcjcloud</code></a>
<a href="https://github.com/dandua98"><code>@dandua98</code></a>
<a href="https://github.com/muirdm"><code>@muirdm</code></a>
<a href="https://github.com/leitzler"><code>@leitzler</code></a>
<a href="https://github.com/myitcv"><code>@myitcv</code></a>
<a href="https://github.com/matloob"><code>@matloob</code></a>
<a href="https://github.com/tennashi"><code>@tennashi</code></a>
<a href="https://github.com/ainar-g"><code>@ainar-g</code></a>
<a href="https://github.com/hasheddan"><code>@hasheddan</code></a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="7db99dd126"><code>7db99dd</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="1e0dff28f4"><code>1e0dff2</code></a>
gopls/internal/regtest: avoid race in
TestSwitchFromGOPATHToModuleMode</li>
<li><a
href="0441b432ca"><code>0441b43</code></a>
gopls/internal/lsp/cache: use specific mutexes for module data</li>
<li><a
href="33071fbe1a"><code>33071fb</code></a>
internal/robustio: move robustio</li>
<li><a
href="b01e7a4e75"><code>b01e7a4</code></a>
gopls/internal/regtest/watch: don't run
TestSwitchFromGOPATHToModuleMode</li>
<li><a
href="e417ea36ba"><code>e417ea3</code></a>
gopls: remove dead analysis code</li>
<li><a
href="1a08d01ac9"><code>1a08d01</code></a>
gopls/internal/lsp: update replace directives in go.mod for package
renaming</li>
<li><a
href="eac36cb2ac"><code>eac36cb</code></a>
gopls/internal/regtest: port experimental workspace tests to
go.work</li>
<li><a
href="224a61b354"><code>224a61b</code></a>
gopls/internal/lsp/source: delete Snapshot.WriteEnv method</li>
<li><a
href="81e741e32f"><code>81e741e</code></a>
gopls/internal/lsp/safetoken: funnel more calls through this
package</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/tools/compare/v0.2.0...v0.5.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.2.0&new-version=0.5.0)](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>
continuing the PR by @developer-guy
- [x] should be a publisher, as it does publish the images it builds
every time
- [x] `Default` method does not work
- [x] the `fromConfig` thing should probably be on the defaults, too
- [x] wire `--skip-ko`
- [x] documentation
- [x] more tests
- [x] use same registry as docker tests does
- [ ] see if we can make the log output match goreleaser's
- [ ] ??
closes#2556closes#3490
Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com>
Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
Co-authored-by: actions-user <actions@github.com>
Co-authored-by: Jason Hall <jason@chainguard.dev>
Co-authored-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com>
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.3.0
to 0.5.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3d872d0428"><code>3d872d0</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="bc7d1d1eb5"><code>bc7d1d1</code></a>
bcrypt: reject passwords longer than 72 bytes</li>
<li><a
href="7e3ac2043e"><code>7e3ac20</code></a>
internal/wycheproof: also use Verify in TestECDSA</li>
<li><a
href="23edec0b38"><code>23edec0</code></a>
ssh: ensure that handshakeTransport goroutines have finished before
Close ret...</li>
<li><a
href="f495dc37d5"><code>f495dc3</code></a>
acme: eliminate arbitrary timeouts in tests</li>
<li><a
href="eb2c406296"><code>eb2c406</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="2c476679df"><code>2c47667</code></a>
cryptobyte: add support for ReadASN1Integer into []byte</li>
<li>See full diff in <a
href="https://github.com/golang/crypto/compare/v0.3.0...v0.5.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/crypto&package-manager=go_modules&previous-version=0.3.0&new-version=0.5.0)](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>
Bumps [gocloud.dev](https://github.com/google/go-cloud) from 0.27.0 to
0.28.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/google/go-cloud/releases">gocloud.dev's
releases</a>.</em></p>
<blockquote>
<h2>v0.28.0</h2>
<p><strong>BREAKING CHANGES</strong>:</p>
<ul>
<li><strong>secrets/azurekeyvault</strong>: Updated to latest Azure
SDK.</li>
<li><strong>blob/azureblob</strong>: Updated to match recent breaking
changes in the Azure packages (yes, again).</li>
<li><strong>pubsub/awssnssqs</strong>: Fixed <code>BeforeSend</code> to
take a pointer to the <code>SendMessageBatchRequestEntry</code> struct,
so that it can be modified.</li>
</ul>
<p><strong>blob</strong></p>
<ul>
<li><strong>memblob</strong>: Fixed bug where use of
<code>BeforeCopy</code> callback would drop the actual copying.</li>
<li><strong>azureblob</strong>: Updated to match recent breaking changes
in the Azure packages.</li>
</ul>
<p><strong>pubsub</strong></p>
<ul>
<li><strong>all</strong>: Simplified and improved batch sizing, should
resolve issues with too-frequent polling in some situations.</li>
<li><strong>azurepubsub</strong>: Made <code>ListenerTimeout</code>
configurable.</li>
<li><strong>gcppubsub</strong> and <strong>awssnssqs</strong>: Support
lazy mode for <code>Nack</code> (where no explicit <code>Nack</code> is
sent).</li>
<li><strong>awssnssqs</strong>: Fixed <code>BeforeSend</code> to take a
pointer to the <code>SendMessageBatchRequestEntry</code> struct, so that
it can be modified.</li>
</ul>
<p><strong>secrets</strong></p>
<ul>
<li><strong>secrets/azurekeyvault</strong>: Updated to latest Azure SDK.
Use azidentity.NewDefaultAzureCredential.</li>
</ul>
<p><strong>sql</strong></p>
<ul>
<li><strong>gcp/cloudsql</strong>: Fixed IAM login.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2416609049"><code>2416609</code></a>
all: prep for v0.28.0 (<a
href="https://github-redirect.dependabot.com/google/go-cloud/issues/3207">#3207</a>)</li>
<li><a
href="13f46eb806"><code>13f46eb</code></a>
pubsub: simplify and improve batch sizing, especially for low message
rates</li>
<li><a
href="8f2c2b9a39"><code>8f2c2b9</code></a>
pubsub/memsub: Add Options for batching (<a
href="https://github-redirect.dependabot.com/google/go-cloud/issues/3205">#3205</a>)</li>
<li><a
href="fe0a3d75fe"><code>fe0a3d7</code></a>
pubsub/awssqs: Fix BeforeSend/As to enable changes to the sqs input
message (...</li>
<li><a
href="dfaf95af34"><code>dfaf95a</code></a>
secrets/azurekeyvault: Use azidentity.NewDefaultAzureCredential to
support ot...</li>
<li><a
href="1e26311532"><code>1e26311</code></a>
blob: Remove some debug logging (<a
href="https://github-redirect.dependabot.com/google/go-cloud/issues/3197">#3197</a>)</li>
<li><a
href="43ed5a4998"><code>43ed5a4</code></a>
pubsub/gcppubsub: Support lazy mode for Nacks (<a
href="https://github-redirect.dependabot.com/google/go-cloud/issues/3195">#3195</a>)</li>
<li><a
href="be80e70b3d"><code>be80e70</code></a>
pubsub/awssnssqs: Support lazy mode for Nacks (<a
href="https://github-redirect.dependabot.com/google/go-cloud/issues/3194">#3194</a>)</li>
<li><a
href="7d690993a5"><code>7d69099</code></a>
blob/azblob: Update to latest, and restore As for dirlist (<a
href="https://github-redirect.dependabot.com/google/go-cloud/issues/3191">#3191</a>)</li>
<li><a
href="e942f3c339"><code>e942f3c</code></a>
blob/azblob: Restore As for List entry (<a
href="https://github-redirect.dependabot.com/google/go-cloud/issues/3188">#3188</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/google/go-cloud/compare/v0.27.0...v0.28.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gocloud.dev&package-manager=go_modules&previous-version=0.27.0&new-version=0.28.0)](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>
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.3.0
to 0.4.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="34ffb07a99"><code>34ffb07</code></a>
go.mod: update golang.org/x dependencies</li>
<li>See full diff in <a
href="https://github.com/golang/oauth2/compare/v0.3.0...v0.4.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/oauth2&package-manager=go_modules&previous-version=0.3.0&new-version=0.4.0)](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>
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.77.0 to 0.78.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ce77452fb9"><code>ce77452</code></a>
Tweaked the ordering a little</li>
<li><a
href="dcaa030fdb"><code>dcaa030</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1620">#1620</a>
from Alexand/feat/add-enterprise-to-metadata</li>
<li><a
href="c856bb4ab9"><code>c856bb4</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1615">#1615</a>
from cyd01/master</li>
<li><a
href="06174d15a6"><code>06174d1</code></a>
Merge branch 'xanzy:master' into master</li>
<li><a
href="24f4ce1139"><code>24f4ce1</code></a>
Reorder strurt properties to match the docs</li>
<li><a
href="5681370e4b"><code>5681370</code></a>
Add enterprise attribute to metadata endpoint</li>
<li><a
href="3e2faf7564"><code>3e2faf7</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1618">#1618</a>
from linkdotnet/fix/<a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1578">#1578</a></li>
<li><a
href="1c9b5e4284"><code>1c9b5e4</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1616">#1616</a>
from robbydyer/pl_event_failure_reason</li>
<li><a
href="baf8093b63"><code>baf8093</code></a>
fix: Tags in Package as complex object</li>
<li><a
href="57255c811d"><code>57255c8</code></a>
Ordering, newlines</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.77.0...v0.78.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/xanzy/go-gitlab&package-manager=go_modules&previous-version=0.77.0&new-version=0.78.0)](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>
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.5.0 to
0.6.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ec5565b1b7"><code>ec5565b</code></a>
README.md: update documentation of module versioning</li>
<li>See full diff in <a
href="https://github.com/golang/text/compare/v0.5.0...v0.6.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/text&package-manager=go_modules&previous-version=0.5.0&new-version=0.6.0)](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>
This prevents one announce failure to skip all other announcers.
The release will still report a failure in the end, but will not fail in
the first failure.
Also improved errors messages a little bit.
closes#3663
Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
Bumps [github.com/slack-go/slack](https://github.com/slack-go/slack)
from 0.12.0 to 0.12.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/slack-go/slack/releases">github.com/slack-go/slack's
releases</a>.</em></p>
<blockquote>
<h2>v0.12.1</h2>
<h2>What's Changed</h2>
<h3>Enhancements</h3>
<ul>
<li>Add FileUploadV2 function to avoid server side file timeouts by <a
href="https://github.com/kanata2"><code>@kanata2</code></a> in <a
href="https://github-redirect.dependabot.com/slack-go/slack/pull/1148">slack-go/slack#1148</a>
<ul>
<li>Added new FileUploadV2 function to avoid server side file timeouts
by <a
href="https://github.com/sarthakkothari"><code>@sarthakkothari</code></a>
in <a
href="https://github-redirect.dependabot.com/slack-go/slack/pull/1130">slack-go/slack#1130</a></li>
</ul>
</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/sarthakkothari"><code>@sarthakkothari</code></a>
made their first contribution in <a
href="https://github-redirect.dependabot.com/slack-go/slack/pull/1130">slack-go/slack#1130</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/slack-go/slack/compare/v0.12.0...v0.12.1">https://github.com/slack-go/slack/compare/v0.12.0...v0.12.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="beca00aafb"><code>beca00a</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/slack-go/slack/issues/1148">#1148</a>
from slack-go/large-files-upload-timeout</li>
<li><a
href="bddec0ac2c"><code>bddec0a</code></a>
refactor FileUploadV2 implementation</li>
<li><a
href="7c39b55459"><code>7c39b55</code></a>
More improvements</li>
<li><a
href="5b488b4a52"><code>5b488b4</code></a>
fix lint</li>
<li>See full diff in <a
href="https://github.com/slack-go/slack/compare/v0.12.0...v0.12.1">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/slack-go/slack&package-manager=go_modules&previous-version=0.12.0&new-version=0.12.1)](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>
Bumps [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo)
from 0.14.0 to 0.14.1.
<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.14.1</h2>
<h2>What's Changed</h2>
<ul>
<li>add role connections by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> and <a
href="https://github.com/TopiSenpai"><code>@TopiSenpai</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/219">disgoorg/disgo#219</a></li>
<li>add <code>DefaultForumLayout</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/216">disgoorg/disgo#216</a></li>
<li>add <code>LocaleIndonesian</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="d1911d55fc</a></li>
<li>add webhook URL parsing by <a
href="https://github.com/jolheiser"><code>@jolheiser</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/221">disgoorg/disgo#221</a></li>
<li>add some missing guild endpoints by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/220">disgoorg/disgo#220</a></li>
<li>add prefix to <code>DefaultSortOrder</code> consts by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="b0b2fe291e</a></li>
<li>rename some fields in <code>Application</code> to match the api
naming by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="2b22c860a9</a></li>
</ul>
<h2>Breaking</h2>
<ul>
<li><code>WelcomeScreen</code> in <code>Guild</code> was renamed to
<code>GuildWelcomeScreen</code></li>
<li><code>DefaultSortOrder</code> consts now include the
<code>DefaultSortOrder</code> prefix</li>
<li><code>CustomInstallationURL</code> was renamed to
<code>CustomInstallURL</code>, <code>InstallationParams</code> were
renamed to <code>InstallParams</code>, <code>CoverURL(...)</code> was
renamed to <code>CoverImageURL(...)</code> and
<code>InstallationParams</code> were renamed to
<code>InstallParams</code> in <code>Application</code></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Pringlers"><code>@Pringlers</code></a>
made their first contribution in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/214">disgoorg/disgo#214</a></li>
<li><a href="https://github.com/jolheiser"><code>@jolheiser</code></a>
made their first contribution in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/221">disgoorg/disgo#221</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/disgoorg/disgo/compare/v0.14.0...v0.14.1">https://github.com/disgoorg/disgo/compare/v0.14.0...v0.14.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3dfcdcc91f"><code>3dfcdcc</code></a>
run unit tests in github actions</li>
<li><a
href="0349a88068"><code>0349a88</code></a>
feat: webhook URL parse (<a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/221">#221</a>)</li>
<li><a
href="bb4c3d6f6a"><code>bb4c3d6</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/219">#219</a>
from disgoorg/patch/role-connections</li>
<li><a
href="f3a4a027da"><code>f3a4a02</code></a>
add description field to roles</li>
<li><a
href="d1911d55fc"><code>d1911d5</code></a>
add LocaleIndonesian</li>
<li><a
href="3ef2632f63"><code>3ef2632</code></a>
fix application role connection routes not accepting a bearer token, add
new ...</li>
<li><a
href="a09b41a1eb"><code>a09b41a</code></a>
remove pointer from DefaultForumLayout</li>
<li><a
href="d3d00d4d0b"><code>d3d00d4</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/216">#216</a>
from disgoorg/patch/default-forum-layout</li>
<li><a
href="d0fffb59bf"><code>d0fffb5</code></a>
make DefaultForumLayout nullable</li>
<li><a
href="a2c16f1ef3"><code>a2c16f1</code></a>
match the new docs</li>
<li>Additional commits viewable in <a
href="https://github.com/disgoorg/disgo/compare/v0.14.0...v0.14.1">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.14.0&new-version=0.14.1)](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>
Bumps [github.com/caarlos0/log](https://github.com/caarlos0/log) from
0.2.0 to 0.2.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/caarlos0/log/releases">github.com/caarlos0/log's
releases</a>.</em></p>
<blockquote>
<h2>v0.2.1</h2>
<h2>Changelog</h2>
<hr />
<p><em>Released with <a href="https://goreleaser.com/pro">GoReleaser
Pro</a>!</em></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="6754d3825e"><code>6754d38</code></a>
fix: WithoutPadding returns a new entry (<a
href="https://github-redirect.dependabot.com/caarlos0/log/issues/7">#7</a>)</li>
<li><a
href="b0658457ad"><code>b065845</code></a>
fix: fields padding (<a
href="https://github-redirect.dependabot.com/caarlos0/log/issues/6">#6</a>)</li>
<li><a
href="c765f87992"><code>c765f87</code></a>
chore(deps): bump goreleaser/goreleaser-action from 3 to 4 (<a
href="https://github-redirect.dependabot.com/caarlos0/log/issues/8">#8</a>)</li>
<li>See full diff in <a
href="https://github.com/caarlos0/log/compare/v0.2.0...v0.2.1">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/caarlos0/log&package-manager=go_modules&previous-version=0.2.0&new-version=0.2.1)](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>
Bumps [github.com/caarlos0/log](https://github.com/caarlos0/log) from
0.1.10 to 0.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/caarlos0/log/releases">github.com/caarlos0/log's
releases</a>.</em></p>
<blockquote>
<h2>v0.2.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Entry WithoutPadding by <a
href="https://github.com/nervo"><code>@nervo</code></a> in <a
href="https://github-redirect.dependabot.com/caarlos0/log/pull/5">caarlos0/log#5</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/caarlos0/log/compare/v0.1.10...v0.2.0">https://github.com/caarlos0/log/compare/v0.1.10...v0.2.0</a></p>
<hr />
<p><em>Released with <a href="https://goreleaser.com/pro">GoReleaser
Pro</a>!</em></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="20f9258240"><code>20f9258</code></a>
feat: Entry WithoutPadding (<a
href="https://github-redirect.dependabot.com/caarlos0/log/issues/5">#5</a>)</li>
<li>See full diff in <a
href="https://github.com/caarlos0/log/compare/v0.1.10...v0.2.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/caarlos0/log&package-manager=go_modules&previous-version=0.1.10&new-version=0.2.0)](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>
Bumps [github.com/ulikunitz/xz](https://github.com/ulikunitz/xz) from
0.5.10 to 0.5.11.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9d122a61c1"><code>9d122a6</code></a>
release version v0.5.11</li>
<li><a
href="4ce6f08566"><code>4ce6f08</code></a>
lzma: fix handling of small dictionary sizes</li>
<li><a
href="0b7c695d23"><code>0b7c695</code></a>
xz: add reader benchmark</li>
<li><a
href="5535077940"><code>5535077</code></a>
xz: add compression reate to Writer benchmark</li>
<li><a
href="886dc9acde"><code>886dc9a</code></a>
xz: add benchmark for Writer</li>
<li><a
href="ae233692d6"><code>ae23369</code></a>
Create codeql-analysis.yml</li>
<li><a
href="057ed39949"><code>057ed39</code></a>
Remove codeql workflows</li>
<li><a
href="d2624c667f"><code>d2624c6</code></a>
Add example_test.go</li>
<li><a
href="fdaf408660"><code>fdaf408</code></a>
README.md: small improvement to the documeation section</li>
<li><a
href="060c89d64f"><code>060c89d</code></a>
README.md: add link to pkg.go.dev</li>
<li>See full diff in <a
href="https://github.com/ulikunitz/xz/compare/v0.5.10...v0.5.11">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ulikunitz/xz&package-manager=go_modules&previous-version=0.5.10&new-version=0.5.11)](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>
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.76.0 to 0.77.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="52eedaaf18"><code>52eedaa</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1598">#1598</a>
from armsnyder/fix-slow-tests</li>
<li><a
href="b56a655462"><code>b56a655</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1599">#1599</a>
from armsnyder/deprecate-test-teardown</li>
<li><a
href="946a151d3b"><code>946a151</code></a>
Refactor tests to not call teardown explicitly</li>
<li><a
href="4e7c141f18"><code>4e7c141</code></a>
Deprecate the test teardown function by moving teardown code into a test
clea...</li>
<li><a
href="65b39a6e49"><code>65b39a6</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1593">#1593</a>
from jokly/error-handler</li>
<li><a
href="837fee3854"><code>837fee3</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1596">#1596</a>
from armsnyder/get-latest-pipeline</li>
<li><a
href="db9dda5722"><code>db9dda5</code></a>
Add WithErrorHandler client option</li>
<li><a
href="21ae872d5d"><code>21ae872</code></a>
Fix slow tests by disabling retry backoff</li>
<li><a
href="91b78c1740"><code>91b78c1</code></a>
New GetLatestPipeline() client method</li>
<li><a
href="05207f556b"><code>05207f5</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1585">#1585</a>
from cyd01/master</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.76.0...v0.77.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/xanzy/go-gitlab&package-manager=go_modules&previous-version=0.76.0&new-version=0.77.0)](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>
Bumps [github.com/dghubble/oauth1](https://github.com/dghubble/oauth1)
from 0.7.1 to 0.7.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/dghubble/oauth1/releases">github.com/dghubble/oauth1's
releases</a>.</em></p>
<blockquote>
<h2>v0.7.2</h2>
<ul>
<li>Update minimum Go version from v1.17 to v1.18 (<a
href="https://github-redirect.dependabot.com/dghubble/oauth1/pull/66">#66</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/dghubble/oauth1/blob/main/CHANGES.md">github.com/dghubble/oauth1's
changelog</a>.</em></p>
<blockquote>
<h2>v0.7.2</h2>
<ul>
<li>Update minimum Go version from v1.17 to v1.18 (<a
href="https://github-redirect.dependabot.com/dghubble/oauth1/pull/66">#66</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1445aad23c"><code>1445aad</code></a>
Update minimum Go version from v1.17 to v1.18</li>
<li><a
href="953dec31c2"><code>953dec3</code></a>
Bump github.com/stretchr/testify from 1.8.0 to 1.8.1</li>
<li><a
href="56d749ba2f"><code>56d749b</code></a>
Add go 1.19 to test matrix</li>
<li><a
href="6f7198ab32"><code>6f7198a</code></a>
Bump github.com/stretchr/testify from 1.7.5 to 1.8.0</li>
<li><a
href="2e9b39a9c1"><code>2e9b39a</code></a>
Bump github.com/stretchr/testify from 1.7.4 to 1.7.5</li>
<li><a
href="52fe671438"><code>52fe671</code></a>
Bump github.com/stretchr/testify from 1.7.2 to 1.7.4</li>
<li><a
href="4590427589"><code>4590427</code></a>
Bump github.com/stretchr/testify from 1.7.1 to 1.7.2</li>
<li><a
href="74c7d89474"><code>74c7d89</code></a>
Update Go test matrix to add Go v1.18</li>
<li><a
href="dec88a17f7"><code>dec88a1</code></a>
Bump github.com/stretchr/testify from 1.7.0 to 1.7.1</li>
<li>See full diff in <a
href="https://github.com/dghubble/oauth1/compare/v0.7.1...v0.7.2">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/dghubble/oauth1&package-manager=go_modules&previous-version=0.7.1&new-version=0.7.2)](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>
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.4.0 to
0.5.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c8236a6712"><code>c8236a6</code></a>
unicode/bidi: remove unused global</li>
<li><a
href="ada7473102"><code>ada7473</code></a>
all: remove redundant type conversion</li>
<li>See full diff in <a
href="https://github.com/golang/text/compare/v0.4.0...v0.5.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/text&package-manager=go_modules&previous-version=0.4.0&new-version=0.5.0)](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>
Bumps [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo)
from 0.13.21 to 0.13.22.
<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.22</h2>
<h2>What's Changed</h2>
<ul>
<li>move json package into its own module <a
href="https://github.com/disgoorg/json">https://github.com/disgoorg/json</a>
by <a href="https://github.com/TopiSenpai"><code>@TopiSenpai</code></a>
in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/206">disgoorg/disgo#206</a></li>
<li>add <code>RegexPatterns</code> to
<code>AutoModerationTriggerMetadata</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/201">disgoorg/disgo#201</a></li>
<li>add <code>UserFlagActiveDeveloper</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/208">disgoorg/disgo#208</a></li>
<li>add <code>ApplicationID</code> to <code>Message</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="4049f4c3ed</a></li>
<li>remove <code>GuildFeaturePrivateThreads</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="1855c7f01a</a></li>
<li>rename <code>Stickers</code> to <code>StickerItems</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="65d39b859c</a></li>
</ul>
<h2>Breaking</h2>
<ul>
<li><code>GuildFeaturePrivateThreads</code> was removed</li>
<li><code>Stickers</code> in <code>Message</code> were renamed to
<code>StickerItems</code></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/disgoorg/disgo/compare/v0.13.21...v0.13.22">https://github.com/disgoorg/disgo/compare/v0.13.21...v0.13.22</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="65d39b859c"><code>65d39b8</code></a>
rename Stickers to StickerItems</li>
<li><a
href="4049f4c3ed"><code>4049f4c</code></a>
add ApplicationID to Message</li>
<li><a
href="1855c7f01a"><code>1855c7f</code></a>
remove GuildFeaturePrivateThreads</li>
<li><a
href="79251f5123"><code>79251f5</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/208">#208</a>
from disgoorg/patch/active-dev</li>
<li><a
href="a1546becb6"><code>a1546be</code></a>
add UserFlagActiveDeveloper</li>
<li><a
href="bd480c2f50"><code>bd480c2</code></a>
use new github.com/disgoorg/json module (<a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/206">#206</a>)</li>
<li><a
href="d539fda3f6"><code>d539fda</code></a>
update github actions</li>
<li><a
href="cc0e3a1372"><code>cc0e3a1</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/201">#201</a>
from disgoorg/patch/automod-regex</li>
<li><a
href="d64d5ebf77"><code>d64d5eb</code></a>
fix automod example</li>
<li><a
href="c9af872e5f"><code>c9af872</code></a>
add RegexPatterns to automod metadata</li>
<li>See full diff in <a
href="https://github.com/disgoorg/disgo/compare/v0.13.21...v0.13.22">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.21&new-version=0.13.22)](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>
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.74.0 to 0.76.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ffa70b0849"><code>ffa70b0</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1573">#1573</a>
from timofurrer/feature/metadata</li>
<li><a
href="4c641dfb87"><code>4c641df</code></a>
Implement Metadata API</li>
<li><a
href="d21dc36e99"><code>d21dc36</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1575">#1575</a>
from mycrEEpy/email-confirmed-at</li>
<li><a
href="710f2879e9"><code>710f287</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1576">#1576</a>
from r8ygun/master</li>
<li><a
href="fce97724a0"><code>fce9772</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1506">#1506</a>
from timofurrer/feature/avatars</li>
<li><a
href="02292fff2c"><code>02292ff</code></a>
Fully support project and group avatars</li>
<li><a
href="677a0fa2f7"><code>677a0fa</code></a>
Add ID parameter to FeatureFlagStrategyOptions</li>
<li><a
href="a258c409a9"><code>a258c40</code></a>
add ConfirmedAt to Email</li>
<li><a
href="3ef2120d1f"><code>3ef2120</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1570">#1570</a>
from FelixKampfer/add_field_to_projects_struct</li>
<li><a
href="4172c04a90"><code>4172c04</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/xanzy/go-gitlab/issues/1572">#1572</a>
from timofurrer/feature/settings-can-create-group</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.74.0...v0.76.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/xanzy/go-gitlab&package-manager=go_modules&previous-version=0.74.0&new-version=0.76.0)](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>
Bumps
[github.com/invopop/jsonschema](https://github.com/invopop/jsonschema)
from 0.6.0 to 0.7.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9f28aff529"><code>9f28aff</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/invopop/jsonschema/issues/53">#53</a>
from webdestroya/feat/schema-post</li>
<li><a
href="ea9462d7d8"><code>ea9462d</code></a>
fixes</li>
<li><a
href="7ebaf5956b"><code>7ebaf59</code></a>
Merge branch 'main' into feat/schema-post</li>
<li><a
href="b32bc839da"><code>b32bc83</code></a>
Renaming JSONSchemaPost to JSONSchemaExtend</li>
<li><a
href="a7e97159f1"><code>a7e9715</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/invopop/jsonschema/issues/57">#57</a>
from PeterNovotney/allow-equals</li>
<li><a
href="fb292e4c0a"><code>fb292e4</code></a>
Allow for = character in extra property values</li>
<li><a
href="55c890f449"><code>55c890f</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/invopop/jsonschema/issues/46">#46</a>
from deepjyoti30/feat/add-anyof-support</li>
<li><a
href="bd9a931546"><code>bd9a931</code></a>
feat(reflect): Add method to modify the schema after processing</li>
<li><a
href="679d2ebe09"><code>679d2eb</code></a>
Merge pull request <a
href="https://github-redirect.dependabot.com/invopop/jsonschema/issues/47">#47</a>
from paulcacheux/paulcacheux/inline-ptr</li>
<li><a
href="48f39d6372"><code>48f39d6</code></a>
fix <code>Pointer</code> issue because of recent go version</li>
<li>Additional commits viewable in <a
href="https://github.com/invopop/jsonschema/compare/v0.6.0...v0.7.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/invopop/jsonschema&package-manager=go_modules&previous-version=0.6.0&new-version=0.7.0)](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>
Bumps [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo)
from 0.13.20 to 0.13.21.
<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.21</h2>
<h2>What's Changed</h2>
<ul>
<li>add PremiumTypeNitroBasic by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="903df646b4</a></li>
<li>update guild features by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="5f832114b8</a></li>
<li>update <a
href="https://github.com/disgoorg/snowflake"><code>snowflake</code></a>
module to fix issues with decoding some <code>GuildCreate</code> events
by <a href="https://github.com/TopiSenpai"><code>@TopiSenpai</code></a>
in <a
href="2e94ec627a</a></li>
<li>add <code>SetFooterIconf</code>, <code>SetImagef</code>,
<code>SetThumbnailf</code> and <code>SetURLf</code> by <a
href="https://github.com/itasli"><code>@itasli</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/204">disgoorg/disgo#204</a></li>
<li>add more automod audit log types + fields by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/189">disgoorg/disgo#189</a></li>
<li>update oauth2 connections by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="9910965d4b</a></li>
<li>add default sort order to forums by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="0f47660bb9</a></li>
<li>add missing fields to <code>GuildForumChannelCreate</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="d5b5254c4f</a></li>
<li>fix missing <code>guild_id</code> in GuildForumChannels by <a
href="https://github.com/TopiSenpai"><code>@TopiSenpai</code></a> in <a
href="16246893ae</a></li>
<li>add <code>Flags</code> to <code>GuildForumChannelUpdate</code> by <a
href="https://github.com/caneleex"><code>@caneleex</code></a> in <a
href="bdac2ebafb</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/itasli"><code>@itasli</code></a> made
their first contribution in <a
href="https://github-redirect.dependabot.com/disgoorg/disgo/pull/204">disgoorg/disgo#204</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/disgoorg/disgo/compare/v0.13.20...v0.13.21">https://github.com/disgoorg/disgo/compare/v0.13.20...v0.13.21</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="903df646b4"><code>903df64</code></a>
add PremiumTypeNitroBasic</li>
<li><a
href="5f832114b8"><code>5f83211</code></a>
update feature list</li>
<li><a
href="2e94ec627a"><code>2e94ec6</code></a>
update snowflake module to v2.0.1 to fix snowlfake decoding error &
move gate...</li>
<li><a
href="17ccdf302f"><code>17ccdf3</code></a>
add SetFooterIconf, SetImagef, SetThumbnailf and SetURLf (<a
href="https://github-redirect.dependabot.com/disgoorg/disgo/issues/204">#204</a>)</li>
<li><a
href="5cad8df785"><code>5cad8df</code></a>
fix incorrect json field name for ExpiresAt</li>
<li><a
href="0f47660bb9"><code>0f47660</code></a>
add default sort order to forums (again)</li>
<li><a
href="bdac2ebafb"><code>bdac2eb</code></a>
add Flags to GuildForumChannelUpdate</li>
<li><a
href="e1e6eb2de9"><code>e1e6eb2</code></a>
add missing methods on flag types</li>
<li><a
href="9910965d4b"><code>9910965</code></a>
update connections</li>
<li><a
href="1e34b93709"><code>1e34b93</code></a>
Revert "add default sort order to forums"</li>
<li>Additional commits viewable in <a
href="https://github.com/disgoorg/disgo/compare/v0.13.20...v0.13.21">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.20&new-version=0.13.21)](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>