1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
Commit Graph

642 Commits

Author SHA1 Message Date
dependabot[bot]
605197a239
chore(deps): bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.10.0 (#4672)
Bumps
[github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss)
from 0.9.1 to 0.10.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.10.0</h2>
<h1>String Transforms 💄</h1>
<p>Lip Gloss <code>v0.10.0</code> features a brand new
<code>Transform</code> function for Styles to alter strings at render
time. As well as some bug fixes, like ANSI-aware table cell truncation.
🧹</p>
<p>Simply define a <code>Transform</code> function as <code>func
(string) string</code> and apply it to any style:</p>
<pre lang="go"><code>// Example:
s := NewStyle().Transform(strings.ToUpper)
fmt.Println(s.Render(&quot;raow!&quot;) // &quot;RAOW!&quot;
</code></pre>
<p>Or, if you prefer:</p>
<pre lang="go"><code>// Example:
reverse := func(s string) string {
    n := 0
    rune := make([]rune, len(s))
    for _, r := range s {
        rune[n] = r
	n++
    }
    rune = rune[0:n]
    for i := 0; i &lt; n/2; i++ {
        rune[i], rune[n-1-i] = rune[n-1-i], rune[i]
    }
    return string(rune)
}
<p>s := NewStyle().Transform(reverse)
fmt.Println(s.Render(&quot;The quick brown 狐 jumped over the lazy
犬&quot;)
// &quot;犬 yzal eht revo depmuj 狐 nworb kciuq ehT&quot;,
</code></pre></p>
<h2>What's Changed?</h2>
<ul>
<li>Corrected border shorthand functions explanation by <a
href="https://github.com/ReidMason"><code>@​ReidMason</code></a> in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/237">charmbracelet/lipgloss#237</a></li>
<li>Align help by <a
href="https://github.com/schmurfy"><code>@​schmurfy</code></a> in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/239">charmbracelet/lipgloss#239</a></li>
<li><code>Style.Transform</code> for altering strings at render time by
<a href="https://github.com/meowgorithm"><code>@​meowgorithm</code></a>
in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/232">charmbracelet/lipgloss#232</a></li>
<li>Adding right padding to empty string by <a
href="https://github.com/mikelorant"><code>@​mikelorant</code></a> in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/253">charmbracelet/lipgloss#253</a></li>
<li>Refactor padding functions by <a
href="https://github.com/mikelorant"><code>@​mikelorant</code></a> in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/254">charmbracelet/lipgloss#254</a></li>
<li>Fix truncate of table cells containing ANSI by <a
href="https://github.com/mikelorant"><code>@​mikelorant</code></a> in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/256">charmbracelet/lipgloss#256</a></li>
<li>Improve maximum width of characters in a string by <a
href="https://github.com/mikelorant"><code>@​mikelorant</code></a> in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/257">charmbracelet/lipgloss#257</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ReidMason"><code>@​ReidMason</code></a>
made their first contribution in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/237">charmbracelet/lipgloss#237</a></li>
<li><a href="https://github.com/schmurfy"><code>@​schmurfy</code></a>
made their first contribution in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/239">charmbracelet/lipgloss#239</a></li>
<li><a
href="https://github.com/mikelorant"><code>@​mikelorant</code></a> made
their first contribution in <a
href="https://redirect.github.com/charmbracelet/lipgloss/pull/253">charmbracelet/lipgloss#253</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="439c06fae6"><code>439c06f</code></a>
docs(table): ANSI-aware cell example</li>
<li><a
href="652c37dd07"><code>652c37d</code></a>
feat(deps): bump github.com/rivo/uniseg from 0.4.6 to 0.4.7 (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/262">#262</a>)</li>
<li><a
href="8464a7c90b"><code>8464a7c</code></a>
chore(deps): bump golangci/golangci-lint-action from 3 to 4 (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/259">#259</a>)</li>
<li><a
href="207eb25c9f"><code>207eb25</code></a>
Create CODEOWNERS</li>
<li><a
href="13584f26de"><code>13584f2</code></a>
chore: go mod tidy</li>
<li><a
href="bb7ffe226d"><code>bb7ffe2</code></a>
fix(ci): update coverage workflow</li>
<li><a
href="2745d8a3d8"><code>2745d8a</code></a>
Improve maximum width of characters in a string (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/257">#257</a>)</li>
<li><a
href="de4601232b"><code>de46012</code></a>
Fix truncate of table cells containing ANSI (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/256">#256</a>)</li>
<li><a
href="92946d34c2"><code>92946d3</code></a>
chore: refactor padding functions (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/254">#254</a>)</li>
<li><a
href="59874c2afa"><code>59874c2</code></a>
chore: apply gofumpt to all files (<a
href="https://redirect.github.com/charmbracelet/lipgloss/issues/255">#255</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/charmbracelet/lipgloss/compare/v0.9.1...v0.10.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.9.1&new-version=0.10.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 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>
2024-03-08 13:39:53 -03:00
dependabot[bot]
afcbb68e54
chore(deps): bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3 (#4674)
Bumps gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gopkg.in/go-jose/go-jose.v2&package-manager=go_modules&previous-version=2.6.1&new-version=2.6.3)](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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/goreleaser/goreleaser/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-08 13:31:27 -03:00
dependabot[bot]
8c5a91c689
chore(deps): bump golang.org/x/tools from 0.18.0 to 0.19.0 (#4666) 2024-03-05 12:15:12 +00:00
dependabot[bot]
3fad627fb5
chore(deps): bump github.com/xanzy/go-gitlab from 0.98.0 to 0.99.0 (#4667) 2024-03-05 12:06:01 +00:00
dependabot[bot]
b6c6fb39ae
chore(deps): bump golang.org/x/oauth2 from 0.17.0 to 0.18.0 (#4668) 2024-03-05 11:57:00 +00:00
dependabot[bot]
3556408e2e
chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#4663)
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify)
from 1.8.4 to 1.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/stretchr/testify/releases">github.com/stretchr/testify's
releases</a>.</em></p>
<blockquote>
<h2>v1.9.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix Go modules version by <a
href="https://github.com/SuperQ"><code>@​SuperQ</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1394">stretchr/testify#1394</a></li>
<li>Document that require is not safe to call in created goroutines by
<a
href="https://github.com/programmer04"><code>@​programmer04</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1392">stretchr/testify#1392</a></li>
<li>Remove myself from MAINTAINERS.md by <a
href="https://github.com/mvdkleijn"><code>@​mvdkleijn</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1367">stretchr/testify#1367</a></li>
<li>Correct spelling/grammar by <a
href="https://github.com/echarrod"><code>@​echarrod</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1389">stretchr/testify#1389</a></li>
<li>docs: Update URLs in README by <a
href="https://github.com/davidjb"><code>@​davidjb</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1349">stretchr/testify#1349</a></li>
<li>Update mockery link to Github Pages in README by <a
href="https://github.com/LandonTClipp"><code>@​LandonTClipp</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1346">stretchr/testify#1346</a></li>
<li>docs: Fix typos in tests and comments by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1410">stretchr/testify#1410</a></li>
<li>CI: tests from go1.17 by <a
href="https://github.com/SuperQ"><code>@​SuperQ</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1409">stretchr/testify#1409</a></li>
<li>Fix adding ? when no values passed by <a
href="https://github.com/lesichkovm"><code>@​lesichkovm</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1320">stretchr/testify#1320</a></li>
<li>codegen: use standard header for generated files by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1406">stretchr/testify#1406</a></li>
<li>mock: AssertExpectations log reason only on failure by <a
href="https://github.com/hikyaru-suzuki"><code>@​hikyaru-suzuki</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1360">stretchr/testify#1360</a></li>
<li>assert: fix flaky TestNeverTrue by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1417">stretchr/testify#1417</a></li>
<li>README: fix typos &quot;set up&quot; vs &quot;setup&quot; by <a
href="https://github.com/ossan-dev"><code>@​ossan-dev</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1428">stretchr/testify#1428</a></li>
<li>mock: move regexp compilation outside of <code>Called</code> by <a
href="https://github.com/aud10slave"><code>@​aud10slave</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/631">stretchr/testify#631</a></li>
<li>assert: refactor internal func getLen() by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1445">stretchr/testify#1445</a></li>
<li>mock: deprecate type AnythingOfTypeArgument (<a
href="https://redirect.github.com/stretchr/testify/issues/1434">#1434</a>)
by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1441">stretchr/testify#1441</a></li>
<li>Remove no longer needed assert.canConvert by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1470">stretchr/testify#1470</a></li>
<li>assert: ObjectsAreEqual: use time.Equal for time.Time types by <a
href="https://github.com/tscales"><code>@​tscales</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1464">stretchr/testify#1464</a></li>
<li>Bump actions/checkout from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1466">stretchr/testify#1466</a></li>
<li>Bump actions/setup-go from 3.2.0 to 4.1.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1451">stretchr/testify#1451</a></li>
<li>fix: make EventuallyWithT concurrency safe by <a
href="https://github.com/czeslavo"><code>@​czeslavo</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1395">stretchr/testify#1395</a></li>
<li>assert: fix httpCode and HTTPBody occur panic when http.Handler read
Body by <a href="https://github.com/hidu"><code>@​hidu</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1484">stretchr/testify#1484</a></li>
<li>assert.EqualExportedValues: fix handling of arrays by <a
href="https://github.com/zrbecker"><code>@​zrbecker</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1473">stretchr/testify#1473</a></li>
<li>.github: use latest Go versions by <a
href="https://github.com/kevinburkesegment"><code>@​kevinburkesegment</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1489">stretchr/testify#1489</a></li>
<li>assert: Deprecate EqualExportedValues by <a
href="https://github.com/HaraldNordgren"><code>@​HaraldNordgren</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1488">stretchr/testify#1488</a></li>
<li>suite: refactor test assertions by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1474">stretchr/testify#1474</a></li>
<li>suite: fix SetupSubTest and TearDownSubTest execution order by <a
href="https://github.com/linusbarth"><code>@​linusbarth</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1471">stretchr/testify#1471</a></li>
<li>docs: Fix deprecation comments for http package by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1335">stretchr/testify#1335</a></li>
<li>Add map support doc comments to Subset and NotSubset by <a
href="https://github.com/jedevc"><code>@​jedevc</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1306">stretchr/testify#1306</a></li>
<li>TestErrorIs/TestNotErrorIs: check error message contents by <a
href="https://github.com/craig65535"><code>@​craig65535</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1435">stretchr/testify#1435</a></li>
<li>suite: fix subtest names (fix <a
href="https://redirect.github.com/stretchr/testify/issues/1501">#1501</a>)
by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1504">stretchr/testify#1504</a></li>
<li>assert: improve unsafe.Pointer tests by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1505">stretchr/testify#1505</a></li>
<li>assert: simplify isNil implementation by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1506">stretchr/testify#1506</a></li>
<li>assert.InEpsilonSlice: fix expected/actual order and other
improvements by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1483">stretchr/testify#1483</a></li>
<li>Fix dependency cycle with objx <a
href="https://redirect.github.com/stretchr/testify/issues/1292">#1292</a>
by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1453">stretchr/testify#1453</a></li>
<li>mock: refactor TestIsArgsEqual by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1444">stretchr/testify#1444</a></li>
<li>mock: optimize argument matching checks by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1416">stretchr/testify#1416</a></li>
<li>assert: fix TestEventuallyTimeout by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1412">stretchr/testify#1412</a></li>
<li>CI: add go 1.21 in GitHub Actions by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1450">stretchr/testify#1450</a></li>
<li>suite: fix recoverAndFailOnPanic to report test failure at the right
location by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1502">stretchr/testify#1502</a></li>
<li>Update maintainers by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1533">stretchr/testify#1533</a></li>
<li>assert: Fix EqualValues to handle overflow/underflow by <a
href="https://github.com/arjunmahishi"><code>@​arjunmahishi</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1531">stretchr/testify#1531</a></li>
<li>assert: better formatting for Len() error by <a
href="https://github.com/kevinburkesegment"><code>@​kevinburkesegment</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1485">stretchr/testify#1485</a></li>
<li>Ensure AssertExpectations does not fail in skipped tests by <a
href="https://github.com/ianrose14"><code>@​ianrose14</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1331">stretchr/testify#1331</a></li>
<li>suite: fix deadlock in suite.Require()/Assert() by <a
href="https://github.com/arjunmahishi"><code>@​arjunmahishi</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1535">stretchr/testify#1535</a></li>
<li>Revert &quot;assert: ObjectsAreEqual: use time.Equal for time.Time
type&quot; by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1537">stretchr/testify#1537</a></li>
<li>[chore] Add issue templates by <a
href="https://github.com/arjunmahishi"><code>@​arjunmahishi</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1538">stretchr/testify#1538</a></li>
<li>Update the build status badge by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1540">stretchr/testify#1540</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bb548d0473"><code>bb548d0</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1552">#1552</a>
from stretchr/dependabot/go_modules/github.com/stret...</li>
<li><a
href="814075f391"><code>814075f</code></a>
build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2</li>
<li><a
href="e045612245"><code>e045612</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1339">#1339</a>
from bogdandrutu/uintptr</li>
<li><a
href="5b6926d686"><code>5b6926d</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1385">#1385</a>
from hslatman/not-implements</li>
<li><a
href="9f97d67703"><code>9f97d67</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1550">#1550</a>
from stretchr/release-notes</li>
<li><a
href="bcb0d3fe49"><code>bcb0d3f</code></a>
Include the auto-release notes in releases</li>
<li><a
href="fb770f8238"><code>fb770f8</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1247">#1247</a>
from ccoVeille/typos</li>
<li><a
href="85d8bb6eea"><code>85d8bb6</code></a>
fix typos in comments, tests and github templates</li>
<li><a
href="e2741fa4e9"><code>e2741fa</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1548">#1548</a>
from arjunmahishi/msgAndArgs</li>
<li><a
href="6e59f20c0d"><code>6e59f20</code></a>
http_assertions: assert that the msgAndArgs actually works in tests</li>
<li>Additional commits viewable in <a
href="https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.4&new-version=1.9.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 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>
2024-03-04 08:56:06 -03:00
dependabot[bot]
f0f88c2e4b
chore(deps): bump github.com/xanzy/go-gitlab from 0.97.0 to 0.98.0 (#4649)
[//]: # (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.97.0 to 0.98.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ceac9862fe"><code>ceac986</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1883">#1883</a>
from KqLLL/feature/support-for-the-gitlab-for-slack-app</li>
<li><a
href="a8f2a84364"><code>a8f2a84</code></a>
Support for the GitLab for Slack app</li>
<li><a
href="d2769882a4"><code>d276988</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1886">#1886</a>
from jmajaca/drone-integration-missing-set-fields</li>
<li><a
href="2f95cf4014"><code>2f95cf4</code></a>
Add missing fields to SetDroneCIServiceOptions</li>
<li><a
href="d720e554a0"><code>d720e55</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1885">#1885</a>
from jmajaca/jmajaca-jenkins-integration-enable-ssl-...</li>
<li><a
href="3b8b8b164a"><code>3b8b8b1</code></a>
Change field type to bool</li>
<li><a
href="c9387f1f10"><code>c9387f1</code></a>
Add EnableSSLVerification to SetJenkinsCIServiceOptions</li>
<li><a
href="fbde0597f1"><code>fbde059</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1884">#1884</a>
from DaanRosendal/typo</li>
<li><a
href="b78f4bec83"><code>b78f4be</code></a>
Fix typo in Ptr function description</li>
<li><a
href="1fdce67c6a"><code>1fdce67</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1882">#1882</a>
from colinodell/project-ci_forward_deployment_rollba...</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.97.0...v0.98.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.97.0&new-version=0.98.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 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>
2024-02-27 09:57:50 -03:00
dependabot[bot]
16ac0e90f2
chore(deps): bump github.com/dghubble/oauth1 from 0.7.2 to 0.7.3 (#4650)
Bumps [github.com/dghubble/oauth1](https://github.com/dghubble/oauth1)
from 0.7.2 to 0.7.3.
<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.3</h2>
<h2>Changes</h2>
<ul>
<li>Percent encode special characters in HMAC-SHA1 secrets (<a
href="https://redirect.github.com/dghubble/oauth1/pull/72">#72</a>)</li>
<li>Strip whitespace from request token body (<a
href="https://redirect.github.com/dghubble/oauth1/pull/56">#56</a>)</li>
<li>Update Go module dependencies</li>
</ul>
<h2>Contributions</h2>
<ul>
<li>Use a centrally managed GitHub Workflow for go tests by <a
href="https://github.com/dghubble"><code>@​dghubble</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/68">dghubble/oauth1#68</a></li>
<li>Allow Go test Workflow to run on PRs by <a
href="https://github.com/dghubble"><code>@​dghubble</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/69">dghubble/oauth1#69</a></li>
<li>Fix HMAC-SHA1 key creation. by <a
href="https://github.com/jerryryle"><code>@​jerryryle</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/72">dghubble/oauth1#72</a></li>
<li>Fix oauth_callback_confirmed comparison when server returns extra
whitespace by <a
href="https://github.com/pscohn"><code>@​pscohn</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/56">dghubble/oauth1#56</a></li>
<li>Add changelog for new release by <a
href="https://github.com/dghubble"><code>@​dghubble</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/73A">dghubble/oauth1#73</a></li>
</ul>
<h2>Dependencies</h2>
<ul>
<li>Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/67">dghubble/oauth1#67</a></li>
<li>Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/70">dghubble/oauth1#70</a></li>
<li>Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/dghubble/oauth1/pull/71">dghubble/oauth1#71</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/jerryryle"><code>@​jerryryle</code></a>
made their first contribution in <a
href="https://redirect.github.com/dghubble/oauth1/pull/72">dghubble/oauth1#72</a></li>
<li><a href="https://github.com/pscohn"><code>@​pscohn</code></a> made
their first contribution in <a
href="https://redirect.github.com/dghubble/oauth1/pull/56">dghubble/oauth1#56</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/dghubble/oauth1/compare/v0.7.2...v0.7.3">https://github.com/dghubble/oauth1/compare/v0.7.2...v0.7.3</a></p>
</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.3</h2>
<ul>
<li>Percent encode special characters in HMAC-SHA1 secrets (<a
href="https://redirect.github.com/dghubble/oauth1/pull/72">#72</a>)</li>
<li>Strip whitespace from request token body (<a
href="https://redirect.github.com/dghubble/oauth1/pull/56">#56</a>)</li>
<li>Update Go module dependencies</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1f002e0d15"><code>1f002e0</code></a>
Add changelog for new release</li>
<li><a
href="ef868072a5"><code>ef86807</code></a>
Fix oauth_callback_confirmed comparison when server returns extra
whitespace</li>
<li><a
href="bb56188562"><code>bb56188</code></a>
Fix HMAC-SHA1 key creation.</li>
<li><a
href="79e2ef8bf5"><code>79e2ef8</code></a>
Bump github.com/stretchr/testify from 1.8.3 to 1.8.4</li>
<li><a
href="e7f7a93e50"><code>e7f7a93</code></a>
Bump github.com/stretchr/testify from 1.8.2 to 1.8.3</li>
<li><a
href="74c61479f9"><code>74c6147</code></a>
Allow Go test Workflow to run on PRs</li>
<li><a
href="43ba0f7195"><code>43ba0f7</code></a>
Bump github.com/stretchr/testify from 1.8.1 to 1.8.2</li>
<li><a
href="2ceed997d3"><code>2ceed99</code></a>
Use a centrally managed GitHub Workflow for go tests</li>
<li>See full diff in <a
href="https://github.com/dghubble/oauth1/compare/v0.7.2...v0.7.3">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.2&new-version=0.7.3)](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 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>
2024-02-27 09:57:24 -03:00
dependabot[bot]
cadd7a9bdf
chore(deps): bump github.com/slack-go/slack from 0.12.4 to 0.12.5 (#4654)
Bumps [github.com/slack-go/slack](https://github.com/slack-go/slack)
from 0.12.4 to 0.12.5.
<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.5</h2>
<h2>What's Changed</h2>
<p>BUGFIX - deal with &quot;true&quot;, true, &quot;false&quot;,
false.</p>
<ul>
<li>Parse string or boolean for SlashCommand.IsEnterpriseInstall by <a
href="https://github.com/kpaulisse"><code>@​kpaulisse</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1266">slack-go/slack#1266</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/slack-go/slack/compare/v0.12.4...v0.12.5">https://github.com/slack-go/slack/compare/v0.12.4...v0.12.5</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="af783b3055"><code>af783b3</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1266">#1266</a>
from kpaulisse/kpaulisse-is-enterprise-install</li>
<li><a
href="9a23f7a387"><code>9a23f7a</code></a>
Parse string or boolean for SlashCommand.IsEnterpriseInstall</li>
<li>See full diff in <a
href="https://github.com/slack-go/slack/compare/v0.12.4...v0.12.5">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.4&new-version=0.12.5)](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 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>
2024-02-27 09:54:25 -03:00
dependabot[bot]
d66d901a86
chore(deps): bump golang.org/x/crypto from 0.19.0 to 0.20.0 (#4655)
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from
0.19.0 to 0.20.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0aab8d07ae"><code>0aab8d0</code></a>
all: update go.mod x/net dependency</li>
<li><a
href="5bead598a0"><code>5bead59</code></a>
ocsp: don't use iota for externally defined constants</li>
<li><a
href="1a865804d5"><code>1a86580</code></a>
x/crypto/internal/poly1305: improve sum_ppc64le.s</li>
<li><a
href="1c981e6f81"><code>1c981e6</code></a>
ssh/test: don't use DSA keys in integrations tests, update test RSA
key</li>
<li><a
href="62c9f1799c"><code>62c9f17</code></a>
x509roots/nss: manually exclude a confusingly constrained root</li>
<li>See full diff in <a
href="https://github.com/golang/crypto/compare/v0.19.0...v0.20.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.19.0&new-version=0.20.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 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>
2024-02-27 09:54:10 -03:00
dependabot[bot]
bd0c985398
chore(deps): bump github.com/atc0005/go-teams-notify/v2 from 2.9.0 to 2.10.0 (#4645)
Bumps
[github.com/atc0005/go-teams-notify/v2](https://github.com/atc0005/go-teams-notify)
from 2.9.0 to 2.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/atc0005/go-teams-notify/releases">github.com/atc0005/go-teams-notify/v2's
releases</a>.</em></p>
<blockquote>
<h2>v2.10.0</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>New Features or Enhancements 🎉</h3>
<ul>
<li>Add <code>IsSublte</code> and <code>HorizontalAlignment</code> to
<code>Element</code> by <a
href="https://github.com/codello"><code>@​codello</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/255">atc0005/go-teams-notify#255</a></li>
</ul>
<h3>Dependency Updates</h3>
<ul>
<li>Update Dependabot PR prefixes by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/256">atc0005/go-teams-notify#256</a></li>
</ul>
<h3>Other Changes</h3>
<ul>
<li>Update CHANGELOG for v2.10.0 release by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/257">atc0005/go-teams-notify#257</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/codello"><code>@​codello</code></a> made
their first contribution in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/255">atc0005/go-teams-notify#255</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/atc0005/go-teams-notify/compare/v2.9.0...v2.10.0">https://github.com/atc0005/go-teams-notify/compare/v2.9.0...v2.10.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/atc0005/go-teams-notify/blob/master/CHANGELOG.md">github.com/atc0005/go-teams-notify/v2's
changelog</a>.</em></p>
<blockquote>
<h2>[v2.10.0] - 2024-02-22</h2>
<h3>Added</h3>
<ul>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/255">GH-255</a>)
Add <code>IsSublte</code> and <code>HorizontalAlignment</code> to
<code>Element</code>
<ul>
<li>credit: <a
href="https://github.com/codello"><code>@​codello</code></a></li>
</ul>
</li>
</ul>
<h3>Changed</h3>
<h4>Dependency Updates</h4>
<ul>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/256">GH-256</a>)
Update Dependabot PR prefixes</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2601751590"><code>2601751</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/257">#257</a>
from atc0005/update-changelog-for-v2.10.0-release</li>
<li><a
href="976ac3dc02"><code>976ac3d</code></a>
Update CHANGELOG for v2.10.0 release</li>
<li><a
href="5e4d43cde1"><code>5e4d43c</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/256">#256</a>
from atc0005/update-dependabot-pr-prefixes</li>
<li><a
href="81a51fe81c"><code>81a51fe</code></a>
Update Dependabot PR prefixes</li>
<li><a
href="84950e7275"><code>84950e7</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/255">#255</a>
from codello/master</li>
<li><a
href="62369585e9"><code>6236958</code></a>
Add <code>IsSublte</code> and <code>HorizontalAlignment</code> to
<code>Element</code></li>
<li>See full diff in <a
href="https://github.com/atc0005/go-teams-notify/compare/v2.9.0...v2.10.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/atc0005/go-teams-notify/v2&package-manager=go_modules&previous-version=2.9.0&new-version=2.10.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 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>
2024-02-23 15:52:38 -03:00
dependabot[bot]
aaa1181abf
chore(deps): bump github.com/slack-go/slack from 0.12.3 to 0.12.4 (#4639)
Bumps [github.com/slack-go/slack](https://github.com/slack-go/slack)
from 0.12.3 to 0.12.4.
<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>Non-breaking updates roll-up</h2>
<h2>What's Changed</h2>
<ul>
<li>chore: unnecessary use of fmt.Sprintf by <a
href="https://github.com/testwill"><code>@​testwill</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1212">slack-go/slack#1212</a></li>
<li>Add Video Block by <a
href="https://github.com/walkure"><code>@​walkure</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1210">slack-go/slack#1210</a></li>
<li>Add connected_team_ids optional field to Conversation by <a
href="https://github.com/zFlabmonsta"><code>@​zFlabmonsta</code></a> in
<a
href="https://redirect.github.com/slack-go/slack/pull/1253">slack-go/slack#1253</a></li>
<li>Add blocks in slackevents.MessageEvent by <a
href="https://github.com/invzhi"><code>@​invzhi</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1227">slack-go/slack#1227</a></li>
<li>Add support for Rich Text Lists by <a
href="https://github.com/daniel-pieper-personio"><code>@​daniel-pieper-personio</code></a>
in <a
href="https://redirect.github.com/slack-go/slack/pull/1155">slack-go/slack#1155</a></li>
<li>Add support for Rich Text Input by <a
href="https://github.com/peimanja"><code>@​peimanja</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1240">slack-go/slack#1240</a></li>
<li>Fix: always add context to errors during block serde by <a
href="https://github.com/yunginnanet"><code>@​yunginnanet</code></a> in
<a
href="https://redirect.github.com/slack-go/slack/pull/1259">slack-go/slack#1259</a></li>
<li>Edited field in the app mention event by <a
href="https://github.com/IbirbyZh"><code>@​IbirbyZh</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1256">slack-go/slack#1256</a></li>
<li>Expose is_enterprise_install field by <a
href="https://github.com/7ail"><code>@​7ail</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1255">slack-go/slack#1255</a></li>
<li>feat: Add the ability to set <code>URL</code> on
<code>NewButtonBlockElement</code> via <code>.WithURL()</code> by <a
href="https://github.com/joshbranham"><code>@​joshbranham</code></a> in
<a
href="https://redirect.github.com/slack-go/slack/pull/1250">slack-go/slack#1250</a></li>
<li>Add block element type FileInput by <a
href="https://github.com/elct9620"><code>@​elct9620</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1249">slack-go/slack#1249</a></li>
<li>Openid connect by <a
href="https://github.com/danielmichaels"><code>@​danielmichaels</code></a>
in <a
href="https://redirect.github.com/slack-go/slack/pull/1242">slack-go/slack#1242</a></li>
<li>Add is_enterprise_install flag for org wide installation support by
<a href="https://github.com/hussachai"><code>@​hussachai</code></a> in
<a
href="https://redirect.github.com/slack-go/slack/pull/1225">slack-go/slack#1225</a></li>
<li>Add an example of updating modal by <a
href="https://github.com/KouWakai"><code>@​KouWakai</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1142">slack-go/slack#1142</a></li>
<li>add deleted timestamp for deleted msg events by <a
href="https://github.com/zFlabmonsta"><code>@​zFlabmonsta</code></a> in
<a
href="https://redirect.github.com/slack-go/slack/pull/1261">slack-go/slack#1261</a></li>
<li>Add slack connect events &amp; tests by <a
href="https://github.com/Birtato"><code>@​Birtato</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1262">slack-go/slack#1262</a></li>
<li>Add rich_text_quote and rich_text_preformatted by <a
href="https://github.com/rusq"><code>@​rusq</code></a> in <a
href="https://redirect.github.com/slack-go/slack/pull/1260">slack-go/slack#1260</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/testwill"><code>@​testwill</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1212">slack-go/slack#1212</a></li>
<li><a href="https://github.com/walkure"><code>@​walkure</code></a> made
their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1210">slack-go/slack#1210</a></li>
<li><a
href="https://github.com/zFlabmonsta"><code>@​zFlabmonsta</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1253">slack-go/slack#1253</a></li>
<li><a href="https://github.com/invzhi"><code>@​invzhi</code></a> made
their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1227">slack-go/slack#1227</a></li>
<li><a
href="https://github.com/daniel-pieper-personio"><code>@​daniel-pieper-personio</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1155">slack-go/slack#1155</a></li>
<li><a href="https://github.com/peimanja"><code>@​peimanja</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1240">slack-go/slack#1240</a></li>
<li><a
href="https://github.com/yunginnanet"><code>@​yunginnanet</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1259">slack-go/slack#1259</a></li>
<li><a href="https://github.com/IbirbyZh"><code>@​IbirbyZh</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1256">slack-go/slack#1256</a></li>
<li><a
href="https://github.com/joshbranham"><code>@​joshbranham</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1250">slack-go/slack#1250</a></li>
<li><a href="https://github.com/elct9620"><code>@​elct9620</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1249">slack-go/slack#1249</a></li>
<li><a
href="https://github.com/danielmichaels"><code>@​danielmichaels</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1242">slack-go/slack#1242</a></li>
<li><a href="https://github.com/KouWakai"><code>@​KouWakai</code></a>
made their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1142">slack-go/slack#1142</a></li>
<li><a href="https://github.com/Birtato"><code>@​Birtato</code></a> made
their first contribution in <a
href="https://redirect.github.com/slack-go/slack/pull/1262">slack-go/slack#1262</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/slack-go/slack/compare/v0.12.3...v0.12.4">https://github.com/slack-go/slack/compare/v0.12.3...v0.12.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="2a9c35cd6c"><code>2a9c35c</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1260">#1260</a>
from rusq/rich-text-stuff</li>
<li><a
href="5dbee1c05f"><code>5dbee1c</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1262">#1262</a>
from Birtato/addSlackConnectEvents</li>
<li><a
href="b6db972e5f"><code>b6db972</code></a>
Adding structure comments &amp; definitions</li>
<li><a
href="c038c02345"><code>c038c02</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1261">#1261</a>
from zFlabmonsta/master</li>
<li><a
href="a31aeaa9b4"><code>a31aeaa</code></a>
add deleted timestamp for deleted msg events</li>
<li><a
href="e1cc0bfb8c"><code>e1cc0bf</code></a>
add rich_text_quote and rich_text_preformatted</li>
<li><a
href="398133cd00"><code>398133c</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1142">#1142</a>
from KouWakai/updating-modal</li>
<li><a
href="fd5d171882"><code>fd5d171</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1225">#1225</a>
from hussachai/enterprise_install</li>
<li><a
href="9cc451b29c"><code>9cc451b</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1242">#1242</a>
from danielmichaels/openid-connect</li>
<li><a
href="ceb2250804"><code>ceb2250</code></a>
Merge pull request <a
href="https://redirect.github.com/slack-go/slack/issues/1249">#1249</a>
from elct9620/add-file_input-element</li>
<li>Additional commits viewable in <a
href="https://github.com/slack-go/slack/compare/v0.12.3...v0.12.4">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.3&new-version=0.12.4)](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 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>
2024-02-19 08:42:56 -03:00
dependabot[bot]
1e8aac0f9d
chore(deps): bump golang.org/x/oauth2 from 0.16.0 to 0.17.0 (#4620)
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from
0.16.0 to 0.17.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ebe81ad837"><code>ebe81ad</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="adffd94437"><code>adffd94</code></a>
google/internal/externalaccount: update serviceAccountImpersonationRE to
supp...</li>
<li><a
href="deefa7e836"><code>deefa7e</code></a>
google/downscope: add DownscopingConfig.UniverseDomain to support
TPC</li>
<li>See full diff in <a
href="https://github.com/golang/oauth2/compare/v0.16.0...v0.17.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.16.0&new-version=0.17.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 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>
2024-02-13 09:20:17 -03:00
dependabot[bot]
7da29ec45e
chore(deps): bump golang.org/x/tools from 0.17.0 to 0.18.0 (#4628)
Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.17.0
to 0.18.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c5643e9baf"><code>c5643e9</code></a>
gopls/internal/server: fix two bugs related to dynamic
configuration</li>
<li><a
href="50b4f1b124"><code>50b4f1b</code></a>
gopls/internal/golang: close open file</li>
<li><a
href="f0ef3c6902"><code>f0ef3c6</code></a>
gopls: update x/telemetry dependency to fix crash</li>
<li><a
href="8cf0a8e204"><code>8cf0a8e</code></a>
gopls: record that v0.15 will be the last to support go1.18</li>
<li><a
href="730dc3c170"><code>730dc3c</code></a>
gopls/internal/settings: add a hidden option to disable zero config</li>
<li><a
href="95f04f4ae8"><code>95f04f4</code></a>
gopls/internal/golang: add resolve support for inline refactorings</li>
<li><a
href="9619683231"><code>9619683</code></a>
gopls/internal/cache: treat local replaces as workspace modules</li>
<li><a
href="a5af84e3f3"><code>a5af84e</code></a>
gopls/internal/cache: check views on any on-disk change to go.mod
files</li>
<li><a
href="a7407facde"><code>a7407fa</code></a>
gopls: update telemetry</li>
<li><a
href="314368ddf0"><code>314368d</code></a>
go/analysis/passes/deepequalerrors: audit for types.Alias safety</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/tools/compare/v0.17.0...v0.18.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.17.0&new-version=0.18.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 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>
2024-02-13 09:16:20 -03:00
Carlos Alexandro Becker
c9cc1065b4
chore(deps): update go-github to v59 (#4622)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

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

-->


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

...

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

...

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-09 15:43:19 -03:00
dependabot[bot]
bba4ee2be7
chore(deps): bump github.com/distribution/distribution/v3 from 3.0.0-20221021092657-c47a966fded8 to 3.0.0-alpha.1 (#4604)
Bumps
[github.com/distribution/distribution/v3](https://github.com/distribution/distribution)
from 3.0.0-20221021092657-c47a966fded8 to 3.0.0-alpha.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/distribution/distribution/releases">github.com/distribution/distribution/v3's
releases</a>.</em></p>
<blockquote>
<h2>v3.0.0-alpha.1</h2>
<p>This is the first major release in years!</p>
<p>It's an accumulation of effort that's bringing major improvements in
performance, security and general code quality!</p>
<p>See the abridged changelog below and the full release log <a
href="576d93fee3/releases/v3.0.0.toml">here</a>.</p>
<h3>Deprecations</h3>
<ul>
<li>Image Manifest v2 Schema v1</li>
<li><code>oss</code> and <code>swift</code> storage drivers</li>
<li><a
href="https://github.com/docker/libtrust"><code>docker/libtrust</code></a>
has been replaced with <a
href="https://github.com/go-jose/go-jose"><code>go-jose/go-jose</code></a></li>
<li><code>reference</code> package has been moved to a dedicated
repository (see <a
href="https://github.com/distribution/reference">here</a>)</li>
<li><code>client</code> is no longer supported as a standalone
package</li>
</ul>
<h3>Notable Changes</h3>
<ul>
<li><code>reference</code> package has been moved to its own dedicated
<a href="https://github.com/distribution/reference">repository</a></li>
<li>Go module has changed from <code>docker/distribution</code> to
<code>distribution/distribution/v3</code></li>
<li>Major performance improvements across all supported storage
drivers</li>
<li>Major dependencies updates (see the full list below)</li>
<li>Online documentation is available at <a
href="https://distribution.github.io/distribution/">https://distribution.github.io/distribution/</a></li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>default autoredirect to false by <a
href="https://github.com/davidswu"><code>@​davidswu</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2800">distribution/distribution#2800</a></li>
<li>Add docs for autoredirect config parameter by <a
href="https://github.com/caervs"><code>@​caervs</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2801">distribution/distribution#2801</a></li>
<li>Registry - make minimum TLS version user configurable by <a
href="https://github.com/gregrebholz"><code>@​gregrebholz</code></a> in
<a
href="https://redirect.github.com/distribution/distribution/pull/2808">distribution/distribution#2808</a></li>
<li>Support BYOK for OSS storage driver by <a
href="https://github.com/denverdino"><code>@​denverdino</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2791">distribution/distribution#2791</a></li>
<li>Add reference. ParseDockerRef utility function by <a
href="https://github.com/thaJeztah"><code>@​thaJeztah</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2786">distribution/distribution#2786</a></li>
<li>Fix gometalint errors by <a
href="https://github.com/manishtomar"><code>@​manishtomar</code></a> in
<a
href="https://redirect.github.com/distribution/distribution/pull/2840">distribution/distribution#2840</a></li>
<li>registry: fix binary JSON content-type by <a
href="https://github.com/lucab"><code>@​lucab</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2813">distribution/distribution#2813</a></li>
<li>Log authorized username by <a
href="https://github.com/manishtomar"><code>@​manishtomar</code></a> in
<a
href="https://redirect.github.com/distribution/distribution/pull/2854">distribution/distribution#2854</a></li>
<li>Fix cloudfront middleware by <a
href="https://github.com/vishesh92"><code>@​vishesh92</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2837">distribution/distribution#2837</a></li>
<li>support Alibaba Cloud CDN storage middleware by <a
href="https://github.com/Shawnpku"><code>@​Shawnpku</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2849">distribution/distribution#2849</a></li>
<li>replace rsc.io/letsencrypt in favour of golang.org/x/crypto by <a
href="https://github.com/tariq1890"><code>@​tariq1890</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2926">distribution/distribution#2926</a></li>
<li>migrate to go modules from vndr by <a
href="https://github.com/tariq1890"><code>@​tariq1890</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2941">distribution/distribution#2941</a></li>
<li>Fix typo: offest -&gt; offset by <a
href="https://github.com/jabrown85"><code>@​jabrown85</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2894">distribution/distribution#2894</a></li>
<li>Fix s3 driver for supporting ceph radosgw by <a
href="https://github.com/tbe"><code>@​tbe</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2879">distribution/distribution#2879</a></li>
<li>Fixes <a
href="https://redirect.github.com/distribution/distribution/issues/2835">#2835</a>
Process Accept header MIME types in case-insensitive way by <a
href="https://github.com/yuwaMSFT2"><code>@​yuwaMSFT2</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2861">distribution/distribution#2861</a></li>
<li>change default Dockerfile to install ssl utils by <a
href="https://github.com/andyzhangx"><code>@​andyzhangx</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2809">distribution/distribution#2809</a></li>
<li>Append the written bytes to the blob writer's size by <a
href="https://github.com/dmathieu"><code>@​dmathieu</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2920">distribution/distribution#2920</a></li>
<li>fix no error returned in fetchTokenWithOAuth by <a
href="https://github.com/sevki"><code>@​sevki</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2900">distribution/distribution#2900</a></li>
<li>use latest version of alpine when building the Docker container by
<a href="https://github.com/tariq1890"><code>@​tariq1890</code></a> in
<a
href="https://redirect.github.com/distribution/distribution/pull/2946">distribution/distribution#2946</a></li>
<li>Extract blob upload resume into its own method by <a
href="https://github.com/dmathieu"><code>@​dmathieu</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2930">distribution/distribution#2930</a></li>
<li>Handle Blob Create when the underlying registry doesn't provide
'Docker-Upload-UUID' by <a
href="https://github.com/dmathieu"><code>@​dmathieu</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2927">distribution/distribution#2927</a></li>
<li>Implement Repository ServeBlob by <a
href="https://github.com/dmathieu"><code>@​dmathieu</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2921">distribution/distribution#2921</a></li>
<li>Add notification metrics by <a
href="https://github.com/tifayuki"><code>@​tifayuki</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2522">distribution/distribution#2522</a></li>
<li>Update the versions of several dependencies by <a
href="https://github.com/tariq1890"><code>@​tariq1890</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2947">distribution/distribution#2947</a></li>
<li>Implement Repository Blobs upload resuming by <a
href="https://github.com/dmathieu"><code>@​dmathieu</code></a> in <a
href="https://redirect.github.com/distribution/distribution/pull/2917">distribution/distribution#2917</a></li>
<li>allow for VERSION and REVISION to be passed in during docker builds
by <a
href="https://github.com/alex-laties"><code>@​alex-laties</code></a> in
<a
href="https://redirect.github.com/distribution/distribution/pull/2955">distribution/distribution#2955</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/distribution/distribution/commits/v3.0.0-alpha.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/distribution/distribution/v3&package-manager=go_modules&previous-version=3.0.0-20221021092657-c47a966fded8&new-version=3.0.0-alpha.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 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>
2024-02-08 10:22:12 -03:00
dependabot[bot]
0265aa7eda
chore(deps): bump golang.org/x/crypto from 0.18.0 to 0.19.0 (#4612)
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from
0.18.0 to 0.19.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="405cb3bdea"><code>405cb3b</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="913d3ae741"><code>913d3ae</code></a>
x509roots/fallback: update bundle</li>
<li>See full diff in <a
href="https://github.com/golang/crypto/compare/v0.18.0...v0.19.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.18.0&new-version=0.19.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 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>
2024-02-08 10:22:01 -03:00
dependabot[bot]
f77eea3cca
chore(deps): bump github.com/xanzy/go-gitlab from 0.96.0 to 0.97.0 (#4603)
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.96.0 to 0.97.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="997404ba93"><code>997404b</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1872">#1872</a>
from johannges/main</li>
<li><a
href="cd614822bf"><code>cd61482</code></a>
Properly fix <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1744">#1744</a></li>
<li><a
href="b3aeb3b678"><code>b3aeb3b</code></a>
 Group-level CI/CD variables API: add description</li>
<li><a
href="def3c90df5"><code>def3c90</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1870">#1870</a>
from PatrickRice-KSC/add-restrict-pipeline-cancellat...</li>
<li><a
href="0342a41aaf"><code>0342a41</code></a>
Add support for the new ci_restrict_pipeline_cancellation_role attribute
to P...</li>
<li><a
href="0826177612"><code>0826177</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1869">#1869</a>
from PatrickRice-KSC/fix-path-encoding-for-protected...</li>
<li><a
href="88e8a9dca6"><code>88e8a9d</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1868">#1868</a>
from dfredell/main</li>
<li><a
href="0dfb7251a5"><code>0dfb725</code></a>
Fix an issue with environment names not being encoded</li>
<li><a
href="7af6bec41d"><code>7af6bec</code></a>
Use capital ID to follow go standards <a
href="https://go.dev/wiki/CodeReviewComments%5C">https://go.dev/wiki/CodeReviewComments\</a>...</li>
<li><a
href="68e79f23c2"><code>68e79f2</code></a>
Allow setting custom roles to users on projects</li>
<li>See full diff in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.96.0...v0.97.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.96.0&new-version=0.97.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 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>
2024-02-05 08:39:40 -03:00
Carlos Alexandro Becker
b1a7192ba8
chore(deps): update aws-sdk-go
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-04 22:24:39 -03:00
dependabot[bot]
3779dfd6a6
chore(deps): bump github.com/aws/aws-sdk-go from 1.50.5 to 1.50.9 (#4601)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go)
from 1.50.5 to 1.50.9.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-go/releases">github.com/aws/aws-sdk-go's
releases</a>.</em></p>
<blockquote>
<h1>Release v1.50.9 (2024-02-01)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/cognito-idp</code>: Updates service API and
documentation</li>
<li><code>service/ivs</code>: Updates service API, documentation, and
paginators</li>
<li><code>service/managedblockchain-query</code>: Updates service API
and documentation</li>
<li><code>service/mediaconvert</code>: Updates service API and
documentation
<ul>
<li>This release includes support for broadcast-mixed audio description
tracks.</li>
</ul>
</li>
</ul>
<h1>Release v1.50.8 (2024-01-31)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/cloudformation</code>: Updates service API,
documentation, paginators, and examples
<ul>
<li>CloudFormation IaC generator allows you to scan existing resources
in your account and select resources to generate a template for a new or
existing CloudFormation stack.</li>
</ul>
</li>
<li><code>service/elasticloadbalancingv2</code>: Updates service API and
documentation</li>
<li><code>service/glue</code>: Updates service API and documentation
<ul>
<li>Update page size limits for GetJobRuns and GetTriggers APIs.</li>
</ul>
</li>
<li><code>service/ssm</code>: Updates service API and documentation
<ul>
<li>This release adds an optional Duration parameter to StateManager
Associations. This allows customers to specify how long an
apply-only-on-cron association execution should run. Once the specified
Duration is out all the ongoing cancellable commands or automations are
cancelled.</li>
</ul>
</li>
</ul>
<h1>Release v1.50.7 (2024-01-30)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/datazone</code>: Updates service API and
documentation</li>
<li><code>service/route53</code>: Updates service documentation
<ul>
<li>Update the SDKs for text changes in the APIs.</li>
</ul>
</li>
</ul>
<h1>Release v1.50.6 (2024-01-29)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/autoscaling</code>: Updates service API and
documentation
<ul>
<li>EC2 Auto Scaling customers who use attribute based instance-type
selection can now intuitively define their Spot instances price
protection limit as a percentage of the lowest priced On-Demand instance
type.</li>
</ul>
</li>
<li><code>service/comprehend</code>: Updates service documentation</li>
<li><code>service/ec2</code>: Updates service API and documentation
<ul>
<li>EC2 Fleet customers who use attribute based instance-type selection
can now intuitively define their Spot instances price protection limit
as a percentage of the lowest priced On-Demand instance type.</li>
</ul>
</li>
<li><code>service/mwaa</code>: Updates service API and
documentation</li>
<li><code>service/rds</code>: Updates service API, documentation,
waiters, paginators, and examples
<ul>
<li>Introduced support for the InsufficientDBInstanceCapacityFault error
in the RDS RestoreDBClusterFromSnapshot and
RestoreDBClusterToPointInTime API methods. This provides enhanced error
handling, ensuring a more robust experience.</li>
</ul>
</li>
<li><code>service/snowball</code>: Updates service documentation
<ul>
<li>Modified description of createaddress to include direction to add
path when providing a JSON file.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3248e69e16"><code>3248e69</code></a>
Release v1.50.9 (2024-02-01) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5159">#5159</a>)</li>
<li><a
href="3e2c844a50"><code>3e2c844</code></a>
Release v1.50.8 (2024-01-31) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5158">#5158</a>)</li>
<li><a
href="87be112c47"><code>87be112</code></a>
Merge pull request <a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5155">#5155</a>
from kellertk/main</li>
<li><a
href="160195237e"><code>1601952</code></a>
Release v1.50.7 (2024-01-30) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5157">#5157</a>)</li>
<li><a
href="e8a5e0e401"><code>e8a5e0e</code></a>
Release v1.50.6 (2024-01-29) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5156">#5156</a>)</li>
<li><a
href="9adcf752a6"><code>9adcf75</code></a>
chore: relax stale issue timings</li>
<li><a
href="8eb22a1123"><code>8eb22a1</code></a>
chore: a more polite closed issue message</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-go/compare/v1.50.5...v1.50.9">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/aws/aws-sdk-go&package-manager=go_modules&previous-version=1.50.5&new-version=1.50.9)](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 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>
2024-02-04 16:52:53 -03:00
dependabot[bot]
cf997f7ac4
chore(deps): bump github.com/goreleaser/nfpm/v2 from 2.35.2 to 2.35.3 (#4596)
Bumps
[github.com/goreleaser/nfpm/v2](https://github.com/goreleaser/nfpm) from
2.35.2 to 2.35.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/goreleaser/nfpm/releases">github.com/goreleaser/nfpm/v2's
releases</a>.</em></p>
<blockquote>
<h2>v2.35.3</h2>
<h2>Changelog</h2>
<h3>Bug fixes</h3>
<ul>
<li>f8ccc9df94eb9a4c91c3a1c78d4759a65f156731: fix: file mode when type:
tree (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/779">#779</a>)
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>e1ebfdad10ef98fe6c9d424efe3f97d7b2322f04: fix: honor
SOURCE_DATE_EPOCH for files (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/775">#775</a>)
(<a href="https://github.com/osm"><code>@​osm</code></a>)</li>
</ul>
<h3>Dependency updates</h3>
<ul>
<li>9c48b79596993dd653087f91861794b7da6267e6: feat(deps): bump
github.com/ProtonMail/go-crypto (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/771">#771</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li>d7a5dc79573e4bf5d65c3f00d9cac81736f12597: feat(deps): bump
github.com/cloudflare/circl from 1.3.3 to 1.3.7 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/765">#765</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li>fbc55c56be14ac5de4207becb98c908c615dee7e: feat(deps): bump
github.com/klauspost/compress from 1.17.4 to 1.17.5 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/774">#774</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li>9bb94d758ce739fc27c19bbe04bf1c1d33ce3fa9: fix(deps): update
go-rpmutils (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/764">#764</a>)
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<h3>Build process updates</h3>
<ul>
<li>5ace4da2fd3162383a16218e2ef405dc2676bdfc: ci: update changelog (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<h3>Other work</h3>
<ul>
<li>cd6b94108561b9ef1b06e1db8bfe9e3b3f643253: docs: update cmd docs (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>672f8c6537228848062786d7ad2d2956f6808986: docs: update starchart url
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/goreleaser/nfpm/compare/v2.35.2...v2.35.3">https://github.com/goreleaser/nfpm/compare/v2.35.2...v2.35.3</a></p>
<h2>Helping out</h2>
<p>This release is only possible thanks to <strong>all</strong> the
support of <strong>awesome people</strong>!</p>
<p>Want to be one of them?
You can <a href="https://goreleaser.com/sponsors/">sponsor</a> or <a
href="https://goreleaser.com/contributing">contribute with code</a>.</p>
<h2>Where to go next?</h2>
<ul>
<li>nFPM is a satellite project from GoReleaser. <a
href="https://goreleaser.com">Check it out</a>!</li>
<li>Find examples and commented usage of all options in our <a
href="https://nfpm.goreleaser.com/">website</a>.</li>
<li>Reach out on <a href="https://discord.gg/RGEBtg8vQ6">Discord</a> and
<a href="https://twitter.com/goreleaser">Twitter</a>!</li>
</ul>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML
omitted --></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5ace4da2fd"><code>5ace4da</code></a>
ci: update changelog</li>
<li><a
href="f8ccc9df94"><code>f8ccc9d</code></a>
fix: file mode when type: tree (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/779">#779</a>)</li>
<li><a
href="48d1a19eb6"><code>48d1a19</code></a>
chore(deps): bump anchore/sbom-action from 0.15.6 to 0.15.7 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/778">#778</a>)</li>
<li><a
href="e1ebfdad10"><code>e1ebfda</code></a>
fix: honor SOURCE_DATE_EPOCH for files (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/775">#775</a>)</li>
<li><a
href="25f6f2b736"><code>25f6f2b</code></a>
chore(deps): bump anchore/sbom-action from 0.15.5 to 0.15.6 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/776">#776</a>)</li>
<li><a
href="fbc55c56be"><code>fbc55c5</code></a>
feat(deps): bump github.com/klauspost/compress from 1.17.4 to 1.17.5 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/774">#774</a>)</li>
<li><a
href="d83a672428"><code>d83a672</code></a>
chore(deps): bump anchore/sbom-action from 0.15.4 to 0.15.5 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/773">#773</a>)</li>
<li><a
href="995a27a6fb"><code>995a27a</code></a>
chore(deps): bump anchore/sbom-action from 0.15.3 to 0.15.4 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/772">#772</a>)</li>
<li><a
href="9c48b79596"><code>9c48b79</code></a>
feat(deps): bump github.com/ProtonMail/go-crypto (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/771">#771</a>)</li>
<li><a
href="e8832cc97b"><code>e8832cc</code></a>
chore(deps): bump actions/cache from 3.3.3 to 4.0.0 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/770">#770</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/goreleaser/nfpm/compare/v2.35.2...v2.35.3">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| github.com/goreleaser/nfpm/v2 | [>= 2.24.a, < 2.25] |
</details>


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/goreleaser/nfpm/v2&package-manager=go_modules&previous-version=2.35.2&new-version=2.35.3)](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 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>
2024-02-01 15:56:17 -03:00
dependabot[bot]
c68d830eb3
chore(deps): bump github.com/opencontainers/runc from 1.1.5 to 1.1.12 (#4594)
Bumps
[github.com/opencontainers/runc](https://github.com/opencontainers/runc)
from 1.1.5 to 1.1.12.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/opencontainers/runc/releases">github.com/opencontainers/runc's
releases</a>.</em></p>
<blockquote>
<h2>runc 1.1.12 -- &quot;Now you're thinking with Portals™!&quot;</h2>
<p>This is the twelfth patch release in the 1.1.z release branch of
runc.
It fixes a high-severity container breakout vulnerability involving
leaked file descriptors, and users are strongly encouraged to update as
soon as possible.</p>
<ul>
<li>
<p>Fix <a
href="https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv">CVE-2024-21626</a>,
a container breakout attack that took advantage of
a file descriptor that was leaked internally within runc (but never
leaked to the container process).</p>
<p>In addition to fixing the leak, several strict hardening measures
were
added to ensure that future internal leaks could not be used to break
out in this manner again.</p>
<p>Based on our research, while no other container runtime had a similar
leak, none had any of the hardening steps we've introduced (and some
runtimes would not check for any file descriptors that a calling
process may have leaked to them, allowing for container breakouts due
to basic user error).</p>
</li>
</ul>
<h3>Static Linking Notices</h3>
<p>The <code>runc</code> binary distributed with this release are
<em>statically linked</em> with
the following <a
href="https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html">GNU
LGPL-2.1</a> licensed libraries, with <code>runc</code> acting
as a &quot;work that uses the Library&quot;:</p>
<ul>
<li><a href="https://github.com/seccomp/libseccomp">libseccomp</a></li>
</ul>
<p>The versions of these libraries were not modified from their upstream
versions,
but in order to comply with the LGPL-2.1 (§6(a)), we have attached the
complete source code for those libraries which (when combined with the
attached
runc source code) may be used to exercise your rights under the
LGPL-2.1.</p>
<p>However we strongly suggest that you make use of your distribution's
packages
or download them from the authoritative upstream sources, especially
since
these libraries are related to the security of your containers.</p>
<!-- raw HTML omitted -->
<p>Thanks to all of the contributors who made this release possible:</p>
<ul>
<li>Aleksa Sarai <a
href="mailto:cyphar@cyphar.com">cyphar@cyphar.com</a></li>
<li>hang.jiang <a
href="mailto:hang.jiang@daocloud.io">hang.jiang@daocloud.io</a></li>
<li>lfbzhm <a
href="mailto:lifubang@acmcoder.com">lifubang@acmcoder.com</a></li>
</ul>
<p>Signed-off-by: Aleksa Sarai <a
href="mailto:cyphar@cyphar.com">cyphar@cyphar.com</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/opencontainers/runc/blob/v1.1.12/CHANGELOG.md">github.com/opencontainers/runc's
changelog</a>.</em></p>
<blockquote>
<h2>[1.1.12] - 2024-01-31</h2>
<blockquote>
<p>Now you're thinking with Portals™!</p>
</blockquote>
<h3>Security</h3>
<ul>
<li>Fix <a
href="https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv">CVE-2024-21626</a>,
a container breakout attack that took
advantage of a file descriptor that was leaked internally within runc
(but
never leaked to the container process). In addition to fixing the leak,
several strict hardening measures were added to ensure that future
internal
leaks could not be used to break out in this manner again. Based on our
research, while no other container runtime had a similar leak, none had
any
of the hardening steps we've introduced (and some runtimes would not
check
for any file descriptors that a calling process may have leaked to them,
allowing for container breakouts due to basic user error).</li>
</ul>
<h2>[1.1.11] - 2024-01-01</h2>
<blockquote>
<p>Happy New Year!</p>
</blockquote>
<h3>Fixed</h3>
<ul>
<li>Fix several issues with userns path handling. (<a
href="https://redirect.github.com/opencontainers/runc/issues/4122">#4122</a>,
<a
href="https://redirect.github.com/opencontainers/runc/issues/4124">#4124</a>,
<a
href="https://redirect.github.com/opencontainers/runc/issues/4134">#4134</a>,
<a
href="https://redirect.github.com/opencontainers/runc/issues/4144">#4144</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Support memory.peak and memory.swap.peak in cgroups v2.
Add <code>swapOnlyUsage</code> in <code>MemoryStats</code>. This field
reports swap-only usage.
For cgroupv1, <code>Usage</code> and <code>Failcnt</code> are set by
subtracting memory usage
from memory+swap usage. For cgroupv2, <code>Usage</code>,
<code>Limit</code>, and <code>MaxUsage</code>
are set. (<a
href="https://redirect.github.com/opencontainers/runc/issues/4000">#4000</a>,
<a
href="https://redirect.github.com/opencontainers/runc/issues/4010">#4010</a>,
<a
href="https://redirect.github.com/opencontainers/runc/issues/4131">#4131</a>)</li>
<li>build(deps): bump github.com/cyphar/filepath-securejoin. (<a
href="https://redirect.github.com/opencontainers/runc/issues/4140">#4140</a>)</li>
</ul>
<h2>[1.1.10] - 2023-10-31</h2>
<blockquote>
<p>Śruba, przykręcona we śnie, nie zmieni sytuacji, jaka panuje na
jawie.</p>
</blockquote>
<h3>Added</h3>
<ul>
<li>Support for <code>hugetlb.&lt;pagesize&gt;.rsvd</code> limiting and
accounting. Fixes the
issue of postres failing when hugepage limits are set. (<a
href="https://redirect.github.com/opencontainers/runc/issues/3859">#3859</a>,
<a
href="https://redirect.github.com/opencontainers/runc/issues/4077">#4077</a>)</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Fixed permissions of a newly created directories to not depend on
the value
of umask in tmpcopyup feature implementation. (<a
href="https://redirect.github.com/opencontainers/runc/issues/3991">#3991</a>,
<a
href="https://redirect.github.com/opencontainers/runc/issues/4060">#4060</a>)</li>
<li>libcontainer: cgroup v1 GetStats now ignores missing
<code>kmem.limit_in_bytes</code>
(fixes the compatibility with Linux kernel 6.1+). (<a
href="https://redirect.github.com/opencontainers/runc/issues/4028">#4028</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="51d5e94601"><code>51d5e94</code></a>
VERSION: release 1.1.12</li>
<li><a
href="2a4ed3e75b"><code>2a4ed3e</code></a>
merge 1.1-ghsa-xr7r-f8xq-vfvv into release-1.1</li>
<li><a
href="e9665f4d60"><code>e9665f4</code></a>
init: don't special-case logrus fds</li>
<li><a
href="683ad2ff3b"><code>683ad2f</code></a>
libcontainer: mark all non-stdio fds O_CLOEXEC before spawning init</li>
<li><a
href="b6633f48a8"><code>b6633f4</code></a>
cgroup: plug leaks of /sys/fs/cgroup handle</li>
<li><a
href="284ba3057e"><code>284ba30</code></a>
init: close internal fds before execve</li>
<li><a
href="fbe3eed1e5"><code>fbe3eed</code></a>
setns init: do explicit lookup of execve argument early</li>
<li><a
href="0994249a5e"><code>0994249</code></a>
init: verify after chdir that cwd is inside the container</li>
<li><a
href="506552a88b"><code>506552a</code></a>
Fix File to Close</li>
<li><a
href="099ff69336"><code>099ff69</code></a>
merge <a
href="https://redirect.github.com/opencontainers/runc/issues/4177">#4177</a>
into opencontainers/runc:release-1.1</li>
<li>Additional commits viewable in <a
href="https://github.com/opencontainers/runc/compare/v1.1.5...v1.1.12">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/opencontainers/runc&package-manager=go_modules&previous-version=1.1.5&new-version=1.1.12)](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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/goreleaser/goreleaser/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-31 20:45:29 -03:00
dependabot[bot]
714530b524
chore(deps): bump github.com/google/go-containerregistry from 0.18.0 to 0.19.0 (#4589)
Bumps
[github.com/google/go-containerregistry](https://github.com/google/go-containerregistry)
from 0.18.0 to 0.19.0.
<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.19.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Work around docker v25 tarballs by <a
href="https://github.com/jonjohnsonjr"><code>@​jonjohnsonjr</code></a>
in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1872">google/go-containerregistry#1872</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/google/go-containerregistry/compare/v0.18.0...v0.19.0">https://github.com/google/go-containerregistry/compare/v0.18.0...v0.19.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8dadbe76ff"><code>8dadbe7</code></a>
Work around docker v25 tarballs (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1872">#1872</a>)</li>
<li>See full diff in <a
href="https://github.com/google/go-containerregistry/compare/v0.18.0...v0.19.0">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.18.0&new-version=0.19.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 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>
2024-01-30 07:51:25 -03:00
dependabot[bot]
9c293cf527
chore(deps): bump github.com/aws/aws-sdk-go from 1.50.2 to 1.50.5 (#4583)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go)
from 1.50.2 to 1.50.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-go/releases">github.com/aws/aws-sdk-go's
releases</a>.</em></p>
<blockquote>
<h1>Release v1.50.5 (2024-01-26)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/connect</code>: Updates service API</li>
<li><code>service/inspector2</code>: Updates service API and
documentation</li>
<li><code>service/sagemaker</code>: Updates service API and
documentation
<ul>
<li>Amazon SageMaker Automatic Model Tuning now provides an API to
programmatically delete tuning jobs.</li>
</ul>
</li>
</ul>
<h1>Release v1.50.4 (2024-01-25)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/acm-pca</code>: Updates service API, documentation,
and waiters</li>
<li><code>service/lightsail</code>: Updates service API and
documentation
<ul>
<li>This release adds support for IPv6-only instance plans.</li>
</ul>
</li>
</ul>
<h1>Release v1.50.3 (2024-01-24)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/ec2</code>: Updates service API and documentation
<ul>
<li>Introduced a new clientToken request parameter on CreateNetworkAcl
and CreateRouteTable APIs. The clientToken parameter allows idempotent
operations on the APIs.</li>
</ul>
</li>
<li><code>service/ecs</code>: Updates service documentation
<ul>
<li>Documentation updates for Amazon ECS.</li>
</ul>
</li>
<li><code>service/outposts</code>: Updates service API</li>
<li><code>service/rds</code>: Updates service API, documentation,
waiters, paginators, and examples
<ul>
<li>This release adds support for Aurora Limitless Database.</li>
</ul>
</li>
<li><code>service/storagegateway</code>: Updates service API and
documentation
<ul>
<li>Add DeprecationDate and SoftwareVersion to response of
ListGateways.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="32e0058e28"><code>32e0058</code></a>
Release v1.50.5 (2024-01-26) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5154">#5154</a>)</li>
<li><a
href="d5e1369ac3"><code>d5e1369</code></a>
Release v1.50.4 (2024-01-25) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5152">#5152</a>)</li>
<li><a
href="15beed0ddd"><code>15beed0</code></a>
Release v1.50.3 (2024-01-24) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5151">#5151</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-go/compare/v1.50.2...v1.50.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/aws/aws-sdk-go&package-manager=go_modules&previous-version=1.50.2&new-version=1.50.5)](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 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>
2024-01-29 09:39:02 -03:00
dependabot[bot]
d3383153ee
chore(deps): bump github.com/atc0005/go-teams-notify/v2 from 2.8.0 to 2.9.0 (#4577)
Bumps
[github.com/atc0005/go-teams-notify/v2](https://github.com/atc0005/go-teams-notify)
from 2.8.0 to 2.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/atc0005/go-teams-notify/releases">github.com/atc0005/go-teams-notify/v2's
releases</a>.</em></p>
<blockquote>
<h2>v2.9.0</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>New Features or Enhancements 🎉</h3>
<ul>
<li>Add proxy server examples by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/241">atc0005/go-teams-notify#241</a></li>
<li>Initial support for toggling visibility by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/251">atc0005/go-teams-notify#251</a></li>
</ul>
<h3>Dependency Updates</h3>
<ul>
<li>Update Dependabot config to monitor both branches by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/236">atc0005/go-teams-notify#236</a></li>
<li>ghaw: bump actions/checkout from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/238">atc0005/go-teams-notify#238</a></li>
<li>ghaw: bump github/codeql-action from 2 to 3 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/248">atc0005/go-teams-notify#248</a></li>
</ul>
<h3>Other Changes</h3>
<ul>
<li>Update Go Doc comment formatting by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/244">atc0005/go-teams-notify#244</a></li>
<li>Update CHANGELOG for v2.9.0 release by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/252">atc0005/go-teams-notify#252</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/atc0005/go-teams-notify/compare/v2.8.0...v2.9.0">https://github.com/atc0005/go-teams-notify/compare/v2.8.0...v2.9.0</a></p>
<h2>v2.9.0-alpha.1</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<h3>New Features or Enhancements 🎉</h3>
<ul>
<li>Initial support for toggling visibility by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/246">atc0005/go-teams-notify#246</a></li>
</ul>
<h3>Dependency Updates</h3>
<ul>
<li>ghaw: bump actions/checkout from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/237">atc0005/go-teams-notify#237</a></li>
</ul>
<h3>Other Changes</h3>
<ul>
<li>Sync latest changes from master branch by <a
href="https://github.com/atc0005"><code>@​atc0005</code></a> in <a
href="https://redirect.github.com/atc0005/go-teams-notify/pull/245">atc0005/go-teams-notify#245</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/atc0005/go-teams-notify/compare/v2.8.0...v2.9.0-alpha.1">https://github.com/atc0005/go-teams-notify/compare/v2.8.0...v2.9.0-alpha.1</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/atc0005/go-teams-notify/blob/master/CHANGELOG.md">github.com/atc0005/go-teams-notify/v2's
changelog</a>.</em></p>
<blockquote>
<h2>[v2.9.0] - 2024-01-25</h2>
<h3>Added</h3>
<ul>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/241">GH-241</a>)
Add proxy server examples</li>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/251">GH-251</a>)
Initial support for toggling visibility</li>
</ul>
<h3>Changed</h3>
<h4>Dependency Updates</h4>
<ul>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/238">GH-238</a>)
ghaw: bump actions/checkout from 3 to 4</li>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/248">GH-248</a>)
ghaw: bump github/codeql-action from 2 to 3</li>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/236">GH-236</a>)
Update Dependabot config to monitor both branches</li>
</ul>
<h4>Other</h4>
<ul>
<li>(<a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/244">GH-244</a>)
Update Go Doc comment formatting</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f941266eb2"><code>f941266</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/252">#252</a>
from atc0005/update-changelog-for-v2.9.0-release</li>
<li><a
href="47af718a16"><code>47af718</code></a>
Update CHANGELOG for v2.9.0 release</li>
<li><a
href="060a97dce8"><code>060a97d</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/251">#251</a>
from atc0005/i243-toggle-visibility-support</li>
<li><a
href="7ef6d5203f"><code>7ef6d52</code></a>
Initial support for toggling visibility</li>
<li><a
href="64c5cd4327"><code>64c5cd4</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/248">#248</a>
from atc0005/dependabot/github_actions/master/github/...</li>
<li><a
href="00299cba83"><code>00299cb</code></a>
ghaw: bump github/codeql-action from 2 to 3</li>
<li><a
href="daebc600a9"><code>daebc60</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/244">#244</a>
from atc0005/update-doc-comment-formatting</li>
<li><a
href="fb8e79cfec"><code>fb8e79c</code></a>
Update Go Doc comment formatting</li>
<li><a
href="fba2d4a6ac"><code>fba2d4a</code></a>
Merge pull request <a
href="https://redirect.github.com/atc0005/go-teams-notify/issues/241">#241</a>
from atc0005/i240-add-proxy-example</li>
<li><a
href="9de4c2e300"><code>9de4c2e</code></a>
Add proxy server examples</li>
<li>Additional commits viewable in <a
href="https://github.com/atc0005/go-teams-notify/compare/v2.8.0...v2.9.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/atc0005/go-teams-notify/v2&package-manager=go_modules&previous-version=2.8.0&new-version=2.9.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 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>
2024-01-27 08:51:23 -03:00
dependabot[bot]
bdc4d1c782
chore(deps): bump github.com/google/uuid from 1.5.0 to 1.6.0 (#4571)
Bumps [github.com/google/uuid](https://github.com/google/uuid) from
1.5.0 to 1.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/google/uuid/releases">github.com/google/uuid's
releases</a>.</em></p>
<blockquote>
<h2>v1.6.0</h2>
<h2><a
href="https://github.com/google/uuid/compare/v1.5.0...v1.6.0">1.6.0</a>
(2024-01-16)</h2>
<h3>Features</h3>
<ul>
<li>add Max UUID constant (<a
href="https://redirect.github.com/google/uuid/issues/149">#149</a>) (<a
href="c58770eb49">c58770e</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>fix typo in version 7 uuid documentation (<a
href="https://redirect.github.com/google/uuid/issues/153">#153</a>) (<a
href="016b199544">016b199</a>)</li>
<li>Monotonicity in UUIDv7 (<a
href="https://redirect.github.com/google/uuid/issues/150">#150</a>) (<a
href="a2b2b32373">a2b2b32</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/google/uuid/blob/master/CHANGELOG.md">github.com/google/uuid's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/google/uuid/compare/v1.5.0...v1.6.0">1.6.0</a>
(2024-01-16)</h2>
<h3>Features</h3>
<ul>
<li>add Max UUID constant (<a
href="https://redirect.github.com/google/uuid/issues/149">#149</a>) (<a
href="c58770eb49">c58770e</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>fix typo in version 7 uuid documentation (<a
href="https://redirect.github.com/google/uuid/issues/153">#153</a>) (<a
href="016b199544">016b199</a>)</li>
<li>Monotonicity in UUIDv7 (<a
href="https://redirect.github.com/google/uuid/issues/150">#150</a>) (<a
href="a2b2b32373">a2b2b32</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0f11ee6918"><code>0f11ee6</code></a>
chore(master): release 1.6.0 (<a
href="https://redirect.github.com/google/uuid/issues/151">#151</a>)</li>
<li><a
href="16939dafc3"><code>16939da</code></a>
chore(tests): add strict monotonicity test case for uuid v7. (<a
href="https://redirect.github.com/google/uuid/issues/154">#154</a>)</li>
<li><a
href="016b199544"><code>016b199</code></a>
fix: fix typo in version 7 uuid documentation (<a
href="https://redirect.github.com/google/uuid/issues/153">#153</a>)</li>
<li><a
href="1d8b6ea099"><code>1d8b6ea</code></a>
ci: set token permissions to github workflows (<a
href="https://redirect.github.com/google/uuid/issues/143">#143</a>)</li>
<li><a
href="a2b2b32373"><code>a2b2b32</code></a>
fix: Monotonicity in UUIDv7 (<a
href="https://redirect.github.com/google/uuid/issues/150">#150</a>)</li>
<li><a
href="c58770eb49"><code>c58770e</code></a>
feat: add Max UUID constant (<a
href="https://redirect.github.com/google/uuid/issues/149">#149</a>)</li>
<li>See full diff in <a
href="https://github.com/google/uuid/compare/v1.5.0...v1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/google/uuid&package-manager=go_modules&previous-version=1.5.0&new-version=1.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 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>
2024-01-24 11:37:02 -03:00
dependabot[bot]
d301ffab35
chore(deps): bump github.com/aws/aws-sdk-go from 1.50.1 to 1.50.2 (#4570)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go)
from 1.50.1 to 1.50.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-go/releases">github.com/aws/aws-sdk-go's
releases</a>.</em></p>
<blockquote>
<h1>Release v1.50.2 (2024-01-23)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/inspector2</code>: Updates service API, documentation,
and paginators</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8fd61086a3"><code>8fd6108</code></a>
Release v1.50.2 (2024-01-23) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5150">#5150</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-go/compare/v1.50.1...v1.50.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/aws/aws-sdk-go&package-manager=go_modules&previous-version=1.50.1&new-version=1.50.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 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>
2024-01-24 11:36:53 -03:00
dependabot[bot]
2e1d587515
chore(deps): bump github.com/aws/aws-sdk-go from 1.50.0 to 1.50.1 (#4568)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go)
from 1.50.0 to 1.50.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-go/releases">github.com/aws/aws-sdk-go's
releases</a>.</em></p>
<blockquote>
<h1>Release v1.50.1 (2024-01-22)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/appconfigdata</code>: Adds new service</li>
<li><code>service/cloud9</code>: Updates service documentation
<ul>
<li>Doc-only update around removing AL1 from list of available AMIs for
Cloud9</li>
</ul>
</li>
<li><code>service/connectcases</code>: Updates service API,
documentation, and paginators</li>
<li><code>service/ec2</code>: Updates service documentation
<ul>
<li>Documentation updates for Amazon EC2.</li>
</ul>
</li>
<li><code>service/ecs</code>: Updates service API and documentation
<ul>
<li>This release adds support for Transport Layer Security (TLS) and
Configurable Timeout to ECS Service Connect. TLS facilitates privacy and
data security for inter-service communications, while Configurable
Timeout allows customized per-request timeout and idle timeout for
Service Connect services.</li>
</ul>
</li>
<li><code>service/finspace</code>: Updates service API</li>
<li><code>service/organizations</code>: Updates service documentation
<ul>
<li>Doc only update for quota increase change</li>
</ul>
</li>
<li><code>service/rds</code>: Updates service API, documentation,
waiters, paginators, and examples
<ul>
<li>Introduced support for the InsufficientDBInstanceCapacityFault error
in the RDS CreateDBCluster API method. This provides enhanced error
handling, ensuring a more robust experience when creating database
clusters with insufficient instance capacity.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a91b4e6eea"><code>a91b4e6</code></a>
Release v1.50.1 (2024-01-22) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5149">#5149</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-go/compare/v1.50.0...v1.50.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/aws/aws-sdk-go&package-manager=go_modules&previous-version=1.50.0&new-version=1.50.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 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>
2024-01-23 16:49:35 -03:00
dependabot[bot]
c6bc25ca69
chore(deps): bump github.com/aws/aws-sdk-go from 1.49.24 to 1.50.0 (#4564)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go)
from 1.49.24 to 1.50.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-go/releases">github.com/aws/aws-sdk-go's
releases</a>.</em></p>
<blockquote>
<h1>Release v1.50.0 (2024-01-19)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/athena</code>: Updates service API and documentation
<ul>
<li>Introducing new NotebookS3LocationUri parameter to Athena
ImportNotebook API. Payload is no longer required and either Payload or
NotebookS3LocationUri needs to be provided (not both) for a successful
ImportNotebook API call. If both are provided, an
InvalidRequestException will be thrown.</li>
</ul>
</li>
<li><code>service/codebuild</code>: Updates service API, documentation,
and paginators
<ul>
<li>Release CodeBuild Reserved Capacity feature</li>
</ul>
</li>
<li><code>service/dynamodb</code>: Updates service API, documentation,
waiters, paginators, and examples
<ul>
<li>This release adds support for including
ApproximateCreationDateTimePrecision configurations in
EnableKinesisStreamingDestination API, adds the same as an optional
field in the response of DescribeKinesisStreamingDestination, and adds
support for a new UpdateKinesisStreamingDestination API.</li>
</ul>
</li>
<li><code>service/qconnect</code>: Updates service API</li>
</ul>
<h3>SDK Features</h3>
<ul>
<li><code>service/cloudfrontkeyvaluestore</code>: Deprecate
cloudfrontkeyvaluestore
<ul>
<li>This change removes the cloudfrontkeyvaluestore service, since it
does not support sigv4a.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="63e7f600c2"><code>63e7f60</code></a>
Release v1.50.0 (2024-01-19) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5147">#5147</a>)</li>
<li><a
href="f55d9b1149"><code>f55d9b1</code></a>
Remove cloudfrontkeyvaluestore (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5146">#5146</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-go/compare/v1.49.24...v1.50.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/aws/aws-sdk-go&package-manager=go_modules&previous-version=1.49.24&new-version=1.50.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 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>
2024-01-22 09:00:04 -03:00
dependabot[bot]
4a41e823e2
chore(deps): bump github.com/aws/aws-sdk-go from 1.49.23 to 1.49.24 (#4560) 2024-01-19 11:22:11 +00:00
dependabot[bot]
e767714d07
chore(deps): bump github.com/google/go-containerregistry from 0.17.0 to 0.18.0 (#4553)
Bumps
[github.com/google/go-containerregistry](https://github.com/google/go-containerregistry)
from 0.17.0 to 0.18.0.
<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.18.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: goreleaser config by <a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1764">google/go-containerregistry#1764</a></li>
<li>Always print pushed digest in crane push by <a
href="https://github.com/aw185176"><code>@​aw185176</code></a> in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1860">google/go-containerregistry#1860</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>
made their first contribution in <a
href="https://redirect.github.com/google/go-containerregistry/pull/1764">google/go-containerregistry#1764</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/google/go-containerregistry/compare/v0.17.0...v0.18.0">https://github.com/google/go-containerregistry/compare/v0.17.0...v0.18.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a0658aa1d0"><code>a0658aa</code></a>
Always print pushed digest in crane push (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1860">#1860</a>)</li>
<li><a
href="55ffb0092a"><code>55ffb00</code></a>
fix: goreleaser config (<a
href="https://redirect.github.com/google/go-containerregistry/issues/1764">#1764</a>)</li>
<li>See full diff in <a
href="https://github.com/google/go-containerregistry/compare/v0.17.0...v0.18.0">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.17.0&new-version=0.18.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 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>
2024-01-18 16:22:54 -03:00
dependabot[bot]
fb6b3bd221
chore(deps): bump github.com/aws/aws-sdk-go from 1.49.22 to 1.49.23 (#4552)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go)
from 1.49.22 to 1.49.23.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-go/releases">github.com/aws/aws-sdk-go's
releases</a>.</em></p>
<blockquote>
<h1>Release v1.49.23 (2024-01-17)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/dynamodb</code>: Updates service API, documentation,
waiters, paginators, and examples
<ul>
<li>Updating note for enabling streams for UpdateTable.</li>
</ul>
</li>
<li><code>service/keyspaces</code>: Updates service API and
documentation</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d264d16096"><code>d264d16</code></a>
Release v1.49.23 (2024-01-17) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5144">#5144</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-go/compare/v1.49.22...v1.49.23">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/aws/aws-sdk-go&package-manager=go_modules&previous-version=1.49.22&new-version=1.49.23)](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 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>
2024-01-18 13:29:57 -03:00
dependabot[bot]
5bdb3a8078
chore(deps): bump github.com/xanzy/go-gitlab from 0.95.2 to 0.96.0 (#4554)
Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab)
from 0.95.2 to 0.96.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="63caa488c1"><code>63caa48</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1866">#1866</a>
from cenkalti/notes</li>
<li><a
href="42426a3f2b"><code>42426a3</code></a>
Try to follow order in the docs</li>
<li><a
href="4bbd9e29e1"><code>4bbd9e2</code></a>
add missing fields in Note struct</li>
<li><a
href="57c03d9cba"><code>57c03d9</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1863">#1863</a>
from TheCodear/feat/update-project-variables</li>
<li><a
href="28f5cd4ed8"><code>28f5cd4</code></a>
Fix test after reodering</li>
<li><a
href="c3f82c2c7a"><code>c3f82c2</code></a>
format source code</li>
<li><a
href="80a3897b5a"><code>80a3897</code></a>
update project variables client with description field</li>
<li><a
href="4e7fdb74c0"><code>4e7fdb7</code></a>
Merge pull request <a
href="https://redirect.github.com/xanzy/go-gitlab/issues/1864">#1864</a>
from xuxiaowei-com-cn/project_level_variables/descri...</li>
<li><a
href="8e7e14bedd"><code>8e7e14b</code></a>
Update ordering</li>
<li><a
href="1256139f16"><code>1256139</code></a>
 Project-level CI/CD variables API: add description</li>
<li>Additional commits viewable in <a
href="https://github.com/xanzy/go-gitlab/compare/v0.95.2...v0.96.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.95.2&new-version=0.96.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 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>
2024-01-18 13:29:32 -03:00
dependabot[bot]
c1a21fdfc4
chore(deps): bump github.com/aws/aws-sdk-go from 1.49.21 to 1.49.22 (#4547)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go)
from 1.49.21 to 1.49.22.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-go/releases">github.com/aws/aws-sdk-go's
releases</a>.</em></p>
<blockquote>
<h1>Release v1.49.22 (2024-01-16)</h1>
<h3>Service Client Updates</h3>
<ul>
<li><code>service/iot</code>: Updates service API
<ul>
<li>Revert release of LogTargetTypes</li>
</ul>
</li>
<li><code>service/iotfleetwise</code>: Updates service API and
documentation</li>
<li><code>service/macie2</code>: Updates service API and
documentation</li>
<li><code>service/payment-cryptography</code>: Updates service API and
documentation</li>
<li><code>service/personalize</code>: Updates service documentation</li>
<li><code>service/personalize-runtime</code>: Updates service
documentation</li>
<li><code>service/rekognition</code>: Updates service API and
documentation
<ul>
<li>This release adds ContentType and TaxonomyLevel attributes to
DetectModerationLabels and GetMediaAnalysisJob API responses.</li>
</ul>
</li>
<li><code>service/securityhub</code>: Updates service documentation</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d9a3e6a5dd"><code>d9a3e6a</code></a>
Release v1.49.22 (2024-01-16) (<a
href="https://redirect.github.com/aws/aws-sdk-go/issues/5143">#5143</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-go/compare/v1.49.21...v1.49.22">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/aws/aws-sdk-go&package-manager=go_modules&previous-version=1.49.21&new-version=1.49.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 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>
2024-01-17 08:47:48 -03:00
dependabot[bot]
738418d490 chore(deps): bump github.com/aws/aws-sdk-go from 1.49.19 to 1.49.21
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.49.19 to 1.49.21.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.49.19...v1.49.21)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-15 08:50:16 -03:00
dependabot[bot]
73ad0d1068 chore(deps): bump golang.org/x/tools from 0.16.1 to 0.17.0
Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.16.1 to 0.17.0.
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](https://github.com/golang/tools/compare/v0.16.1...v0.17.0)

---
updated-dependencies:
- dependency-name: golang.org/x/tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-12 09:23:41 -03:00
dependabot[bot]
72b8163776 chore(deps): bump github.com/aws/aws-sdk-go from 1.49.18 to 1.49.19
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.49.18 to 1.49.19.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.49.18...v1.49.19)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-12 09:20:05 -03:00
dependabot[bot]
5c0c82afa2 feat(deps): bump github.com/aws/aws-sdk-go from 1.49.17 to 1.49.18
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.49.17 to 1.49.18.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.49.17...v1.49.18)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-11 15:02:03 -03:00
dependabot[bot]
2de878e418 feat(deps): bump github.com/aws/aws-sdk-go from 1.49.0 to 1.49.17
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.49.0 to 1.49.17.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.49.0...v1.49.17)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-10 08:38:23 -03:00
dependabot[bot]
835ee39ff4
feat(deps): bump golang.org/x/oauth2 from 0.15.0 to 0.16.0 (#4528) 2024-01-09 11:41:23 +00:00
dependabot[bot]
f0bf2d756e
feat(deps): bump github.com/cloudflare/circl from 1.3.5 to 1.3.7 (#4525) 2024-01-09 11:32:59 +00:00
dependabot[bot]
bbb6b5ce00
fix(deps): bump gocloud.dev from 0.35.0 to 0.36.0 (#4506)
Bumps [gocloud.dev](https://github.com/google/go-cloud) from 0.35.0 to
0.36.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.36.0</h2>
<p><strong>blob</strong></p>
<ul>
<li><strong>all</strong>: Allow disabling of <code>ContentType</code>
auto-detection during writes.</li>
</ul>
<p><strong>pubsub</strong></p>
<ul>
<li><strong>azuresb</strong>: Added a new auth method to support Service
principal/kubelet identity/Workload identity auth methods.</li>
</ul>
<p><strong>docstore</strong></p>
<ul>
<li><strong>all</strong>: Add in/not-in operators for Query.</li>
<li><strong>gcpfirestore</strong>: Added a missing resource header when
running query.</li>
</ul>
<p><strong>mysql</strong></p>
<ul>
<li>Pass TLS config directly to MySQL's config</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="01064b751a"><code>01064b7</code></a>
all: prerelease</li>
<li><a
href="92114ef433"><code>92114ef</code></a>
mysql: pass TLS config directly to MySQL's config (<a
href="https://redirect.github.com/google/go-cloud/issues/3348">#3348</a>)</li>
<li><a
href="97fe9d0425"><code>97fe9d0</code></a>
docstore/all: Add in/not-in operators for Query</li>
<li><a
href="4fe95eea2d"><code>4fe95ee</code></a>
blob/all: Allow disabling of ContentType auto-detection during writes
(<a
href="https://redirect.github.com/google/go-cloud/issues/3371">#3371</a>)</li>
<li><a
href="1dbbbb3e64"><code>1dbbbb3</code></a>
pubsub/azuresb: minor comments and fixes (<a
href="https://redirect.github.com/google/go-cloud/issues/3370">#3370</a>)</li>
<li><a
href="2090984208"><code>2090984</code></a>
all: update golang.org/x/crypto (<a
href="https://redirect.github.com/google/go-cloud/issues/3369">#3369</a>)</li>
<li><a
href="ddc7b99101"><code>ddc7b99</code></a>
pubsub/azuresb: new auth method to support Service principal/kubelet
identit...</li>
<li><a
href="c770de8217"><code>c770de8</code></a>
docstore/gcpfirestore: Add missing resource header when running
query</li>
<li><a
href="e86400ea40"><code>e86400e</code></a>
pubsub/awssnssqs: Remove hack for broken AWS error codes now that
they've fix...</li>
<li><a
href="8c8f558aff"><code>8c8f558</code></a>
all: postrelease (<a
href="https://redirect.github.com/google/go-cloud/issues/3351">#3351</a>)</li>
<li>See full diff in <a
href="https://github.com/google/go-cloud/compare/v0.35.0...v0.36.0">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| gocloud.dev | [>= 0.25.a, < 0.26] |
</details>


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gocloud.dev&package-manager=go_modules&previous-version=0.35.0&new-version=0.36.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 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>
2024-01-06 12:49:45 -03:00
dependabot[bot]
dcdd6234fa
fix(deps): bump golang.org/x/sync from 0.5.0 to 0.6.0 (#4518)
Bumps [golang.org/x/sync](https://github.com/golang/sync) from 0.5.0 to
0.6.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="59c1ca1e46"><code>59c1ca1</code></a>
errgroup: add reference to sync.WaitGroup</li>
<li>See full diff in <a
href="https://github.com/golang/sync/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/sync&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 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>
2024-01-06 12:35:37 -03:00
dependabot[bot]
45d2152f61
fix(deps): bump code.gitea.io/sdk/gitea from 0.17.0 to 0.17.1 (#4512)
Bumps code.gitea.io/sdk/gitea from 0.17.0 to 0.17.1.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=code.gitea.io/sdk/gitea&package-manager=go_modules&previous-version=0.17.0&new-version=0.17.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 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>
2024-01-06 09:10:04 -03:00
dependabot[bot]
2a452665fb
fix(deps): bump github.com/goreleaser/nfpm/v2 from 2.35.1 to 2.35.2 (#4519)
Bumps
[github.com/goreleaser/nfpm/v2](https://github.com/goreleaser/nfpm) from
2.35.1 to 2.35.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/goreleaser/nfpm/releases">github.com/goreleaser/nfpm/v2's
releases</a>.</em></p>
<blockquote>
<h2>v2.35.2</h2>
<h2>Changelog</h2>
<h3>Security updates</h3>
<ul>
<li>440588e9d22bbb413014921baea0b81be3048769: sec(deps): bump
github.com/go-git/go-git/v5 from 5.7.0 to 5.11.0 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/759">#759</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>beb0f7314e098689ee29cd957134107ad535f85e: fix: properly handle files
owned by fs (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/760">#760</a>)
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<h3>Build process updates</h3>
<ul>
<li>e15b21b0fba2f098ac7292a89126079ecf3e58fc: build: add packagers shell
to flake.nix (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>19f03e44c39065d55675c04c794c1668801e1f06: build: fix flake (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>a117582d8c23e97635bf55502f9a7eef8c3e35ba: build: use nix flake (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/761">#761</a>)
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<h3>Other work</h3>
<ul>
<li>37b28fd4a368a94e4e285bdabbd3c1641f28cff4: ci: release for ppc64le
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>2b60d2191cef2110a15f62095eb7a909c78f7970: docs: update cmd docs (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>c6f2eb7008f081ef5e1e448083dfbaeacd604c77: docs: validate jsonschema
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/goreleaser/nfpm/compare/v2.35.1...v2.35.2">https://github.com/goreleaser/nfpm/compare/v2.35.1...v2.35.2</a></p>
<h2>Helping out</h2>
<p>This release is only possible thanks to <strong>all</strong> the
support of <strong>awesome people</strong>!</p>
<p>Want to be one of them?
You can <a href="https://goreleaser.com/sponsors/">sponsor</a> or <a
href="https://goreleaser.com/contributing">contribute with code</a>.</p>
<h2>Where to go next?</h2>
<ul>
<li>nFPM is a satellite project from GoReleaser. <a
href="https://goreleaser.com">Check it out</a>!</li>
<li>Find examples and commented usage of all options in our <a
href="https://nfpm.goreleaser.com/">website</a>.</li>
<li>Reach out on <a href="https://discord.gg/RGEBtg8vQ6">Discord</a> and
<a href="https://twitter.com/goreleaser">Twitter</a>!</li>
</ul>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML
omitted --></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="19f03e44c3"><code>19f03e4</code></a>
build: fix flake</li>
<li><a
href="beb0f7314e"><code>beb0f73</code></a>
fix: properly handle files owned by fs (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/760">#760</a>)</li>
<li><a
href="37b28fd4a3"><code>37b28fd</code></a>
ci: release for ppc64le</li>
<li><a
href="fcd64f5959"><code>fcd64f5</code></a>
chore(deps): bump anchore/sbom-action from 0.15.1 to 0.15.2 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/762">#762</a>)</li>
<li><a
href="e15b21b0fb"><code>e15b21b</code></a>
build: add packagers shell to flake.nix</li>
<li><a
href="b744dfbd5b"><code>b744dfb</code></a>
chore: add .editorconfig</li>
<li><a
href="c6f2eb7008"><code>c6f2eb7</code></a>
docs: validate jsonschema</li>
<li><a
href="a117582d8c"><code>a117582</code></a>
build: use nix flake (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/761">#761</a>)</li>
<li><a
href="440588e9d2"><code>440588e</code></a>
sec(deps): bump github.com/go-git/go-git/v5 from 5.7.0 to 5.11.0 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/759">#759</a>)</li>
<li><a
href="2b60d2191c"><code>2b60d21</code></a>
docs: update cmd docs</li>
<li>See full diff in <a
href="https://github.com/goreleaser/nfpm/compare/v2.35.1...v2.35.2">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| github.com/goreleaser/nfpm/v2 | [>= 2.24.a, < 2.25] |
</details>


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/goreleaser/nfpm/v2&package-manager=go_modules&previous-version=2.35.1&new-version=2.35.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 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>
2024-01-05 09:43:35 -03:00
Carlos Alexandro Becker
2ab840b675
fix: remove disgo dependency (#4521)
closes #4520

it was easy enough to remove it :)
2024-01-05 09:34:56 -03:00
dependabot[bot]
e91a0f513e
sec(deps): bump github.com/go-git/go-git/v5 from 5.7.0 to 5.11.0 (#4505)
Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git)
from 5.7.0 to 5.11.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/go-git/go-git/releases">github.com/go-git/go-git/v5's
releases</a>.</em></p>
<blockquote>
<h2>v5.11.0</h2>
<h2>What's Changed</h2>
<ul>
<li>git: validate reference names (<a
href="https://redirect.github.com/go-git/go-git/issues/929">#929</a>) by
<a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/950">go-git/go-git#950</a></li>
<li>git: stop iterating at oldest shallow when pulling. Fixes <a
href="https://redirect.github.com/go-git/go-git/issues/305">#305</a> by
<a href="https://github.com/dhoizner"><code>@​dhoizner</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/939">go-git/go-git#939</a></li>
<li>plumbing: object, enable renames in getFileStatsFromFilePatches by
<a href="https://github.com/djmoch"><code>@​djmoch</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/941">go-git/go-git#941</a></li>
<li>storage: filesystem, Add option to set a specific FS for alternates
by <a href="https://github.com/pjbgf"><code>@​pjbgf</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/953">go-git/go-git#953</a></li>
<li>Align worktree validation with upstream and remove build warnings by
<a href="https://github.com/pjbgf"><code>@​pjbgf</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/958">go-git/go-git#958</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/dhoizner"><code>@​dhoizner</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-git/pull/939">go-git/go-git#939</a></li>
<li><a href="https://github.com/djmoch"><code>@​djmoch</code></a> made
their first contribution in <a
href="https://redirect.github.com/go-git/go-git/pull/941">go-git/go-git#941</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/go-git/go-git/compare/v5.10.1...v5.11.0">https://github.com/go-git/go-git/compare/v5.10.1...v5.11.0</a></p>
<h2>v5.10.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Worktree, ignore ModeSocket files by <a
href="https://github.com/steiler"><code>@​steiler</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/930">go-git/go-git#930</a></li>
<li>git: add tracer package by <a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/916">go-git/go-git#916</a></li>
<li>remote: Flip clause for fast-forward only check by <a
href="https://github.com/adityasaky"><code>@​adityasaky</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/875">go-git/go-git#875</a></li>
<li>plumbing: transport/ssh, Fix nil pointer dereference caused when an
unreachable proxy server is set. Fixes <a
href="https://redirect.github.com/go-git/go-git/issues/900">#900</a> by
<a href="https://github.com/anandf"><code>@​anandf</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/901">go-git/go-git#901</a></li>
<li>plumbing: uppload-server-info, implement upload-server-info by <a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/896">go-git/go-git#896</a></li>
<li>plumbing: optimise memory consumption for filesystem storage by <a
href="https://github.com/pjbgf"><code>@​pjbgf</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/799">go-git/go-git#799</a></li>
<li>plumbing: format/packfile, Refactor patch delta by <a
href="https://github.com/pjbgf"><code>@​pjbgf</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/908">go-git/go-git#908</a></li>
<li>plumbing: fix empty uploadpack request error by <a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/932">go-git/go-git#932</a></li>
<li>plumbing: transport/git, Improve tests error message by <a
href="https://github.com/pjbgf"><code>@​pjbgf</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/752">go-git/go-git#752</a></li>
<li>plumbing: format/pktline, Respect pktline error-line errors by <a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/936">go-git/go-git#936</a></li>
<li>utils: remove ioutil.Pipe and use std library io.Pipe by <a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/922">go-git/go-git#922</a></li>
<li>utils: move trace to utils by <a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/931">go-git/go-git#931</a></li>
<li>cli: separate go module for cli by <a
href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a>
in <a
href="https://redirect.github.com/go-git/go-git/pull/914">go-git/go-git#914</a></li>
<li>build: bump github.com/google/go-cmp from 0.5.9 to 0.6.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/887">go-git/go-git#887</a></li>
<li>build: bump actions/setup-go from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/891">go-git/go-git#891</a></li>
<li>build: bump github.com/skeema/knownhosts from 1.2.0 to 1.2.1 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/888">go-git/go-git#888</a></li>
<li>build: bump actions/checkout from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/890">go-git/go-git#890</a></li>
<li>build: bump golang.org/x/sys from 0.13.0 to 0.14.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/907">go-git/go-git#907</a></li>
<li>build: bump golang.org/x/text from 0.13.0 to 0.14.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/906">go-git/go-git#906</a></li>
<li>build: bump golang.org/x/crypto from 0.14.0 to 0.15.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/917">go-git/go-git#917</a></li>
<li>build: bump golang.org/x/net from 0.17.0 to 0.18.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/918">go-git/go-git#918</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/anandf"><code>@​anandf</code></a> made
their first contribution in <a
href="https://redirect.github.com/go-git/go-git/pull/901">go-git/go-git#901</a></li>
<li><a href="https://github.com/steiler"><code>@​steiler</code></a> made
their first contribution in <a
href="https://redirect.github.com/go-git/go-git/pull/930">go-git/go-git#930</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/go-git/go-git/compare/v5.10.0...v5.10.1">https://github.com/go-git/go-git/compare/v5.10.0...v5.10.1</a></p>
<h2>v5.10.0</h2>
<h2>What's Changed</h2>
<ul>
<li>PlainInitOptions.Bare and allow using InitOptions with
PlainInitWithOptions by <a
href="https://github.com/ThinkChaos"><code>@​ThinkChaos</code></a> in <a
href="https://redirect.github.com/go-git/go-git/pull/782">go-git/go-git#782</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5d08d3bd94"><code>5d08d3b</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-git/issues/958">#958</a>
from pjbgf/workval</li>
<li><a
href="5bd1d8f4ab"><code>5bd1d8f</code></a>
build: Ensure checkout is the first operation</li>
<li><a
href="b2c1982477"><code>b2c1982</code></a>
git: worktree, Align validation with upstream rules</li>
<li><a
href="cec7da63ca"><code>cec7da6</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-git/issues/953">#953</a>
from pjbgf/alternates</li>
<li><a
href="8b47ceb1aa"><code>8b47ceb</code></a>
storage: filesystem, Add option to set a specific FS for alternates</li>
<li><a
href="4f61489104"><code>4f61489</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-git/issues/941">#941</a>
from djmoch/filestats-rename</li>
<li><a
href="ae552ce0bf"><code>ae552ce</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-git/issues/939">#939</a>
from dhoizner/fix-pull-after-shallow</li>
<li><a
href="cc1895b905"><code>cc1895b</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-git/issues/950">#950</a>
from aymanbagabas/validate-ref</li>
<li><a
href="de1d5a5978"><code>de1d5a5</code></a>
git: validate reference names</li>
<li><a
href="d87110b492"><code>d87110b</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-git/issues/948">#948</a>
from go-git/dependabot/go_modules/cli/go-git/github.c...</li>
<li>Additional commits viewable in <a
href="https://github.com/go-git/go-git/compare/v5.7.0...v5.11.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/go-git/go-git/v5&package-manager=go_modules&previous-version=5.7.0&new-version=5.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-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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/goreleaser/goreleaser/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-28 09:46:28 -03:00
Carlos Alexandro Becker
6e9ed0561e
feat(deps): update nfpm to latest
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2023-12-26 08:52:35 -03:00
dependabot[bot]
782dd54b1f
feat(deps): bump github.com/goreleaser/nfpm/v2 from 2.34.0 to 2.35.0 (#4492)
Bumps
[github.com/goreleaser/nfpm/v2](https://github.com/goreleaser/nfpm) from
2.34.0 to 2.35.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/goreleaser/nfpm/releases">github.com/goreleaser/nfpm/v2's
releases</a>.</em></p>
<blockquote>
<h2>v2.35.0</h2>
<h2>Changelog</h2>
<h3>New Features</h3>
<ul>
<li>9c4fc0e886dabcd359967cdeca9107973e93c4b9: feat: reproducible
packages (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/748">#748</a>)
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>3485ec3edaba34f90ab57c287ac71eaabfc816be: fix(deb): blank line in
package description (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/742">#742</a>)
(<a href="https://github.com/abemedia"><code>@​abemedia</code></a>)</li>
<li>60cff806c953650d9bda31fda43452003552784b: fix: Ensure reproducable
Deb package (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/747">#747</a>)
(<a href="https://github.com/keliramu"><code>@​keliramu</code></a>)</li>
<li>2c8f9e0d70ccc37e2eb6433daccc3ca2f67841a1: fix: config merge (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>216b17ffff80a5faad835fc53cbe461322d4bf6a: fix: example should not
have prefixed version (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>cdd9a621e98bb5e1b41798b74b720a3273e743ab: fix: use parent
owner/group on typedir (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/754">#754</a>)
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<h3>Dependency updates</h3>
<ul>
<li>a8707cd42874f46a192ec2ef9918d3a75631afb6: feat(deps): bump
github.com/klauspost/compress from 1.17.2 to 1.17.3 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/737">#737</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li>6f2eb59cd263e4a8516ca6addb40e4a5d87b1084: feat(deps): bump
github.com/klauspost/compress from 1.17.3 to 1.17.4 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/745">#745</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li>6c241370ccdd5718730556f2b8c13e4733d0fda7: feat(deps): bump
github.com/spf13/cobra from 1.7.0 to 1.8.0 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/732">#732</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
<li>d56350e61f34f7a596d2383b365da633798aed97: feat(deps): bump
golang.org/x/crypto from 0.14.0 to 0.17.0 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/756">#756</a>)
(<a
href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li>
</ul>
<h3>Build process updates</h3>
<ul>
<li>560c42ca3c87a2938e3b9cc841ec6cde05c8984b: build: added shell.nix (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/743">#743</a>)
(<a href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>29c85136454eabe774558c1b67e3ecf025269f55: build: setup nur and
winget (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<h3>Other work</h3>
<ul>
<li>c4f2da3568bdd0d2882a02a29b60101f944e0f33: docs: correct GOARCH docs
(<a
href="https://redirect.github.com/goreleaser/nfpm/issues/733">#733</a>)
(<a
href="https://github.com/cognifloyd"><code>@​cognifloyd</code></a>)</li>
<li>aaaa3fbb8625a9fe03ba2cb5e2c0f050d2393e6b: docs: fix systemd note (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>f0941db79b18d292a921e0ea778fcf5d1c282e0e: docs: update cmd docs (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
<li>7439013fb5dc9357e84aabb36823a21c1b97e8ba: docs: update cmd docs (<a
href="https://github.com/caarlos0"><code>@​caarlos0</code></a>)</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/goreleaser/nfpm/compare/v2.34.0...v2.35.0">https://github.com/goreleaser/nfpm/compare/v2.34.0...v2.35.0</a></p>
<h2>Helping out</h2>
<p>This release is only possible thanks to <strong>all</strong> the
support of <strong>awesome people</strong>!</p>
<p>Want to be one of them?
You can <a href="https://goreleaser.com/sponsors/">sponsor</a> or <a
href="https://goreleaser.com/contributing">contribute with code</a>.</p>
<h2>Where to go next?</h2>
<ul>
<li>nFPM is a satellite project from GoReleaser. <a
href="https://goreleaser.com">Check it out</a>!</li>
<li>Find examples and commented usage of all options in our <a
href="https://nfpm.goreleaser.com/">website</a>.</li>
<li>Reach out on <a href="https://discord.gg/RGEBtg8vQ6">Discord</a> and
<a href="https://twitter.com/goreleaser">Twitter</a>!</li>
</ul>
<p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML
omitted --></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="29c8513645"><code>29c8513</code></a>
build: setup nur and winget</li>
<li><a
href="cdd9a621e9"><code>cdd9a62</code></a>
fix: use parent owner/group on typedir (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/754">#754</a>)</li>
<li><a
href="d56350e61f"><code>d56350e</code></a>
feat(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/756">#756</a>)</li>
<li><a
href="99bf0d0cf9"><code>99bf0d0</code></a>
test: testifylint fixes (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/753">#753</a>)</li>
<li><a
href="8c91e5ebef"><code>8c91e5e</code></a>
chore(deps): bump github/codeql-action from 2 to 3 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/752">#752</a>)</li>
<li><a
href="e43aa7f7d1"><code>e43aa7f</code></a>
chore(deps): bump sigstore/cosign-installer from 3.2.0 to 3.3.0 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/751">#751</a>)</li>
<li><a
href="2c8f9e0d70"><code>2c8f9e0</code></a>
fix: config merge</li>
<li><a
href="7439013fb5"><code>7439013</code></a>
docs: update cmd docs</li>
<li><a
href="9c4fc0e886"><code>9c4fc0e</code></a>
feat: reproducible packages (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/748">#748</a>)</li>
<li><a
href="c3142513c9"><code>c314251</code></a>
chore(deps): bump actions/setup-go from 4 to 5 (<a
href="https://redirect.github.com/goreleaser/nfpm/issues/749">#749</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/goreleaser/nfpm/compare/v2.34.0...v2.35.0">compare
view</a></li>
</ul>
</details>
<br />

<details>
<summary>Most Recent Ignore Conditions Applied to This Pull
Request</summary>

| Dependency Name | Ignore Conditions |
| --- | --- |
| github.com/goreleaser/nfpm/v2 | [>= 2.24.a, < 2.25] |
</details>


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/goreleaser/nfpm/v2&package-manager=go_modules&previous-version=2.34.0&new-version=2.35.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 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>
2023-12-21 09:16:43 -03:00
dependabot[bot]
3bae110184
feat(deps): bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#4485) 2023-12-19 23:27:05 -03:00