1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-27 01:33:39 +02:00
Commit Graph

4948 Commits

Author SHA1 Message Date
Carlos Alexandro Becker
8337eb3d48
chore: update schema 2023-08-09 13:12:33 +00:00
Carlos Alexandro Becker
0f018f3f58
build: fix release name when nightly 2023-08-09 13:12:18 +00:00
Carlos Alexandro Becker
08e307ea8d
Revert "fix: skip defaults for skipped pipes (#4210)"
This reverts commit dccd68c126.

This breaks `continue` on goreleaser-pro.

Will re-work this for the next release.
2023-08-09 02:43:34 +00:00
Carlos Alexandro Becker
dccd68c126
fix: skip defaults for skipped pipes (#4210)
closes #4208

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-08-08 22:43:39 -03:00
Carlos Alexandro Becker
c06ba3a94f
feat: publishers.disable (#4239)
allows to disable a specific custom publisher based on a template, akin
to other pipes.

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-08-08 22:43:09 -03:00
Carlos Alexandro Becker
acfc1b2274
docs: update schema
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-08-08 12:33:22 +00:00
dependabot[bot]
5bf89f21eb
feat(deps): bump golang.org/x/tools from 0.11.1 to 0.12.0 (#4237)
Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.11.1
to 0.12.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.12.0</h2>
<p>This release contains a major rewrite of the way gopls computes and
stores package information, with the goal of reducing memory usage and
allowing gopls to scale to larger repositories. This change can also
significantly reduce startup time when workspaces are reopened, as gopls
now uses a file-based cache to persist data across sessions. With these
optimizations, gopls is finally able to <a
href="https://go.dev/issues/48738">fully analyze dependencies</a> using
the <a
href="https://pkg.go.dev/golang.org/x/tools/go/analysis">golang.org/x/tools/go/analysis</a>
framework, resulting in improved accuracy for analysis diagnostics.</p>
<p>You can install this release with <code>go install</code>:</p>
<pre><code>go install golang.org/x/tools/gopls@v0.12.0
</code></pre>
<h1>Support changes</h1>
<p>As gopls matures, we're trying to simplify its configuration so that
gopls Just Works in more scenarios, and so that we have fewer
configuration combinations to test. This means that we will be gradually
deprecating settings that affect the core behavior of gopls.</p>
<h2>Removed experimental configuration options</h2>
<p>As announced in the <a
href="https://github.com/golang/tools/releases/tag/gopls%2Fv0.10.0">v0.10.0
release notes</a>, this release removes support for the
<code>experimentalWorkspaceModule</code> and
<code>experimentalWatchedFileDelay</code> settings. The
<code>experimentalPackageCacheKey</code> setting is also removed, as it
is irrelevant in the new design.</p>
<p>The <code>experimentalWorkspaceModule</code> setting in particular
may still be in use by some users. This setting has been superseded by
built-in support for multi-module workspaces in the <code>go</code>
command, via <a href="https://go.dev/doc/tutorial/workspaces">Go
workspaces</a>. To get the equivalent behavior in gopls@v0.12.0, please
create a <code>go.work</code> file in your workspace using all desired
modules. To use all modules in your workspace, run:</p>
<pre><code>go work use -r .
</code></pre>
<h2>Dropped support for Go 1.13-1.15, deprecated support for Go
1.16-1.17</h2>
<p>As announced in the <a
href="https://github.com/golang/tools/releases/tag/gopls%2Fv0.10.0">v0.10.0
release notes</a>, this release drops support for Go 1.13-1.15, and in
fact does not build with these Go versions.</p>
<p>Additionally, <code>gopls@v0.12.x</code> will be the final sequence
of versions supporting Go 1.16-1.17, and therefore displays a
deprecation notice when used with these Go versions.</p>
<h2>Supported operating systems</h2>
<p>Given that our users are almost entirely on Linux, Windows, or
Darwin, we are discussing narrowing our support to focus on those
operating systems, in <a
href="https://redirect.github.com/golang/go/issues/59981">golang/go#59981</a>.</p>
<h1>Performance improvements</h1>
<p>The banner feature of this release is an internal redesign that
significantly improves the way gopls scales in larger codebases.
Performance, particularly memory usage, has <a
href="https://redirect.github.com/golang/go/issues/36943">long</a> <a
href="https://redirect.github.com/golang/go/issues/37790">been</a> <a
href="https://redirect.github.com/golang/go/issues/43968">a</a> <a
href="https://redirect.github.com/golang/go/issues/44981">pain</a> <a
href="https://redirect.github.com/golang/go/issues/45363">point</a> <a
href="https://redirect.github.com/golang/go/issues/45457">for</a> <a
href="https://redirect.github.com/golang/go/issues/46897">our</a> <a
href="https://redirect.github.com/golang/go/issues/47855">users</a>.</p>
<h2>Reduced memory usage</h2>
<p>Previous releases of gopls held typed syntax trees for all packages,
in memory, all the time. With this release, these large data structures
are ephemeral: as soon as they are constructed, an index of information
derived from them is saved persistently to a file-based cache, and the
data structures are recycled. The index for each package includes the
locations of declaring and referring identifiers; the set of exported
declarations and their types; the method sets of each interface; and any
diagnostics and facts (see below) produced during analysis. The index
holds all the information needed to serve global-scope LSP queries such
as “references”, “implementations”, and so on.</p>
<p>Moving package information to a file-based cache greatly reduces the
amount of RAM gopls uses, by almost an order of magnitude in larger
projects. The table below shows the reductions in steady-state memory
usage for three open-source Go repositories.</p>
<table>
<thead>
<tr>
<th>Project</th>
<th>Packages</th>
<th>In-use bytes v0.11.0</th>
<th>v0.12.0</th>
<th>Change</th>
</tr>
</thead>
<tbody>
<tr>
<td>gopls</td>
<td>405</td>
<td>497MB</td>
<td>232MB</td>
<td>-53%</td>
</tr>
<tr>
<td>kubernetes</td>
<td>3137</td>
<td>3090MB</td>
<td>832MB</td>
<td>-73%</td>
</tr>
<tr>
<td>google-cloud-go + submods</td>
<td>7657</td>
<td>5039MB</td>
<td>863MB</td>
<td>-83%</td>
</tr>
</tbody>
</table>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="229f8486be"><code>229f848</code></a>
gopls/internal/lsp/source: enable new defers analyzer</li>
<li><a
href="2dc7ebab28"><code>2dc7eba</code></a>
go/analysis: use parser.SkipObjectResolution</li>
<li><a
href="f91c023a9b"><code>f91c023</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="e0783a89e9"><code>e0783a8</code></a>
internal/gcimporter: remove bug report on objectpath failure</li>
<li><a
href="75f6f9c0b0"><code>75f6f9c</code></a>
gopls/internal/bug: add gopls/bug telemetry counter</li>
<li><a
href="4b271f9c71"><code>4b271f9</code></a>
gopls: add gopls/client telemetry counters</li>
<li><a
href="d0b18e25a0"><code>d0b18e2</code></a>
go/analysis/passes/copylock: fix infinite recursion</li>
<li><a
href="5b4d426665"><code>5b4d426</code></a>
gopls/internal/hooks: clean language version before passing to
gofumpt</li>
<li><a
href="2160c5f15f"><code>2160c5f</code></a>
gopls/internal/lsp/analysis: fix stubmethods with variadic
parameters</li>
<li><a
href="3d20bbe0fb"><code>3d20bbe</code></a>
internal/gcimporter: add a missing return if objectpath fails</li>
<li>See full diff in <a
href="https://github.com/golang/tools/compare/v0.11.1...v0.12.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.11.1&new-version=0.12.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>
2023-08-08 09:32:22 -03:00
dependabot[bot]
a1fc286931
feat(deps): bump golang from 7efb78d to b255d93 (#4238)
Bumps golang from `7efb78d` to `b255d93`.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang&package-manager=docker&previous-version=1.20.7-alpine&new-version=1.20.7-alpine)](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>
2023-08-08 09:32:01 -03:00
dependabot[bot]
4e731ed23f
feat(deps): bump golang.org/x/oauth2 from 0.10.0 to 0.11.0 (#4233)
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from
0.10.0 to 0.11.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2e4a4e2bfb"><code>2e4a4e2</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="ac6658e9cb"><code>ac6658e</code></a>
all: update go version to 1.18</li>
<li>See full diff in <a
href="https://github.com/golang/oauth2/compare/v0.10.0...v0.11.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.10.0&new-version=0.11.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 will merge this PR once it's up-to-date and CI passes on it,
as requested by @caarlos0.

[//]: # (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>
2023-08-07 11:02:40 -03:00
dependabot[bot]
1d189e7a59
feat(deps): bump golang.org/x/crypto from 0.11.0 to 0.12.0 (#4235)
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from
0.11.0 to 0.12.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b4ddeeda5b"><code>b4ddeed</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="edc325d13a"><code>edc325d</code></a>
ssh: fix call to Fatalf from a non-test goroutine</li>
<li><a
href="eab9315960"><code>eab9315</code></a>
ssh: add diffie-hellman-group16-sha512 kex</li>
<li><a
href="ddfa82138e"><code>ddfa821</code></a>
ssh: ignore invalid MACs and KEXs just like we do for ciphers</li>
<li><a
href="d08e19beac"><code>d08e19b</code></a>
x509roots/fallback: update bundle</li>
<li><a
href="12e1fcd8c0"><code>12e1fcd</code></a>
internal/wycheproof: skip all tests in short test mode</li>
<li><a
href="3f8f0645c2"><code>3f8f064</code></a>
ssh: prefer sha256 based RSA key algorithms</li>
<li><a
href="5df3b59941"><code>5df3b59</code></a>
ssh: disable client agent tests on Windows</li>
<li><a
href="2e82bdd171"><code>2e82bdd</code></a>
fix TestValidTerminalMode: missing output from echo SHELL $SHELL</li>
<li><a
href="64e0e99383"><code>64e0e99</code></a>
ssh: fix RSA certificate and public key authentication with older
clients</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/crypto/compare/v0.11.0...v0.12.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.11.0&new-version=0.12.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 will merge this PR once it's up-to-date and CI passes on it,
as requested by @caarlos0.

[//]: # (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>
2023-08-07 10:04:32 -03:00
dependabot[bot]
b76c3ddb1f
feat(deps): bump github.com/xanzy/go-gitlab from 0.89.0 to 0.90.0 (#4232)
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.89.0 to 0.90.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3b7542aae1"><code>3b7542a</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1768">#1768</a>
from PascalRoose/patch-project-emails-enabled</li>
<li><a
href="4a212a4f31"><code>4a212a4</code></a>
Tweak struct field tags</li>
<li><a
href="d426fac447"><code>d426fac</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1767">#1767</a>
from billiechar/billiechar-group-repository-storage</li>
<li><a
href="de4ff04d98"><code>de4ff04</code></a>
Update ordering</li>
<li><a
href="9c0749405e"><code>9c07494</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1769">#1769</a>
from PatrickRice-KSC/add-new-runner-api-support</li>
<li><a
href="f4834ae192"><code>f4834ae</code></a>
Bring the PR inline with the rest of the package</li>
<li><a
href="25e4cfa498"><code>25e4cfa</code></a>
Update the response and options based on new API documentation and
examples</li>
<li><a
href="b5d9b2ed31"><code>b5d9b2e</code></a>
Fix comments</li>
<li><a
href="6069191e14"><code>6069191</code></a>
Add runner service</li>
<li><a
href="81c2f1c609"><code>81c2f1c</code></a>
Fix: projects emails_disabled to emails_enabled</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.89.0...v0.90.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.89.0&new-version=0.90.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 will merge this PR once CI passes on it, as requested by
@caarlos0.

[//]: # (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>
2023-08-07 10:04:22 -03:00
dependabot[bot]
1cf6390eb1
feat(deps): bump github.com/disgoorg/disgo from 0.16.7 to 0.16.8 (#4234)
Bumps [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo)
from 0.16.7 to 0.16.8.
<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.16.8 - Media Channels</h2>
<h2>What's Changed</h2>
<ul>
<li>Add Media Channels by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="https://redirect.github.com/disgoorg/disgo/pull/285">disgoorg/disgo#285</a></li>
<li>Add avatar decorations by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="https://redirect.github.com/disgoorg/disgo/pull/217">disgoorg/disgo#217</a></li>
<li>Add onboarding updates by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="https://redirect.github.com/disgoorg/disgo/pull/267">disgoorg/disgo#267</a></li>
<li>Add <code>RoleFlags</code> by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="https://redirect.github.com/disgoorg/disgo/pull/287">disgoorg/disgo#287</a></li>
<li>Add <code>AttachmentFlags</code> by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="https://redirect.github.com/disgoorg/disgo/pull/288">disgoorg/disgo#288</a></li>
<li>Add <code>MessageAuthorID</code> to reaction add events by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="23637a7340</a></li>
<li>Add <code>withCounts</code> parameter to to
<code>/users/@me/guilds</code> funcs by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="836b4a9882</a></li>
<li>Add monetization audit log events by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="09a5cb21c9</a></li>
<li>Add <code>Go</code> &amp; <code>Defer</code> middleware to
<code>handler</code> to run handlers in separate goroutines &amp; auto
defer interactions by <a
href="https://github.com/topi314"><code>@​topi314</code></a> in <a
href="b331ced0cf</a></li>
<li>Add enforce all handler patterns start with <code>/</code> to fix
some bugs by <a
href="https://github.com/topi314"><code>@​topi314</code></a> in <a
href="8f83c45072</a></li>
<li>Fix unknown gateway message data unmarshalling by <a
href="https://github.com/topi314"><code>@​topi314</code></a> in <a
href="79b8080c1b</a></li>
<li>Rename <code>ImageFormat</code> to <code>FileFormat</code> by <a
href="https://github.com/mlnrDev"><code>@​mlnrDev</code></a> in <a
href="https://redirect.github.com/disgoorg/disgo/pull/284">disgoorg/disgo#284</a></li>
</ul>
<h2>Breaking Changes</h2>
<ul>
<li><code>LastThreadID</code> -&gt; <code>LastPostID</code>,
<code>ForumTag</code> -&gt; <code>ChannelTag</code>,
<code>GuildForumThreadChannelUpdate</code> -&gt;
<code>GuildPostUpdate</code>, <code>ForumThreadCreate</code> -&gt;
<code>ThreadChannelPostCreate</code>, <code>ForumThread</code> -&gt;
<code>ThreadChannelPost</code> and <code>rest.CreateThreadInForum</code>
-&gt; <code>rest.CreatePostInThreadChannel</code></li>
<li><code>GetCurrentUserGuilds</code>,
<code>GetCurrentUserGuildsPage</code> and <code>GetGuilds</code> now
accept an extra <code>withCounts</code> parameter</li>
<li><code>ImageFormat</code> has been renamed to
<code>FileFormat</code></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/disgoorg/disgo/compare/v0.16.7...v0.16.8">https://github.com/disgoorg/disgo/compare/v0.16.7...v0.16.8</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b0885debf8"><code>b0885de</code></a>
Add Media Channels (<a
href="https://redirect.github.com/disgoorg/disgo/issues/285">#285</a>)</li>
<li><a
href="e8c9c8b1f6"><code>e8c9c8b</code></a>
update disgoorg/log to v1.2.1</li>
<li><a
href="201bf30a6f"><code>201bf30</code></a>
make MessageAuthorID a pointer</li>
<li><a
href="d57b40f1f6"><code>d57b40f</code></a>
i forgor</li>
<li><a
href="836b4a9882"><code>836b4a9</code></a>
add with_counts to /users/<code>@​me/guilds</code> funcs</li>
<li><a
href="09a5cb21c9"><code>09a5cb2</code></a>
add monetization audit log events</li>
<li><a
href="23637a7340"><code>23637a7</code></a>
add MessageAuthorID to EventMessageReactionAdd</li>
<li><a
href="93dc710363"><code>93dc710</code></a>
Add avatar decorations (<a
href="https://redirect.github.com/disgoorg/disgo/issues/217">#217</a>)</li>
<li><a
href="5e4729f52d"><code>5e4729f</code></a>
Add AttachmentFlags (<a
href="https://redirect.github.com/disgoorg/disgo/issues/288">#288</a>)</li>
<li><a
href="f786e69866"><code>f786e69</code></a>
Add onboarding updates (<a
href="https://redirect.github.com/disgoorg/disgo/issues/267">#267</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/disgoorg/disgo/compare/v0.16.7...v0.16.8">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.16.7&new-version=0.16.8)](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 will merge this PR once CI passes on it, as requested by
@caarlos0.

[//]: # (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>
2023-08-07 10:04:06 -03:00
dependabot[bot]
07c1440b62
feat(deps): bump golang.org/x/text from 0.11.0 to 0.12.0 (#4236)
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.11.0 to
0.12.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="fb697c0580"><code>fb697c0</code></a>
cmd/gotext: actually use -dir flag</li>
<li><a
href="f3e69ed4a8"><code>f3e69ed</code></a>
cmd/gotext: fix misbehaviors</li>
<li><a
href="ab07ad1b65"><code>ab07ad1</code></a>
all: remove repetitive words</li>
<li>See full diff in <a
href="https://github.com/golang/text/compare/v0.11.0...v0.12.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.11.0&new-version=0.12.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 will merge this PR once CI passes on it, as requested by
@caarlos0.

[//]: # (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>
2023-08-07 09:36:30 -03:00
Carlos Alexandro Becker
e7ceead889
test: fix
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-08-07 12:11:10 +00:00
Carlos Alexandro Becker
03622ab59c
chore: schema update 2023-08-04 14:49:34 +00:00
Carlos Alexandro Becker
bbe2ee7bfb
refactor: properly annotate deprecated options
Removed unused, deprecated stuff.
2023-08-04 14:47:54 +00:00
dependabot[bot]
b242ed0fb7
feat(deps): bump github.com/google/go-containerregistry from 0.15.2 to 0.16.1 (#4229)
Bumps
[github.com/google/go-containerregistry](https://github.com/google/go-containerregistry)
from 0.15.2 to 0.16.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/google/go-containerregistry/releases">github.com/google/go-containerregistry's
releases</a>.</em></p>
<blockquote>
<h2>v0.16.1</h2>
<p>Release is broken due to goreleaser error, 0.16.1 has the fix</p>
<h2>What's Changed</h2>
<ul>
<li>bump deps using ./hack/bump-deps.sh by <a
href="https://github.com/imjasonh"><code>@​imjasonh</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1702">google/go-containerregistry#1702</a></li>
<li>Allow crane to export schema 1 images by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1704">google/go-containerregistry#1704</a></li>
<li>fixed a goroutine leak by <a
href="https://github.com/ktarplee"><code>@​ktarplee</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1705">google/go-containerregistry#1705</a></li>
<li>retry HTTP 522 errors by default by <a
href="https://github.com/imjasonh"><code>@​imjasonh</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1707">google/go-containerregistry#1707</a></li>
<li>Limit size of manifest by <a
href="https://github.com/AdamKorcz"><code>@​AdamKorcz</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1711">google/go-containerregistry#1711</a></li>
<li>Add crane auth token by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1709">google/go-containerregistry#1709</a></li>
<li>Bump codecov/codecov-action from 3.1.3 to 3.1.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1710">google/go-containerregistry#1710</a></li>
<li>Pass scopes through crane auth token by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1713">google/go-containerregistry#1713</a></li>
<li>fix: add bounds checking to addendum layer mutations to prevent
panic by <a
href="https://github.com/aaron-prindle"><code>@​aaron-prindle</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1715">google/go-containerregistry#1715</a></li>
<li>Surface better error messages in crane index by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1722">google/go-containerregistry#1722</a></li>
<li>crane: add missing name option in crane index commands by <a
href="https://github.com/HubertZhang"><code>@​HubertZhang</code></a> in
<a
href="https://redirect.github.com/google/go-containerregistry/pull/1723">google/go-containerregistry#1723</a></li>
<li>crane: Respect cmd.OutOrStdout by <a
href="https://github.com/kyleconroy"><code>@​kyleconroy</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1728">google/go-containerregistry#1728</a></li>
<li>Make ErrSchema1 checkable via errors.Is() by <a
href="https://github.com/Laitr0n"><code>@​Laitr0n</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1721">google/go-containerregistry#1721</a></li>
<li>Don't load into daemon if the image already exists by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1724">google/go-containerregistry#1724</a></li>
<li>add --blobs-to-disk to 'crane registry serve' by <a
href="https://github.com/imjasonh"><code>@​imjasonh</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1731">google/go-containerregistry#1731</a></li>
<li>Correct crane registry help text by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1732">google/go-containerregistry#1732</a></li>
<li>Allow concurrent blob Sets, use RWMutex by <a
href="https://github.com/mattmoor"><code>@​mattmoor</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1733">google/go-containerregistry#1733</a></li>
<li>Use RWLock, limit scope of locking, write digest first by <a
href="https://github.com/mattmoor"><code>@​mattmoor</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1734">google/go-containerregistry#1734</a></li>
<li>Let the filesystem handle atomicity by <a
href="https://github.com/mattmoor"><code>@​mattmoor</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1735">google/go-containerregistry#1735</a></li>
<li>Don't try cross-origin mounting against dockerhub by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1743">google/go-containerregistry#1743</a></li>
<li>Drop localhost to support crane registry serve in a container by <a
href="https://github.com/mattmoor"><code>@​mattmoor</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1746">google/go-containerregistry#1746</a></li>
<li>Return OCI Index content-type for referrers response by <a
href="https://github.com/jdolitsky"><code>@​jdolitsky</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1762">google/go-containerregistry#1762</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/AdamKorcz"><code>@​AdamKorcz</code></a>
made their first contribution in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1711">google/go-containerregistry#1711</a></li>
<li><a
href="https://github.com/HubertZhang"><code>@​HubertZhang</code></a>
made their first contribution in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1723">google/go-containerregistry#1723</a></li>
<li><a
href="https://github.com/kyleconroy"><code>@​kyleconroy</code></a> made
their first contribution in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1728">google/go-containerregistry#1728</a></li>
<li><a href="https://github.com/Laitr0n"><code>@​Laitr0n</code></a> made
their first contribution in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1721">google/go-containerregistry#1721</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/google/go-containerregistry/compare/v0.15.2...v0.16.1">https://github.com/google/go-containerregistry/compare/v0.15.2...v0.16.1</a></p>
<h3>Container Images</h3>
<p><a
href="https://gcr.io/go-containerregistry/crane:v0.16.1">https://gcr.io/go-containerregistry/crane:v0.16.1</a>
<a
href="https://gcr.io/go-containerregistry/gcrane:v0.16.1">https://gcr.io/go-containerregistry/gcrane:v0.16.1</a></p>
<p>For example:</p>
<pre><code>docker pull gcr.io/go-containerregistry/crane:v0.16.1
docker pull gcr.io/go-containerregistry/gcrane:v0.16.1
</code></pre>
<h2>v0.16.0</h2>
<p>Release is broken due to goreleaser error, 0.16.1 has the fix</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a54d64203c"><code>a54d642</code></a>
fix: pin to goreleaser v1.18 to unblock release (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1763">#1763</a>)</li>
<li><a
href="ea19b57966"><code>ea19b57</code></a>
Return OCI Index content-type for referrers response (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1762">#1762</a>)</li>
<li><a
href="b850480338"><code>b850480</code></a>
Drop localhost to support crane registry serve in a container (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1746">#1746</a>)</li>
<li><a
href="fe268b7c97"><code>fe268b7</code></a>
Don't try cross-origin mounting against dockerhub (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1743">#1743</a>)</li>
<li><a
href="2472cbbbf2"><code>2472cbb</code></a>
Let the filesystem handle atomicity (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1735">#1735</a>)</li>
<li><a
href="db818dce39"><code>db818dc</code></a>
Use RWLock, limit scope of locking, write digest first (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1734">#1734</a>)</li>
<li><a
href="44a6e2ebcc"><code>44a6e2e</code></a>
Allow concurrent blob Sets, use RWMutex (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1733">#1733</a>)</li>
<li><a
href="9010ce1fe2"><code>9010ce1</code></a>
Correct crane registry help text (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1732">#1732</a>)</li>
<li><a
href="03ad2ac196"><code>03ad2ac</code></a>
add --blobs-to-disk to 'crane registry serve' (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1731">#1731</a>)</li>
<li><a
href="4e4b03ab89"><code>4e4b03a</code></a>
Don't load into daemon if the image already exists (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1724">#1724</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/google/go-containerregistry/compare/v0.15.2...v0.16.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/google/go-containerregistry&package-manager=go_modules&previous-version=0.15.2&new-version=0.16.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>
2023-08-03 09:34:13 -03:00
Carlos Alexandro Becker
9e5d6458b3
build: improve archive name_template 2023-08-03 12:33:02 +00:00
Carlos Alexandro Becker
635b051ad5
docs: fix migration example 2023-08-03 12:32:46 +00:00
Boshi Lian
65544aeec0
fix: docker respects builds binary file paths (#4218)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->

`docker` packaging does not honor the path structure defined in
builds/binary
it copies all binaries to temp docker build folder

this PR fixes the behavior and make it same as `archive` 

for example

```
builds:
- id: xxx 
  binary: plugins/xxx
```

before:

```
/tmp/goreleaserdocker2210262014/xxx
```

after:

```
/tmp/goreleaserdocker2210262014/plugins/xxx
```


<!-- If applied, this commit will... -->



<!-- Why is this change being made? -->



<!-- # Provide links to any relevant tickets, URLs or other resources
-->
2023-08-03 09:19:07 -03:00
Carlos Alexandro Becker
d0a86edd90
feat(snapcraft): allow to disable (#4228)
allows to disable a snapcraft configuration based on a template, e.g. if
snapshot, nightly, etc
2023-08-03 09:17:26 -03:00
Carlos Alexandro Becker
89b76df4bb
build: remove snapcraft from nightlies 2023-08-03 02:34:49 +00:00
Carlos Alexandro Becker
937aa9eddf
build: rename file 2023-08-03 02:20:15 +00:00
Carlos Alexandro Becker
d65493abf8
chore: update schema 2023-08-03 02:18:08 +00:00
Carlos Alexandro Becker
7ea7ac5d97
build: rename workflow 2023-08-03 02:17:55 +00:00
Carlos Alexandro Becker
204d14ae64
build: release nightly every Thursday (#4211)
closes #3501
2023-08-02 23:17:03 -03:00
Carlos Alexandro Becker
1d17b311e3
fix(nix): multiple archives for the same platform (#4227)
this fixes is specially useful for universal binaries that replace the
separated binaries.

closes #4226
2023-08-02 22:58:10 -03:00
Carlos Alexandro Becker
79688e0ae5
test(docker): fix broken test
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-08-03 01:57:40 +00:00
Carlos Alexandro Becker
c6655bc094
feat(nix): support zip packages (#4225)
closes https://github.com/goreleaser/goreleaser/issues/4224
2023-08-02 20:42:35 -03:00
dependabot[bot]
de5fae23dd feat(deps): bump gocloud.dev from 0.32.0 to 0.33.0
Bumps [gocloud.dev](https://github.com/google/go-cloud) from 0.32.0 to 0.33.0.
- [Release notes](https://github.com/google/go-cloud/releases)
- [Commits](https://github.com/google/go-cloud/compare/v0.32.0...v0.33.0)

---
updated-dependencies:
- dependency-name: gocloud.dev
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-08-02 14:02:35 -03:00
dependabot[bot]
b640c27f48 feat(deps): bump golang from 1.20.6-alpine to 1.20.7-alpine
Bumps golang from 1.20.6-alpine to 1.20.7-alpine.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-08-02 14:02:02 -03:00
Carlos Alexandro Becker
51d9fc67a9
feat(deps): use mergo 1.0.0 2023-07-31 16:32:36 +00:00
dependabot[bot]
bf3dc65b89
feat(deps): bump golang.org/x/tools from 0.11.0 to 0.11.1 (#4220) 2023-07-31 14:32:00 +00:00
dependabot[bot]
43c53f4793
feat(deps): bump github.com/atc0005/go-teams-notify/v2 from 2.7.1 to 2.8.0 (#4216) 2023-07-31 14:14:23 +00:00
dependabot[bot]
db2a3f3e72 feat(deps): bump github.com/xanzy/go-gitlab from 0.88.0 to 0.89.0
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab) from 0.88.0 to 0.89.0.
- [Changelog](https://github.com/xanzy/go-gitlab/blob/master/releases_test.go)
- [Commits](https://github.com/xanzy/go-gitlab/compare/v0.88.0...v0.89.0)

---
updated-dependencies:
- dependency-name: github.com/xanzy/go-gitlab
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-31 10:59:47 -03:00
actions-user
802beb66f3 chore: docs auto-update 2023-07-31 12:42:23 +00:00
Carlos Alexandro Becker
d7921d4638 feat(brew): extra_install
Allows to add manpages and shell completion installs without overriding
the default bin.install.
2023-07-31 09:40:35 -03:00
Carlos Alexandro Becker
025b8757b8
fix(nix): improve extra_install 2023-07-30 03:04:59 +00:00
Carlos Alexandro Becker
30ea8a7d96
build: update nix config
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-07-30 02:34:15 +00:00
Carlos Alexandro Becker
dbf7f57928
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-07-30 02:34:05 +00:00
Carlos Alexandro Becker
321fd13194
Revert "build(dependabot): group dependency updates"
This reverts commit 4c9314b06f.
2023-07-28 13:51:43 +00:00
Carlos Alexandro Becker
a73937baf0
docs: remove newsletter link
revue is dead since january 💀
2023-07-27 12:48:33 +00:00
Carlos Alexandro Becker
88b63048b1
docs: update 2023-07-27 01:19:45 +00:00
Carlos Alexandro Becker
1d2868b40f
docs: update 2023-07-26 14:48:21 +00:00
actions-user
3aac6b4f6a chore: docs auto-update 2023-07-26 14:35:43 +00:00
Carlos Alexandro Becker
8a4c874a13 fix(nix): potentially unused with lib 2023-07-26 11:32:37 -03:00
Carlos Alexandro Becker
f107338870 fix(nix): fmt
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-07-26 11:32:37 -03:00
Carlos Alexandro Becker
94f080d77c feat(nix): extraInstall 2023-07-26 11:32:37 -03:00
Carlos Alexandro Becker
e672699b0a feat(nix): runtime dependencies
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-07-26 11:32:37 -03:00
Carlos Alexandro Becker
5e27651dae
fix: using token log message
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-07-26 00:34:40 +00:00