2023-08-18 13:55:43 -05:00
|
|
|
module github.com/coder/coder/v2
|
2022-01-05 08:48:56 -06:00
|
|
|
|
2025-02-17 10:58:35 +02:00
|
|
|
go 1.22.9
|
2022-01-05 09:20:56 -06:00
|
|
|
|
2024-04-02 09:14:38 -05:00
|
|
|
// 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
|
|
|
|
|
2022-01-08 11:24:02 -06:00
|
|
|
// Required until https://github.com/hashicorp/terraform-config-inspect/pull/74 is merged.
|
2025-01-08 12:16:12 +00:00
|
|
|
replace github.com/hashicorp/terraform-config-inspect => github.com/coder/terraform-config-inspect v0.0.0-20250107175719-6d06d90c630e
|
2022-01-08 11:24:02 -06:00
|
|
|
|
2022-02-12 13:34:04 -06:00
|
|
|
// 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
|
|
|
|
|
2022-03-30 17:59:54 -05:00
|
|
|
// 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
|
|
|
|
|
2022-03-07 11:40:54 -06:00
|
|
|
// opencensus-go leaks a goroutine by default.
|
|
|
|
replace go.opencensus.io => github.com/kylecarbs/opencensus-go v0.23.1-0.20220307014935-4d0325a68f8b
|
2022-02-21 09:56:14 -06:00
|
|
|
|
2023-03-30 11:19:11 -05:00
|
|
|
// See https://github.com/kylecarbs/tview/commit/8464256e10a1e85074c7ef9c80346baa60e9ede6
|
2022-03-22 13:17:50 -06:00
|
|
|
replace github.com/rivo/tview => github.com/kylecarbs/tview v0.0.0-20220309202238-8464256e10a1
|
|
|
|
|
2022-03-28 17:11:52 -05:00
|
|
|
// 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
|
|
|
|
|
2022-04-14 11:29:40 -04:00
|
|
|
// 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
|
|
|
|
|
2022-08-31 20:09:44 -05:00
|
|
|
// https://github.com/tcnksm/go-httpstat/pull/29
|
2023-08-01 08:50:43 -07:00
|
|
|
replace github.com/tcnksm/go-httpstat => github.com/coder/go-httpstat v0.0.0-20230801153223-321c88088322
|
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
|
2025-02-28 12:47:44 +05:00
|
|
|
replace tailscale.com => github.com/coder/tailscale v1.1.1-0.20250227024825-c9983534152a
|
2023-08-09 14:50:26 -05:00
|
|
|
|
2024-05-23 16:22:44 +04:00
|
|
|
// 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
|
2023-07-17 19:09:26 +03:00
|
|
|
|
2022-09-12 19:27:51 +03:00
|
|
|
// 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.
|
2023-11-29 13:19:49 +02:00
|
|
|
replace github.com/gliderlabs/ssh => github.com/coder/ssh v0.0.0-20231128192721-70855dedb788
|
2022-09-12 19:27:51 +03:00
|
|
|
|
2023-02-21 00:15:25 -06:00
|
|
|
// 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
|
|
|
|
|
2024-08-26 11:04:04 -04:00
|
|
|
// 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
|
|
|
|
|
2024-12-16 20:58:36 +02:00
|
|
|
// 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
|
|
|
|
|
2022-01-05 09:20:56 -06:00
|
|
|
require (
|
2024-11-18 14:09:22 +04:00
|
|
|
cdr.dev/slog v1.6.2-0.20241112041820-0ec81e6e67bb
|
2024-12-18 18:15:45 +09:00
|
|
|
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
|
2024-07-15 19:26:25 +03:00
|
|
|
github.com/adrg/xdg v0.5.0
|
2024-03-18 11:25:52 -04:00
|
|
|
github.com/ammario/tlru v0.4.0
|
2024-12-23 10:21:24 +00:00
|
|
|
github.com/andybalholm/brotli v1.1.1
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/aquasecurity/trivy-iac v0.8.0
|
2022-04-29 17:30:10 -05:00
|
|
|
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/awalterschulze/gographviz v2.0.3+incompatible
|
2025-01-29 17:38:34 +05:00
|
|
|
github.com/aws/smithy-go v1.22.2
|
2024-07-09 16:59:06 -04:00
|
|
|
github.com/bgentry/speakeasy v0.2.0
|
2024-07-09 21:10:55 +00:00
|
|
|
github.com/bramvdbogaerde/go-scp v1.5.0
|
2022-02-10 08:33:27 -06:00
|
|
|
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
|
2024-04-01 13:02:23 -05:00
|
|
|
github.com/cenkalti/backoff/v4 v4.3.0
|
2025-01-15 23:03:29 +08:00
|
|
|
github.com/cespare/xxhash/v2 v2.3.0
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/charmbracelet/bubbles v0.20.0
|
|
|
|
github.com/charmbracelet/bubbletea v1.1.0
|
2024-08-12 08:46:09 -04:00
|
|
|
github.com/charmbracelet/glamour v0.8.0
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/charmbracelet/lipgloss v1.0.0
|
2024-10-23 07:49:20 +00:00
|
|
|
github.com/chromedp/cdproto v0.0.0-20241003230502-a4a8f7c660df
|
|
|
|
github.com/chromedp/chromedp v0.11.0
|
2023-06-13 16:50:45 -05:00
|
|
|
github.com/cli/safeexec v1.0.1
|
2023-03-23 17:42:20 -05:00
|
|
|
github.com/coder/flog v1.1.0
|
2025-01-30 10:52:50 -07:00
|
|
|
github.com/coder/guts v1.0.1
|
2023-09-21 14:33:13 -04:00
|
|
|
github.com/coder/pretty v0.0.0-20230908205945-e89ba86370e0
|
2024-10-21 12:07:19 +04:00
|
|
|
github.com/coder/quartz v0.1.2
|
2023-11-14 10:00:07 -06:00
|
|
|
github.com/coder/retry v1.5.1
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/coder/serpent v0.10.0
|
2025-02-17 10:58:35 +02:00
|
|
|
github.com/coder/terraform-provider-coder/v2 v2.1.3
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/coder/websocket v1.8.12
|
2024-05-23 16:22:44 +04:00
|
|
|
github.com/coder/wgtunnel v0.1.13-0.20240522110300-ade90dfb2da0
|
2025-01-06 08:15:20 -06:00
|
|
|
github.com/coreos/go-oidc/v3 v3.12.0
|
2022-03-24 09:07:33 -06:00
|
|
|
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/creack/pty v1.1.21
|
2023-06-14 21:52:01 +10:00
|
|
|
github.com/dave/dst v0.27.2
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/dblohm7/wingoes v0.0.0-20240820181039-f2b84150679e
|
2024-11-04 11:33:50 +05:00
|
|
|
github.com/elastic/go-sysinfo v1.15.0
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21
|
|
|
|
github.com/emersion/go-smtp v0.21.2
|
2024-10-28 17:11:31 +00:00
|
|
|
github.com/fatih/color v1.18.0
|
2022-05-09 21:38:20 -05:00
|
|
|
github.com/fatih/structs v1.1.0
|
2022-08-18 02:28:22 +10:00
|
|
|
github.com/fatih/structtag v1.2.0
|
2024-12-09 17:47:23 +05:00
|
|
|
github.com/fergusstrange/embedded-postgres v1.30.0
|
2022-04-19 08:48:13 -05:00
|
|
|
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/gen2brain/beeep v0.0.0-20220402123239-6a3042f4b71a
|
2022-05-16 08:31:21 -05:00
|
|
|
github.com/gliderlabs/ssh v0.3.4
|
2024-07-09 01:19:18 -05:00
|
|
|
github.com/go-chi/chi/v5 v5.1.0
|
2023-05-23 15:20:22 -04:00
|
|
|
github.com/go-chi/cors v1.2.1
|
2024-09-03 13:03:36 +05:00
|
|
|
github.com/go-chi/httprate v0.14.1
|
2022-01-13 16:55:28 -06:00
|
|
|
github.com/go-chi/render v1.0.1
|
2025-02-24 23:01:56 +00:00
|
|
|
github.com/go-jose/go-jose/v4 v4.0.5
|
2024-08-01 19:41:44 +03:00
|
|
|
github.com/go-logr/logr v1.4.2
|
2025-02-17 12:23:55 +00:00
|
|
|
github.com/go-playground/validator/v10 v10.25.0
|
2024-07-09 21:16:05 +00:00
|
|
|
github.com/gofrs/flock v0.12.0
|
2025-02-03 12:26:56 +00:00
|
|
|
github.com/gohugoio/hugo v0.143.0
|
2024-11-05 08:59:20 +05:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.5.1
|
2024-09-12 19:17:41 +00:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.18.1
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/gomarkdown/markdown v0.0.0-20240930133441-72d49d9543d8
|
2025-02-24 13:34:04 +00:00
|
|
|
github.com/google/go-cmp v0.7.0
|
2022-04-23 17:58:57 -05:00
|
|
|
github.com/google/go-github/v43 v43.0.1-0.20220414155304-00e42332e405
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/google/go-github/v61 v61.0.0
|
2024-01-30 00:36:01 +03:00
|
|
|
github.com/google/uuid v1.6.0
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2022-06-17 11:51:46 -05:00
|
|
|
github.com/hashicorp/go-reap v0.0.0-20170704170343-bf58d8a43e7b
|
2024-05-28 20:04:49 +00:00
|
|
|
github.com/hashicorp/go-version v1.7.0
|
2025-02-17 10:58:35 +02:00
|
|
|
github.com/hashicorp/hc-install v0.9.1
|
2022-01-08 11:24:02 -06:00
|
|
|
github.com/hashicorp/terraform-config-inspect v0.0.0-20211115214459-90acf1ca460f
|
2024-12-23 14:51:42 +05:00
|
|
|
github.com/hashicorp/terraform-json v0.24.0
|
2024-12-03 15:20:44 +04:00
|
|
|
github.com/hashicorp/yamux v0.1.2
|
2023-04-24 14:53:57 +04:00
|
|
|
github.com/hinshun/vt10x v0.0.0-20220301184237-5011da428d02
|
2022-09-20 15:16:26 -05:00
|
|
|
github.com/imulab/go-scim/pkg/v2 v2.2.0
|
2024-10-12 11:47:34 +00:00
|
|
|
github.com/jedib0t/go-pretty/v6 v6.6.0
|
2024-04-29 19:54:40 +03:00
|
|
|
github.com/jmoiron/sqlx v1.4.0
|
2022-01-19 11:55:06 -06:00
|
|
|
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
|
2022-02-10 08:33:27 -06:00
|
|
|
github.com/kirsle/configdir v0.0.0-20170128060238-e45d2f54772f
|
2025-02-24 13:33:45 +00:00
|
|
|
github.com/klauspost/compress v1.18.0
|
2023-08-15 13:40:03 -05:00
|
|
|
github.com/lib/pq v1.10.9
|
2023-10-27 22:41:33 +03:00
|
|
|
github.com/mattn/go-isatty v0.0.20
|
2022-06-15 13:12:17 -05:00
|
|
|
github.com/mitchellh/go-wordwrap v1.0.1
|
2024-02-26 21:18:19 +05:00
|
|
|
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 />
[](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
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/mocktools/go-smtp-mock/v2 v2.4.0
|
2025-02-24 14:24:59 +00:00
|
|
|
github.com/muesli/termenv v0.16.0
|
2024-12-19 00:51:30 +04:00
|
|
|
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 />
[](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
|
2024-08-12 17:04:35 +03:00
|
|
|
github.com/ory/dockertest/v3 v3.11.0
|
2024-03-15 11:24:38 -05:00
|
|
|
github.com/pion/udp v0.1.4
|
2024-08-05 14:57:30 +03:00
|
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
|
2022-06-08 11:45:29 +03:00
|
|
|
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e
|
2025-01-08 13:07:06 +00:00
|
|
|
github.com/pkg/sftp v1.13.7
|
2025-01-29 17:38:11 +05:00
|
|
|
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 "ci: daggerize test and lint pipelines (<a
href="https://redirect.github.com/prometheus/client_golang/issues/1534">#1534</a>)"
(<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 />
[](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
|
2024-08-01 19:41:44 +03:00
|
|
|
github.com/prometheus/client_model v0.6.1
|
2025-01-21 19:53:12 +05:00
|
|
|
github.com/prometheus/common v0.62.0
|
2022-05-23 22:45:40 +00:00
|
|
|
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
|
2024-01-02 20:46:18 +02:00
|
|
|
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
2025-01-15 13:42:09 +00:00
|
|
|
github.com/spf13/afero v1.12.0
|
2022-03-28 18:19:28 -06:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2023-10-02 10:06:50 -05:00
|
|
|
github.com/sqlc-dev/pqtype v0.3.0
|
2024-11-26 16:24:27 +05:00
|
|
|
github.com/stretchr/testify v1.10.0
|
2023-03-30 11:46:58 -05:00
|
|
|
github.com/swaggo/http-swagger/v2 v2.0.1
|
2023-09-04 15:28:39 +03:00
|
|
|
github.com/swaggo/swag v1.16.2
|
2024-10-12 16:40:09 +05:00
|
|
|
github.com/tidwall/gjson v1.18.0
|
2024-03-18 11:25:35 -04:00
|
|
|
github.com/u-root/u-root v0.14.0
|
2024-10-23 07:54:32 +00:00
|
|
|
github.com/unrolled/secure v1.17.0
|
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
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/zclconf/go-cty-yaml v1.1.0
|
2024-09-12 19:16:50 +00:00
|
|
|
go.mozilla.org/pkcs7 v0.9.0
|
2025-01-20 11:03:48 +00:00
|
|
|
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 />
[](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
|
2023-06-05 11:27:57 -05:00
|
|
|
go.uber.org/atomic v1.11.0
|
2024-05-28 17:15:37 -05:00
|
|
|
go.uber.org/goleak v1.3.1-0.20240429205332-517bace7cc29
|
2024-12-19 00:51:30 +04:00
|
|
|
go.uber.org/mock v0.5.0
|
2023-08-09 14:50:26 -05:00
|
|
|
go4.org/netipx v0.0.0-20230728180743-ad4cb58a6516
|
2025-02-10 15:55:25 +00:00
|
|
|
golang.org/x/crypto v0.33.0
|
2024-08-20 14:47:46 +10:00
|
|
|
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa
|
2025-02-06 06:33:21 +00:00
|
|
|
golang.org/x/mod v0.23.0
|
2025-02-17 12:23:04 +00:00
|
|
|
golang.org/x/net v0.35.0
|
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
|
2025-02-10 15:55:25 +00:00
|
|
|
golang.org/x/text v0.22.0 // indirect
|
2025-02-17 12:23:04 +00:00
|
|
|
golang.org/x/tools v0.30.0
|
2024-09-09 14:39:32 +01:00
|
|
|
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da
|
2025-02-17 12:34:57 +00:00
|
|
|
google.golang.org/api v0.221.0
|
2025-01-29 12:53:00 +00:00
|
|
|
google.golang.org/grpc v1.70.0
|
2025-02-17 12:34:57 +00:00
|
|
|
google.golang.org/protobuf v1.36.5
|
2025-02-24 13:35:54 +00:00
|
|
|
gopkg.in/DataDog/dd-trace-go.v1 v1.72.1
|
2023-05-01 11:15:38 -05:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
2022-06-06 09:38:23 -05:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2024-05-23 16:22:44 +04:00
|
|
|
gvisor.dev/gvisor v0.0.0-20240509041132-65b30f7869dc
|
2024-12-19 00:51:30 +04:00
|
|
|
kernel.org/pub/linux/libs/security/libcap/cap v1.2.73
|
2024-03-12 03:43:01 +00:00
|
|
|
storj.io/drpc v0.0.33
|
2023-08-09 14:50:26 -05:00
|
|
|
tailscale.com v1.46.1
|
2022-10-21 17:08:23 -05:00
|
|
|
)
|
2022-10-06 22:38:22 +10:00
|
|
|
|
2024-02-26 21:18:19 +05:00
|
|
|
require (
|
2025-02-10 12:49:35 +00:00
|
|
|
cloud.google.com/go/auth v0.14.1 // indirect
|
2025-01-20 21:55:14 +05:00
|
|
|
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
|
2024-11-04 11:33:33 +05:00
|
|
|
cloud.google.com/go/logging v1.12.0 // indirect
|
2024-11-22 18:58:12 +05:00
|
|
|
cloud.google.com/go/longrunning v0.6.2 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
dario.cat/mergo v1.0.0 // indirect
|
2024-04-29 19:54:40 +03:00
|
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
2023-06-03 00:12:20 +03:00
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
|
2025-01-08 16:49:44 +00:00
|
|
|
github.com/DataDog/appsec-internal-go v1.9.0 // indirect
|
|
|
|
github.com/DataDog/datadog-agent/pkg/obfuscate v0.58.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/DataDog/datadog-agent/pkg/proto v0.58.0 // indirect
|
2025-01-08 16:49:44 +00:00
|
|
|
github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.58.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
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
|
2025-01-08 16:49:44 +00:00
|
|
|
github.com/DataDog/datadog-go/v5 v5.5.0 // indirect
|
|
|
|
github.com/DataDog/go-libddwaf/v3 v3.5.1 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/DataDog/go-runtime-metrics-internal v0.0.4-0.20241206090539-a14610dc22b6 // indirect
|
|
|
|
github.com/DataDog/go-sqllexer v0.0.14 // indirect
|
2024-10-23 07:50:28 +00:00
|
|
|
github.com/DataDog/go-tuf v1.1.0-0.5.2 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/DataDog/gostackparse v0.7.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.20.0 // indirect
|
2024-08-05 15:26:55 +00:00
|
|
|
github.com/DataDog/sketches-go v1.4.5 // indirect
|
2022-12-19 18:43:46 +01:00
|
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
2024-08-01 19:41:44 +03:00
|
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
|
2022-04-14 11:29:40 -04:00
|
|
|
github.com/OneOfOne/xxhash v1.2.8 // indirect
|
2025-02-17 10:58:35 +02:00
|
|
|
github.com/ProtonMail/go-crypto v1.1.3 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
2024-10-12 04:39:10 -07:00
|
|
|
github.com/agnivade/levenshtein v1.2.0 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
github.com/akutz/memconn v0.1.0 // indirect
|
2025-01-20 21:55:39 +05:00
|
|
|
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
|
2022-02-18 23:13:32 -06:00
|
|
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/apparentlymart/go-cidr v1.1.0 // indirect
|
2023-09-07 19:06:28 +03:00
|
|
|
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/armon/go-radix v1.0.1-0.20221118154546-54df44f2176c // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/atotto/clipboard v0.1.4 // indirect
|
2025-02-03 12:24:45 +00:00
|
|
|
github.com/aws/aws-sdk-go-v2 v1.36.0
|
2025-01-20 21:52:08 +05:00
|
|
|
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
|
2024-12-09 17:33:05 +05:00
|
|
|
github.com/aws/aws-sdk-go-v2/feature/rds/auth v1.5.1
|
2025-01-20 21:52:08 +05:00
|
|
|
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
|
2024-10-23 07:48:52 +00:00
|
|
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
|
2025-01-20 21:52:08 +05:00
|
|
|
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
|
2024-09-03 09:45:36 +00:00
|
|
|
github.com/aws/aws-sdk-go-v2/service/ssm v1.52.4 // indirect
|
2025-01-20 21:52:08 +05:00
|
|
|
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
|
2023-05-16 15:09:45 -04:00
|
|
|
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
|
2022-05-03 07:48:02 -05:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2024-12-11 21:48:46 +05:00
|
|
|
github.com/bep/godartsass/v2 v2.3.2 // indirect
|
2024-09-13 00:02:43 +05:00
|
|
|
github.com/bep/golibsass v1.2.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/charmbracelet/x/ansi v0.4.5 // indirect
|
|
|
|
github.com/charmbracelet/x/term v0.2.0 // indirect
|
2023-10-02 10:40:17 +01:00
|
|
|
github.com/chromedp/sysutil v1.0.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect
|
2023-08-15 13:40:03 -05:00
|
|
|
github.com/clbanning/mxj/v2 v2.7.0 // indirect
|
2024-01-08 20:10:59 +03:00
|
|
|
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 />
[](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
|
2024-12-18 07:18:31 -06:00
|
|
|
github.com/dlclark/regexp2 v1.11.4 // indirect
|
2024-08-06 10:50:09 -04:00
|
|
|
github.com/docker/cli v27.1.1+incompatible // indirect
|
2024-09-12 19:17:41 +00:00
|
|
|
github.com/docker/docker v27.2.0+incompatible // indirect
|
2024-08-12 17:04:35 +03:00
|
|
|
github.com/docker/go-connections v0.5.0 // indirect
|
2023-06-03 00:12:20 +03:00
|
|
|
github.com/docker/go-units v0.5.0 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/dop251/goja v0.0.0-20241024094426-79f3a7efcdbd // indirect
|
2024-08-22 15:40:53 +10:00
|
|
|
github.com/dustin/go-humanize v1.0.1
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/eapache/queue/v2 v2.0.0-20230407133247-75960ed334e4 // indirect
|
2024-03-17 22:08:32 -05:00
|
|
|
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
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
|
2024-03-18 10:45:52 +03:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2022-08-31 20:09:44 -05:00
|
|
|
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
|
2025-01-15 18:39:51 +05:00
|
|
|
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
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/go-ini/ini v1.67.0 // indirect
|
2022-05-19 17:43:07 -05:00
|
|
|
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
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/go-openapi/jsonpointer v0.20.2 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
2022-12-19 18:43:46 +01:00
|
|
|
github.com/go-openapi/spec v0.20.6 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
github.com/go-openapi/swag v0.22.8 // indirect
|
2023-04-03 04:59:49 +00:00
|
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
|
2025-02-24 13:35:54 +00:00
|
|
|
github.com/go-test/deep v1.1.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/go-viper/mapstructure/v2 v2.0.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/gobwas/glob v0.2.3 // indirect
|
2023-10-02 10:40:17 +01:00
|
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
2024-08-05 18:14:49 +03:00
|
|
|
github.com/gobwas/ws v1.4.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/gohugoio/hashstructure v0.3.0 // indirect
|
2022-01-13 16:55:28 -06:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2024-04-08 15:57:52 +00:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
2023-03-22 06:13:48 -07:00
|
|
|
github.com/google/btree v1.1.2 // indirect
|
2022-04-23 17:58:57 -05:00
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
2024-07-09 19:02:16 -04:00
|
|
|
github.com/google/nftables v0.2.0 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/google/pprof v0.0.0-20230817174616-7a8ec2ada47b // indirect
|
2025-01-20 21:55:14 +05:00
|
|
|
github.com/google/s2a-go v0.1.9 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
2024-09-19 22:31:20 +05:00
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
|
2025-01-15 13:42:09 +00:00
|
|
|
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
|
2024-08-12 08:46:09 -04:00
|
|
|
github.com/gorilla/css v1.0.1 // indirect
|
2024-02-26 21:18:19 +05:00
|
|
|
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 />
[](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
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
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
|
2024-08-05 15:39:25 +00:00
|
|
|
github.com/hashicorp/go-hclog v1.6.3 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
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
|
2024-11-16 21:56:19 +01:00
|
|
|
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
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
|
2024-11-18 19:37:46 +05:00
|
|
|
github.com/hashicorp/hcl/v2 v2.23.0
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/hashicorp/logutils v1.0.0 // indirect
|
2025-02-17 10:58:35 +02:00
|
|
|
github.com/hashicorp/terraform-plugin-go v0.26.0 // indirect
|
2024-09-09 14:39:32 +01:00
|
|
|
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
|
2025-02-17 10:58:35 +02:00
|
|
|
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.0 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/hdevalence/ed25519consensus v0.1.0 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/illarion/gonotify v1.0.1 // indirect
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/insomniacslk/dhcp v0.0.0-20231206064809-8c70d406f6d2 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
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
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/jsimonetti/rtnetlink v1.3.5 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
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
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2024-02-13 17:54:13 +03:00
|
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
2022-03-22 13:17:50 -06:00
|
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/lufia/plan9stats v0.0.0-20220913051719-115f729f3c8c // indirect
|
2023-06-13 16:50:45 -05:00
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
2023-03-22 06:13:48 -07:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/mattn/go-localereader v0.0.1 // indirect
|
2024-08-20 14:47:46 +10:00
|
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
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
|
2024-01-18 01:36:47 +10:00
|
|
|
github.com/mdlayher/socket v0.5.0 // indirect
|
2024-08-12 08:46:09 -04:00
|
|
|
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
|
2024-08-01 19:41:44 +03:00
|
|
|
github.com/miekg/dns v1.1.57 // indirect
|
2023-02-09 21:43:18 -06:00
|
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
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
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
2023-06-03 00:12:20 +03:00
|
|
|
github.com/moby/term v0.5.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
|
|
|
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
2023-07-12 14:33:46 -05:00
|
|
|
github.com/muesli/reflow v0.3.0 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
2023-07-03 13:00:31 -05:00
|
|
|
github.com/niklasfasching/go-org v1.7.0 // indirect
|
2022-05-13 18:09:04 +01:00
|
|
|
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/oklog/run v1.1.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
2024-08-01 19:41:44 +03:00
|
|
|
github.com/opencontainers/image-spec v1.1.0 // indirect
|
2024-09-12 19:14:33 +00:00
|
|
|
github.com/opencontainers/runc v1.1.14 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/outcaste-io/ristretto v0.2.3 // indirect
|
2024-09-13 00:02:43 +05:00
|
|
|
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
|
2024-10-23 07:50:28 +00:00
|
|
|
github.com/philhofer/fwd v1.1.3-0.20240612014219-fbbf4953d986 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/pierrec/lz4/v4 v4.1.18 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/pion/transport/v2 v2.2.10 // indirect
|
|
|
|
github.com/pion/transport/v3 v3.0.7 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/power-devops/perfstat v0.0.0-20220216144756-c35f1ee13d7c // indirect
|
2024-08-23 01:40:07 +03:00
|
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
2023-09-18 16:53:40 +03:00
|
|
|
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
|
2024-08-05 15:26:55 +00:00
|
|
|
github.com/richardartoul/molecule v1.0.1-0.20240531184615-7ca0df43c0b3 // indirect
|
2024-08-12 08:46:09 -04:00
|
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
2023-02-21 00:15:25 -06:00
|
|
|
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect
|
2023-08-29 17:14:28 -05:00
|
|
|
github.com/secure-systems-lab/go-securesystemslib v0.7.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/shirou/gopsutil/v3 v3.24.4 // indirect
|
|
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
2023-08-01 21:48:02 -05:00
|
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
2023-09-04 15:28:51 +03:00
|
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
2025-01-20 21:55:39 +05:00
|
|
|
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
|
2022-05-13 18:09:04 +01:00
|
|
|
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
|
2023-08-09 14:50:26 -05:00
|
|
|
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
|
2024-05-11 00:08:38 +03:00
|
|
|
github.com/tailscale/netlink v1.1.1-0.20211101221916-cabfb018fe85
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/tailscale/peercred v0.0.0-20250107143737-35a0c7bd7edc // indirect
|
2024-05-23 16:22:44 +04:00
|
|
|
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 />
[](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
|
2024-07-27 13:49:05 +00:00
|
|
|
github.com/tdewolff/parse/v2 v2.7.15 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/tdewolff/test v1.0.11-0.20240106005702-7de5f7df4739 // indirect
|
2023-10-09 23:02:16 -05:00
|
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
2024-10-23 07:50:28 +00:00
|
|
|
github.com/tinylib/msgp v1.2.1 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
|
|
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
2024-03-18 11:25:35 -04:00
|
|
|
github.com/u-root/uio v0.0.0-20240209044354-b3d14b93376a // indirect
|
2023-08-01 21:48:02 -05:00
|
|
|
github.com/vishvananda/netlink v1.2.1-beta.2 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
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
|
2024-12-19 00:51:30 +04:00
|
|
|
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
|
|
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
2022-08-31 20:09:44 -05:00
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
2022-01-26 20:14:37 -06:00
|
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
|
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
2022-06-17 11:51:46 -05:00
|
|
|
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
|
2023-08-01 21:48:02 -05:00
|
|
|
github.com/yashtewari/glob-intersection v0.2.0 // indirect
|
2024-11-26 16:26:08 +05:00
|
|
|
github.com/yuin/goldmark v1.7.8 // indirect
|
2024-10-28 17:13:51 +00:00
|
|
|
github.com/yuin/goldmark-emoji v1.0.4 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
2025-02-17 10:58:35 +02:00
|
|
|
github.com/zclconf/go-cty v1.16.2
|
2022-07-12 22:20:22 +03:00
|
|
|
github.com/zeebo/errs v1.3.0 // indirect
|
2025-01-03 12:06:47 -05:00
|
|
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
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 />
[](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
|
2025-02-07 14:01:56 +11:00
|
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
|
|
go.uber.org/zap v1.27.0 // indirect
|
2023-08-09 14:50:26 -05:00
|
|
|
go4.org/mem v0.0.0-20220726221520-4f986261bf13 // indirect
|
2025-02-17 12:34:57 +00:00
|
|
|
golang.org/x/time v0.10.0 // indirect
|
2025-01-29 18:09:36 +10:00
|
|
|
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
|
2022-09-12 22:32:51 -05:00
|
|
|
golang.zx2c4.com/wireguard/windows v0.5.3 // indirect
|
2023-10-26 11:36:10 +03:00
|
|
|
google.golang.org/appengine v1.6.8 // indirect
|
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 />
[](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
|
2025-02-17 12:34:57 +00:00
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250207221924-e9438ea467c6 // indirect
|
2025-02-07 14:01:56 +11:00
|
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2022-06-24 10:25:01 -05:00
|
|
|
howett.net/plist v1.0.0 // indirect
|
2024-12-19 00:51:30 +04:00
|
|
|
kernel.org/pub/linux/libs/security/libcap/psx v1.2.73 // indirect
|
2023-10-30 21:08:41 +00:00
|
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
2022-01-05 09:20:56 -06:00
|
|
|
)
|