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

chore(deps): bump github.com/charmbracelet/lipgloss from 0.12.1 to 0.13.0 (#5095)

Bumps
[github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss)
from 0.12.1 to 0.13.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/charmbracelet/lipgloss/releases">github.com/charmbracelet/lipgloss's
releases</a>.</em></p>
<blockquote>
<h2>v0.13.0</h2>
<h1>Woodn’t you know, Lip Gloss has trees!</h1>
<p>Lip Gloss now ships with a tree rendering sub-package!</p>
<pre lang="go"><code>import
&quot;github.com/charmbracelet/lipgloss/tree&quot;
</code></pre>
<p>Define a new tree.</p>
<pre lang="go"><code>t := tree.Root(&quot;.&quot;).
  Child(&quot;A&quot;, &quot;B&quot;, &quot;C&quot;)
</code></pre>
<p>Print the tree.</p>
<pre lang="go"><code>fmt.Println(t)
<p>// .<br />
// ├── A<br />
// ├── B<br />
// └── C<br />
</code></pre></p>
<p>Trees have the ability to nest.</p>
<pre lang="go"><code>t := tree.Root(&quot;.&quot;).
  Child(&quot;Item 1&quot;).
  Child(
    tree.Root(&quot;Item 2&quot;).
      Child(&quot;Item 2.1&quot;).
      Child(&quot;Item 2.2&quot;).
      Child(&quot;Item 2.3&quot;),
  ).
  Child(
    tree.Root(&quot;Item 3&quot;).
      Child(&quot;Item 3.1&quot;).
      Child(&quot;Item 3.2&quot;),
  )
</code></pre>
<p>Print the tree.</p>
<pre lang="go"><code>fmt.Println(t)
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bb3e3398bb"><code>bb3e339</code></a>
docs(README): match tree example alignment with list examples</li>
<li><a
href="bc0de5ca26"><code>bc0de5c</code></a>
docs(README): make tree example match output</li>
<li><a
href="185fde3531"><code>185fde3</code></a>
docs(README): update tree images</li>
<li><a
href="cf0a7c615f"><code>cf0a7c6</code></a>
docs: fix tree screenshot</li>
<li><a
href="feb42a9be4"><code>feb42a9</code></a>
feat: move tree to root (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/342">#342</a>)</li>
<li><a
href="0618c73743"><code>0618c73</code></a>
feat(test): add test for <code>JoinHorizontal</code> (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/346">#346</a>)</li>
<li><a
href="ed7f56e2a7"><code>ed7f56e</code></a>
docs: fix <code>CompleteColor</code> example (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/345">#345</a>)</li>
<li><a
href="8a0e6405b7"><code>8a0e640</code></a>
fix: remove unnecessary if</li>
<li><a
href="87dd58def7"><code>87dd58d</code></a>
chore: fix little typo in comment in go.mod</li>
<li>See full diff in <a
href="https://github.com/charmbracelet/lipgloss/compare/v0.12.1...v0.13.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/charmbracelet/lipgloss&package-manager=go_modules&previous-version=0.12.1&new-version=0.13.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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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 commit is contained in:
dependabot[bot] 2024-08-21 15:40:16 -03:00 committed by GitHub
parent 3e6d825c80
commit 498b55bcc4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

2
go.mod
View File

@ -17,7 +17,7 @@ require (
github.com/caarlos0/go-version v0.1.1
github.com/caarlos0/log v0.4.6
github.com/charmbracelet/keygen v0.5.1
github.com/charmbracelet/lipgloss v0.12.1
github.com/charmbracelet/lipgloss v0.13.0
github.com/charmbracelet/x/exp/ordered v0.1.0
github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589
github.com/dghubble/go-twitter v0.0.0-20211115160449-93a8679adecb

4
go.sum
View File

@ -211,8 +211,8 @@ github.com/charmbracelet/bubbletea v0.26.6 h1:zTCWSuST+3yZYZnVSvbXwKOPRSNZceVeqp
github.com/charmbracelet/bubbletea v0.26.6/go.mod h1:dz8CWPlfCCGLFbBlTY4N7bjLiyOGDJEnd2Muu7pOWhk=
github.com/charmbracelet/keygen v0.5.1 h1:zBkkYPtmKDVTw+cwUyY6ZwGDhRxXkEp0Oxs9sqMLqxI=
github.com/charmbracelet/keygen v0.5.1/go.mod h1:zznJVmK/GWB6dAtjluqn2qsttiCBhA5MZSiwb80fcHw=
github.com/charmbracelet/lipgloss v0.12.1 h1:/gmzszl+pedQpjCOH+wFkZr/N90Snz40J/NR7A0zQcs=
github.com/charmbracelet/lipgloss v0.12.1/go.mod h1:V2CiwIuhx9S1S1ZlADfOj9HmxeMAORuz5izHb0zGbB8=
github.com/charmbracelet/lipgloss v0.13.0 h1:4X3PPeoWEDCMvzDvGmTajSyYPcZM4+y8sCA/SsA3cjw=
github.com/charmbracelet/lipgloss v0.13.0/go.mod h1:nw4zy0SBX/F/eAO1cWdcvy6qnkDUxr8Lw7dvFrAIbbY=
github.com/charmbracelet/x/ansi v0.1.4 h1:IEU3D6+dWwPSgZ6HBH+v6oUuZ/nVawMiWj5831KfiLM=
github.com/charmbracelet/x/ansi v0.1.4/go.mod h1:dk73KoMTT5AX5BsX0KrqhsTqAnhZZoCBjs7dGWp4Ktw=
github.com/charmbracelet/x/exp/ordered v0.1.0 h1:55/qLwjIh0gL0Vni+QAWk7T/qRVP6sBf+2agPBgnOFE=