coder/go.mod

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

470 lines
24 KiB
Modula-2
Raw Permalink Normal View History

module github.com/coder/coder/v2
go 1.22.9
// Required until a v3 of chroma is created to lazily initialize all XML files.
// None of our dependencies seem to use the registries anyways, so this
// should be fine...
// See: https://github.com/kylecarbs/chroma/commit/9e036e0631f38ef60de5ee8eec7a42e9cb7da423
replace github.com/alecthomas/chroma/v2 => github.com/kylecarbs/chroma/v2 v2.0.0-20240401211003-9e036e0631f3
// Required until https://github.com/hashicorp/terraform-config-inspect/pull/74 is merged.
replace github.com/hashicorp/terraform-config-inspect => github.com/coder/terraform-config-inspect v0.0.0-20250107175719-6d06d90c630e
// Required until https://github.com/chzyer/readline/pull/198 is merged.
replace github.com/chzyer/readline => github.com/kylecarbs/readline v0.0.0-20220211054233-0d62993714c8
// Required until https://github.com/briandowns/spinner/pull/136 is merged.
replace github.com/briandowns/spinner => github.com/kylecarbs/spinner v1.18.2-0.20220329160715-20702b5af89e
// opencensus-go leaks a goroutine by default.
replace go.opencensus.io => github.com/kylecarbs/opencensus-go v0.23.1-0.20220307014935-4d0325a68f8b
// See https://github.com/kylecarbs/tview/commit/8464256e10a1e85074c7ef9c80346baa60e9ede6
replace github.com/rivo/tview => github.com/kylecarbs/tview v0.0.0-20220309202238-8464256e10a1
// glog has a single goroutine leak on start that we removed in a fork: https://github.com/coder/glog/pull/1.
replace github.com/golang/glog => github.com/coder/glog v1.0.1-0.20220322161911-7365fe7f2cd1
// kcp-go starts a goroutine in an init function that we can't stop. It was
// fixed in our fork:
// https://github.com/coder/kcp-go/commit/83c0904cec69dcf21ec10c54ea666bda18ada831
replace github.com/fatedier/kcp-go => github.com/coder/kcp-go v2.0.4-0.20220409183554-83c0904cec69+incompatible
feat: Add Tailscale networking (#3505) * fix: Add coder user to docker group on installation This makes for a simpler setup, and reduces the likelihood a user runs into a strange issue. * Add wgnet * Add ping * Add listening * Finish refactor to make this work * Add interface for swapping * Fix conncache with interface * chore: update gvisor * fix tailscale types * linting * more linting * Add coordinator * Add coordinator tests * Fix coordination * It compiles! * Move all connection negotiation in-memory * Migrate coordinator to use net.conn * Add closed func * Fix close listener func * Make reconnecting PTY work * Fix reconnecting PTY * Update CI to Go 1.19 * Add CLI flags for DERP mapping * Fix Tailnet test * Rename ConnCoordinator to TailnetCoordinator * Remove print statement from workspace agent test * Refactor wsconncache to use tailnet * Remove STUN from unit tests * Add migrate back to dump * chore: Upgrade to Go 1.19 This is required as part of #3505. * Fix reconnecting PTY tests * fix: update wireguard-go to fix devtunnel * fix migration numbers * linting * Return early for status if endpoints are empty * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Fix frontend entites * Fix agent bicopy * Fix race condition for the last node * Fix down migration * Fix connection RBAC * Fix migration numbers * Fix forwarding TCP to a local port * Implement ping for tailnet * Rename to ForceHTTP * Add external derpmapping * Expose DERP region names to the API * Add global option to enable Tailscale networking for web * Mark DERP flags hidden while testing * Update DERP map on reconnect * Add close func to workspace agents * Fix race condition in upstream dependency * Fix feature columns race condition Co-authored-by: Colin Adler <colin1adler@gmail.com>
2022-08-31 20:09:44 -05:00
// https://github.com/tcnksm/go-httpstat/pull/29
replace github.com/tcnksm/go-httpstat => github.com/coder/go-httpstat v0.0.0-20230801153223-321c88088322
feat: Add Tailscale networking (#3505) * fix: Add coder user to docker group on installation This makes for a simpler setup, and reduces the likelihood a user runs into a strange issue. * Add wgnet * Add ping * Add listening * Finish refactor to make this work * Add interface for swapping * Fix conncache with interface * chore: update gvisor * fix tailscale types * linting * more linting * Add coordinator * Add coordinator tests * Fix coordination * It compiles! * Move all connection negotiation in-memory * Migrate coordinator to use net.conn * Add closed func * Fix close listener func * Make reconnecting PTY work * Fix reconnecting PTY * Update CI to Go 1.19 * Add CLI flags for DERP mapping * Fix Tailnet test * Rename ConnCoordinator to TailnetCoordinator * Remove print statement from workspace agent test * Refactor wsconncache to use tailnet * Remove STUN from unit tests * Add migrate back to dump * chore: Upgrade to Go 1.19 This is required as part of #3505. * Fix reconnecting PTY tests * fix: update wireguard-go to fix devtunnel * fix migration numbers * linting * Return early for status if endpoints are empty * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Fix frontend entites * Fix agent bicopy * Fix race condition for the last node * Fix down migration * Fix connection RBAC * Fix migration numbers * Fix forwarding TCP to a local port * Implement ping for tailnet * Rename to ForceHTTP * Add external derpmapping * Expose DERP region names to the API * Add global option to enable Tailscale networking for web * Mark DERP flags hidden while testing * Update DERP map on reconnect * Add close func to workspace agents * Fix race condition in upstream dependency * Fix feature columns race condition Co-authored-by: Colin Adler <colin1adler@gmail.com>
2022-08-31 20:09:44 -05:00
// There are a few minor changes we make to Tailscale that we're slowly upstreaming. Compare here:
// https://github.com/tailscale/tailscale/compare/main...coder:tailscale:main
replace tailscale.com => github.com/coder/tailscale v1.1.1-0.20250227024825-c9983534152a
// This is replaced to include
// 1. a fix for a data race: c.f. https://github.com/tailscale/wireguard-go/pull/25
// 2. update to the latest gVisor
replace github.com/tailscale/wireguard-go => github.com/coder/wireguard-go v0.0.0-20240522052547-769cdd7f7818
// Switch to our fork that imports fixes from http://github.com/tailscale/ssh.
// See: https://github.com/coder/coder/issues/3371
//
// Note that http://github.com/tailscale/ssh has been merged into the Tailscale
// repo as tailscale.com/tempfork/gliderlabs/ssh, however, we can't replace the
// subpath and it includes changes to golang.org/x/crypto/ssh as well which
// makes importing it directly a bit messy.
replace github.com/gliderlabs/ssh => github.com/coder/ssh v0.0.0-20231128192721-70855dedb788
// Waiting on https://github.com/imulab/go-scim/pull/95 to merge.
replace github.com/imulab/go-scim/pkg/v2 => github.com/coder/go-scim/pkg/v2 v2.0.0-20230221055123-1d63c1222136
// Adds support for a new Listener from a driver.Connector
// This lets us use rotating authentication tokens for passwords in connection strings
// which we use in the awsiamrds package.
replace github.com/lib/pq => github.com/coder/pq v1.10.5-0.20240813183442-0c420cb5a048
// Removes an init() function that causes terminal sequences to be printed to the web terminal when
// used in conjunction with agent-exec. See https://github.com/coder/coder/pull/15817
replace github.com/charmbracelet/bubbletea => github.com/coder/bubbletea v1.2.2-0.20241212190825-007a1cdb2c41
require (
cdr.dev/slog v1.6.2-0.20241112041820-0ec81e6e67bb
cloud.google.com/go/compute/metadata v0.6.0
2023-02-22 19:53:21 -06:00
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/adrg/xdg v0.5.0
github.com/ammario/tlru v0.4.0
github.com/andybalholm/brotli v1.1.1
github.com/aquasecurity/trivy-iac v0.8.0
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
github.com/awalterschulze/gographviz v2.0.3+incompatible
github.com/aws/smithy-go v1.22.2
github.com/bgentry/speakeasy v0.2.0
github.com/bramvdbogaerde/go-scp v1.5.0
github.com/briandowns/spinner v1.18.1
2022-11-04 12:32:55 -05:00
github.com/cakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5
github.com/cenkalti/backoff/v4 v4.3.0
github.com/cespare/xxhash/v2 v2.3.0
github.com/charmbracelet/bubbles v0.20.0
github.com/charmbracelet/bubbletea v1.1.0
github.com/charmbracelet/glamour v0.8.0
github.com/charmbracelet/lipgloss v1.0.0
github.com/chromedp/cdproto v0.0.0-20241003230502-a4a8f7c660df
github.com/chromedp/chromedp v0.11.0
github.com/cli/safeexec v1.0.1
github.com/coder/flog v1.1.0
github.com/coder/guts v1.0.1
2023-09-21 14:33:13 -04:00
github.com/coder/pretty v0.0.0-20230908205945-e89ba86370e0
github.com/coder/quartz v0.1.2
chore: bump github.com/coder/retry from 1.4.0 to 1.5.1 (#10672) Bumps [github.com/coder/retry](https://github.com/coder/retry) from 1.4.0 to 1.5.1. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/coder/retry/commit/f5ccc4d2d45135bf65c7ccc5e78942dd7df19c84"><code>f5ccc4d</code></a> Fix double-scaling bug</li> <li><a href="https://github.com/coder/retry/commit/14c7c27e14e40827a36754dd2071b09249d426f8"><code>14c7c27</code></a> Add support for Jitter (<a href="https://redirect.github.com/coder/retry/issues/28">#28</a>)</li> <li><a href="https://github.com/coder/retry/commit/12627b155ff59e5f62c15d262ba1ba06f17daa90"><code>12627b1</code></a> Update README to give a goto example</li> <li><a href="https://github.com/coder/retry/commit/a8710231a1a7a7f884eb894aca0bee24c5caf21c"><code>a871023</code></a> Make minor format improvements to README</li> <li>See full diff in <a href="https://github.com/coder/retry/compare/v1.4.0...v1.5.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/coder/retry&package-manager=go_modules&previous-version=1.4.0&new-version=1.5.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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details>
2023-11-14 10:00:07 -06:00
github.com/coder/retry v1.5.1
github.com/coder/serpent v0.10.0
github.com/coder/terraform-provider-coder/v2 v2.1.3
github.com/coder/websocket v1.8.12
github.com/coder/wgtunnel v0.1.13-0.20240522110300-ade90dfb2da0
github.com/coreos/go-oidc/v3 v3.12.0
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
github.com/creack/pty v1.1.21
2023-06-14 21:52:01 +10:00
github.com/dave/dst v0.27.2
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/dblohm7/wingoes v0.0.0-20240820181039-f2b84150679e
github.com/elastic/go-sysinfo v1.15.0
github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21
github.com/emersion/go-smtp v0.21.2
github.com/fatih/color v1.18.0
github.com/fatih/structs v1.1.0
github.com/fatih/structtag v1.2.0
chore: bump github.com/fergusstrange/embedded-postgres from 1.29.0 to 1.30.0 (#15790) Bumps [github.com/fergusstrange/embedded-postgres](https://github.com/fergusstrange/embedded-postgres) from 1.29.0 to 1.30.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fergusstrange/embedded-postgres/releases">github.com/fergusstrange/embedded-postgres's releases</a>.</em></p> <blockquote> <h2>v1.30.0</h2> <h2>What's Changed</h2> <ul> <li>fix: error typos and introduce error types by <a href="https://github.com/dhaus67"><code>@​dhaus67</code></a> in <a href="https://redirect.github.com/fergusstrange/embedded-postgres/pull/143">fergusstrange/embedded-postgres#143</a></li> <li>fix: detect pg_ctl exists instead of bin dir by <a href="https://github.com/wenerme"><code>@​wenerme</code></a> in <a href="https://redirect.github.com/fergusstrange/embedded-postgres/pull/144">fergusstrange/embedded-postgres#144</a></li> <li>fix: StartParameters on Windows by <a href="https://github.com/hugodutka"><code>@​hugodutka</code></a> in <a href="https://redirect.github.com/fergusstrange/embedded-postgres/pull/146">fergusstrange/embedded-postgres#146</a></li> <li>Fix osx builds by <a href="https://github.com/fergusstrange"><code>@​fergusstrange</code></a> in <a href="https://redirect.github.com/fergusstrange/embedded-postgres/pull/147">fergusstrange/embedded-postgres#147</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/dhaus67"><code>@​dhaus67</code></a> made their first contribution in <a href="https://redirect.github.com/fergusstrange/embedded-postgres/pull/143">fergusstrange/embedded-postgres#143</a></li> <li><a href="https://github.com/wenerme"><code>@​wenerme</code></a> made their first contribution in <a href="https://redirect.github.com/fergusstrange/embedded-postgres/pull/144">fergusstrange/embedded-postgres#144</a></li> <li><a href="https://github.com/hugodutka"><code>@​hugodutka</code></a> made their first contribution in <a href="https://redirect.github.com/fergusstrange/embedded-postgres/pull/146">fergusstrange/embedded-postgres#146</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/fergusstrange/embedded-postgres/compare/v1.29.0...v1.30.0">https://github.com/fergusstrange/embedded-postgres/compare/v1.29.0...v1.30.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fergusstrange/embedded-postgres/commit/6192f2a75d261b76166d852e0e763f57d14e47fa"><code>6192f2a</code></a> Clean up go mod files</li> <li><a href="https://github.com/fergusstrange/embedded-postgres/commit/24809fa067810e861262fd804135e30295f7fde8"><code>24809fa</code></a> Fix osx builds (<a href="https://redirect.github.com/fergusstrange/embedded-postgres/issues/147">#147</a>)</li> <li><a href="https://github.com/fergusstrange/embedded-postgres/commit/f5c275bdc5742cf324a86bd8bfd52655b1600800"><code>f5c275b</code></a> fix: StartParameters on Windows (<a href="https://redirect.github.com/fergusstrange/embedded-postgres/issues/146">#146</a>)</li> <li><a href="https://github.com/fergusstrange/embedded-postgres/commit/7c0ced30394508c74e955df154e4ee7c7b560b30"><code>7c0ced3</code></a> fix: detect pg_ctl exists instead of bin dir (<a href="https://redirect.github.com/fergusstrange/embedded-postgres/issues/144">#144</a>)</li> <li><a href="https://github.com/fergusstrange/embedded-postgres/commit/9ff00240d062ddfa7a26d0752381fedda09cb2de"><code>9ff0024</code></a> fix: error types and introduce error types (<a href="https://redirect.github.com/fergusstrange/embedded-postgres/issues/143">#143</a>)</li> <li>See full diff in <a href="https://github.com/fergusstrange/embedded-postgres/compare/v1.29.0...v1.30.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/fergusstrange/embedded-postgres&package-manager=go_modules&previous-version=1.29.0&new-version=1.30.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-12-09 17:47:23 +05:00
github.com/fergusstrange/embedded-postgres v1.30.0
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa
github.com/gen2brain/beeep v0.0.0-20220402123239-6a3042f4b71a
github.com/gliderlabs/ssh v0.3.4
github.com/go-chi/chi/v5 v5.1.0
github.com/go-chi/cors v1.2.1
github.com/go-chi/httprate v0.14.1
github.com/go-chi/render v1.0.1
chore: bump github.com/go-jose/go-jose/v4 from 4.0.2 to 4.0.5 (#16690) Bumps [github.com/go-jose/go-jose/v4](https://github.com/go-jose/go-jose) from 4.0.2 to 4.0.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-jose/go-jose/releases">github.com/go-jose/go-jose/v4's releases</a>.</em></p> <blockquote> <h2>v4.0.5</h2> <h2>What's Changed</h2> <ul> <li>Don't allow unbounded amounts of splits by <a href="https://github.com/mcpherrinm"><code>@​mcpherrinm</code></a> in <a href="https://redirect.github.com/go-jose/go-jose/pull/167">go-jose/go-jose#167</a></li> </ul> <p>Fixes <a href="https://github.com/go-jose/go-jose/security/advisories/GHSA-c6gw-w398-hv78">https://github.com/go-jose/go-jose/security/advisories/GHSA-c6gw-w398-hv78</a></p> <p>Various other dependency updates, small fixes, and documentation updates in the full changelog</p> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/tgeoghegan"><code>@​tgeoghegan</code></a> made their first contribution in <a href="https://redirect.github.com/go-jose/go-jose/pull/161">go-jose/go-jose#161</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-jose/go-jose/compare/v4.0.4...v4.0.5">https://github.com/go-jose/go-jose/compare/v4.0.4...v4.0.5</a></p> <h2>Version 4.0.4</h2> <h1>Fixed</h1> <ul> <li>Reverted &quot;Allow unmarshalling JSONWebKeySets with unsupported key types&quot; as a breaking change. See <a href="https://redirect.github.com/go-jose/go-jose/issues/136">#136</a> / <a href="https://redirect.github.com/go-jose/go-jose/issues/137">#137</a>.</li> </ul> <h2>Version 4.0.3</h2> <h2>Changed</h2> <ul> <li>Allow unmarshalling JSONWebKeySets with unsupported key types (<a href="https://redirect.github.com/go-jose/go-jose/issues/130">#130</a>)</li> <li>Document that OpaqueKeyEncrypter can't be implemented (for now) (<a href="https://redirect.github.com/go-jose/go-jose/issues/129">#129</a>)</li> <li>Dependency updates</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/go-jose/go-jose/blob/main/CHANGELOG.md">github.com/go-jose/go-jose/v4's changelog</a>.</em></p> <blockquote> <h1>v4.0.4</h1> <h2>Fixed</h2> <ul> <li>Reverted &quot;Allow unmarshalling JSONWebKeySets with unsupported key types&quot; as a breaking change. See <a href="https://redirect.github.com/go-jose/go-jose/issues/136">#136</a> / <a href="https://redirect.github.com/go-jose/go-jose/issues/137">#137</a>.</li> </ul> <h1>v4.0.3</h1> <h2>Changed</h2> <ul> <li>Allow unmarshalling JSONWebKeySets with unsupported key types (<a href="https://redirect.github.com/go-jose/go-jose/issues/130">#130</a>)</li> <li>Document that OpaqueKeyEncrypter can't be implemented (for now) (<a href="https://redirect.github.com/go-jose/go-jose/issues/129">#129</a>)</li> <li>Dependency updates</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-jose/go-jose/commit/99b346cec4e86d102284642c5dcbe9bb0cacfc22"><code>99b346c</code></a> Don't allow unbounded amounts of splits (<a href="https://redirect.github.com/go-jose/go-jose/issues/167">#167</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/22811e77bac0d484ff060d5c4351b7e295df92fb"><code>22811e7</code></a> Fix broken link in README.md (<a href="https://redirect.github.com/go-jose/go-jose/issues/161">#161</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/9dde8493b25c1b301ca97110f57c7774513f572c"><code>9dde849</code></a> Remove CLA mentions from CONTRIBUTING.md (<a href="https://redirect.github.com/go-jose/go-jose/issues/160">#160</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/89172c5b51f2a7492b6fc2ea22d03777c4673bbe"><code>89172c5</code></a> Bump golang.org/x/crypto from 0.31.0 to 0.32.0 (<a href="https://redirect.github.com/go-jose/go-jose/issues/158">#158</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/ee05e015574c7d4c55b9a802e9637327d7d2606a"><code>ee05e01</code></a> Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (<a href="https://redirect.github.com/go-jose/go-jose/issues/157">#157</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/c0aef3ef5eaf5ad5fdfae9de426ebea91778f3e4"><code>c0aef3e</code></a> Bump golang.org/x/crypto from 0.25.0 to 0.31.0 (<a href="https://redirect.github.com/go-jose/go-jose/issues/156">#156</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/fdc2ceb0bbe2a29c582edfe07ea914c8dacd7e1b"><code>fdc2ceb</code></a> Remove export disclaimer (<a href="https://redirect.github.com/go-jose/go-jose/issues/146">#146</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/10c69ef86e2b6997b25552aa391b48f1240cfe66"><code>10c69ef</code></a> Short circuit return errors from <code>JSONWebKey.UnmarshalJSON()</code> (<a href="https://redirect.github.com/go-jose/go-jose/issues/141">#141</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/15bc4c2ac4575ad865f078390db61d44530f985d"><code>15bc4c2</code></a> Update CHANGELOG for 4.0.4 (<a href="https://redirect.github.com/go-jose/go-jose/issues/138">#138</a>)</li> <li><a href="https://github.com/go-jose/go-jose/commit/f3534ca2c308b8394677f90d8ab3651be3a16e1c"><code>f3534ca</code></a> Revert <a href="https://redirect.github.com/go-jose/go-jose/issues/130">#130</a>: JSONWebKeySet: ignore unsupported key types (<a href="https://redirect.github.com/go-jose/go-jose/issues/137">#137</a>)</li> <li>Additional commits viewable in <a href="https://github.com/go-jose/go-jose/compare/v4.0.2...v4.0.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/go-jose/go-jose/v4&package-manager=go_modules&previous-version=4.0.2&new-version=4.0.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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/coder/coder/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-24 23:01:56 +00:00
github.com/go-jose/go-jose/v4 v4.0.5
github.com/go-logr/logr v1.4.2
chore: bump github.com/go-playground/validator/v10 from 10.24.0 to 10.25.0 (#16590) Bumps [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) from 10.24.0 to 10.25.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-playground/validator/releases">github.com/go-playground/validator/v10's releases</a>.</em></p> <blockquote> <h2>Release 10.25.0</h2> <h2>What's Changed</h2> <ul> <li>Fix postcode_iso3166_alpha2_field validation by <a href="https://github.com/ddevcap"><code>@​ddevcap</code></a> in <a href="https://redirect.github.com/go-playground/validator/pull/1359">go-playground/validator#1359</a></li> <li>Update README to replace the Travis CI badge with a GitHub Actions badge by <a href="https://github.com/nodivbyzero"><code>@​nodivbyzero</code></a> in <a href="https://redirect.github.com/go-playground/validator/pull/1362">go-playground/validator#1362</a></li> <li>chore: using errors.As instead of type assertion by <a href="https://github.com/fatelei"><code>@​fatelei</code></a> in <a href="https://redirect.github.com/go-playground/validator/pull/1346">go-playground/validator#1346</a></li> <li>Fix/remove issue template md by <a href="https://github.com/ganeshdipdumbare"><code>@​ganeshdipdumbare</code></a> in <a href="https://redirect.github.com/go-playground/validator/pull/1375">go-playground/validator#1375</a></li> <li>feat: Add support for omitting empty and zero values in validation (including nil pointer and empty content of pointer) by <a href="https://github.com/zeewell"><code>@​zeewell</code></a> in <a href="https://redirect.github.com/go-playground/validator/pull/1289">go-playground/validator#1289</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/ddevcap"><code>@​ddevcap</code></a> made their first contribution in <a href="https://redirect.github.com/go-playground/validator/pull/1359">go-playground/validator#1359</a></li> <li><a href="https://github.com/fatelei"><code>@​fatelei</code></a> made their first contribution in <a href="https://redirect.github.com/go-playground/validator/pull/1346">go-playground/validator#1346</a></li> <li><a href="https://github.com/zeewell"><code>@​zeewell</code></a> made their first contribution in <a href="https://redirect.github.com/go-playground/validator/pull/1289">go-playground/validator#1289</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-playground/validator/compare/v10.24.0...v10.25.0">https://github.com/go-playground/validator/compare/v10.24.0...v10.25.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-playground/validator/commit/02409170a8b58d92ee6f4ae5fa2889b9adef5bf0"><code>0240917</code></a> Update README.md</li> <li><a href="https://github.com/go-playground/validator/commit/f5f02dcb442ff50ac385d5963e9a7b75b01b6544"><code>f5f02dc</code></a> feat: Add support for omitting empty and zero values in validation (including...</li> <li><a href="https://github.com/go-playground/validator/commit/c171f2df3cf4e21424033e3a856d1c8535de1a6f"><code>c171f2d</code></a> Fix/remove issue template md (<a href="https://redirect.github.com/go-playground/validator/issues/1375">#1375</a>)</li> <li><a href="https://github.com/go-playground/validator/commit/e564451a1e151ec5a714cbe14b0dd344e05bb39d"><code>e564451</code></a> chore: using errors.As instead of type assertion (<a href="https://redirect.github.com/go-playground/validator/issues/1346">#1346</a>)</li> <li><a href="https://github.com/go-playground/validator/commit/57dcfdc2e8c27e1be511d1eb6faac2f4772d0015"><code>57dcfdc</code></a> Update README to replace the Travis CI badge with a GitHub Actions badge (<a href="https://redirect.github.com/go-playground/validator/issues/1362">#1362</a>)</li> <li><a href="https://github.com/go-playground/validator/commit/b1111542c1b3658f1a90fd070f7fd2b4f27a3fcc"><code>b111154</code></a> Fix postcode_iso3166_alpha2_field validation (<a href="https://redirect.github.com/go-playground/validator/issues/1359">#1359</a>)</li> <li>See full diff in <a href="https://github.com/go-playground/validator/compare/v10.24.0...v10.25.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/go-playground/validator/v10&package-manager=go_modules&previous-version=10.24.0&new-version=10.25.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>
2025-02-17 12:23:55 +00:00
github.com/go-playground/validator/v10 v10.25.0
github.com/gofrs/flock v0.12.0
chore: bump github.com/gohugoio/hugo from 0.142.0 to 0.143.0 (#16388) Bumps [github.com/gohugoio/hugo](https://github.com/gohugoio/hugo) from 0.142.0 to 0.143.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gohugoio/hugo/releases">github.com/gohugoio/hugo's releases</a>.</em></p> <blockquote> <h2>v0.143.0</h2> <p>This is mostly a bug fix release, ironing out some quirks with the partial server rebuilds etc., but notable is also the new <a href="https://gohugo.io/functions/resources/getremote/#responseheaders">responseHeaders </a> option on <code>resources.GetRemote</code> that allows you to extract headers from the server’s response.</p> <h2>Bug fixes</h2> <ul> <li>Fix some server/watch rebuild issues db28695ff <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13316">#13316</a></li> <li>Fix &quot;concurrent map iteration and map write&quot; in pages from data 329b2342f <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13254">#13254</a></li> <li>Fix TailwindCSS related server rebuild issue 6c68142cc <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13316">#13316</a></li> <li>Fix some server rebuild issues for non-HTML custom output formats cd7dc7a37 <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13014">#13014</a></li> <li>Fix cascade with overlapping sections bb7b3d3cd <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/12465">#12465</a></li> <li>markup/goldmark: Fix typo in func comment f704d7569 <a href="https://github.com/chalin"><code>@​chalin</code></a></li> </ul> <h2>Improvements</h2> <ul> <li>Don't re-render aliases on server rebuilds 778f0d900 <a href="https://github.com/bep"><code>@​bep</code></a></li> <li>tpl/tplimpl: Remove leading whitespaces produced by Youtube shortcode 13b208e2f <a href="https://github.com/alex-shpak"><code>@​alex-shpak</code></a></li> <li>resources: Remove debug statement 33b46d8a4 <a href="https://github.com/jmooring"><code>@​jmooring</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13320">#13320</a></li> <li>markup/goldmark: Trim space from blockquote render hook text e08d9af21 <a href="https://github.com/jmooring"><code>@​jmooring</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13302">#13302</a></li> <li>parser/pageparser: Don't allow parameters after closing tag in shortcodes c939c33fd <a href="https://github.com/guilhas07"><code>@​guilhas07</code></a></li> <li>tpl/tplimpl: Improve shortcode test coverage 873a5cda1 <a href="https://github.com/jmooring"><code>@​jmooring</code></a></li> <li>tpl/tplimpl: Deprecate gist shortcode f42a4b6af <a href="https://github.com/jmooring"><code>@​jmooring</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13211">#13211</a></li> <li>resources: Remove conditional used for debugging a5637831c <a href="https://github.com/bep"><code>@​bep</code></a></li> <li>resources: Add responseHeaders option to resources.GetRemote 68586c891 <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/12521">#12521</a></li> <li>tpl/tplimpl: Skip TestTemplateFuncsExamples on s390x 51bb2feda <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13204">#13204</a></li> <li>Make cascade front matter order deterministic 7f0f50b13 <a href="https://github.com/bep"><code>@​bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/12594">#12594</a></li> <li>tpl/tplimpl: Deprecate comment shortcode 77a8e347b <a href="https://github.com/jmooring"><code>@​jmooring</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gohugoio/hugo/commit/ee48d9692af281180aea00645d86f3231a5231df"><code>ee48d96</code></a> releaser: Bump versions for release of 0.143.0</li> <li><a href="https://github.com/gohugoio/hugo/commit/db28695ff505f84aee69c72dcc9e192f674c86a1"><code>db28695</code></a> Fix some server/watch rebuild issues</li> <li><a href="https://github.com/gohugoio/hugo/commit/778f0d90024fa9ad6e436b99b333248074c7d5d8"><code>778f0d9</code></a> Don't re-render aliases on server rebuilds</li> <li><a href="https://github.com/gohugoio/hugo/commit/13b208e2f70fd0bfad8a4ae33a30afb5fd4b7477"><code>13b208e</code></a> tpl/tplimpl: Remove leading whitespaces produced by Youtube shortcode</li> <li><a href="https://github.com/gohugoio/hugo/commit/329b2342f05fdc350711b7ea2928b70cafd25336"><code>329b234</code></a> Fix &quot;concurrent map iteration and map write&quot; in pages from data</li> <li><a href="https://github.com/gohugoio/hugo/commit/33b46d8a418f98cc132250e0ec49e1c153e908d1"><code>33b46d8</code></a> resources: Remove debug statement</li> <li><a href="https://github.com/gohugoio/hugo/commit/6c68142cc1338640e2bfe2add661a7b4d7bee6ab"><code>6c68142</code></a> Fix TailwindCSS related server rebuild issue</li> <li><a href="https://github.com/gohugoio/hugo/commit/e08d9af21e9a29054c98c9a164fce2a0e8033fcf"><code>e08d9af</code></a> markup/goldmark: Trim space from blockquote render hook text</li> <li><a href="https://github.com/gohugoio/hugo/commit/cd7dc7a37252b93799225af96cc011aaefdaa67f"><code>cd7dc7a</code></a> Fix some server rebuild issues for non-HTML custom output formats</li> <li><a href="https://github.com/gohugoio/hugo/commit/c939c33fd3dca9a2b21960866031b5ec9dad0123"><code>c939c33</code></a> parser/pageparser: Don't allow parameters after closing tag in shortcodes</li> <li>Additional commits viewable in <a href="https://github.com/gohugoio/hugo/compare/v0.142.0...v0.143.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/gohugoio/hugo&package-manager=go_modules&previous-version=0.142.0&new-version=0.143.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>
2025-02-03 12:26:56 +00:00
github.com/gohugoio/hugo v0.143.0
github.com/golang-jwt/jwt/v4 v4.5.1
github.com/golang-migrate/migrate/v4 v4.18.1
github.com/gomarkdown/markdown v0.0.0-20240930133441-72d49d9543d8
chore: bump github.com/google/go-cmp from 0.6.0 to 0.7.0 (#16677) Bumps [github.com/google/go-cmp](https://github.com/google/go-cmp) from 0.6.0 to 0.7.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/go-cmp/releases">github.com/google/go-cmp's releases</a>.</em></p> <blockquote> <h2>v0.7.0</h2> <p>New API:</p> <ul> <li>(<a href="https://redirect.github.com/google/go-cmp/issues/367">#367</a>) Support compare functions with SortSlices and SortMaps</li> </ul> <p>Panic messaging:</p> <ul> <li>(<a href="https://redirect.github.com/google/go-cmp/issues/370">#370</a>) Detect proto.Message types when failing to export a field</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/go-cmp/commit/9b12f366a942ebc7254abc7f32ca05068b455fb7"><code>9b12f36</code></a> Detect proto.Message types when failing to export a field (<a href="https://redirect.github.com/google/go-cmp/issues/370">#370</a>)</li> <li><a href="https://github.com/google/go-cmp/commit/4dd3d63d6987c0f84fce8e1d1c5bb59f0badc220"><code>4dd3d63</code></a> fix: type 'aribica' =&gt; 'arabica' (<a href="https://redirect.github.com/google/go-cmp/issues/368">#368</a>)</li> <li><a href="https://github.com/google/go-cmp/commit/391980c4b2e1cc2c30d2bfae6039815350490495"><code>391980c</code></a> Support compare functions with SortSlices and SortMaps (<a href="https://redirect.github.com/google/go-cmp/issues/367">#367</a>)</li> <li>See full diff in <a href="https://github.com/google/go-cmp/compare/v0.6.0...v0.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/google/go-cmp&package-manager=go_modules&previous-version=0.6.0&new-version=0.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot 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>
2025-02-24 13:34:04 +00:00
github.com/google/go-cmp v0.7.0
github.com/google/go-github/v43 v43.0.1-0.20220414155304-00e42332e405
github.com/google/go-github/v61 v61.0.0
github.com/google/uuid v1.6.0
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/go-reap v0.0.0-20170704170343-bf58d8a43e7b
github.com/hashicorp/go-version v1.7.0
github.com/hashicorp/hc-install v0.9.1
github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f
github.com/hashicorp/terraform-json v0.24.0
github.com/hashicorp/yamux v0.1.2
refactor: PTY & SSH (#7100) * Add ssh tests for longoutput, orphan Signed-off-by: Spike Curtis <spike@coder.com> * PTY/SSH tests & improvements Signed-off-by: Spike Curtis <spike@coder.com> * Fix some tests Signed-off-by: Spike Curtis <spike@coder.com> * Fix linting Signed-off-by: Spike Curtis <spike@coder.com> * fmt Signed-off-by: Spike Curtis <spike@coder.com> * Fix windows test Signed-off-by: Spike Curtis <spike@coder.com> * Windows copy test Signed-off-by: Spike Curtis <spike@coder.com> * WIP Windows pty handling Signed-off-by: Spike Curtis <spike@coder.com> * Fix truncation tests Signed-off-by: Spike Curtis <spike@coder.com> * Appease linter/fmt Signed-off-by: Spike Curtis <spike@coder.com> * Fix typo Signed-off-by: Spike Curtis <spike@coder.com> * Rework truncation test to not assume OS buffers Signed-off-by: Spike Curtis <spike@coder.com> * Disable orphan test on Windows --- uses sh Signed-off-by: Spike Curtis <spike@coder.com> * agent_test running SSH in pty use ptytest.Start Signed-off-by: Spike Curtis <spike@coder.com> * More detail about closing pseudoconsole on windows Signed-off-by: Spike Curtis <spike@coder.com> * Code review fixes Signed-off-by: Spike Curtis <spike@coder.com> * Rearrange ptytest method order Signed-off-by: Spike Curtis <spike@coder.com> * Protect pty.Resize on windows from races Signed-off-by: Spike Curtis <spike@coder.com> * Fix windows bugs Signed-off-by: Spike Curtis <spike@coder.com> * PTY doesn't extend PTYCmd Signed-off-by: Spike Curtis <spike@coder.com> * Fix windows types Signed-off-by: Spike Curtis <spike@coder.com> --------- Signed-off-by: Spike Curtis <spike@coder.com>
2023-04-24 14:53:57 +04:00
github.com/hinshun/vt10x v0.0.0-20220301184237-5011da428d02
github.com/imulab/go-scim/pkg/v2 v2.2.0
github.com/jedib0t/go-pretty/v6 v6.6.0
github.com/jmoiron/sqlx v1.4.0
github.com/justinas/nosurf v1.1.1
2023-11-14 14:12:58 -06:00
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/kirsle/configdir v0.0.0-20170128060238-e45d2f54772f
chore: bump github.com/klauspost/compress from 1.17.11 to 1.18.0 (#16675) Bumps [github.com/klauspost/compress](https://github.com/klauspost/compress) from 1.17.11 to 1.18.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/klauspost/compress/releases">github.com/klauspost/compress's releases</a>.</em></p> <blockquote> <h2>v1.18.0</h2> <h2>What's Changed</h2> <ul> <li>Deprecate Go 1.21 and add 1.24 by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1055">klauspost/compress#1055</a></li> <li>Add unsafe little endian loaders by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1036">klauspost/compress#1036</a></li> <li>fix: check <code>r.err != nil</code> but return a nil value error <code>err</code> by <a href="https://github.com/alingse"><code>@​alingse</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1028">klauspost/compress#1028</a></li> <li>refactor: use built-in <code>min</code> function by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1038">klauspost/compress#1038</a></li> <li>zstd: use <code>slices.Max</code> for max value in slice by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1041">klauspost/compress#1041</a></li> <li>flate: Simplify L4-6 loading by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1043">klauspost/compress#1043</a></li> <li>flate: Simplify matchlen (remove asm) by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1045">klauspost/compress#1045</a></li> <li>s2: Add block decode fuzzer by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1044">klauspost/compress#1044</a></li> <li>s2: Improve small block compression speed w/o asm by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1048">klauspost/compress#1048</a></li> <li>flate: Fix matchlen L5+L6 by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1049">klauspost/compress#1049</a></li> <li>flate: Cleanup &amp; reduce casts by <a href="https://github.com/klauspost"><code>@​klauspost</code></a> in <a href="https://redirect.github.com/klauspost/compress/pull/1050">klauspost/compress#1050</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/tcpdumppy"><code>@​tcpdumppy</code></a> made their first contribution in <a href="https://redirect.github.com/klauspost/compress/pull/1021">klauspost/compress#1021</a></li> <li><a href="https://github.com/sam9291"><code>@​sam9291</code></a> made their first contribution in <a href="https://redirect.github.com/klauspost/compress/pull/1022">klauspost/compress#1022</a></li> <li><a href="https://github.com/dezza"><code>@​dezza</code></a> made their first contribution in <a href="https://redirect.github.com/klauspost/compress/pull/1023">klauspost/compress#1023</a></li> <li><a href="https://github.com/alingse"><code>@​alingse</code></a> made their first contribution in <a href="https://redirect.github.com/klauspost/compress/pull/1028">klauspost/compress#1028</a></li> <li><a href="https://github.com/hyunsooda"><code>@​hyunsooda</code></a> made their first contribution in <a href="https://redirect.github.com/klauspost/compress/pull/1031">klauspost/compress#1031</a></li> <li><a href="https://github.com/Juneezee"><code>@​Juneezee</code></a> made their first contribution in <a href="https://redirect.github.com/klauspost/compress/pull/1038">klauspost/compress#1038</a></li> <li><a href="https://github.com/Bbulatov"><code>@​Bbulatov</code></a> made their first contribution in <a href="https://redirect.github.com/klauspost/compress/pull/1052">klauspost/compress#1052</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/klauspost/compress/compare/v1.17.11...v1.18.0">https://github.com/klauspost/compress/compare/v1.17.11...v1.18.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/klauspost/compress/commit/8e79dc4b98d4c5a09c62a2546b79c14edf7c3e38"><code>8e79dc4</code></a> Deprecate Go 1.21 and add 1.24 (<a href="https://redirect.github.com/klauspost/compress/issues/1055">#1055</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/df8e99c8d015080686afb9b70a88791dd16a97a6"><code>df8e99c</code></a> build(deps): bump the github-actions group with 2 updates (<a href="https://redirect.github.com/klauspost/compress/issues/1053">#1053</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/7787431d606fe7748391cb5009cee0cf966d1cd9"><code>7787431</code></a> zstd: fix unused debug code (<a href="https://redirect.github.com/klauspost/compress/issues/1052">#1052</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/0bf3ecbea777ec39f7919b47e464a046254e29a8"><code>0bf3ecb</code></a> flate: Cleanup &amp; reduce casts (<a href="https://redirect.github.com/klauspost/compress/issues/1050">#1050</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/e0f89a9638ea2c7d21d9de0044efde931959eabe"><code>e0f89a9</code></a> flate: Fix matchlen L5+L6 (<a href="https://redirect.github.com/klauspost/compress/issues/1049">#1049</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/c8a8470492769c69e56a348e5142734cab19664e"><code>c8a8470</code></a> s2: Improve small block compression speed w/o asm (<a href="https://redirect.github.com/klauspost/compress/issues/1048">#1048</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/b05b993abb0da411a09cff9387877a4026c38906"><code>b05b993</code></a> s2: Add block decode fuzzer (<a href="https://redirect.github.com/klauspost/compress/issues/1044">#1044</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/aafbabd27ac86586bf3d7458e4efe99476716623"><code>aafbabd</code></a> flate: Simplify matchlen (remove asm) (<a href="https://redirect.github.com/klauspost/compress/issues/1045">#1045</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/dbaa9c1172b66d27d918b0e82a014d97f5dea2e5"><code>dbaa9c1</code></a> flate: Simplify l4-6 loading (<a href="https://redirect.github.com/klauspost/compress/issues/1043">#1043</a>)</li> <li><a href="https://github.com/klauspost/compress/commit/4fa2036c90af5117d4c79f9fa9872bdb16de613c"><code>4fa2036</code></a> Add unsafe little endian loaders (<a href="https://redirect.github.com/klauspost/compress/issues/1036">#1036</a>)</li> <li>Additional commits viewable in <a href="https://github.com/klauspost/compress/compare/v1.17.11...v1.18.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/klauspost/compress&package-manager=go_modules&previous-version=1.17.11&new-version=1.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>
2025-02-24 13:33:45 +00:00
github.com/klauspost/compress v1.18.0
github.com/lib/pq v1.10.9
github.com/mattn/go-isatty v0.0.20
github.com/mitchellh/go-wordwrap v1.0.1
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
chore: bump github.com/moby/moby from 27.5.0+incompatible to 28.0.0+incompatible (#16674) Bumps [github.com/moby/moby](https://github.com/moby/moby) from 27.5.0+incompatible to 28.0.0+incompatible. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/moby/moby/releases">github.com/moby/moby's releases</a>.</em></p> <blockquote> <h2>v28.0.0</h2> <h1>28.0.0</h1> <p>For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:</p> <ul> <li><a href="https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.0.0">docker/cli, 28.0.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.0.0">moby/moby, 28.0.0 milestone</a></li> <li>Deprecated and removed features, see <a href="https://github.com/docker/cli/blob/v28.0.0/docs/deprecated.md">Deprecated Features</a>.</li> <li>Changes to the Engine API, see <a href="https://github.com/moby/moby/blob/v28.0.0/docs/api/version-history.md">API version history</a>.</li> </ul> <h2>New</h2> <ul> <li>Add ability to mount an image inside a container via <code>--mount type=image</code>. <a href="https://redirect.github.com/moby/moby/pull/48798">moby/moby#48798</a> <ul> <li>You can also specify <code>--mount type=image,image-subpath=[subpath],...</code> option to mount a specific path from the image. <a href="https://redirect.github.com/docker/cli/pull/5755">docker/cli#5755</a></li> </ul> </li> <li><code>docker images --tree</code> now shows metadata badges. <a href="https://redirect.github.com/docker/cli/pull/5744">docker/cli#5744</a></li> <li><code>docker load</code>, <code>docker save</code>, and <code>docker history</code> now support a <code>--platform</code> flag allowing you to choose a specific platform for single-platform operations on multi-platform images. <a href="https://redirect.github.com/docker/cli/pull/5331">docker/cli#5331</a></li> <li>Add <code>OOMScoreAdj</code> to <code>docker service create</code> and <code>docker stack</code>. <a href="https://redirect.github.com/docker/cli/pull/5145">docker/cli#5145</a></li> <li><code>docker buildx prune</code> now supports <code>reserved-space</code>, <code>max-used-space</code>, <code>min-free-space</code> and <code>keep-bytes</code> filters. <a href="https://redirect.github.com/moby/moby/pull/48720">moby/moby#48720</a></li> <li>Windows: Add support for running containerd as a child process of the daemon, instead of using a system-installed containerd. <a href="https://redirect.github.com/moby/moby/pull/47955">moby/moby#47955</a></li> </ul> <h2>Networking</h2> <ul> <li>The <code>docker-proxy</code> binary has been updated, older versions will not work with the updated <code>dockerd</code>. <a href="https://redirect.github.com/moby/moby/pull/48132">moby/moby#48132</a> <ul> <li>Close a window in which the userland proxy (<code>docker-proxy</code>) could accept TCP connections, that would then fail after <code>iptables</code> NAT rules were set up.</li> <li>The executable <code>rootlesskit-docker-proxy</code> is no longer used, it has been removed from the build and distribution.</li> </ul> </li> <li>DNS nameservers read from the host's <code>/etc/resolv.conf</code> are now always accessed from the host's network namespace. <a href="https://redirect.github.com/moby/moby/pull/48290">moby/moby#48290</a> <ul> <li>When the host's <code>/etc/resolv.conf</code> contains no nameservers and there are no <code>--dns</code> overrides, Google's DNS servers are no longer used, apart from by the default bridge network and in build containers.</li> </ul> </li> <li>Container interfaces in bridge and macvlan networks now use randomly generated MAC addresses. <a href="https://redirect.github.com/moby/moby/pull/48808">moby/moby#48808</a> <ul> <li>Gratuitous ARP / Neighbour Advertisement messages will be sent when the interfaces are started so that, when IP addresses are reused, they're associated with the newly generated MAC address.</li> <li>IPv6 addresses in the default bridge network are now IPAM-assigned, rather than being derived from the MAC address.</li> </ul> </li> <li>The deprecated OCI <code>prestart</code> hook is now only used by build containers. For other containers, network interfaces are added to the network namespace after task creation is complete, before the container task is started. <a href="https://redirect.github.com/moby/moby/pull/47406">moby/moby#47406</a></li> <li>Add a new <code>gw-priority</code> option to <code>docker run</code>, <code>docker container create</code>, and <code>docker network connect</code>. This option will be used by the Engine to determine which network provides the default gateway for a container. On <code>docker run</code>, this option is only available through the extended <code>--network</code> syntax. <a href="https://redirect.github.com/docker/cli/pull/5664">docker/cli#5664</a></li> <li>Add a new netlabel <code>com.docker.network.endpoint.ifname</code> to customize the interface name used when connecting a container to a network. It's supported by all built-in network drivers on Linux. <a href="https://redirect.github.com/moby/moby/pull/49155">moby/moby#49155</a> <ul> <li>When a container is created with multiple networks specified, there's no guarantee on the order networks will be connected to the container. So, if a custom interface name uses the same prefix as the auto-generated names, for example <code>eth</code>, the container might fail to start.</li> <li>The recommended practice is to use a different prefix, for example <code>en0</code>, or a numerical suffix high enough to never collide, for example <code>eth100</code>.</li> <li>This label can be specified on <code>docker network connect</code> via the <code>--driver-opt</code> flag, for example <code>docker network connect --driver-opt=com.docker.network.endpoint.ifname=foobar …</code>.</li> <li>Or via the long-form <code>--network</code> flag on <code>docker run</code>, for example <code>docker run --network=name=bridge,driver-opt=com.docker.network.endpoint.ifname=foobar …</code></li> </ul> </li> <li>If a custom network driver reports capability <code>GwAllocChecker</code> then, before a network is created, it will get a <code>GwAllocCheckerRequest</code> with the network's options. The custom driver may then reply that no gateway IP address should be allocated. <a href="https://redirect.github.com/moby/moby/pull/49372">moby/moby#49372</a></li> </ul> <h2>Port publishing in bridge networks</h2> <ul> <li><code>dockerd</code> now requires <code>ipset</code> support in the Linux kernel. <a href="https://redirect.github.com/moby/moby/pull/48596">moby/moby#48596</a> <ul> <li>The <code>iptables</code> and <code>ip6tables</code> rules used to implement port publishing and network isolation have been extensively modified. This enables some of the following functional changes, and is a first step in refactoring to enable native <code>nftables</code> support in a future release. <a href="https://redirect.github.com/moby/moby/issues/48815">moby/moby#48815</a></li> <li>If it becomes necessary to downgrade to an earlier version of the daemon, some manual cleanup of the new rules will be necessary. The simplest and surest approach is to reboot the host, or use <code>iptables -F</code> and <code>ip6tables -F</code> to flush all existing <code>iptables</code> rules from the <code>filter</code> table before starting the older version of the daemon. When that is not possible, run the following commands as root: <ul> <li><code>iptables -D FORWARD -m set --match-set docker-ext-bridges-v4 dst -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT; ip6tables -D FORWARD -m set --match-set docker-ext-bridges-v6 dst -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT</code></li> <li><code>iptables -D FORWARD -m set --match-set docker-ext-bridges-v4 dst -j DOCKER; ip6tables -D FORWARD -m set --match-set docker-ext-bridges-v6 dst -j DOCKER</code></li> <li>If you were previously running with the iptables filter-FORWARD policy set to <code>ACCEPT</code> and need to restore access to unpublished ports, also delete per-bridge-network rules from the <code>DOCKER</code> chains. For example, <code>iptables -D DOCKER ! -i docker0 -o docker0 -j DROP</code>.</li> </ul> </li> </ul> </li> <li>Fix a security issue that was allowing remote hosts to connect directly to a container on its published ports. <a href="https://redirect.github.com/moby/moby/pull/49325">moby/moby#49325</a></li> <li>Fix a security issue that was allowing neighbor hosts to connect to ports mapped on a loopback address. <a href="https://redirect.github.com/moby/moby/pull/49325">moby/moby#49325</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/moby/moby/commit/af898abe44662d9554fb15ee4d4a7307f1b8e315"><code>af898ab</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/49495">#49495</a> from vvoland/update-buildkit</li> <li><a href="https://github.com/moby/moby/commit/d67f035d31bab71be3ae7dcaacba41f5a98aad11"><code>d67f035</code></a> vendor: github.com/moby/buildkit v0.20.0</li> <li><a href="https://github.com/moby/moby/commit/00ab386b5a2ebcf85b6a03b800f593c3a140c6a8"><code>00ab386</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/49491">#49491</a> from vvoland/update-buildkit</li> <li><a href="https://github.com/moby/moby/commit/1fde8c46159cb41f584c01551f83cc21ecf924d9"><code>1fde8c4</code></a> builder-next: fix cdi manager</li> <li><a href="https://github.com/moby/moby/commit/cde9f0752e9c9f63b459e0247ff7df0b35488af3"><code>cde9f07</code></a> vendor: github.com/moby/buildkit v0.20.0-rc3</li> <li><a href="https://github.com/moby/moby/commit/89e1429b65f194b25fe2e31088a4c4e69a651a47"><code>89e1429</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/49490">#49490</a> from thaJeztah/dockerfile_linting</li> <li><a href="https://github.com/moby/moby/commit/b2b55903d0bb54e11bfe22204c1e0b73627943eb"><code>b2b5590</code></a> Dockerfile: fix linting warnings</li> <li><a href="https://github.com/moby/moby/commit/62bc5979908f152a8929ce44927cbdd929bf53ea"><code>62bc597</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/49480">#49480</a> from thaJeztah/docs_api_1.48</li> <li><a href="https://github.com/moby/moby/commit/670cd81423932b3e9103f0893c5d5e63a079ae58"><code>670cd81</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/49485">#49485</a> from vvoland/c8d-list-panic</li> <li><a href="https://github.com/moby/moby/commit/a3628f3f8e806ede250e2c95f6757070c9fb56e4"><code>a3628f3</code></a> docs/api: add documentation for API v1.48</li> <li>Additional commits viewable in <a href="https://github.com/moby/moby/compare/v27.5.0...v28.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/moby/moby&package-manager=go_modules&previous-version=27.5.0+incompatible&new-version=28.0.0+incompatible)](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>
2025-02-24 13:32:03 +00:00
github.com/moby/moby v28.0.0+incompatible
github.com/mocktools/go-smtp-mock/v2 v2.4.0
chore: bump github.com/muesli/termenv to 0.16.0 (#16682) Bumps [github.com/muesli/termenv](https://github.com/muesli/termenv) from 0.15.3-0.20240618155329-98d742f6907a to 0.16.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/muesli/termenv/releases">github.com/muesli/termenv's releases</a>.</em></p> <blockquote> <h2>v0.16.0</h2> <h2>What's Changed</h2> <ul> <li>build(deps): bump github.com/mattn/go-isatty from 0.0.18 to 0.0.19 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/137">muesli/termenv#137</a></li> <li>build(deps): bump golang.org/x/sys from 0.7.0 to 0.10.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/142">muesli/termenv#142</a></li> <li>fix(output): export output writer by <a href="https://github.com/aymanbagabas"><code>@​aymanbagabas</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/122">muesli/termenv#122</a></li> <li>docs: update alacritty OSC 8 support documentation by <a href="https://github.com/Thesmader"><code>@​Thesmader</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/157">muesli/termenv#157</a></li> <li>fix(termenv): prevent hang in Emacs shell by <a href="https://github.com/bard"><code>@​bard</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/152">muesli/termenv#152</a></li> <li>feat: ghostty is truecolor by <a href="https://github.com/caarlos0"><code>@​caarlos0</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/161">muesli/termenv#161</a></li> <li>fix: do not use ioutil and other fixes by <a href="https://github.com/caarlos0"><code>@​caarlos0</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/162">muesli/termenv#162</a></li> <li>Use <code>uniseg.StringWidth</code> by <a href="https://github.com/maaslalani"><code>@​maaslalani</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/164">muesli/termenv#164</a></li> <li>Add support for building on z/OS by <a href="https://github.com/dustin-ward"><code>@​dustin-ward</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/165">muesli/termenv#165</a></li> <li>feat: Profile.Name() by <a href="https://github.com/caarlos0"><code>@​caarlos0</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/163">muesli/termenv#163</a></li> <li>Fix lint comments (godot) by <a href="https://github.com/maaslalani"><code>@​maaslalani</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/160">muesli/termenv#160</a></li> <li>feat: mark more term as truecolor by <a href="https://github.com/caarlos0"><code>@​caarlos0</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/171">muesli/termenv#171</a></li> <li>feat: rio is truecolor, xterm is ansi by <a href="https://github.com/caarlos0"><code>@​caarlos0</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/174">muesli/termenv#174</a></li> <li>build(deps): bump golang.org/x/crypto from 0.3.0 to 0.31.0 in /examples/ssh by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/175">muesli/termenv#175</a></li> <li>update deps, fixes lint issues by <a href="https://github.com/caarlos0"><code>@​caarlos0</code></a> in <a href="https://redirect.github.com/muesli/termenv/pull/183">muesli/termenv#183</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Thesmader"><code>@​Thesmader</code></a> made their first contribution in <a href="https://redirect.github.com/muesli/termenv/pull/157">muesli/termenv#157</a></li> <li><a href="https://github.com/bard"><code>@​bard</code></a> made their first contribution in <a href="https://redirect.github.com/muesli/termenv/pull/152">muesli/termenv#152</a></li> <li><a href="https://github.com/maaslalani"><code>@​maaslalani</code></a> made their first contribution in <a href="https://redirect.github.com/muesli/termenv/pull/164">muesli/termenv#164</a></li> <li><a href="https://github.com/dustin-ward"><code>@​dustin-ward</code></a> made their first contribution in <a href="https://redirect.github.com/muesli/termenv/pull/165">muesli/termenv#165</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/muesli/termenv/compare/v0.15.2...v0.16.0">https://github.com/muesli/termenv/compare/v0.15.2...v0.16.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/muesli/termenv/commits/v0.16.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/muesli/termenv&package-manager=go_modules&previous-version=0.15.3-0.20240618155329-98d742f6907a&new-version=0.16.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>
2025-02-24 14:24:59 +00:00
github.com/muesli/termenv v0.16.0
github.com/natefinch/atomic v1.0.1
chore: bump github.com/open-policy-agent/opa from 1.0.0 to 1.1.0 (#16384) Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.0.0 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> <li>build(deps): bump github.com/tchap/go-patricia/v2 from 2.3.1 to 2.3.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/de28510b979a0fc4a40fd8d1170671511f53e21b"><code>de28510</code></a> Prepare v1.1.0 release</li> <li><a href="https://github.com/open-policy-agent/opa/commit/2d47dd885a54e029d2d4e322c752f8e59dbb370d"><code>2d47dd8</code></a> docs: Update generated CLI docs</li> <li><a href="https://github.com/open-policy-agent/opa/commit/4b8a1382d0b3811e8c0449906c1cc782f9e8102c"><code>4b8a138</code></a> topdown+rego+server: allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7313">#7313</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/50a8c96c746158d9ac7b71fbbd3f661f68a6103a"><code>50a8c96</code></a> rego: Fixing broken <code>BenchmarkCustomFunctionInHotPath</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7312">#7312</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/6e83f2ac535b501d8d26859f71d32e31ec931ca6"><code>6e83f2a</code></a> topdown: jwt cache (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7274">#7274</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/211e95da7e04035f6cf27d6c221659d6fa0d0b86"><code>211e95d</code></a> build(deps): bump github/codeql-action from 3.28.3 to 3.28.4</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e682a677922b23306501f53d2f418753968f2263"><code>e682a67</code></a> Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7311">#7311</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d20dd18f71df02874c82f6bd1c4557be17e1590e"><code>d20dd18</code></a> build(deps): bump google.golang.org/grpc from 1.69.4 to 1.70.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7309">#7309</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/b032e3bfc00044691bd1c749596d2429e06e2324"><code>b032e3b</code></a> Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (#...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e47bd4f9a8a6e738c2a5592c3272a75da6f796ce"><code>e47bd4f</code></a> bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7296">#7296</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.0.0...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/open-policy-agent/opa&package-manager=go_modules&previous-version=1.0.0&new-version=1.1.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>
2025-02-06 06:32:28 +00:00
github.com/open-policy-agent/opa v1.1.0
github.com/ory/dockertest/v3 v3.11.0
github.com/pion/udp v0.1.4
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e
github.com/pkg/sftp v1.13.7
github.com/prometheus-community/pro-bing v0.6.0
chore: bump github.com/prometheus/client_golang from 1.20.5 to 1.21.0 (#16676) Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.5 to 1.21.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prometheus/client_golang/releases">github.com/prometheus/client_golang's releases</a>.</em></p> <blockquote> <h2>v1.21.0 / 2025-02-19</h2> <p>:warning: This release contains potential breaking change if you upgrade <code>github.com/prometheus/common</code> to 0.62+ together with client_golang (and depend on the strict, legacy validation for the label names). New common version <a href="https://redirect.github.com/prometheus/common/pull/724">changes <code>model.NameValidationScheme</code> global variable</a>, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change <code>model.NameValidationScheme</code> to old <code>model.LegacyValidation</code> value in your project <code>init</code> function. :warning:</p> <ul> <li>[BUGFIX] gocollector: Fix help message for runtime/metric metrics. <a href="https://redirect.github.com/prometheus/client_golang/issues/1583">#1583</a></li> <li>[BUGFIX] prometheus: Fix <code>Desc.String()</code> method for no labels case. <a href="https://redirect.github.com/prometheus/client_golang/issues/1687">#1687</a></li> <li>[PERF] prometheus: Optimize popular <code>prometheus.BuildFQName</code> function; now up to 30% faster. <a href="https://redirect.github.com/prometheus/client_golang/issues/1665">#1665</a></li> <li>[PERF] prometheus: Optimize <code>Inc</code>, <code>Add</code> and <code>Observe</code> cumulative metrics; now up to 50% faster under high concurrent contention. <a href="https://redirect.github.com/prometheus/client_golang/issues/1661">#1661</a></li> <li>[CHANGE] Upgrade prometheus/common to 0.62.0 which changes <code>model.NameValidationScheme</code> global variable. <a href="https://redirect.github.com/prometheus/client_golang/issues/1712">#1712</a></li> <li>[CHANGE] Add support for Go 1.23. <a href="https://redirect.github.com/prometheus/client_golang/issues/1602">#1602</a></li> <li>[FEATURE] process_collector: Add support for Darwin systems. <a href="https://redirect.github.com/prometheus/client_golang/issues/1600">#1600</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1616">#1616</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1625">#1625</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1675">#1675</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1715">#1715</a></li> <li>[FEATURE] api: Add ability to invoke <code>CloseIdleConnections</code> on api.Client using <code>api.Client.(CloseIdler).CloseIdleConnections()</code> casting. <a href="https://redirect.github.com/prometheus/client_golang/issues/1513">#1513</a></li> <li>[FEATURE] promhttp: Add <code>promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples</code> option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). <a href="https://redirect.github.com/prometheus/client_golang/issues/1408">#1408</a></li> <li>[FEATURE] prometheus: Add <code>NewConstNativeHistogram</code> function. <a href="https://redirect.github.com/prometheus/client_golang/issues/1654">#1654</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md">github.com/prometheus/client_golang's changelog</a>.</em></p> <blockquote> <h2>1.21.0 / 2025-02-17</h2> <p>:warning: This release contains potential breaking change if you upgrade <code>github.com/prometheus/common</code> to 0.62+ together with client_golang. :warning:</p> <p>New common version <a href="https://redirect.github.com/prometheus/common/pull/724">changes <code>model.NameValidationScheme</code> global variable</a>, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change <code>model.NameValidationScheme</code> to old <code>model.LegacyValidation</code> value in your project <code>init</code> function.</p> <ul> <li>[BUGFIX] gocollector: Fix help message for runtime/metric metrics. <a href="https://redirect.github.com/prometheus/client_golang/issues/1583">#1583</a></li> <li>[BUGFIX] prometheus: Fix <code>Desc.String()</code> method for no labels case. <a href="https://redirect.github.com/prometheus/client_golang/issues/1687">#1687</a></li> <li>[ENHANCEMENT] prometheus: Optimize popular <code>prometheus.BuildFQName</code> function; now up to 30% faster. <a href="https://redirect.github.com/prometheus/client_golang/issues/1665">#1665</a></li> <li>[ENHANCEMENT] prometheus: Optimize <code>Inc</code>, <code>Add</code> and <code>Observe</code> cumulative metrics; now up to 50% faster under high concurrent contention. <a href="https://redirect.github.com/prometheus/client_golang/issues/1661">#1661</a></li> <li>[CHANGE] Upgrade prometheus/common to 0.62.0 which changes <code>model.NameValidationScheme</code> global variable. <a href="https://redirect.github.com/prometheus/client_golang/issues/1712">#1712</a></li> <li>[CHANGE] Add support for Go 1.23. <a href="https://redirect.github.com/prometheus/client_golang/issues/1602">#1602</a></li> <li>[FEATURE] process_collector: Add support for Darwin systems. <a href="https://redirect.github.com/prometheus/client_golang/issues/1600">#1600</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1616">#1616</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1625">#1625</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1675">#1675</a> <a href="https://redirect.github.com/prometheus/client_golang/issues/1715">#1715</a></li> <li>[FEATURE] api: Add ability to invoke <code>CloseIdleConnections</code> on api.Client using <code>api.Client.(CloseIdler).CloseIdleConnections()</code> casting. <a href="https://redirect.github.com/prometheus/client_golang/issues/1513">#1513</a></li> <li>[FEATURE] promhttp: Add <code>promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples</code> option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). <a href="https://redirect.github.com/prometheus/client_golang/issues/1408">#1408</a></li> <li>[FEATURE] prometheus: Add <code>NewConstNativeHistogram</code> function. <a href="https://redirect.github.com/prometheus/client_golang/issues/1654">#1654</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prometheus/client_golang/commit/eaf03ef9509cf7e0e56a7d0eda1f11a05506f045"><code>eaf03ef</code></a> Cut 1.21.0 (<a href="https://redirect.github.com/prometheus/client_golang/issues/1737">#1737</a>)</li> <li><a href="https://github.com/prometheus/client_golang/commit/f1f89dc6c527ddf1e80b49c4f56b2c52b164105c"><code>f1f89dc</code></a> Cut 1.21.0-rc.0 (<a href="https://redirect.github.com/prometheus/client_golang/issues/1718">#1718</a>)</li> <li><a href="https://github.com/prometheus/client_golang/commit/c923f7c8e40301ccf857e28f655a241695c470d7"><code>c923f7c</code></a> Revert &quot;ci: daggerize test and lint pipelines (<a href="https://redirect.github.com/prometheus/client_golang/issues/1534">#1534</a>)&quot; (<a href="https://redirect.github.com/prometheus/client_golang/issues/1717">#1717</a>)</li> <li><a href="https://github.com/prometheus/client_golang/commit/1bcda802c13d6334110e088bbef96d32c1c05db7"><code>1bcda80</code></a> process collector: Fixed pedantic registry failures on darwin with cgo. (<a href="https://redirect.github.com/prometheus/client_golang/issues/1715">#1715</a>)</li> <li><a href="https://github.com/prometheus/client_golang/commit/038b37aea518190a66e2d4df5d231e549eed7759"><code>038b37a</code></a> tutorials/whatsup: Updated deps (<a href="https://redirect.github.com/prometheus/client_golang/issues/1716">#1716</a>)</li> <li><a href="https://github.com/prometheus/client_golang/commit/56a24311d5ef75b4c198516ed1c4555318ec729a"><code>56a2431</code></a> docs: Add RELEASE.md for the release process (<a href="https://redirect.github.com/prometheus/client_golang/issues/1690">#1690</a>)</li> <li><a href="https://github.com/prometheus/client_golang/commit/cbd9526e6ddc36b3cec0407b70e86e8249edf4ed"><code>cbd9526</code></a> Merge pull request <a href="https://redirect.github.com/prometheus/client_golang/issues/1713">#1713</a> from prometheus/dependabot/go_modules/tutorials/what...</li> <li><a href="https://github.com/prometheus/client_golang/commit/80b5a2a705c6cf39bf08260d06fd130024affbd5"><code>80b5a2a</code></a> build(deps): bump golang.org/x/net in /tutorials/whatsup</li> <li><a href="https://github.com/prometheus/client_golang/commit/1a822a841f0ae8c1b93d6cbd3748d881e9023e05"><code>1a822a8</code></a> Upgrade to prometheus/common 0.62.0 with breaking change (<a href="https://redirect.github.com/prometheus/client_golang/issues/1712">#1712</a>)</li> <li><a href="https://github.com/prometheus/client_golang/commit/7b39d0144166aa94cc8ce4125bcb3b0da89aad5e"><code>7b39d01</code></a> Update common Prometheus files (<a href="https://redirect.github.com/prometheus/client_golang/issues/1708">#1708</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prometheus/client_golang/compare/v1.20.5...v1.21.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/prometheus/client_golang&package-manager=go_modules&previous-version=1.20.5&new-version=1.21.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>
2025-02-24 13:34:20 +00:00
github.com/prometheus/client_golang v1.21.0
github.com/prometheus/client_model v0.6.1
github.com/prometheus/common v0.62.0
github.com/quasilyte/go-ruleguard/dsl v0.3.21
2022-04-11 19:17:18 -05:00
github.com/robfig/cron/v3 v3.0.1
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
github.com/spf13/afero v1.12.0
github.com/spf13/pflag v1.0.5
github.com/sqlc-dev/pqtype v0.3.0
chore: bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (#15648) Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.9.0 to 1.10.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.10.0</h2> <h2>What's Changed</h2> <h3>Functional Changes</h3> <ul> <li>Add PanicAssertionFunc by <a href="https://github.com/fahimbagar"><code>@​fahimbagar</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1337">stretchr/testify#1337</a></li> <li>assert: deprecate CompareType by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1566">stretchr/testify#1566</a></li> <li>assert: make YAML dependency pluggable via build tags by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1579">stretchr/testify#1579</a></li> <li>assert: new assertion NotElementsMatch by <a href="https://github.com/hendrywiranto"><code>@​hendrywiranto</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1600">stretchr/testify#1600</a></li> <li>mock: in order mock calls by <a href="https://github.com/ReyOrtiz"><code>@​ReyOrtiz</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1637">stretchr/testify#1637</a></li> <li>Add assertion for NotErrorAs by <a href="https://github.com/palsivertsen"><code>@​palsivertsen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1129">stretchr/testify#1129</a></li> <li>Record Return Arguments of a Call by <a href="https://github.com/jayd3e"><code>@​jayd3e</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1636">stretchr/testify#1636</a></li> <li>assert.EqualExportedValues: accepts everything by <a href="https://github.com/redachl"><code>@​redachl</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1586">stretchr/testify#1586</a></li> </ul> <h3>Fixes</h3> <ul> <li>assert: make tHelper a type alias by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1562">stretchr/testify#1562</a></li> <li>Do not get argument again unnecessarily in Arguments.Error() by <a href="https://github.com/TomWright"><code>@​TomWright</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/820">stretchr/testify#820</a></li> <li>Fix time.Time compare by <a href="https://github.com/myxo"><code>@​myxo</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1582">stretchr/testify#1582</a></li> <li>assert.Regexp: handle []byte array properly by <a href="https://github.com/kevinburkesegment"><code>@​kevinburkesegment</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1587">stretchr/testify#1587</a></li> <li>assert: collect.FailNow() should not panic by <a href="https://github.com/marshall-lee"><code>@​marshall-lee</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1481">stretchr/testify#1481</a></li> <li>mock: simplify implementation of FunctionalOptions by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1571">stretchr/testify#1571</a></li> <li>mock: caller information for unexpected method call by <a href="https://github.com/spirin"><code>@​spirin</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1644">stretchr/testify#1644</a></li> <li>suite: fix test failures by <a href="https://github.com/stevenh"><code>@​stevenh</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1421">stretchr/testify#1421</a></li> <li>Fix issue <a href="https://redirect.github.com/stretchr/testify/issues/1662">#1662</a> (comparing infs should fail) by <a href="https://github.com/ybrustin"><code>@​ybrustin</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1663">stretchr/testify#1663</a></li> <li>NotSame should fail if args are not pointers <a href="https://redirect.github.com/stretchr/testify/issues/1661">#1661</a> by <a href="https://github.com/sikehish"><code>@​sikehish</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1664">stretchr/testify#1664</a></li> <li>Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI by <a href="https://github.com/sikehish"><code>@​sikehish</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1667">stretchr/testify#1667</a></li> <li>fix: compare functional option names for indirect calls by <a href="https://github.com/arjun-1"><code>@​arjun-1</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1626">stretchr/testify#1626</a></li> </ul> <h3>Documantation, Build &amp; CI</h3> <ul> <li>.gitignore: ignore &quot;go test -c&quot; binaries by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1565">stretchr/testify#1565</a></li> <li>mock: improve doc by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1570">stretchr/testify#1570</a></li> <li>mock: fix FunctionalOptions docs by <a href="https://github.com/snirye"><code>@​snirye</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1433">stretchr/testify#1433</a></li> <li>README: link out to the excellent testifylint by <a href="https://github.com/brackendawson"><code>@​brackendawson</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1568">stretchr/testify#1568</a></li> <li>assert: fix typo in comment by <a href="https://github.com/JohnEndson"><code>@​JohnEndson</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1580">stretchr/testify#1580</a></li> <li>Correct the EventuallyWithT and EventuallyWithTf example by <a href="https://github.com/JonCrowther"><code>@​JonCrowther</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1588">stretchr/testify#1588</a></li> <li>CI: bump softprops/action-gh-release from 1 to 2 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1575">stretchr/testify#1575</a></li> <li>mock: document more alternatives to deprecated AnythingOfTypeArgument by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1569">stretchr/testify#1569</a></li> <li>assert: Correctly document EqualValues behavior by <a href="https://github.com/brackendawson"><code>@​brackendawson</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1593">stretchr/testify#1593</a></li> <li>fix: grammar in godoc by <a href="https://github.com/miparnisari"><code>@​miparnisari</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1607">stretchr/testify#1607</a></li> <li>.github/workflows: Run tests for Go 1.22 by <a href="https://github.com/HaraldNordgren"><code>@​HaraldNordgren</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1629">stretchr/testify#1629</a></li> <li>Document suite's lack of support for t.Parallel by <a href="https://github.com/brackendawson"><code>@​brackendawson</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1645">stretchr/testify#1645</a></li> <li>assert: fix typos in comments by <a href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1650">stretchr/testify#1650</a></li> <li>mock: fix doc comment for NotBefore by <a href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1651">stretchr/testify#1651</a></li> <li>Generate better comments for require package by <a href="https://github.com/Neokil"><code>@​Neokil</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1610">stretchr/testify#1610</a></li> <li>README: replace Testify V2 notice with <a href="https://github.com/dolmen"><code>@​dolmen</code></a>'s V2 manifesto by <a href="https://github.com/hendrywiranto"><code>@​hendrywiranto</code></a> in <a href="https://redirect.github.com/stretchr/testify/pull/1518">stretchr/testify#1518</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/fahimbagar"><code>@​fahimbagar</code></a> made their first contribution in <a href="https://redirect.github.com/stretchr/testify/pull/1337">stretchr/testify#1337</a></li> <li><a href="https://github.com/TomWright"><code>@​TomWright</code></a> made their first contribution in <a href="https://redirect.github.com/stretchr/testify/pull/820">stretchr/testify#820</a></li> <li><a href="https://github.com/snirye"><code>@​snirye</code></a> made their first contribution in <a href="https://redirect.github.com/stretchr/testify/pull/1433">stretchr/testify#1433</a></li> <li><a href="https://github.com/myxo"><code>@​myxo</code></a> made their first contribution in <a href="https://redirect.github.com/stretchr/testify/pull/1582">stretchr/testify#1582</a></li> <li><a href="https://github.com/JohnEndson"><code>@​JohnEndson</code></a> made their first contribution in <a href="https://redirect.github.com/stretchr/testify/pull/1580">stretchr/testify#1580</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/stretchr/testify/commit/89cbdd9e7b39eb58896d316a7495597d3aba4371"><code>89cbdd9</code></a> Merge pull request <a href="https://redirect.github.com/stretchr/testify/issues/1626">#1626</a> from arjun-1/fix-functional-options-diff-indirect-calls</li> <li><a href="https://github.com/stretchr/testify/commit/07bac606be2191ae89a281195e58d01e0de7b5f8"><code>07bac60</code></a> Merge pull request <a href="https://redirect.github.com/stretchr/testify/issues/1667">#1667</a> from sikehish/flaky</li> <li><a href="https://github.com/stretchr/testify/commit/716de8dff46ed7ae3c6ebb7a6124db741ba7c018"><code>716de8d</code></a> Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI</li> <li><a href="https://github.com/stretchr/testify/commit/118fb8346630c192421c8914848381af9d4412a7"><code>118fb83</code></a> NotSame should fail if args are not pointers <a href="https://redirect.github.com/stretchr/testify/issues/1661">#1661</a> (<a href="https://redirect.github.com/stretchr/testify/issues/1664">#1664</a>)</li> <li><a href="https://github.com/stretchr/testify/commit/7d99b2b43d8f60a8982a78cde6e8bd287dea5da0"><code>7d99b2b</code></a> attempt 2</li> <li><a href="https://github.com/stretchr/testify/commit/05f87c016035811e6d8371f1887ec360c318f53f"><code>05f87c0</code></a> more similar</li> <li><a href="https://github.com/stretchr/testify/commit/ea7129e00694592e20cb34c58a6b8a251418b9da"><code>ea7129e</code></a> better fmt</li> <li><a href="https://github.com/stretchr/testify/commit/a1b9c9efe3c25c50678b1e492045164b914e255f"><code>a1b9c9e</code></a> Merge pull request <a href="https://redirect.github.com/stretchr/testify/issues/1663">#1663</a> from ybrustin/master</li> <li><a href="https://github.com/stretchr/testify/commit/8302de98b17649445fc1f1992fc3fecdb40c59ba"><code>8302de9</code></a> Merge branch 'master' into master</li> <li><a href="https://github.com/stretchr/testify/commit/89352f7958086841c72425ccd6f43ab299e1309c"><code>89352f7</code></a> Merge pull request <a href="https://redirect.github.com/stretchr/testify/issues/1518">#1518</a> from hendrywiranto/adjust-readme-remove-v2</li> <li>Additional commits viewable in <a href="https://github.com/stretchr/testify/compare/v1.9.0...v1.10.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.9.0&new-version=1.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-11-26 16:24:27 +05:00
github.com/stretchr/testify v1.10.0
github.com/swaggo/http-swagger/v2 v2.0.1
github.com/swaggo/swag v1.16.2
github.com/tidwall/gjson v1.18.0
github.com/u-root/u-root v0.14.0
github.com/unrolled/secure v1.17.0
chore: bump github.com/valyala/fasthttp from 1.58.0 to 1.59.0 (#16683) Bumps [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) from 1.58.0 to 1.59.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/valyala/fasthttp/releases">github.com/valyala/fasthttp's releases</a>.</em></p> <blockquote> <h2>v1.59.0</h2> <h2>What's Changed</h2> <ul> <li>fix: Method-preserving doRequestFollowRedirects by <a href="https://github.com/prepaser"><code>@​prepaser</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1920">valyala/fasthttp#1920</a></li> <li>fix: &quot;identity&quot; has been deprecated <a href="https://redirect.github.com/valyala/fasthttp/issues/1909">#1909</a> by <a href="https://github.com/ksw2000"><code>@​ksw2000</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1919">valyala/fasthttp#1919</a></li> <li>Fix parsing of bad urls with # by <a href="https://github.com/erikdubbelboer"><code>@​erikdubbelboer</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1915">valyala/fasthttp#1915</a></li> <li>docs: improve README formatting and section headers by <a href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1925">valyala/fasthttp#1925</a></li> <li>perf: use buf in Args instead of bytebufferpool by <a href="https://github.com/ksw2000"><code>@​ksw2000</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1931">valyala/fasthttp#1931</a></li> <li>client: Client {} supports custom Transport by <a href="https://github.com/zhangyongding"><code>@​zhangyongding</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1935">valyala/fasthttp#1935</a></li> <li>Migrate valyala/tcplisten to this repo <a href="https://redirect.github.com/valyala/fasthttp/issues/1926">#1926</a> by <a href="https://github.com/ksw2000"><code>@​ksw2000</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1929">valyala/fasthttp#1929</a></li> <li>client: Modify some interfaces to be exportable by <a href="https://github.com/zhangyongding"><code>@​zhangyongding</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1936">valyala/fasthttp#1936</a></li> <li>Try to fix tests with dial timeouts by <a href="https://github.com/erikdubbelboer"><code>@​erikdubbelboer</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1940">valyala/fasthttp#1940</a></li> <li>client: add interfaces for reading clientConn by <a href="https://github.com/zhangyongding"><code>@​zhangyongding</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1941">valyala/fasthttp#1941</a></li> <li>Refactor trailer Field for Improved Memory Efficiency and Performance by <a href="https://github.com/ksw2000"><code>@​ksw2000</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1928">valyala/fasthttp#1928</a></li> <li>fix: compression priority by <a href="https://github.com/inetol"><code>@​inetol</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1950">valyala/fasthttp#1950</a></li> <li>add dummy support for js,wasm by <a href="https://github.com/pjebs"><code>@​pjebs</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1955">valyala/fasthttp#1955</a></li> <li>chore(deps): bump golang.org/x/crypto from 0.29.0 to 0.31.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1918">valyala/fasthttp#1918</a></li> <li>chore(deps): bump golang.org/x/net from 0.31.0 to 0.32.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1910">valyala/fasthttp#1910</a></li> <li>chore(deps): bump golang.org/x/net from 0.32.0 to 0.33.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1927">valyala/fasthttp#1927</a></li> <li>chore(deps): bump golang.org/x/sys from 0.28.0 to 0.29.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1932">valyala/fasthttp#1932</a></li> <li>chore(deps): bump golang.org/x/crypto from 0.31.0 to 0.32.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1934">valyala/fasthttp#1934</a></li> <li>chore(deps): bump securego/gosec from 2.21.4 to 2.22.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1937">valyala/fasthttp#1937</a></li> <li>chore(deps): bump golang.org/x/net from 0.33.0 to 0.34.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1933">valyala/fasthttp#1933</a></li> <li>chore(deps): bump golang.org/x/sys from 0.29.0 to 0.30.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1947">valyala/fasthttp#1947</a></li> <li>chore(deps): bump golang.org/x/crypto from 0.32.0 to 0.33.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1951">valyala/fasthttp#1951</a></li> <li>chore(deps): bump golang.org/x/net from 0.34.0 to 0.35.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1952">valyala/fasthttp#1952</a></li> <li>chore(deps): bump securego/gosec from 2.22.0 to 2.22.1 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1956">valyala/fasthttp#1956</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/prepaser"><code>@​prepaser</code></a> made their first contribution in <a href="https://redirect.github.com/valyala/fasthttp/pull/1920">valyala/fasthttp#1920</a></li> <li><a href="https://github.com/inetol"><code>@​inetol</code></a> made their first contribution in <a href="https://redirect.github.com/valyala/fasthttp/pull/1950">valyala/fasthttp#1950</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/valyala/fasthttp/compare/v1.58.0...v1.59.0">https://github.com/valyala/fasthttp/compare/v1.58.0...v1.59.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/valyala/fasthttp/commit/bb94b26bceea29681f393eac0c5d48228be27fdd"><code>bb94b26</code></a> add dummy support for js,wasm (<a href="https://redirect.github.com/valyala/fasthttp/issues/1955">#1955</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/afc399133478ae2eeb0376ff2a350d57a50587cd"><code>afc3991</code></a> chore(deps): bump securego/gosec from 2.22.0 to 2.22.1 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1956">#1956</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/8e25db024a70f40635c4efb16ec78120bc5db02d"><code>8e25db0</code></a> fix: compression priority (<a href="https://redirect.github.com/valyala/fasthttp/issues/1950">#1950</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/243ce87d01a9a00ac9fe760477ce382e7865a8fb"><code>243ce87</code></a> chore(deps): bump golang.org/x/net from 0.34.0 to 0.35.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1952">#1952</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/a250e776369076372475647300cc78521b9108e0"><code>a250e77</code></a> chore(deps): bump golang.org/x/crypto from 0.32.0 to 0.33.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1951">#1951</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/d2dc36f70ae9857bc8968eb14e05c1ef3599cdfb"><code>d2dc36f</code></a> chore(deps): bump golang.org/x/sys from 0.29.0 to 0.30.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1947">#1947</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/c908d9c1eeb4d725dabaf83b351b845c19163a04"><code>c908d9c</code></a> Refactor trailer Field for Improved Memory Efficiency and Performance (<a href="https://redirect.github.com/valyala/fasthttp/issues/1928">#1928</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/63716382309ec2cd12f2938c18ed727b84668317"><code>6371638</code></a> DoRedirects should follow DisablePathNormalizing</li> <li><a href="https://github.com/valyala/fasthttp/commit/195155e91b8324e357333d7de92350377ecc1047"><code>195155e</code></a> client: add interfaces for reading clientConn (<a href="https://redirect.github.com/valyala/fasthttp/issues/1941">#1941</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/b1c27881cbd8407f5d9cd906475cd291d562cd14"><code>b1c2788</code></a> Try to fix tests with dial timeouts (<a href="https://redirect.github.com/valyala/fasthttp/issues/1940">#1940</a>)</li> <li>Additional commits viewable in <a href="https://github.com/valyala/fasthttp/compare/v1.58.0...v1.59.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/valyala/fasthttp&package-manager=go_modules&previous-version=1.58.0&new-version=1.59.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>
2025-02-24 13:35:34 +00:00
github.com/valyala/fasthttp v1.59.0
2023-02-09 21:43:18 -06:00
github.com/wagslane/go-password-validator v0.3.0
github.com/zclconf/go-cty-yaml v1.1.0
go.mozilla.org/pkcs7 v0.9.0
go.nhat.io/otelsql v0.15.0
chore: bump github.com/open-policy-agent/opa from 1.0.0 to 1.1.0 (#16384) Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.0.0 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> <li>build(deps): bump github.com/tchap/go-patricia/v2 from 2.3.1 to 2.3.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/de28510b979a0fc4a40fd8d1170671511f53e21b"><code>de28510</code></a> Prepare v1.1.0 release</li> <li><a href="https://github.com/open-policy-agent/opa/commit/2d47dd885a54e029d2d4e322c752f8e59dbb370d"><code>2d47dd8</code></a> docs: Update generated CLI docs</li> <li><a href="https://github.com/open-policy-agent/opa/commit/4b8a1382d0b3811e8c0449906c1cc782f9e8102c"><code>4b8a138</code></a> topdown+rego+server: allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7313">#7313</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/50a8c96c746158d9ac7b71fbbd3f661f68a6103a"><code>50a8c96</code></a> rego: Fixing broken <code>BenchmarkCustomFunctionInHotPath</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7312">#7312</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/6e83f2ac535b501d8d26859f71d32e31ec931ca6"><code>6e83f2a</code></a> topdown: jwt cache (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7274">#7274</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/211e95da7e04035f6cf27d6c221659d6fa0d0b86"><code>211e95d</code></a> build(deps): bump github/codeql-action from 3.28.3 to 3.28.4</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e682a677922b23306501f53d2f418753968f2263"><code>e682a67</code></a> Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7311">#7311</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d20dd18f71df02874c82f6bd1c4557be17e1590e"><code>d20dd18</code></a> build(deps): bump google.golang.org/grpc from 1.69.4 to 1.70.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7309">#7309</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/b032e3bfc00044691bd1c749596d2429e06e2324"><code>b032e3b</code></a> Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (#...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e47bd4f9a8a6e738c2a5592c3272a75da6f796ce"><code>e47bd4f</code></a> bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7296">#7296</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.0.0...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/open-policy-agent/opa&package-manager=go_modules&previous-version=1.0.0&new-version=1.1.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>
2025-02-06 06:32:28 +00:00
go.opentelemetry.io/otel v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0
go.opentelemetry.io/otel/sdk v1.34.0
go.opentelemetry.io/otel/trace v1.34.0
go.uber.org/atomic v1.11.0
go.uber.org/goleak v1.3.1-0.20240429205332-517bace7cc29
go.uber.org/mock v0.5.0
go4.org/netipx v0.0.0-20230728180743-ad4cb58a6516
chore: bump golang.org/x/crypto from 0.32.0 to 0.33.0 in the x group (#16505) Bumps the x group with 1 update: [golang.org/x/crypto](https://github.com/golang/crypto). Updates `golang.org/x/crypto` from 0.32.0 to 0.33.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/crypto/commit/9290511cd23ab9813a307b7f2615325e3ca98902"><code>9290511</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/crypto/commit/fa5273e461966728f91f33da62c0cf511a404c2a"><code>fa5273e</code></a> x509roots/fallback: update bundle</li> <li><a href="https://github.com/golang/crypto/commit/a8ea4be81f0769fd5857e087083cbb6d3cb9f196"><code>a8ea4be</code></a> ssh: add ServerConfig.PreAuthConnCallback, ServerPreAuthConn (banner) interface</li> <li><a href="https://github.com/golang/crypto/commit/71d3a4cfdb0360795ce5f2d7041e01823fd22eb6"><code>71d3a4c</code></a> acme: support challenges that require the ACME client to send a non-empty JSO...</li> <li>See full diff in <a href="https://github.com/golang/crypto/compare/v0.32.0...v0.33.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.32.0&new-version=0.33.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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-10 15:55:25 +00:00
golang.org/x/crypto v0.33.0
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa
chore: bump the x group with 5 updates (#16445) Bumps the x group with 5 updates: | Package | From | To | | --- | --- | --- | | [golang.org/x/mod](https://github.com/golang/mod) | `0.22.0` | `0.23.0` | | [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.25.0` | `0.26.0` | | [golang.org/x/sync](https://github.com/golang/sync) | `0.10.0` | `0.11.0` | | [golang.org/x/sys](https://github.com/golang/sys) | `0.29.1-0.20250107080300-1c14dcadc3ab` | `0.30.0` | | [golang.org/x/term](https://github.com/golang/term) | `0.28.0` | `0.29.0` | Updates `golang.org/x/mod` from 0.22.0 to 0.23.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/mod/commit/52289f1fa75a8da0eb82d369cf5fda65fd6147b9"><code>52289f1</code></a> modfile: fix trailing empty lines in require blocks</li> <li>See full diff in <a href="https://github.com/golang/mod/compare/v0.22.0...v0.23.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/oauth2` from 0.25.0 to 0.26.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/oauth2/commit/b9c813be7d0ec3262d46deb8677ba5cda93d95ec"><code>b9c813b</code></a> google: add warning about externally-provided credentials</li> <li>See full diff in <a href="https://github.com/golang/oauth2/compare/v0.25.0...v0.26.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/sync` from 0.10.0 to 0.11.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/sync/commit/fe3591bd8a96873abc98bb9d2d5c62f27efca3e9"><code>fe3591b</code></a> sync/errgroup: improve documentation for semaphore limit behavior</li> <li>See full diff in <a href="https://github.com/golang/sync/compare/v0.10.0...v0.11.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/sys` from 0.29.1-0.20250107080300-1c14dcadc3ab to 0.30.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/sys/commits/v0.30.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/term` from 0.28.0 to 0.29.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/term/commit/743b2709ab25357d30ce1eac4a840eb0b7deb1bf"><code>743b270</code></a> go.mod: update golang.org/x dependencies</li> <li>See full diff in <a href="https://github.com/golang/term/compare/v0.28.0...v0.29.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-06 06:33:21 +00:00
golang.org/x/mod v0.23.0
chore: bump the x group with 2 updates (#16589) Bumps the x group with 2 updates: [golang.org/x/net](https://github.com/golang/net) and [golang.org/x/tools](https://github.com/golang/tools). Updates `golang.org/x/net` from 0.34.0 to 0.35.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/net/commit/df97a48b7bf2f79d63b98d48185389824125a2cf"><code>df97a48</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/net/commit/2dab271ff1b7396498746703d88fefcddcc5cec7"><code>2dab271</code></a> route: treat short sockaddr lengths as unspecified</li> <li><a href="https://github.com/golang/net/commit/b914489dfb743e20a8cef8c4586d9329303f7511"><code>b914489</code></a> internal/http3: refactor in prep for sharing transport/server code</li> <li><a href="https://github.com/golang/net/commit/ebd23f8b4b6645821a91bf9da4a10b3d30a98fb2"><code>ebd23f8</code></a> route: fix parsing network address of length zero</li> <li><a href="https://github.com/golang/net/commit/938a9fb94e41285a443b0882dbc46f2a4c6ed484"><code>938a9fb</code></a> internal/http3: add request/response body transfer</li> <li><a href="https://github.com/golang/net/commit/145b2d7b6deef8ae469696157bcb974d045cfc05"><code>145b2d7</code></a> internal/http3: add RoundTrip</li> <li><a href="https://github.com/golang/net/commit/5bda71aec0d0242e8b2cc529863c6484c0f1f24b"><code>5bda71a</code></a> internal/http3: define connection and stream error types</li> <li><a href="https://github.com/golang/net/commit/3c1185a39b172f62f67243986cf710bd74776347"><code>3c1185a</code></a> internal/http3: return error on mid-frame EOF</li> <li><a href="https://github.com/golang/net/commit/a6c2c7f3642a8abe22535078b3b40ba3e4fcb9f0"><code>a6c2c7f</code></a> http2, internal/httpcommon: factor out common request header logic for h2/h3</li> <li><a href="https://github.com/golang/net/commit/c72e89d6a9e44335237356faeef3b98d5c1fa770"><code>c72e89d</code></a> internal/http3: QPACK encoding and decoding</li> <li>Additional commits viewable in <a href="https://github.com/golang/net/compare/v0.34.0...v0.35.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/tools` from 0.29.0 to 0.30.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/tools/commit/09747cdf594a7924dcecb506312be3bd6e437962"><code>09747cd</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/tools/commit/dc9353b60ee791ae31f3be19b8ae7ea5450e5e62"><code>dc9353b</code></a> gopls/internal/analysis/modernize: appendclipped: unclip</li> <li><a href="https://github.com/golang/tools/commit/a886a1c2ed0dee2af11f465e11bf48b11dda984c"><code>a886a1c</code></a> internal/analysisinternal: AddImport handles dot imports</li> <li><a href="https://github.com/golang/tools/commit/94c3c49c41819ed247e0423acff990ab4ed12cf9"><code>94c3c49</code></a> go/analysis/analysistest: RunWithSuggestedFix: assume valid fixes</li> <li><a href="https://github.com/golang/tools/commit/5f9967d63b2b964daae36c6f0fa3e1eecdd8eb06"><code>5f9967d</code></a> gopls/internal/analysis/modernize: strings.Split -&gt; SplitSeq</li> <li><a href="https://github.com/golang/tools/commit/a1eb5fda89ed74fd8906e27269623f679dbd0ac1"><code>a1eb5fd</code></a> go/analysis/passes/framepointer: support arm64</li> <li><a href="https://github.com/golang/tools/commit/9c087d9bfa108039bfcaa605c16fe467d8c47940"><code>9c087d9</code></a> internal/analysis/gofix: change &quot;forward&quot; back to &quot;inline&quot;</li> <li><a href="https://github.com/golang/tools/commit/82317cea8a3807ada2a9b6a794188f227b55595f"><code>82317ce</code></a> gopls/internal/analysis/modernize: slices.Delete: import slices</li> <li><a href="https://github.com/golang/tools/commit/e65ea150db54e65bce06700111515e5a4598900c"><code>e65ea15</code></a> go/analysis/internal/checker: implement three-way merge</li> <li><a href="https://github.com/golang/tools/commit/a9bf6fdf9803c2872968caff08802cf427eb875c"><code>a9bf6fd</code></a> gopls/internal/analysis/modernize: remove SortStable</li> <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.29.0...v0.30.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-17 12:23:04 +00:00
golang.org/x/net v0.35.0
chore: bump the x group with 5 updates (#16445) Bumps the x group with 5 updates: | Package | From | To | | --- | --- | --- | | [golang.org/x/mod](https://github.com/golang/mod) | `0.22.0` | `0.23.0` | | [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.25.0` | `0.26.0` | | [golang.org/x/sync](https://github.com/golang/sync) | `0.10.0` | `0.11.0` | | [golang.org/x/sys](https://github.com/golang/sys) | `0.29.1-0.20250107080300-1c14dcadc3ab` | `0.30.0` | | [golang.org/x/term](https://github.com/golang/term) | `0.28.0` | `0.29.0` | Updates `golang.org/x/mod` from 0.22.0 to 0.23.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/mod/commit/52289f1fa75a8da0eb82d369cf5fda65fd6147b9"><code>52289f1</code></a> modfile: fix trailing empty lines in require blocks</li> <li>See full diff in <a href="https://github.com/golang/mod/compare/v0.22.0...v0.23.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/oauth2` from 0.25.0 to 0.26.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/oauth2/commit/b9c813be7d0ec3262d46deb8677ba5cda93d95ec"><code>b9c813b</code></a> google: add warning about externally-provided credentials</li> <li>See full diff in <a href="https://github.com/golang/oauth2/compare/v0.25.0...v0.26.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/sync` from 0.10.0 to 0.11.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/sync/commit/fe3591bd8a96873abc98bb9d2d5c62f27efca3e9"><code>fe3591b</code></a> sync/errgroup: improve documentation for semaphore limit behavior</li> <li>See full diff in <a href="https://github.com/golang/sync/compare/v0.10.0...v0.11.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/sys` from 0.29.1-0.20250107080300-1c14dcadc3ab to 0.30.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/sys/commits/v0.30.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/term` from 0.28.0 to 0.29.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/term/commit/743b2709ab25357d30ce1eac4a840eb0b7deb1bf"><code>743b270</code></a> go.mod: update golang.org/x dependencies</li> <li>See full diff in <a href="https://github.com/golang/term/compare/v0.28.0...v0.29.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-06 06:33:21 +00:00
golang.org/x/oauth2 v0.26.0
golang.org/x/sync v0.11.0
golang.org/x/sys v0.30.0
golang.org/x/term v0.29.0
chore: bump golang.org/x/crypto from 0.32.0 to 0.33.0 in the x group (#16505) Bumps the x group with 1 update: [golang.org/x/crypto](https://github.com/golang/crypto). Updates `golang.org/x/crypto` from 0.32.0 to 0.33.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/crypto/commit/9290511cd23ab9813a307b7f2615325e3ca98902"><code>9290511</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/crypto/commit/fa5273e461966728f91f33da62c0cf511a404c2a"><code>fa5273e</code></a> x509roots/fallback: update bundle</li> <li><a href="https://github.com/golang/crypto/commit/a8ea4be81f0769fd5857e087083cbb6d3cb9f196"><code>a8ea4be</code></a> ssh: add ServerConfig.PreAuthConnCallback, ServerPreAuthConn (banner) interface</li> <li><a href="https://github.com/golang/crypto/commit/71d3a4cfdb0360795ce5f2d7041e01823fd22eb6"><code>71d3a4c</code></a> acme: support challenges that require the ACME client to send a non-empty JSO...</li> <li>See full diff in <a href="https://github.com/golang/crypto/compare/v0.32.0...v0.33.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.32.0&new-version=0.33.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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-10 15:55:25 +00:00
golang.org/x/text v0.22.0 // indirect
chore: bump the x group with 2 updates (#16589) Bumps the x group with 2 updates: [golang.org/x/net](https://github.com/golang/net) and [golang.org/x/tools](https://github.com/golang/tools). Updates `golang.org/x/net` from 0.34.0 to 0.35.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/net/commit/df97a48b7bf2f79d63b98d48185389824125a2cf"><code>df97a48</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/net/commit/2dab271ff1b7396498746703d88fefcddcc5cec7"><code>2dab271</code></a> route: treat short sockaddr lengths as unspecified</li> <li><a href="https://github.com/golang/net/commit/b914489dfb743e20a8cef8c4586d9329303f7511"><code>b914489</code></a> internal/http3: refactor in prep for sharing transport/server code</li> <li><a href="https://github.com/golang/net/commit/ebd23f8b4b6645821a91bf9da4a10b3d30a98fb2"><code>ebd23f8</code></a> route: fix parsing network address of length zero</li> <li><a href="https://github.com/golang/net/commit/938a9fb94e41285a443b0882dbc46f2a4c6ed484"><code>938a9fb</code></a> internal/http3: add request/response body transfer</li> <li><a href="https://github.com/golang/net/commit/145b2d7b6deef8ae469696157bcb974d045cfc05"><code>145b2d7</code></a> internal/http3: add RoundTrip</li> <li><a href="https://github.com/golang/net/commit/5bda71aec0d0242e8b2cc529863c6484c0f1f24b"><code>5bda71a</code></a> internal/http3: define connection and stream error types</li> <li><a href="https://github.com/golang/net/commit/3c1185a39b172f62f67243986cf710bd74776347"><code>3c1185a</code></a> internal/http3: return error on mid-frame EOF</li> <li><a href="https://github.com/golang/net/commit/a6c2c7f3642a8abe22535078b3b40ba3e4fcb9f0"><code>a6c2c7f</code></a> http2, internal/httpcommon: factor out common request header logic for h2/h3</li> <li><a href="https://github.com/golang/net/commit/c72e89d6a9e44335237356faeef3b98d5c1fa770"><code>c72e89d</code></a> internal/http3: QPACK encoding and decoding</li> <li>Additional commits viewable in <a href="https://github.com/golang/net/compare/v0.34.0...v0.35.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/tools` from 0.29.0 to 0.30.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/tools/commit/09747cdf594a7924dcecb506312be3bd6e437962"><code>09747cd</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/tools/commit/dc9353b60ee791ae31f3be19b8ae7ea5450e5e62"><code>dc9353b</code></a> gopls/internal/analysis/modernize: appendclipped: unclip</li> <li><a href="https://github.com/golang/tools/commit/a886a1c2ed0dee2af11f465e11bf48b11dda984c"><code>a886a1c</code></a> internal/analysisinternal: AddImport handles dot imports</li> <li><a href="https://github.com/golang/tools/commit/94c3c49c41819ed247e0423acff990ab4ed12cf9"><code>94c3c49</code></a> go/analysis/analysistest: RunWithSuggestedFix: assume valid fixes</li> <li><a href="https://github.com/golang/tools/commit/5f9967d63b2b964daae36c6f0fa3e1eecdd8eb06"><code>5f9967d</code></a> gopls/internal/analysis/modernize: strings.Split -&gt; SplitSeq</li> <li><a href="https://github.com/golang/tools/commit/a1eb5fda89ed74fd8906e27269623f679dbd0ac1"><code>a1eb5fd</code></a> go/analysis/passes/framepointer: support arm64</li> <li><a href="https://github.com/golang/tools/commit/9c087d9bfa108039bfcaa605c16fe467d8c47940"><code>9c087d9</code></a> internal/analysis/gofix: change &quot;forward&quot; back to &quot;inline&quot;</li> <li><a href="https://github.com/golang/tools/commit/82317cea8a3807ada2a9b6a794188f227b55595f"><code>82317ce</code></a> gopls/internal/analysis/modernize: slices.Delete: import slices</li> <li><a href="https://github.com/golang/tools/commit/e65ea150db54e65bce06700111515e5a4598900c"><code>e65ea15</code></a> go/analysis/internal/checker: implement three-way merge</li> <li><a href="https://github.com/golang/tools/commit/a9bf6fdf9803c2872968caff08802cf427eb875c"><code>a9bf6fd</code></a> gopls/internal/analysis/modernize: remove SortStable</li> <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.29.0...v0.30.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-17 12:23:04 +00:00
golang.org/x/tools v0.30.0
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da
chore: bump google.golang.org/api from 0.220.0 to 0.221.0 (#16591) Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.220.0 to 0.221.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.221.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/3bdd389e11a1e0a1f80cd832aad6b91a6530f88c"><code>3bdd389</code></a> chore(main): release 0.221.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2999">#2999</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be"><code>a34f3f4</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa"><code>c454338</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42"><code>1cc19b7</code></a> feat(option/internaloption): add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/6f4d4cddb8cf560b8cef21aa47df0f0f08e2032b"><code>6f4d4cd</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3006">#3006</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b"><code>28149bc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902"><code>9550afc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e"><code>aa95c21</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424"><code>28be0d7</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a"><code>0735943</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>)</li> <li>See full diff in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/api&package-manager=go_modules&previous-version=0.220.0&new-version=0.221.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>
2025-02-17 12:34:57 +00:00
google.golang.org/api v0.221.0
chore: bump google.golang.org/grpc from 1.69.4 to 1.70.0 (#16271) Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.69.4 to 1.70.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.70.0</h2> <h1>Behavior Changes</h1> <ul> <li>client: reject service configs containing an invalid retryPolicy in accordance with gRFCs <a href="https://github.com/grpc/proposal/blob/master/A21-service-config-error-handling.md">A21</a> and <a href="https://github.com/grpc/proposal/blob/master/A6-client-retries.md">A6</a>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7905">#7905</a>) <ul> <li>Note that this is a potential breaking change for some users using an invalid configuration, but continuing to allow this behavior would violate our cross-language compatibility requirements.</li> </ul> </li> </ul> <h1>New Features</h1> <ul> <li>xdsclient: fallback to a secondary management server (if specified in the bootstrap configuration) when the primary is down is enabled by default. Can be disabled by setting the environment variable <code>GRPC_EXPERIMENTAL_XDS_FALLBACK</code> to <code>false</code>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7949">#7949</a>)</li> <li>experimental/credentials: experimental transport credentials are added which don't enforce ALPN. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7980">#7980</a>) <ul> <li>These credentials will be removed in an upcoming grpc-go release. Users must not rely on these credentials directly. Instead, they should either vendor a specific version of gRPC or copy the relevant credentials into their own codebase if absolutely necessary.</li> </ul> </li> </ul> <h1>Bug Fixes</h1> <ul> <li>xds: fix a possible deadlock that happens when both the client application and the xDS management server (responsible for configuring the client) are using the xds:/// scheme in their target URIs. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8011">#8011</a>)</li> </ul> <h1>Performance</h1> <ul> <li>server: for unary requests, free raw request message data as soon as parsing is finished instead of waiting until the method handler returns. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7998">#7998</a>) <ul> <li>Special Thanks: <a href="https://github.com/lqs"><code>@​lqs</code></a></li> </ul> </li> </ul> <h1>Documentation</h1> <ul> <li>examples/features/gracefulstop: add example to demonstrate server graceful stop. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7865">#7865</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/98a0092952dd4d8443229c3a335ec592d9c40c9b"><code>98a0092</code></a> Change version to 1.70.0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7984">#7984</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/bf380dec5e059ea6e7d07cec015dd0c913831a6a"><code>bf380de</code></a> Cherrypick <a href="https://redirect.github.com/grpc/grpc-go/issues/7998">#7998</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8011">#8011</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8010">#8010</a> into 1.70.x (<a href="https://redirect.github.com/grpc/grpc-go/issues/8028">#8028</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/54b3eb97dbf7400efb5750f26084c2d3b2eff120"><code>54b3eb9</code></a> experimental/credentials: Add credentials that don't enforce ALPN (<a href="https://redirect.github.com/grpc/grpc-go/issues/7980">#7980</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/8">#8</a>...</li> <li><a href="https://github.com/grpc/grpc-go/commit/62b9185a6296155e47efd39d60298d8de0a6ed1d"><code>62b9185</code></a> clustetresolver: Copy endpoints.Addresses slice from DNS updates to avoid dat...</li> <li><a href="https://github.com/grpc/grpc-go/commit/724f450f77a09bade8174e5052625977069aaf81"><code>724f450</code></a> examples/features/csm_observability: use helloworld client and server instead...</li> <li><a href="https://github.com/grpc/grpc-go/commit/e8d5feb181766059429259ce3345ddb1f667ded5"><code>e8d5feb</code></a> rbac: add method name to :path in headers (<a href="https://redirect.github.com/grpc/grpc-go/issues/7965">#7965</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e912015fd3f4aabdff6d6cf835e321c19a204afb"><code>e912015</code></a> cleanup: Fix usages of non-constant format strings (<a href="https://redirect.github.com/grpc/grpc-go/issues/7959">#7959</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/681334a46115da3a5f9086c47e3d501a19362256"><code>681334a</code></a> cleanup: replace dial with newclient (<a href="https://redirect.github.com/grpc/grpc-go/issues/7943">#7943</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/063d352de07403a582ef33f8f5f8149e3b57c47e"><code>063d352</code></a> internal/resolver: introduce a new resolver to handle target URI and proxy ad...</li> <li><a href="https://github.com/grpc/grpc-go/commit/10c7e13311f48bf5237738f4f19b53f62b1146cd"><code>10c7e13</code></a> outlierdetection: Support health listener for ejection updates (<a href="https://redirect.github.com/grpc/grpc-go/issues/7908">#7908</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.69.4...v1.70.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/grpc&package-manager=go_modules&previous-version=1.69.4&new-version=1.70.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>
2025-01-29 12:53:00 +00:00
google.golang.org/grpc v1.70.0
chore: bump google.golang.org/api from 0.220.0 to 0.221.0 (#16591) Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.220.0 to 0.221.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.221.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/3bdd389e11a1e0a1f80cd832aad6b91a6530f88c"><code>3bdd389</code></a> chore(main): release 0.221.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2999">#2999</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be"><code>a34f3f4</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa"><code>c454338</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42"><code>1cc19b7</code></a> feat(option/internaloption): add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/6f4d4cddb8cf560b8cef21aa47df0f0f08e2032b"><code>6f4d4cd</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3006">#3006</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b"><code>28149bc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902"><code>9550afc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e"><code>aa95c21</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424"><code>28be0d7</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a"><code>0735943</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>)</li> <li>See full diff in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/api&package-manager=go_modules&previous-version=0.220.0&new-version=0.221.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>
2025-02-17 12:34:57 +00:00
google.golang.org/protobuf v1.36.5
chore: bump gopkg.in/DataDog/dd-trace-go.v1 from 1.71.0 to 1.72.1 (#16678) Bumps gopkg.in/DataDog/dd-trace-go.v1 from 1.71.0 to 1.72.1. <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | gopkg.in/DataDog/dd-trace-go.v1 | [>= 1.58.a, < 1.59] | </details> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gopkg.in/DataDog/dd-trace-go.v1&package-manager=go_modules&previous-version=1.71.0&new-version=1.72.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>
2025-02-24 13:35:54 +00:00
gopkg.in/DataDog/dd-trace-go.v1 v1.72.1
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v3 v3.0.1
gvisor.dev/gvisor v0.0.0-20240509041132-65b30f7869dc
kernel.org/pub/linux/libs/security/libcap/cap v1.2.73
storj.io/drpc v0.0.33
tailscale.com v1.46.1
)
require (
chore: bump google.golang.org/api from 0.219.0 to 0.220.0 (#16506) Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.219.0 to 0.220.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.220.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.219.0...v0.220.0">0.220.0</a> (2025-02-05)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2986">#2986</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/82a5738a1fd9fe8c4ddbcd421d0ba352ddf261f0">82a5738</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2988">#2988</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/51947d3685e056a0576e9ffae7f08275720cd73a">51947d3</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2989">#2989</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/7da36756c5dd63c30503302ef0d8e7dd24633f82">7da3675</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2990">#2990</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/5baa8494310ba297f78e1c902b2dd3ec895833ae">5baa849</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2991">#2991</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f812ea5cc11a2bc9670ac6ec8186a0d2dcb6347c">f812ea5</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2993">#2993</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/6db0d5afb177a1ab2aa8fdd6e4cb20bdf73df791">6db0d5a</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2994">#2994</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/b4d7fc9236ad8ac5567a8fdd3dd7f0a0e9d08a11">b4d7fc9</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2995">#2995</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1bc5d86446458446aed2b2d7ce15455428587cc9">1bc5d86</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.219.0...v0.220.0">0.220.0</a> (2025-02-05)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2986">#2986</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/82a5738a1fd9fe8c4ddbcd421d0ba352ddf261f0">82a5738</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2988">#2988</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/51947d3685e056a0576e9ffae7f08275720cd73a">51947d3</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2989">#2989</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/7da36756c5dd63c30503302ef0d8e7dd24633f82">7da3675</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2990">#2990</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/5baa8494310ba297f78e1c902b2dd3ec895833ae">5baa849</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2991">#2991</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f812ea5cc11a2bc9670ac6ec8186a0d2dcb6347c">f812ea5</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2993">#2993</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/6db0d5afb177a1ab2aa8fdd6e4cb20bdf73df791">6db0d5a</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2994">#2994</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/b4d7fc9236ad8ac5567a8fdd3dd7f0a0e9d08a11">b4d7fc9</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2995">#2995</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1bc5d86446458446aed2b2d7ce15455428587cc9">1bc5d86</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c0905938c15b2c2eb71df9e7483ffe11aa718600"><code>c090593</code></a> chore(main): release 0.220.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2987">#2987</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/1bc5d86446458446aed2b2d7ce15455428587cc9"><code>1bc5d86</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2995">#2995</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/48639f48ea1168f391a90121345092a6af21bcb0"><code>48639f4</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2992">#2992</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/b4d7fc9236ad8ac5567a8fdd3dd7f0a0e9d08a11"><code>b4d7fc9</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2994">#2994</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/6db0d5afb177a1ab2aa8fdd6e4cb20bdf73df791"><code>6db0d5a</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2993">#2993</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/f812ea5cc11a2bc9670ac6ec8186a0d2dcb6347c"><code>f812ea5</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2991">#2991</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/5baa8494310ba297f78e1c902b2dd3ec895833ae"><code>5baa849</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2990">#2990</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/7da36756c5dd63c30503302ef0d8e7dd24633f82"><code>7da3675</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2989">#2989</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/51947d3685e056a0576e9ffae7f08275720cd73a"><code>51947d3</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2988">#2988</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/82a5738a1fd9fe8c4ddbcd421d0ba352ddf261f0"><code>82a5738</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2986">#2986</a>)</li> <li>See full diff in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.219.0...v0.220.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/api&package-manager=go_modules&previous-version=0.219.0&new-version=0.220.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>
2025-02-10 12:49:35 +00:00
cloud.google.com/go/auth v0.14.1 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
cloud.google.com/go/logging v1.12.0 // indirect
cloud.google.com/go/longrunning v0.6.2 // indirect
dario.cat/mergo v1.0.0 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/DataDog/appsec-internal-go v1.9.0 // indirect
github.com/DataDog/datadog-agent/pkg/obfuscate v0.58.0 // indirect
github.com/DataDog/datadog-agent/pkg/proto v0.58.0 // indirect
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.58.0 // indirect
github.com/DataDog/datadog-agent/pkg/trace v0.58.0 // indirect
github.com/DataDog/datadog-agent/pkg/util/log v0.58.0 // indirect
github.com/DataDog/datadog-agent/pkg/util/scrubber v0.58.0 // indirect
github.com/DataDog/datadog-go/v5 v5.5.0 // indirect
github.com/DataDog/go-libddwaf/v3 v3.5.1 // indirect
github.com/DataDog/go-runtime-metrics-internal v0.0.4-0.20241206090539-a14610dc22b6 // indirect
github.com/DataDog/go-sqllexer v0.0.14 // indirect
github.com/DataDog/go-tuf v1.1.0-0.5.2 // indirect
github.com/DataDog/gostackparse v0.7.0 // indirect
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.20.0 // indirect
github.com/DataDog/sketches-go v1.4.5 // indirect
feat: Build framework for generating API docs (#5383) * WIP * Gen * WIP * chi swagger * WIP * WIP * WIP * GetWorkspaces * GetWorkspaces * Markdown * Use widdershins * WIP * WIP * WIP * Markdown template * Fix: makefile * fmt * Fix: comment * Enable swagger conditionally * fix: site * Default false * Flag tests * fix * fix * template fixes * Fix * Fix * Fix * WIP * Formatted * Cleanup * Templates * BEGIN END SECTION * subshell exit code * Fix * Fix merge * WIP * Fix * Fix fmt * Fix * Generic api.md page * Fix merge * Link pages * Fix * Fix * Fix: links * Add icon * Write manifest file * Fix fmt * Fix: enterprise * Fix: Swagger.Enable * Fix: rename apidocs to apidoc * Fix: find -not -prune * Fix: json not available * Fix: rename Coderd API to Coder API * Fix: npm exec * Fix: api dir * Fix: by ID * Fix: string uuid * Fix: include deleted * Fix: indirect go.mod * Fix: source lib.sh * Fix: shellcheck * Fix: pushd popd * Fix: fmt * Fix: improve workspaces * Fix: swagger-enable * Fix * Fix: mention only HTTP 200 * Fix: IDs * Fix: https * Fix: icon * More APis * Fix: format swagger.json * Fix: SwaggerEndpoint * Fix: SCRIPT_DIR * Fix: PROJECT_ROOT * Fix: use code tags in schemas.md * Fix: examples * Fix: examples * Fix: improve format * Fix: date-time,enums * Fix: include_deleted * Fix: array of * Fix: parameter, response * Fix: string time or null * Workspaces: more docs * Workspaces: more docs * Fix: renderDisplayName * Fix: ActiveUserCount * Fix * Fix: typo * Templates: docs * Notice: incomplete
2022-12-19 18:43:46 +01:00
github.com/KyleBanks/depth v1.2.1 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/OneOfOne/xxhash v1.2.8 // indirect
github.com/ProtonMail/go-crypto v1.1.3 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/agnivade/levenshtein v1.2.0 // indirect
2022-06-24 10:25:01 -05:00
github.com/akutz/memconn v0.1.0 // indirect
github.com/alecthomas/chroma/v2 v2.15.0 // indirect
2022-06-24 10:25:01 -05:00
github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74 // indirect
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
github.com/apparentlymart/go-cidr v1.1.0 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/armon/go-radix v1.0.1-0.20221118154546-54df44f2176c // indirect
github.com/atotto/clipboard v0.1.4 // indirect
chore: bump github.com/aws/aws-sdk-go-v2 from 1.34.0 to 1.36.0 (#16386) Bumps [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) from 1.34.0 to 1.36.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/e2e9697d8ebe330a7435716c2f31b1cea4dff3c0"><code>e2e9697</code></a> Release 2025-01-31</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/6576a0939a79d5f31eef10164750faedd78a45d4"><code>6576a09</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/f762573ab5d9286d9751d49091f6a240c12c0742"><code>f762573</code></a> Update API model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/c94df29ecd457e8ec40931fd2fe54d8da2f93ce2"><code>c94df29</code></a> add transfer manager doc header (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2990">#2990</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/880543ce2034570eb3b93c4811289c3b0e55600f"><code>880543c</code></a> revert the revert on the transfer manager beta (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2993">#2993</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/8da49e527e317a77ef0f1b2f52b4dc72a4fbd720"><code>8da49e5</code></a> switch to code-generated waiters for remaining services (<a href="https://redirect.github.com/aws/aws-sdk-go-v2/issues/2994">#2994</a>)</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/c7c68659ce67e5b7e18f31bc66068cec9e3d790d"><code>c7c6865</code></a> Release 2025-01-30</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/70f736c5dc0b8652c5fe5c387b2165c3b9beddb1"><code>70f736c</code></a> Regenerated Clients</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/28731c2bdef3c2555a95632396b6d4936e58099d"><code>28731c2</code></a> Update endpoints model</li> <li><a href="https://github.com/aws/aws-sdk-go-v2/commit/3505e4b255c327a1fa38f870612c327b93302dc0"><code>3505e4b</code></a> Update API model</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-go-v2/compare/v1.34.0...v1.36.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-v2&package-manager=go_modules&previous-version=1.34.0&new-version=1.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>
2025-02-03 12:24:45 +00:00
github.com/aws/aws-sdk-go-v2 v1.36.0
github.com/aws/aws-sdk-go-v2/config v1.29.1
github.com/aws/aws-sdk-go-v2/credentials v1.17.54 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.24 // indirect
github.com/aws/aws-sdk-go-v2/feature/rds/auth v1.5.1
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.28 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.28 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 // indirect
github.com/aws/aws-sdk-go-v2/service/ssm v1.52.4 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.24.11 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.10 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.33.9 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
2023-02-09 21:43:18 -06:00
github.com/aymerick/douceur v0.2.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bep/godartsass/v2 v2.3.2 // indirect
github.com/bep/golibsass v1.2.0 // indirect
github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect
github.com/charmbracelet/x/ansi v0.4.5 // indirect
github.com/charmbracelet/x/term v0.2.0 // indirect
github.com/chromedp/sysutil v1.0.0 // indirect
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
github.com/clbanning/mxj/v2 v2.7.0 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
chore: bump github.com/open-policy-agent/opa from 1.0.0 to 1.1.0 (#16384) Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.0.0 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> <li>build(deps): bump github.com/tchap/go-patricia/v2 from 2.3.1 to 2.3.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/de28510b979a0fc4a40fd8d1170671511f53e21b"><code>de28510</code></a> Prepare v1.1.0 release</li> <li><a href="https://github.com/open-policy-agent/opa/commit/2d47dd885a54e029d2d4e322c752f8e59dbb370d"><code>2d47dd8</code></a> docs: Update generated CLI docs</li> <li><a href="https://github.com/open-policy-agent/opa/commit/4b8a1382d0b3811e8c0449906c1cc782f9e8102c"><code>4b8a138</code></a> topdown+rego+server: allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7313">#7313</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/50a8c96c746158d9ac7b71fbbd3f661f68a6103a"><code>50a8c96</code></a> rego: Fixing broken <code>BenchmarkCustomFunctionInHotPath</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7312">#7312</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/6e83f2ac535b501d8d26859f71d32e31ec931ca6"><code>6e83f2a</code></a> topdown: jwt cache (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7274">#7274</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/211e95da7e04035f6cf27d6c221659d6fa0d0b86"><code>211e95d</code></a> build(deps): bump github/codeql-action from 3.28.3 to 3.28.4</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e682a677922b23306501f53d2f418753968f2263"><code>e682a67</code></a> Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7311">#7311</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d20dd18f71df02874c82f6bd1c4557be17e1590e"><code>d20dd18</code></a> build(deps): bump google.golang.org/grpc from 1.69.4 to 1.70.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7309">#7309</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/b032e3bfc00044691bd1c749596d2429e06e2324"><code>b032e3b</code></a> Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (#...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e47bd4f9a8a6e738c2a5592c3272a75da6f796ce"><code>e47bd4f</code></a> bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7296">#7296</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.0.0...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/open-policy-agent/opa&package-manager=go_modules&previous-version=1.0.0&new-version=1.1.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>
2025-02-06 06:32:28 +00:00
github.com/containerd/continuity v0.4.4 // indirect
2022-06-24 10:25:01 -05:00
github.com/coreos/go-iptables v0.6.0 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/docker/cli v27.1.1+incompatible // indirect
github.com/docker/docker v27.2.0+incompatible // indirect
github.com/docker/go-connections v0.5.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dop251/goja v0.0.0-20241024094426-79f3a7efcdbd // indirect
github.com/dustin/go-humanize v1.0.1
github.com/eapache/queue/v2 v2.0.0-20230407133247-75960ed334e4 // indirect
github.com/ebitengine/purego v0.6.0-alpha.5 // indirect
2022-06-24 10:25:01 -05:00
github.com/elastic/go-windows v1.0.0 // indirect
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
feat: Add Tailscale networking (#3505) * fix: Add coder user to docker group on installation This makes for a simpler setup, and reduces the likelihood a user runs into a strange issue. * Add wgnet * Add ping * Add listening * Finish refactor to make this work * Add interface for swapping * Fix conncache with interface * chore: update gvisor * fix tailscale types * linting * more linting * Add coordinator * Add coordinator tests * Fix coordination * It compiles! * Move all connection negotiation in-memory * Migrate coordinator to use net.conn * Add closed func * Fix close listener func * Make reconnecting PTY work * Fix reconnecting PTY * Update CI to Go 1.19 * Add CLI flags for DERP mapping * Fix Tailnet test * Rename ConnCoordinator to TailnetCoordinator * Remove print statement from workspace agent test * Refactor wsconncache to use tailnet * Remove STUN from unit tests * Add migrate back to dump * chore: Upgrade to Go 1.19 This is required as part of #3505. * Fix reconnecting PTY tests * fix: update wireguard-go to fix devtunnel * fix migration numbers * linting * Return early for status if endpoints are empty * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Fix frontend entites * Fix agent bicopy * Fix race condition for the last node * Fix down migration * Fix connection RBAC * Fix migration numbers * Fix forwarding TCP to a local port * Implement ping for tailnet * Rename to ForceHTTP * Add external derpmapping * Expose DERP region names to the API * Add global option to enable Tailscale networking for web * Mark DERP flags hidden while testing * Update DERP map on reconnect * Add close func to workspace agents * Fix race condition in upstream dependency * Fix feature columns race condition Co-authored-by: Colin Adler <colin1adler@gmail.com>
2022-08-31 20:09:44 -05:00
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
2023-09-21 14:33:13 -04:00
github.com/go-chi/hostrouter v0.2.0 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
2022-06-24 10:25:01 -05:00
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-openapi/jsonpointer v0.20.2 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
feat: Build framework for generating API docs (#5383) * WIP * Gen * WIP * chi swagger * WIP * WIP * WIP * GetWorkspaces * GetWorkspaces * Markdown * Use widdershins * WIP * WIP * WIP * Markdown template * Fix: makefile * fmt * Fix: comment * Enable swagger conditionally * fix: site * Default false * Flag tests * fix * fix * template fixes * Fix * Fix * Fix * WIP * Formatted * Cleanup * Templates * BEGIN END SECTION * subshell exit code * Fix * Fix merge * WIP * Fix * Fix fmt * Fix * Generic api.md page * Fix merge * Link pages * Fix * Fix * Fix: links * Add icon * Write manifest file * Fix fmt * Fix: enterprise * Fix: Swagger.Enable * Fix: rename apidocs to apidoc * Fix: find -not -prune * Fix: json not available * Fix: rename Coderd API to Coder API * Fix: npm exec * Fix: api dir * Fix: by ID * Fix: string uuid * Fix: include deleted * Fix: indirect go.mod * Fix: source lib.sh * Fix: shellcheck * Fix: pushd popd * Fix: fmt * Fix: improve workspaces * Fix: swagger-enable * Fix * Fix: mention only HTTP 200 * Fix: IDs * Fix: https * Fix: icon * More APis * Fix: format swagger.json * Fix: SwaggerEndpoint * Fix: SCRIPT_DIR * Fix: PROJECT_ROOT * Fix: use code tags in schemas.md * Fix: examples * Fix: examples * Fix: improve format * Fix: date-time,enums * Fix: include_deleted * Fix: array of * Fix: parameter, response * Fix: string time or null * Workspaces: more docs * Workspaces: more docs * Fix: renderDisplayName * Fix: ActiveUserCount * Fix * Fix: typo * Templates: docs * Notice: incomplete
2022-12-19 18:43:46 +01:00
github.com/go-openapi/spec v0.20.6 // indirect
github.com/go-openapi/swag v0.22.8 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
chore: bump gopkg.in/DataDog/dd-trace-go.v1 from 1.71.0 to 1.72.1 (#16678) Bumps gopkg.in/DataDog/dd-trace-go.v1 from 1.71.0 to 1.72.1. <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | gopkg.in/DataDog/dd-trace-go.v1 | [>= 1.58.a, < 1.59] | </details> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=gopkg.in/DataDog/dd-trace-go.v1&package-manager=go_modules&previous-version=1.71.0&new-version=1.72.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>
2025-02-24 13:35:54 +00:00
github.com/go-test/deep v1.1.0 // indirect
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect
github.com/go-viper/mapstructure/v2 v2.0.0 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.4.0 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/gohugoio/hashstructure v0.3.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/nftables v0.2.0 // indirect
github.com/google/pprof v0.0.0-20230817174616-7a8ec2ada47b // indirect
github.com/google/s2a-go v0.1.9 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/gorilla/mux v1.8.1 // indirect
chore: bump github.com/open-policy-agent/opa from 1.0.0 to 1.1.0 (#16384) Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.0.0 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> <li>build(deps): bump github.com/tchap/go-patricia/v2 from 2.3.1 to 2.3.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/de28510b979a0fc4a40fd8d1170671511f53e21b"><code>de28510</code></a> Prepare v1.1.0 release</li> <li><a href="https://github.com/open-policy-agent/opa/commit/2d47dd885a54e029d2d4e322c752f8e59dbb370d"><code>2d47dd8</code></a> docs: Update generated CLI docs</li> <li><a href="https://github.com/open-policy-agent/opa/commit/4b8a1382d0b3811e8c0449906c1cc782f9e8102c"><code>4b8a138</code></a> topdown+rego+server: allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7313">#7313</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/50a8c96c746158d9ac7b71fbbd3f661f68a6103a"><code>50a8c96</code></a> rego: Fixing broken <code>BenchmarkCustomFunctionInHotPath</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7312">#7312</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/6e83f2ac535b501d8d26859f71d32e31ec931ca6"><code>6e83f2a</code></a> topdown: jwt cache (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7274">#7274</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/211e95da7e04035f6cf27d6c221659d6fa0d0b86"><code>211e95d</code></a> build(deps): bump github/codeql-action from 3.28.3 to 3.28.4</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e682a677922b23306501f53d2f418753968f2263"><code>e682a67</code></a> Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7311">#7311</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d20dd18f71df02874c82f6bd1c4557be17e1590e"><code>d20dd18</code></a> build(deps): bump google.golang.org/grpc from 1.69.4 to 1.70.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7309">#7309</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/b032e3bfc00044691bd1c749596d2429e06e2324"><code>b032e3b</code></a> Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (#...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e47bd4f9a8a6e738c2a5592c3272a75da6f796ce"><code>e47bd4f</code></a> bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7296">#7296</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.0.0...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/open-policy-agent/opa&package-manager=go_modules&previous-version=1.0.0&new-version=1.1.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>
2025-02-06 06:32:28 +00:00
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2023-02-09 21:43:18 -06:00
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
github.com/hashicorp/go-terraform-address v0.0.0-20240523040243-ccea9d309e0c
2023-02-09 21:43:18 -06:00
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
github.com/hashicorp/hcl/v2 v2.23.0
2023-02-09 21:43:18 -06:00
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.26.0 // indirect
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.0 // indirect
github.com/hdevalence/ed25519consensus v0.1.0 // indirect
2023-02-09 21:43:18 -06:00
github.com/illarion/gonotify v1.0.1 // indirect
github.com/insomniacslk/dhcp v0.0.0-20231206064809-8c70d406f6d2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
feat: Build framework for generating API docs (#5383) * WIP * Gen * WIP * chi swagger * WIP * WIP * WIP * GetWorkspaces * GetWorkspaces * Markdown * Use widdershins * WIP * WIP * WIP * Markdown template * Fix: makefile * fmt * Fix: comment * Enable swagger conditionally * fix: site * Default false * Flag tests * fix * fix * template fixes * Fix * Fix * Fix * WIP * Formatted * Cleanup * Templates * BEGIN END SECTION * subshell exit code * Fix * Fix merge * WIP * Fix * Fix fmt * Fix * Generic api.md page * Fix merge * Link pages * Fix * Fix * Fix: links * Add icon * Write manifest file * Fix fmt * Fix: enterprise * Fix: Swagger.Enable * Fix: rename apidocs to apidoc * Fix: find -not -prune * Fix: json not available * Fix: rename Coderd API to Coder API * Fix: npm exec * Fix: api dir * Fix: by ID * Fix: string uuid * Fix: include deleted * Fix: indirect go.mod * Fix: source lib.sh * Fix: shellcheck * Fix: pushd popd * Fix: fmt * Fix: improve workspaces * Fix: swagger-enable * Fix * Fix: mention only HTTP 200 * Fix: IDs * Fix: https * Fix: icon * More APis * Fix: format swagger.json * Fix: SwaggerEndpoint * Fix: SCRIPT_DIR * Fix: PROJECT_ROOT * Fix: use code tags in schemas.md * Fix: examples * Fix: examples * Fix: improve format * Fix: date-time,enums * Fix: include_deleted * Fix: array of * Fix: parameter, response * Fix: string time or null * Workspaces: more docs * Workspaces: more docs * Fix: renderDisplayName * Fix: ActiveUserCount * Fix * Fix: typo * Templates: docs * Notice: incomplete
2022-12-19 18:43:46 +01:00
github.com/josharian/intern v1.0.0 // indirect
2023-02-09 21:43:18 -06:00
github.com/josharian/native v1.1.1-0.20230202152459-5c7d0dd6ab86 // indirect
github.com/jsimonetti/rtnetlink v1.3.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect
2022-06-24 10:25:01 -05:00
github.com/kortschak/wol v0.0.0-20200729010619-da482cc4850a // indirect
2022-04-11 19:17:18 -05:00
github.com/kr/fs v0.1.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/lufia/plan9stats v0.0.0-20220913051719-115f729f3c8c // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mdlayher/genetlink v1.3.2 // indirect
github.com/mdlayher/netlink v1.7.2 // indirect
2022-06-24 10:25:01 -05:00
github.com/mdlayher/sdnotify v1.0.0 // indirect
github.com/mdlayher/socket v0.5.0 // indirect
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
github.com/miekg/dns v1.1.57 // indirect
2023-02-09 21:43:18 -06:00
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
2022-06-24 10:25:01 -05:00
github.com/mitchellh/go-ps v1.0.0 // indirect
2023-02-09 21:43:18 -06:00
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/niklasfasching/go-org v1.7.0 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0 // indirect
github.com/opencontainers/runc v1.1.14 // indirect
github.com/outcaste-io/ristretto v0.2.3 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
github.com/pierrec/lz4/v4 v4.1.18 // indirect
github.com/pion/transport/v2 v2.2.10 // indirect
github.com/pion/transport/v3 v3.0.7 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
2023-09-21 14:33:13 -04:00
github.com/riandyrn/otelchi v0.5.1 // indirect
github.com/richardartoul/molecule v1.0.1-0.20240531184615-7ca0df43c0b3 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect
github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect
github.com/shirou/gopsutil/v3 v3.24.4 // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/cast v1.7.1 // indirect
2023-04-03 00:31:39 -05:00
github.com/swaggo/files/v2 v2.0.0 // indirect
github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect
2022-06-24 10:25:01 -05:00
github.com/tailscale/certstore v0.1.1-0.20220316223106-78d6e1c49d8d // indirect
github.com/tailscale/golang-x-crypto v0.0.0-20230713185742-f0b76a10a08e // indirect
2022-06-24 10:25:01 -05:00
github.com/tailscale/goupnp v1.0.1-0.20210804011211-c64d0f06ea05 // indirect
github.com/tailscale/netlink v1.1.1-0.20211101221916-cabfb018fe85
github.com/tailscale/peercred v0.0.0-20250107143737-35a0c7bd7edc // indirect
github.com/tailscale/wireguard-go v0.0.0-20231121184858-cc193a0b3272
chore: bump github.com/open-policy-agent/opa from 1.0.0 to 1.1.0 (#16384) Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.0.0 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> <li>build(deps): bump github.com/tchap/go-patricia/v2 from 2.3.1 to 2.3.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/de28510b979a0fc4a40fd8d1170671511f53e21b"><code>de28510</code></a> Prepare v1.1.0 release</li> <li><a href="https://github.com/open-policy-agent/opa/commit/2d47dd885a54e029d2d4e322c752f8e59dbb370d"><code>2d47dd8</code></a> docs: Update generated CLI docs</li> <li><a href="https://github.com/open-policy-agent/opa/commit/4b8a1382d0b3811e8c0449906c1cc782f9e8102c"><code>4b8a138</code></a> topdown+rego+server: allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7313">#7313</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/50a8c96c746158d9ac7b71fbbd3f661f68a6103a"><code>50a8c96</code></a> rego: Fixing broken <code>BenchmarkCustomFunctionInHotPath</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7312">#7312</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/6e83f2ac535b501d8d26859f71d32e31ec931ca6"><code>6e83f2a</code></a> topdown: jwt cache (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7274">#7274</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/211e95da7e04035f6cf27d6c221659d6fa0d0b86"><code>211e95d</code></a> build(deps): bump github/codeql-action from 3.28.3 to 3.28.4</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e682a677922b23306501f53d2f418753968f2263"><code>e682a67</code></a> Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7311">#7311</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d20dd18f71df02874c82f6bd1c4557be17e1590e"><code>d20dd18</code></a> build(deps): bump google.golang.org/grpc from 1.69.4 to 1.70.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7309">#7309</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/b032e3bfc00044691bd1c749596d2429e06e2324"><code>b032e3b</code></a> Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (#...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e47bd4f9a8a6e738c2a5592c3272a75da6f796ce"><code>e47bd4f</code></a> bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7296">#7296</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.0.0...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/open-policy-agent/opa&package-manager=go_modules&previous-version=1.0.0&new-version=1.1.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>
2025-02-06 06:32:28 +00:00
github.com/tchap/go-patricia/v2 v2.3.2 // indirect
2022-06-24 10:25:01 -05:00
github.com/tcnksm/go-httpstat v0.2.0 // indirect
github.com/tdewolff/parse/v2 v2.7.15 // indirect
github.com/tdewolff/test v1.0.11-0.20240106005702-7de5f7df4739 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tinylib/msgp v1.2.1 // indirect
github.com/tklauser/go-sysconf v0.3.12 // indirect
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/u-root/uio v0.0.0-20240209044354-b3d14b93376a // indirect
github.com/vishvananda/netlink v1.2.1-beta.2 // indirect
github.com/vishvananda/netns v0.0.4 // indirect
2023-02-09 21:43:18 -06:00
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
feat: Add Tailscale networking (#3505) * fix: Add coder user to docker group on installation This makes for a simpler setup, and reduces the likelihood a user runs into a strange issue. * Add wgnet * Add ping * Add listening * Finish refactor to make this work * Add interface for swapping * Fix conncache with interface * chore: update gvisor * fix tailscale types * linting * more linting * Add coordinator * Add coordinator tests * Fix coordination * It compiles! * Move all connection negotiation in-memory * Migrate coordinator to use net.conn * Add closed func * Fix close listener func * Make reconnecting PTY work * Fix reconnecting PTY * Update CI to Go 1.19 * Add CLI flags for DERP mapping * Fix Tailnet test * Rename ConnCoordinator to TailnetCoordinator * Remove print statement from workspace agent test * Refactor wsconncache to use tailnet * Remove STUN from unit tests * Add migrate back to dump * chore: Upgrade to Go 1.19 This is required as part of #3505. * Fix reconnecting PTY tests * fix: update wireguard-go to fix devtunnel * fix migration numbers * linting * Return early for status if endpoints are empty * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Update cli/server.go Co-authored-by: Colin Adler <colin1adler@gmail.com> * Fix frontend entites * Fix agent bicopy * Fix race condition for the last node * Fix down migration * Fix connection RBAC * Fix migration numbers * Fix forwarding TCP to a local port * Implement ping for tailnet * Rename to ForceHTTP * Add external derpmapping * Expose DERP region names to the API * Add global option to enable Tailscale networking for web * Mark DERP flags hidden while testing * Update DERP map on reconnect * Add close func to workspace agents * Fix race condition in upstream dependency * Fix feature columns race condition Co-authored-by: Colin Adler <colin1adler@gmail.com>
2022-08-31 20:09:44 -05:00
github.com/x448/float16 v0.8.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
github.com/yashtewari/glob-intersection v0.2.0 // indirect
github.com/yuin/goldmark v1.7.8 // indirect
github.com/yuin/goldmark-emoji v1.0.4 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
github.com/zclconf/go-cty v1.16.2
github.com/zeebo/errs v1.3.0 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/collector/component v0.104.0 // indirect
go.opentelemetry.io/collector/config/configtelemetry v0.104.0 // indirect
go.opentelemetry.io/collector/pdata v1.11.0 // indirect
go.opentelemetry.io/collector/pdata/pprofile v0.104.0 // indirect
go.opentelemetry.io/collector/semconv v0.104.0 // indirect
2023-09-21 14:33:13 -04:00
go.opentelemetry.io/contrib v1.19.0 // indirect
chore: bump github.com/open-policy-agent/opa from 1.0.0 to 1.1.0 (#16384) Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.0.0 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> <li>build(deps): bump github.com/tchap/go-patricia/v2 from 2.3.1 to 2.3.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/de28510b979a0fc4a40fd8d1170671511f53e21b"><code>de28510</code></a> Prepare v1.1.0 release</li> <li><a href="https://github.com/open-policy-agent/opa/commit/2d47dd885a54e029d2d4e322c752f8e59dbb370d"><code>2d47dd8</code></a> docs: Update generated CLI docs</li> <li><a href="https://github.com/open-policy-agent/opa/commit/4b8a1382d0b3811e8c0449906c1cc782f9e8102c"><code>4b8a138</code></a> topdown+rego+server: allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7313">#7313</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/50a8c96c746158d9ac7b71fbbd3f661f68a6103a"><code>50a8c96</code></a> rego: Fixing broken <code>BenchmarkCustomFunctionInHotPath</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7312">#7312</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/6e83f2ac535b501d8d26859f71d32e31ec931ca6"><code>6e83f2a</code></a> topdown: jwt cache (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7274">#7274</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/211e95da7e04035f6cf27d6c221659d6fa0d0b86"><code>211e95d</code></a> build(deps): bump github/codeql-action from 3.28.3 to 3.28.4</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e682a677922b23306501f53d2f418753968f2263"><code>e682a67</code></a> Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7311">#7311</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d20dd18f71df02874c82f6bd1c4557be17e1590e"><code>d20dd18</code></a> build(deps): bump google.golang.org/grpc from 1.69.4 to 1.70.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7309">#7309</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/b032e3bfc00044691bd1c749596d2429e06e2324"><code>b032e3b</code></a> Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (#...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e47bd4f9a8a6e738c2a5592c3272a75da6f796ce"><code>e47bd4f</code></a> bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7296">#7296</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.0.0...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/open-policy-agent/opa&package-manager=go_modules&previous-version=1.0.0&new-version=1.1.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>
2025-02-06 06:32:28 +00:00
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
go.opentelemetry.io/otel/metric v1.34.0 // indirect
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
go4.org/mem v0.0.0-20220726221520-4f986261bf13 // indirect
chore: bump google.golang.org/api from 0.220.0 to 0.221.0 (#16591) Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.220.0 to 0.221.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.221.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/3bdd389e11a1e0a1f80cd832aad6b91a6530f88c"><code>3bdd389</code></a> chore(main): release 0.221.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2999">#2999</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be"><code>a34f3f4</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa"><code>c454338</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42"><code>1cc19b7</code></a> feat(option/internaloption): add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/6f4d4cddb8cf560b8cef21aa47df0f0f08e2032b"><code>6f4d4cd</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3006">#3006</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b"><code>28149bc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902"><code>9550afc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e"><code>aa95c21</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424"><code>28be0d7</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a"><code>0735943</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>)</li> <li>See full diff in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/api&package-manager=go_modules&previous-version=0.220.0&new-version=0.221.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>
2025-02-17 12:34:57 +00:00
golang.org/x/time v0.10.0 // indirect
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2
2023-09-21 14:33:13 -04:00
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6 // indirect
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect
google.golang.org/appengine v1.6.8 // indirect
chore: bump google.golang.org/api from 0.209.0 to 0.210.0 (#15788) Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.209.0 to 0.210.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.210.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.209.0...v0.210.0">0.210.0</a> (2024-12-04)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2886">#2886</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f446504cac24bfcb8d3266c14de2a44ed7968063">f446504</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2888">#2888</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a990614ba53fcc403665d6003643db6bc4d03ce8">a990614</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2892">#2892</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/22e0d11172087cd646df9b9235dc9bdb8aba3044">22e0d11</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2893">#2893</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/2657039424359bca2583b00041e2c6228e4a939f">2657039</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2895">#2895</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/46fab242a8144b8887696df9a285a651315d6dd8">46fab24</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2896">#2896</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/efded92b5ef075836d41c82ddbcc71b73c6fa2e9">efded92</a>)</li> <li>Async refresh dry run in parallel with sync refresh (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2849">#2849</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/acd258182eaf544256fba965e079b4198ad41efc">acd2581</a>)</li> <li><strong>option/internaloption:</strong> Add AuthCreds helper (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2891">#2891</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/6ee8349e13c65c5a4f2f3caf9056d7c37e195fcf">6ee8349</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>gensupport:</strong> Context cancel error check (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2890">#2890</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f57c82deba73faa59e85dcb1aa136de2d1a40664">f57c82d</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.209.0...v0.210.0">0.210.0</a> (2024-12-04)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2886">#2886</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f446504cac24bfcb8d3266c14de2a44ed7968063">f446504</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2888">#2888</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a990614ba53fcc403665d6003643db6bc4d03ce8">a990614</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2892">#2892</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/22e0d11172087cd646df9b9235dc9bdb8aba3044">22e0d11</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2893">#2893</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/2657039424359bca2583b00041e2c6228e4a939f">2657039</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2895">#2895</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/46fab242a8144b8887696df9a285a651315d6dd8">46fab24</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2896">#2896</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/efded92b5ef075836d41c82ddbcc71b73c6fa2e9">efded92</a>)</li> <li>Async refresh dry run in parallel with sync refresh (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2849">#2849</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/acd258182eaf544256fba965e079b4198ad41efc">acd2581</a>)</li> <li><strong>option/internaloption:</strong> Add AuthCreds helper (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2891">#2891</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/6ee8349e13c65c5a4f2f3caf9056d7c37e195fcf">6ee8349</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>gensupport:</strong> Context cancel error check (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2890">#2890</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f57c82deba73faa59e85dcb1aa136de2d1a40664">f57c82d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/de4bf86ee9cc0773839396de1df914108ac77d73"><code>de4bf86</code></a> chore(main): release 0.210.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2887">#2887</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/efded92b5ef075836d41c82ddbcc71b73c6fa2e9"><code>efded92</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2896">#2896</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/46fab242a8144b8887696df9a285a651315d6dd8"><code>46fab24</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2895">#2895</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c1b41c96155bb5cb526cac34e4d69261ff403047"><code>c1b41c9</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2889">#2889</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/acd258182eaf544256fba965e079b4198ad41efc"><code>acd2581</code></a> feat: Async refresh dry run in parallel with sync refresh (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2849">#2849</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/2657039424359bca2583b00041e2c6228e4a939f"><code>2657039</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2893">#2893</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/22e0d11172087cd646df9b9235dc9bdb8aba3044"><code>22e0d11</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2892">#2892</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/6ee8349e13c65c5a4f2f3caf9056d7c37e195fcf"><code>6ee8349</code></a> feat(option/internaloption): add AuthCreds helper (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2891">#2891</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/a990614ba53fcc403665d6003643db6bc4d03ce8"><code>a990614</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2888">#2888</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/f57c82deba73faa59e85dcb1aa136de2d1a40664"><code>f57c82d</code></a> fix(gensupport): context cancel error check (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2890">#2890</a>)</li> <li>Additional commits viewable in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.209.0...v0.210.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/api&package-manager=go_modules&previous-version=0.209.0&new-version=0.210.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-12-09 17:46:04 +05:00
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
chore: bump github.com/open-policy-agent/opa from 1.0.0 to 1.1.0 (#16384) Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.0.0 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> <li>build(deps): bump github.com/tchap/go-patricia/v2 from 2.3.1 to 2.3.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.1.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Performance Improvements</h3> <ul> <li>ast: Remove jsonOptions from AST nodes and terms (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7281">#7281</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>ast+plugins: Optimize activation of bundles with no inter-bundle path overlap (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7144">#7144</a>) authored and reported by <a href="https://github.com/sqyang94"><code>@​sqyang94</code></a></li> <li>bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7296">#7296</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>cmd: Don't generate JSON from result in <code>opa bench</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7291">#7291</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown: Adding configurable token cache to <code>io.jwt</code> token verification built-ins (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7274">#7274</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>topdown: Reduce allocations in hot path (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7288">#7288</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: Improvements to terms and built-in functions (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7284">#7284</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>perf: add Regorus ACI benchmark tests (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7298">#7298</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>plugins: Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7238">#7238</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>testing: replace reflect.DeepEqual where possible (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7286">#7286</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Topdown and Rego</h3> <ul> <li>topdown: Fix out of range error in <code>numbers.range</code> built-in (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7269">#7269</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> <li>topdown+rego+server: Allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6496">#6496</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>bundle: Add info about the correct rego version to parse modules on the store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7278">#7278</a>) co-authored by <a href="https://github.com/ashutosh-narkar"><code>@​ashutosh-narkar</code></a> and <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>bundle+plugins: Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7297">#7297</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a> reported by <a href="https://github.com/carabasdaniel"><code>@​carabasdaniel</code></a></li> <li>cmd: Fix printed representation of ref head rules in <code>opa repl</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7301">#7301</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a> reported by <a href="https://github.com/tsandall"><code>@​tsandall</code></a></li> <li>cmd: Respect <code>--v0-compatible</code> for <code>opa eval</code> partial eval support modules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7251">#7251</a>) authored by <a href="https://github.com/johanfylling"><code>@​johanfylling</code></a></li> <li>golangci: fix invalid <code>linter-settings</code> configuration name (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7244">#7244</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>plugins/logs: Add support for masking with array keys (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6883">#6883</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>tester: code nitpicks (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7252">#7252</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>util: Add util.Keys and util.KeysSorted (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7285">#7285</a>) authored by <a href="https://github.com/anderseknert"><code>@​anderseknert</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Update docker compose file in HTTP API tutorial and use addr for binding (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7264">#7264</a>) authored and reported by <a href="https://github.com/zanliffick"><code>@​zanliffick</code></a></li> <li>docs: Make 'ancient' warnings closable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7253">#7253</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a> reported by <a href="https://github.com/konradzagozda"><code>@​konradzagozda</code></a></li> <li>docs: Redirect opa-1 to v0-upgrade (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7259">#7259</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Use preformatted strings in fmt help (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7263">#7263</a>) authored by <a href="https://github.com/charlieegan3"><code>@​charlieegan3</code></a></li> <li>docs: Fix typo in k8s primer (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7242">#7242</a>) authored by <a href="https://github.com/vicentinileonardo"><code>@​vicentinileonardo</code></a></li> <li>docs: Formatting and wording fixes (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7268">#7268</a>) authored by <a href="https://github.com/kamilturek"><code>@​kamilturek</code></a></li> <li>docs: Update output document of Envoy plugin. (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7241">#7241</a>) authored by <a href="https://github.com/regeda"><code>@​regeda</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>ci(nightly): Remove vendor w/o modproxy check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7292">#7292</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>Dependency updates; notably: <ul> <li>build(go): bump to 1.23.5 (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7279">7279</a>) authored by <a href="https://github.com/srenatus"><code>@​srenatus</code></a></li> <li>build(deps): upgrade github.com/dgraph-io/badger to v4 (4.5.1) (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7239">#7239</a>) authored by <a href="https://github.com/Juneezee"><code>@​Juneezee</code></a></li> <li>build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.25</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/de28510b979a0fc4a40fd8d1170671511f53e21b"><code>de28510</code></a> Prepare v1.1.0 release</li> <li><a href="https://github.com/open-policy-agent/opa/commit/2d47dd885a54e029d2d4e322c752f8e59dbb370d"><code>2d47dd8</code></a> docs: Update generated CLI docs</li> <li><a href="https://github.com/open-policy-agent/opa/commit/4b8a1382d0b3811e8c0449906c1cc782f9e8102c"><code>4b8a138</code></a> topdown+rego+server: allow opt-in for evaluating non-det builtins in PE (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7313">#7313</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/50a8c96c746158d9ac7b71fbbd3f661f68a6103a"><code>50a8c96</code></a> rego: Fixing broken <code>BenchmarkCustomFunctionInHotPath</code> (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7312">#7312</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/6e83f2ac535b501d8d26859f71d32e31ec931ca6"><code>6e83f2a</code></a> topdown: jwt cache (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7274">#7274</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/211e95da7e04035f6cf27d6c221659d6fa0d0b86"><code>211e95d</code></a> build(deps): bump github/codeql-action from 3.28.3 to 3.28.4</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e682a677922b23306501f53d2f418753968f2263"><code>e682a67</code></a> Don't use reflect.DeepEqual for errors (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7311">#7311</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d20dd18f71df02874c82f6bd1c4557be17e1590e"><code>d20dd18</code></a> build(deps): bump google.golang.org/grpc from 1.69.4 to 1.70.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7309">#7309</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/b032e3bfc00044691bd1c749596d2429e06e2324"><code>b032e3b</code></a> Fixing issue where bundle plugin could panic on reconfiguration (SDK use) (#...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e47bd4f9a8a6e738c2a5592c3272a75da6f796ce"><code>e47bd4f</code></a> bundle: Optimizing rego-version management in bundle activation (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7296">#7296</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.0.0...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/open-policy-agent/opa&package-manager=go_modules&previous-version=1.0.0&new-version=1.1.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>
2025-02-06 06:32:28 +00:00
google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f // indirect
chore: bump google.golang.org/api from 0.220.0 to 0.221.0 (#16591) Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.220.0 to 0.221.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.221.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">0.221.0</a> (2025-02-12)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a">0735943</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424">28be0d7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e">aa95c21</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902">9550afc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b">28149bc</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa">c454338</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be">a34f3f4</a>)</li> <li><strong>option/internaloption:</strong> Add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42">1cc19b7</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/3bdd389e11a1e0a1f80cd832aad6b91a6530f88c"><code>3bdd389</code></a> chore(main): release 0.221.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2999">#2999</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/a34f3f45051ac976f1a4b662d0b33c8e9cb377be"><code>a34f3f4</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3013">#3013</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c4543383039650895c75b232a81830fff85c32aa"><code>c454338</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3010">#3010</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/1cc19b7b23410d9ec0732c29552fd23c56149b42"><code>1cc19b7</code></a> feat(option/internaloption): add new allowHardBoundTokens option (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2975">#2975</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/6f4d4cddb8cf560b8cef21aa47df0f0f08e2032b"><code>6f4d4cd</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3006">#3006</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28149bcdf3231fc5e30da2d7d32cd297acfd7d2b"><code>28149bc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3007">#3007</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/9550afc4b4012032dc7bfc388bad03a2982cf902"><code>9550afc</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3005">#3005</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/aa95c21176974fd82e932b4da6bb09681e54c95e"><code>aa95c21</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3004">#3004</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/28be0d71ce4b23d0cd98a1c375d538903d704424"><code>28be0d7</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3002">#3002</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/0735943f3ce83bc93bb80b4755adc5c3061b306a"><code>0735943</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2998">#2998</a>)</li> <li>See full diff in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.220.0...v0.221.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/api&package-manager=go_modules&previous-version=0.220.0&new-version=0.221.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>
2025-02-17 12:34:57 +00:00
google.golang.org/genproto/googleapis/rpc v0.0.0-20250207221924-e9438ea467c6 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
2022-06-24 10:25:01 -05:00
howett.net/plist v1.0.0 // indirect
kernel.org/pub/linux/libs/security/libcap/psx v1.2.73 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)