diff --git a/CHANGELOG.md b/CHANGELOG.md index 7833f8f67a..497d7b32a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,25 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## 0.67.0 -### Request Body Size Limits +This release contains a mix of features, a new builtin function (`strings.count`), performance improvements, and bugfixes. -OPA now rejects requests with request bodies larger than a preset maximum size. To control this behavior, two new configuration keys are available: `server.decoding.max_length` and `server.decoding.gzip.max_length`. These control the max size in bytes to allow for an incoming request payload, and the maximum size in bytes to allow for a decompressed gzip request payload, respectively. +### Breaking Change + +#### Request Body Size Limits + +OPA now automatically rejects very large requests ([#6868](https://github.com/open-policy-agent/opa/pull/6868)) authored by @philipaconrad. +Requests with a `Content-Length` larger than 128 MB uncompressed, and gzipped requests with payloads that decompress to +larger than 256 MB will be rejected, as part of hardening OPA against denial-of-service attacks. Previously, a large +enough request could cause an OPA instance to run out of memory in low-memory sidecar deployment scenarios, just from +attempting to read the request body into memory. + +These changes allow improvements in memory usage for the OPA HTTP server, and help OPA deployments avoid some accidental out-of-memory situations. + +For most users, no changes will be needed to continue using OPA. However, to control this behavior, two new configuration +keys are available: `server.decoding.max_length` and `server.decoding.gzip.max_length`. These control the max size in +bytes to allow for an incoming request payload, and the maximum size in bytes to allow for a decompressed gzip request payload, respectively. Here's an example OPA configuration using the new keys: @@ -20,13 +34,34 @@ server: max_length: 134217728 ``` -These changes allow improvements in memory usage for the OPA HTTP server, and help OPA deployments avoid some accidental out-of-memory situations. +### Topdown and Rego + +- topdown: New `strings.count` builtin which returns the number of non-overlapping instances of a substring in a string ([#6827](https://github.com/open-policy-agent/opa/issues/6827)) authored by @Manish-Giri +- format: Produce error when `--rego-v1` formatted module has rule name conflicting with keyword ([#6833](https://github.com/open-policy-agent/opa/issues/6833)) authored by @johanfylling +- topdown: Add cap to caches for regex and glob built-in functions ([#6828](https://github.com/open-policy-agent/opa/issues/6828)) authored by @johanfylling. This fixes possible memory leaks where caches grow uncontrollably when large amounts of regexes or globs are generated or originate from the input document. -### Breaking Changes +### Runtime, Tooling, SDK +- repl: Add support for correctly loading bundle modules ([#6872](https://github.com/open-policy-agent/opa/issues/6872)) authored by @ashutosh-narkar +- plugins/discovery: Allow un-registration of discovery listener ([#6851](https://github.com/open-policy-agent/opa/pull/6851)) authored by @mjungsbluth. The discovery plugin allows OPA to register a bundle download status listener but previously did not offer a method to unregister that listener +- plugins/logs: Reduce amount of work performed inside global lock in decision log plugin ([#6859](https://github.com/open-policy-agent/opa/pull/6859)) authored by @johanfylling +- plugins/rest: Add a new client credential attribute to support Azure Workload Identity. This would allow workloads deployed on an Azure Kubernetes Services (AKS) cluster to authenticate and access Azure cloud resources ([#6802](https://github.com/open-policy-agent/opa/pull/6802)) authored by @ledbutter +- cmd/inspect: Add ability for opa inspect to inspect a single file outside of any bundle ([#6873](https://github.com/open-policy-agent/opa/pull/6873)) authored by @tjons +- cmd+bundle: Add `--follow-symlinks` flag to the `opa build` command to allow users to build directories with symlinked files, and have the contents of those symlinked files included in the built bundle ([#6800](https://github.com/open-policy-agent/opa/pull/6800)) authored by @tjons +- server: Add missing handling in the server for the `explain=fails` query value ([#6886](https://github.com/open-policy-agent/opa/pull/6886)) authored by @acamatcisco -OPA now automatically rejects very large requests. Requests with a `Content-Length` larger than 128 MB uncompressed, and gzipped requests with payloads that decompress to larger than 256 MB will be rejected, as part of hardening OPA against denial-of-service attacks. Previously, a large enough request could cause an OPA instance to run out of memory in low-memory sidecar deployment scenarios, just from attempting to read the request body into memory. +### Docs, Website, Ecosystem +- docs: Update bundle section with an example of a manifest with `rego_version` and `file_rego_versions` attributes ([#6885](https://github.com/open-policy-agent/opa/pull/6885)) authored by @ashutosh-narkar +- docs: Better link language SDKs to make them more discoverable ([#6866](https://github.com/open-policy-agent/opa/pull/6866)) authored by @charlieegan3 -For most users, no changes will be needed to continue using OPA. However, for those who need to override the default limits, the new `server.decoding.max_length` and `server.decoding.gzip.max_length` configuration fields allow setting higher request size limits. +### Miscellaneous + +- ci: Add the OpenSSF Scorecard Github Action to help evaluate the OPA project's security posture ([#6848](https://github.com/open-policy-agent/opa/pull/6848)) authored by @harshitasao +- Dependency updates; notably: + - build(go): bump golang from 1.22.4 to 1.22.5 + - build(deps): bump github.com/containerd/containerd from 1.7.18 to 1.7.20 + - build(deps): bump golang.org/x/net from 0.26.0 to 0.27.0 + - build(deps): bump google.golang.org/grpc from 1.64.0 to 1.65.0 + - build(deps): bump go.opentelemetry.io modules ([#6847](https://github.com/open-policy-agent/opa/pull/6847)) ## 0.66.0 diff --git a/ast/version_index.json b/ast/version_index.json index f64a03aa08..718df220f9 100644 --- a/ast/version_index.json +++ b/ast/version_index.json @@ -1120,6 +1120,13 @@ "PreRelease": "", "Metadata": "" }, + "strings.count": { + "Major": 0, + "Minor": 67, + "Patch": 0, + "PreRelease": "", + "Metadata": "" + }, "strings.render_template": { "Major": 0, "Minor": 59, diff --git a/builtin_metadata.json b/builtin_metadata.json index e751046259..727076a959 100644 --- a/builtin_metadata.json +++ b/builtin_metadata.json @@ -356,6 +356,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the number without its sign.", @@ -477,6 +478,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -601,6 +603,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the intersection of two sets.", @@ -723,6 +726,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -847,6 +851,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Concatenates two arrays.", @@ -920,6 +925,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the reverse of a given array.", @@ -1053,6 +1059,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a slice of a given array. If `start` is greater or equal than `stop`, `slice` is `[]`.", @@ -1177,6 +1184,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": ":=", @@ -1297,6 +1305,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Deserializes the base64 encoded input string.", @@ -1419,6 +1428,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Serializes the input string into base64 encoding.", @@ -1520,6 +1530,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies the input string is base64 encoded.", @@ -1642,6 +1653,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Deserializes the base64url encoded input string.", @@ -1764,6 +1776,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Serializes the input string into base64url encoding.", @@ -1863,6 +1876,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Serializes the input string into base64url encoding without padding.", @@ -1985,6 +1999,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the bitwise \"AND\" of two integers.", @@ -2106,6 +2121,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a new integer with its bits shifted `s` bits to the left.", @@ -2223,6 +2239,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the bitwise negation (flip) of an integer.", @@ -2344,6 +2361,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the bitwise \"OR\" of two integers.", @@ -2465,6 +2483,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a new integer with its bits shifted `s` bits to the right.", @@ -2586,6 +2605,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the bitwise \"XOR\" (exclusive-or) of two integers.", @@ -2706,6 +2726,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -2825,6 +2846,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -2944,6 +2966,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -3063,6 +3086,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -3182,6 +3206,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -3301,6 +3326,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -3393,6 +3419,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Rounds the number _up_ to the nearest integer.", @@ -3520,6 +3547,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Joins a set or array of strings with a delimiter.", @@ -3647,6 +3675,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `true` if the search string is included in the base string", @@ -3770,6 +3799,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": " Count takes a collection or string and returns the number of elements (or characters) in it.", @@ -3814,6 +3844,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a boolean representing the result of comparing two MACs for equality without leaking timing information.", @@ -3892,6 +3923,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string representing the MD5 HMAC of the input message using the input key.", @@ -3970,6 +4002,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string representing the SHA1 HMAC of the input message using the input key.", @@ -4048,6 +4081,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string representing the SHA256 HMAC of the input message using the input key.", @@ -4126,6 +4160,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string representing the SHA512 HMAC of the input message using the input key.", @@ -4248,6 +4283,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string representing the input string hashed with the MD5 function", @@ -4283,6 +4319,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns zero or more private keys from the given encoded string containing DER certificate data.\n\nIf the input is empty, the function will return null. The input string should be a list of one or more concatenated PEM blocks. The whole input of concatenated PEM blocks can optionally be Base64 encoded.", @@ -4405,6 +4442,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string representing the input string hashed with the SHA1 function", @@ -4527,6 +4565,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string representing the input string hashed with the SHA256 function", @@ -4609,6 +4648,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns one or more certificates from the given string containing PEM\nor base64 encoded DER certificates after verifying the supplied certificates form a complete\ncertificate chain back to a trusted root.\n\nThe first certificate is treated as the root and the last is treated as the leaf,\nwith all others being treated as intermediates.", @@ -4639,6 +4679,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns one or more certificates from the given string containing PEM\nor base64 encoded DER certificates after verifying the supplied certificates form a complete\ncertificate chain back to a trusted root. A config option passed as the second argument can\nbe used to configure the validation options used.\n\nThe first certificate is treated as the root and the last is treated as the leaf,\nwith all others being treated as intermediates.", @@ -4747,6 +4788,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a PKCS #10 certificate signing request from the given PEM-encoded PKCS#10 certificate signing request.", @@ -4870,6 +4912,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns zero or more certificates from the given encoded string containing\nDER certificate data.\n\nIf the input is empty, the function will return null. The input string should be a list of one or more\nconcatenated PEM blocks. The whole input of concatenated PEM blocks can optionally be Base64 encoded.", @@ -4913,6 +4956,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a valid key pair", @@ -4992,6 +5036,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a JWK for signing a JWT from the given PEM-encoded RSA private key.", @@ -5120,6 +5165,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Divides the first number by the second number.", @@ -5249,6 +5295,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns true if the search string ends with the base string.", @@ -5373,6 +5420,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "=", @@ -5497,6 +5545,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "==", @@ -5591,6 +5640,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Rounds the number _down_ to the nearest integer.", @@ -5719,6 +5769,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the string representation of the number in the given base after rounding it down to an integer value.", @@ -5850,6 +5901,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Parses and matches strings against the glob notation. Not to be confused with `regex.globs_match`.", @@ -5972,6 +6024,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a string which represents a version of the pattern where all asterisks have been escaped.", @@ -6091,6 +6144,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Computes the set of reachable nodes in the graph from a set of starting nodes.", @@ -6167,6 +6221,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Computes the set of reachable paths in the graph from a set of starting nodes.", @@ -6234,6 +6289,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks that a GraphQL query is valid against a given schema. The query and/or schema can be either GraphQL strings or AST objects from the other GraphQL builtin functions.", @@ -6301,6 +6357,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns AST objects for a given GraphQL query and schema after validating the query against the schema. Returns undefined if errors were encountered during parsing or validation. The query and/or schema can be either GraphQL strings or AST objects from the other GraphQL builtin functions.", @@ -6368,6 +6425,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a boolean indicating success or failure alongside the parsed ASTs for a given GraphQL query and schema after validating the query against the schema. The query and/or schema can be either GraphQL strings or AST objects from the other GraphQL builtin functions.", @@ -6431,6 +6489,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns an AST object for a GraphQL query.", @@ -6494,6 +6553,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns an AST object for a GraphQL schema.", @@ -6549,6 +6609,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks that the input is a valid GraphQL schema. The schema can be either a GraphQL string or an AST object from the other GraphQL builtin functions.", @@ -6675,6 +6736,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "\u003e", @@ -6801,6 +6863,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "\u003e=", @@ -6901,6 +6964,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Deserializes the hex-encoded input string.", @@ -7000,6 +7064,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Serializes the input string using hex-encoding.", @@ -7122,6 +7187,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a HTTP response to the given HTTP request.", @@ -7249,6 +7315,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the index of a substring contained inside a string.", @@ -7325,6 +7392,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a list of all the indexes of a substring contained inside a string.", @@ -7403,6 +7471,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "in", @@ -7482,6 +7551,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "in", @@ -7555,6 +7625,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "introduced": "v0.34.0", @@ -7673,6 +7744,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the intersection of the given input sets.", @@ -7796,6 +7868,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Decodes a JSON Web Token and outputs it as an object.", @@ -7924,6 +7997,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies a JWT signature under parameterized constraints and decodes the claims if it is valid.\nSupports the following algorithms: HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384, ES512, PS256, PS384 and PS512.", @@ -8057,6 +8131,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Encodes and optionally signs a JSON Web Token. Inputs are taken as objects, not encoded strings (see `io.jwt.encode_sign_raw`).", @@ -8190,6 +8265,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Encodes and optionally signs a JSON Web Token.", @@ -8318,6 +8394,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a ES256 JWT signature is valid.", @@ -8437,6 +8514,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a ES384 JWT signature is valid.", @@ -8556,6 +8634,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a ES512 JWT signature is valid.", @@ -8684,6 +8763,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a HS256 (secret) JWT signature is valid.", @@ -8803,6 +8883,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a HS384 (secret) JWT signature is valid.", @@ -8922,6 +9003,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a HS512 (secret) JWT signature is valid.", @@ -9050,6 +9132,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a PS256 JWT signature is valid.", @@ -9169,6 +9252,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a PS384 JWT signature is valid.", @@ -9288,6 +9372,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a PS512 JWT signature is valid.", @@ -9416,6 +9501,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a RS256 JWT signature is valid.", @@ -9535,6 +9621,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a RS384 JWT signature is valid.", @@ -9654,6 +9741,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies if a RS512 JWT signature is valid.", @@ -9776,6 +9864,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `true` if the input value is an array.", @@ -9898,6 +9987,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `true` if the input value is a boolean.", @@ -10020,6 +10110,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `true` if the input value is null.", @@ -10142,6 +10233,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `true` if the input value is a number.", @@ -10264,6 +10356,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns true if the input value is an object", @@ -10386,6 +10479,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `true` if the input value is a set.", @@ -10508,6 +10602,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `true` if the input value is a string.", @@ -10635,6 +10730,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Filters the object. For example: `json.filter({\"a\": {\"b\": \"x\", \"c\": \"y\"}}, [\"a/b\"])` will result in `{\"a\": {\"b\": \"x\"}}`). Paths are not filtered in-order and are deduplicated before being evaluated.", @@ -10736,6 +10832,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies the input string is a valid JSON document.", @@ -10859,6 +10956,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Serializes the input term to JSON.", @@ -10888,6 +10986,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Serializes the input term JSON, with additional formatting options via the `opts` parameter. `opts` accepts keys `pretty` (enable multi-line/formatted JSON), `prefix` (string to prefix lines with, default empty string) and `indent` (string to indent with, default `\\t`).", @@ -10936,6 +11035,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks that the document matches the JSON schema.", @@ -11036,6 +11136,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Patches an object according to RFC6902. For example: `json.patch({\"a\": {\"foo\": 1}}, [{\"op\": \"add\", \"path\": \"/a/bar\", \"value\": 2}])` results in `{\"a\": {\"foo\": 1, \"bar\": 2}`. The patches are applied atomically: if any of them fails, the result will be undefined. Additionally works on sets, where a value contained in the set is considered to be its path.", @@ -11159,6 +11260,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Removes paths from an object. For example: `json.remove({\"a\": {\"b\": \"x\", \"c\": \"y\"}}, [\"a/b\"])` will result in `{\"a\": {\"c\": \"y\"}}`. Paths are not removed in-order and are deduplicated before being evaluated.", @@ -11282,6 +11384,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Deserializes the input string.", @@ -11325,6 +11428,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks that the input is a valid JSON schema object. The schema can be either a JSON string or an JSON object.", @@ -11448,6 +11552,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the input string but with all characters in lower-case.", @@ -11574,6 +11679,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "\u003c", @@ -11700,6 +11806,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "\u003c=", @@ -11822,6 +11929,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the maximum value in a collection.", @@ -11944,6 +12052,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the minimum value in a collection.", @@ -12070,6 +12179,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Minus subtracts the second number from the first number or computes the difference between two sets.", @@ -12197,6 +12307,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Multiplies two numbers.", @@ -12324,6 +12435,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "infix": "!=", @@ -12450,6 +12562,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks if a CIDR or IP is contained within another CIDR. `output` is `true` if `cidr_or_ip` (e.g. `127.0.0.64/26` or `127.0.0.1`) is contained within `cidr` (e.g. `127.0.0.1/24`) and `false` otherwise. Supports both IPv4 and IPv6 notations.", @@ -12570,6 +12683,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks if collections of cidrs or ips are contained within another collection of cidrs and returns matches. This function is similar to `net.cidr_contains` except it allows callers to pass collections of CIDRs or IPs as arguments and returns the matches (as opposed to a boolean result indicating a match between two CIDRs/IPs).", @@ -12692,6 +12806,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Expands CIDR to set of hosts (e.g., `net.cidr_expand(\"192.168.0.0/30\")` generates 4 hosts: `{\"192.168.0.0\", \"192.168.0.1\", \"192.168.0.2\", \"192.168.0.3\"}`).", @@ -12818,6 +12933,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks if a CIDR intersects with another CIDR (e.g. `192.168.0.0/16` overlaps with `192.168.1.0/24`). Supports both IPv4 and IPv6 notations.", @@ -12872,6 +12988,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Parses an IPv4/IPv6 CIDR and returns a boolean indicating if the provided CIDR is valid.", @@ -12973,6 +13090,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Merges IP addresses and subnets into the smallest possible list of CIDRs (e.g., `net.cidr_merge([\"192.0.128.0/24\", \"192.0.129.0/24\"])` generates `{\"192.0.128.0/23\"}`.This function merges adjacent subnets where possible, those contained within others and also removes any duplicates.\nSupports both IPv4 and IPv6 notations. IPv6 inputs need a prefix length (e.g. \"/128\").", @@ -13097,6 +13215,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -13169,6 +13288,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the set of IP addresses (both v4 and v6) that the passed-in `name` resolves to using the standard name resolution mechanisms available.", @@ -13278,6 +13398,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns an array of numbers in the given (inclusive) range. If `a==b`, then `range == [a]`; if `a \u003e b`, then `range` is in descending order.", @@ -13319,6 +13440,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns an array of numbers in the given (inclusive) range incremented by a positive step.\n\tIf \"a==b\", then \"range == [a]\"; if \"a \u003e b\", then \"range\" is in descending order.\n\tIf the provided \"step\" is less then 1, an error will be thrown.\n\tIf \"b\" is not in the range of the provided \"step\", \"b\" won't be included in the result.\n\t", @@ -13444,6 +13566,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Filters the object by keeping only specified keys. For example: `object.filter({\"a\": {\"b\": \"x\", \"c\": \"y\"}, \"d\": \"z\"}, [\"a\"])` will result in `{\"a\": {\"b\": \"x\", \"c\": \"y\"}}`).", @@ -13577,6 +13700,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns value of an object's key if present, otherwise a default. If the supplied `key` is an `array`, then `object.get` will search through a nested object or array using each key in turn. For example: `object.get({\"a\": [{ \"b\": true }]}, [\"a\", 0, \"b\"], false)` results in `true`.", @@ -13629,6 +13753,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a set of an object's keys. For example: `object.keys({\"a\": 1, \"b\": true, \"c\": \"d\")` results in `{\"a\", \"b\", \"c\"}`.", @@ -13755,6 +13880,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Removes specified keys from an object.", @@ -13823,6 +13949,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Determines if an object `sub` is a subset of another object `super`.Object `sub` is a subset of object `super` if and only if every key in `sub` is also in `super`, **and** for all keys which `sub` and `super` share, they have the same value. This function works with objects, sets, arrays and a set of array and set.If both arguments are objects, then the operation is recursive, e.g. `{\"c\": {\"x\": {10, 15, 20}}` is a subset of `{\"a\": \"b\", \"c\": {\"x\": {10, 15, 20, 25}, \"y\": \"z\"}`. If both arguments are sets, then this function checks if every element of `sub` is a member of `super`, but does not attempt to recurse. If both arguments are arrays, then this function checks if `sub` appears contiguously in order within `super`, and also does not attempt to recurse. If `super` is array and `sub` is set, then this function checks if `super` contains every element of `sub` with no consideration of ordering, and also does not attempt to recurse.", @@ -13947,6 +14074,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Creates a new object of the asymmetric union of two objects. For example: `object.union({\"a\": 1, \"b\": 2, \"c\": {\"d\": 3}}, {\"a\": 7, \"c\": {\"d\": 4, \"e\": 5}})` will result in `{\"a\": 7, \"b\": 2, \"c\": {\"d\": 4, \"e\": 5}}`.", @@ -14017,6 +14145,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Creates a new object that is the asymmetric union of all objects merged from left to right. For example: `object.union_n([{\"a\": 1}, {\"b\": 2}, {\"a\": 3}])` will result in `{\"b\": 2, \"a\": 3}`.", @@ -14134,6 +14263,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns an object that describes the runtime environment where OPA is deployed.", @@ -14260,6 +14390,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the union of two sets.", @@ -14387,6 +14518,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Plus adds two numbers together.", @@ -14459,6 +14591,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "introduced": "v0.34.0", @@ -14576,6 +14709,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Muliplies elements of an array or set of numbers", @@ -14635,6 +14769,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Signs an HTTP request object for Amazon Web Services. Currently implements [AWS Signature Version 4 request signing](https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html) by the `Authorization` header method.", @@ -14719,6 +14854,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a random integer between `0` and `n` (`n` exlusive). If `n` is `0`, then `y` is always `0`. For any given argument pair (`str`, `n`), the output will be consistent throughout a query evaluation.", @@ -14843,6 +14979,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -14974,6 +15111,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns all successive matches of the expression.", @@ -15106,6 +15244,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the specified number of matches when matching the input against the pattern.", @@ -15232,6 +15371,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks if the intersection of two glob-style regular expressions matches a non-empty set of non-empty strings.\nThe set of regex symbols is limited for this builtin: only `.`, `*`, `+`, `[`, `-`, `]` and `\\` are treated as special symbols.", @@ -15336,6 +15476,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Checks if a string is a valid regular expression: the detailed syntax for patterns is defined by https://github.com/google/re2/wiki/Syntax.", @@ -15445,6 +15586,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Matches a string against a regular expression.", @@ -15511,6 +15653,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Find and replaces the text using the regular expression pattern.", @@ -15638,6 +15781,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Splits the input string by the occurrences of the given pattern.", @@ -15776,6 +15920,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Matches a string against a pattern, where there pattern may be glob-like", @@ -15834,6 +15979,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the chain of metadata for the active rule.\nOrdered starting at the active rule, going outward to the most distant node in its package ancestry.\nA chain entry is a JSON document with two members: \"path\", an array representing the path of the node; and \"annotations\", a JSON document containing the annotations declared for the node.\nThe first entry in the chain always points to the active rule, even if it has no declared annotations (in which case the \"annotations\" member is not present).", @@ -15893,6 +16039,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns annotations declared for the active rule and using the _rule_ scope.", @@ -16021,6 +16168,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Parses the input Rego string and returns an object representation of the AST.", @@ -16146,6 +16294,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the remainder for of `x` divided by `y`, for `y != 0`.", @@ -16280,6 +16429,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Replace replaces all instances of a sub-string.", @@ -16403,6 +16553,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Rounds the number to the nearest integer.", @@ -16512,6 +16663,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Compares valid SemVer formatted version strings.", @@ -16617,6 +16769,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Validates that the input is a valid SemVer string.", @@ -16741,6 +16894,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "deprecated": true, @@ -16862,6 +17016,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a sorted array.", @@ -16990,6 +17145,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Split returns an array containing elements of the input string split on a delimiter.", @@ -17118,6 +17274,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the given string, formatted.", @@ -17246,6 +17403,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns true if the search string begins with the base string.", @@ -17309,6 +17467,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns true if any of the search strings begins with any of the base strings.", @@ -17372,6 +17531,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns true if any of the search strings ends with any of the base strings.", @@ -17397,10 +17557,11 @@ } ], "available": [ + "v0.67.0", "edge" ], "description": "Returns the number of non-overlapping instances of a substring in a string.", - "introduced": "edge", + "introduced": "v0.67.0", "result": { "description": "count of occurrences, `0` if not found", "name": "output", @@ -17432,6 +17593,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Renders a templated string with given template variables injected. For a given templated string and key/value mapping, values will be injected into the template where they are referenced by key.\n\tFor examples of templating syntax, see https://pkg.go.dev/text/template", @@ -17560,6 +17722,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Replaces a string from a list of old, new string pairs.\nReplacements are performed in the order they appear in the target string, without overlapping matches.\nThe old string comparisons are done in argument order.", @@ -17631,6 +17794,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Reverses a given string.", @@ -17762,6 +17926,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the portion of a string for a given `offset` and a `length`. If `length \u003c 0`, `output` is the remainder of the string.", @@ -17884,6 +18049,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Sums elements of an array or set of numbers.", @@ -18013,6 +18179,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the nanoseconds since epoch after adding years, months and days to nanoseconds. Month \u0026 day values outside their usual ranges after the operation and will be normalized - for example, October 32 would become November 1. `undefined` if the result would be outside the valid time range that can fit within an `int64`.", @@ -18136,6 +18303,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the `[hour, minute, second]` of the day for the nanoseconds since epoch.", @@ -18259,6 +18427,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the `[year, month, day]` for the nanoseconds since epoch.", @@ -18353,6 +18522,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the difference between two unix timestamps in nanoseconds (with optional timezone strings).", @@ -18400,6 +18570,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the formatted timestamp for the nanoseconds since epoch.", @@ -18517,6 +18688,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the current time since epoch in nanoseconds.", @@ -18640,6 +18812,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the duration in nanoseconds represented by a string.", @@ -18768,6 +18941,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the time in nanoseconds parsed from the string in the given format. `undefined` if the result would be outside the valid time range that can fit within an `int64`.", @@ -18890,6 +19064,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the time in nanoseconds parsed from the string in RFC3339 format. `undefined` if the result would be outside the valid time range that can fit within an `int64`.", @@ -19013,6 +19188,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the day of the week (Monday, Tuesday, ...) for the nanoseconds since epoch.", @@ -19135,6 +19311,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Converts a string, bool, or number value to a number: Strings are converted to numbers using `strconv.Atoi`, Boolean `false` is converted to 0 and `true` is converted to 1.", @@ -19257,6 +19434,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Emits `note` as a `Note` event in the query explanation. Query explanations show the exact expressions evaluated by OPA during policy execution. For example, `trace(\"Hello There!\")` includes `Note \"Hello There!\"` in the query explanation. To include variables in the message, use `sprintf`. For example, `person := \"Bob\"; trace(sprintf(\"Hello There! %v\", [person]))` will emit `Note \"Hello There! Bob\"` inside of the explanation.", @@ -19385,6 +19563,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `value` with all leading or trailing instances of the `cutset` characters removed.", @@ -19513,6 +19692,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `value` with all leading instances of the `cutset` chartacters removed.", @@ -19641,6 +19821,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `value` without the prefix. If `value` doesn't start with `prefix`, it is returned unchanged.", @@ -19769,6 +19950,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `value` with all trailing instances of the `cutset` chartacters removed.", @@ -19892,6 +20074,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Return the given string with all leading and trailing white space removed.", @@ -20020,6 +20203,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns `value` without the suffix. If `value` doesn't end with `suffix`, it is returned unchanged.", @@ -20142,6 +20326,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the type of its input value.", @@ -20265,6 +20450,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the union of the given input sets.", @@ -20329,6 +20515,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Converts strings like \"10G\", \"5K\", \"4M\", \"1500m\" and the like into a number.\nThis number can be a non-integer, such as 1.5, 0.22, etc. Supports standard metric decimal and\nbinary SI units (e.g., K, Ki, M, Mi, G, Gi etc.) m, K, M, G, T, P, and E are treated as decimal\nunits and Ki, Mi, Gi, Ti, Pi, and Ei are treated as binary units.\n\nNote that 'm' and 'M' are case-sensitive, to allow distinguishing between \"milli\" and \"mega\" units respectively. Other units are case-insensitive.", @@ -20452,6 +20639,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Converts strings like \"10GB\", \"5K\", \"4mb\" into an integer number of bytes.\nSupports standard byte units (e.g., KB, KiB, etc.) KB, MB, GB, and TB are treated as decimal\nunits and KiB, MiB, GiB, and TiB are treated as binary units. The bytes symbol (b/B) in the\nunit is optional and omitting it wil give the same result (e.g. Mi and MiB).", @@ -20575,6 +20763,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns the input string but with all characters in upper-case.", @@ -20697,6 +20886,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Decodes a URL-encoded input string.", @@ -20799,6 +20989,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Decodes the given URL query string into an object.", @@ -20921,6 +21112,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Encodes the input string into a URL-encoded string.", @@ -21043,6 +21235,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Encodes the given object into a URL encoded query string.", @@ -21075,6 +21268,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Parses the string value as an UUID and returns an object with the well-defined fields of the UUID if valid.", @@ -21188,6 +21382,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Returns a new UUIDv4.", @@ -21310,6 +21505,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Generates `[path, value]` tuples for all nested documents of `x` (recursively). Queries can use `walk` to traverse documents nested under `x`.", @@ -21412,6 +21608,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Verifies the input string is a valid YAML document.", @@ -21535,6 +21732,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Serializes the input term to YAML.", @@ -21658,6 +21856,7 @@ "v0.64.1", "v0.65.0", "v0.66.0", + "v0.67.0", "edge" ], "description": "Deserializes the input string.", diff --git a/capabilities/v0.67.0.json b/capabilities/v0.67.0.json new file mode 100644 index 0000000000..862a4555f9 --- /dev/null +++ b/capabilities/v0.67.0.json @@ -0,0 +1,4843 @@ +{ + "builtins": [ + { + "name": "abs", + "decl": { + "args": [ + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "all", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "and", + "decl": { + "args": [ + { + "of": { + "type": "any" + }, + "type": "set" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + }, + "infix": "\u0026" + }, + { + "name": "any", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "array.concat", + "decl": { + "args": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "result": { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "array.reverse", + "decl": { + "args": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "result": { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "array.slice", + "decl": { + "args": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "assign", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": ":=" + }, + { + "name": "base64.decode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "base64.encode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "base64.is_valid", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "base64url.decode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "base64url.encode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "base64url.encode_no_pad", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "bits.and", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "bits.lsh", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "bits.negate", + "decl": { + "args": [ + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "bits.or", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "bits.rsh", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "bits.xor", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "cast_array", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "cast_boolean", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "cast_null", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "null" + }, + "type": "function" + } + }, + { + "name": "cast_object", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "cast_set", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "cast_string", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "ceil", + "decl": { + "args": [ + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "concat", + "decl": { + "args": [ + { + "type": "string" + }, + { + "of": [ + { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + { + "of": { + "type": "string" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "contains", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "count", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "crypto.hmac.equal", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "crypto.hmac.md5", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "crypto.hmac.sha1", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "crypto.hmac.sha256", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "crypto.hmac.sha512", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "crypto.md5", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "crypto.parse_private_keys", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "crypto.sha1", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "crypto.sha256", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "crypto.x509.parse_and_verify_certificates", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "static": [ + { + "type": "boolean" + }, + { + "dynamic": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "array" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "crypto.x509.parse_and_verify_certificates_with_options", + "decl": { + "args": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "static": [ + { + "type": "boolean" + }, + { + "dynamic": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "array" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "crypto.x509.parse_certificate_request", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "crypto.x509.parse_certificates", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "crypto.x509.parse_keypair", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "crypto.x509.parse_rsa_private_key", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "div", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + }, + "infix": "/" + }, + { + "name": "endswith", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "eq", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "=" + }, + { + "name": "equal", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "==" + }, + { + "name": "floor", + "decl": { + "args": [ + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "format_int", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "glob.match", + "decl": { + "args": [ + { + "type": "string" + }, + { + "of": [ + { + "type": "null" + }, + { + "dynamic": { + "type": "string" + }, + "type": "array" + } + ], + "type": "any" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "glob.quote_meta", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "graph.reachable", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + }, + "type": "object" + }, + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "graph.reachable_paths", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + }, + "type": "object" + }, + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "of": { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "graphql.is_valid", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "graphql.parse", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + } + ], + "result": { + "static": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "graphql.parse_and_verify", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + } + ], + "result": { + "static": [ + { + "type": "boolean" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "graphql.parse_query", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "graphql.parse_schema", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "graphql.schema_is_valid", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "gt", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "\u003e" + }, + { + "name": "gte", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "\u003e=" + }, + { + "name": "hex.decode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "hex.encode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "http.send", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "indexof", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "indexof_n", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "dynamic": { + "type": "number" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "internal.member_2", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "in" + }, + { + "name": "internal.member_3", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "in" + }, + { + "name": "internal.print", + "decl": { + "args": [ + { + "dynamic": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "array" + } + ], + "type": "function" + } + }, + { + "name": "intersection", + "decl": { + "args": [ + { + "of": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "set" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "io.jwt.decode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "static": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "type": "string" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "io.jwt.decode_verify", + "decl": { + "args": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "static": [ + { + "type": "boolean" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "array" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "io.jwt.encode_sign", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "type": "string" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "io.jwt.encode_sign_raw", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "io.jwt.verify_es256", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_es384", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_es512", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_hs256", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_hs384", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_hs512", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_ps256", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_ps384", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_ps512", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_rs256", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_rs384", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "io.jwt.verify_rs512", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "is_array", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "is_boolean", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "is_null", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "is_number", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "is_object", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "is_set", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "is_string", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "json.filter", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": [ + { + "dynamic": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "array" + }, + { + "of": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "json.is_valid", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "json.marshal", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "json.marshal_with_options", + "decl": { + "args": [ + { + "type": "any" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "static": [ + { + "key": "indent", + "value": { + "type": "string" + } + }, + { + "key": "prefix", + "value": { + "type": "string" + } + }, + { + "key": "pretty", + "value": { + "type": "boolean" + } + } + ], + "type": "object" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "json.match_schema", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + } + ], + "result": { + "static": [ + { + "type": "boolean" + }, + { + "dynamic": { + "static": [ + { + "key": "desc", + "value": { + "type": "string" + } + }, + { + "key": "error", + "value": { + "type": "string" + } + }, + { + "key": "field", + "value": { + "type": "string" + } + }, + { + "key": "type", + "value": { + "type": "string" + } + } + ], + "type": "object" + }, + "type": "array" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "json.patch", + "decl": { + "args": [ + { + "type": "any" + }, + { + "dynamic": { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "static": [ + { + "key": "op", + "value": { + "type": "string" + } + }, + { + "key": "path", + "value": { + "type": "any" + } + } + ], + "type": "object" + }, + "type": "array" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "json.remove", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": [ + { + "dynamic": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "array" + }, + { + "of": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "json.unmarshal", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "json.verify_schema", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "type": "any" + } + ], + "result": { + "static": [ + { + "type": "boolean" + }, + { + "of": [ + { + "type": "null" + }, + { + "type": "string" + } + ], + "type": "any" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "lower", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "lt", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "\u003c" + }, + { + "name": "lte", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "\u003c=" + }, + { + "name": "max", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "min", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "minus", + "decl": { + "args": [ + { + "of": [ + { + "type": "number" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "number" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "of": [ + { + "type": "number" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + }, + "type": "function" + }, + "infix": "-" + }, + { + "name": "mul", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + }, + "infix": "*" + }, + { + "name": "neq", + "decl": { + "args": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + }, + "infix": "!=" + }, + { + "name": "net.cidr_contains", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "net.cidr_contains_matches", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + } + }, + "type": "object" + }, + { + "of": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + } + }, + "type": "object" + }, + { + "of": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "of": { + "static": [ + { + "type": "any" + }, + { + "type": "any" + } + ], + "type": "array" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "net.cidr_expand", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "of": { + "type": "string" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "net.cidr_intersects", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "net.cidr_is_valid", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "net.cidr_merge", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "of": [ + { + "type": "string" + } + ], + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "string" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "of": { + "type": "string" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "net.cidr_overlap", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "net.lookup_ip_addr", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "of": { + "type": "string" + }, + "type": "set" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "numbers.range", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "dynamic": { + "type": "number" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "numbers.range_step", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "dynamic": { + "type": "number" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "object.filter", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "object.get", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "type": "any" + }, + { + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "object.keys", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "object.remove", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "object.subset", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + }, + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "object.union", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "object.union_n", + "decl": { + "args": [ + { + "dynamic": { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "array" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "opa.runtime", + "decl": { + "result": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "or", + "decl": { + "args": [ + { + "of": { + "type": "any" + }, + "type": "set" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + }, + "infix": "|" + }, + { + "name": "plus", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + }, + "infix": "+" + }, + { + "name": "print", + "decl": { + "type": "function", + "variadic": { + "type": "any" + } + } + }, + { + "name": "product", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "number" + }, + "type": "array" + }, + { + "of": { + "type": "number" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "providers.aws.sign_req", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + { + "type": "number" + } + ], + "result": { + "dynamic": { + "key": { + "type": "any" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "rand.intn", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "re_match", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "regex.find_all_string_submatch_n", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + }, + { + "type": "number" + } + ], + "result": { + "dynamic": { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "regex.find_n", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + }, + { + "type": "number" + } + ], + "result": { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "regex.globs_match", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "regex.is_valid", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "regex.match", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "regex.replace", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "regex.split", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "regex.template_match", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + }, + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "rego.metadata.chain", + "decl": { + "result": { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "rego.metadata.rule", + "decl": { + "result": { + "type": "any" + }, + "type": "function" + } + }, + { + "name": "rego.parse_module", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "rem", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + }, + "infix": "%" + }, + { + "name": "replace", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "round", + "decl": { + "args": [ + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "semver.compare", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "semver.is_valid", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "set_diff", + "decl": { + "args": [ + { + "of": { + "type": "any" + }, + "type": "set" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "sort", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "of": { + "type": "any" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "split", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + "type": "function" + } + }, + { + "name": "sprintf", + "decl": { + "args": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "any" + }, + "type": "array" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "startswith", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "strings.any_prefix_match", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + { + "of": { + "type": "string" + }, + "type": "set" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + { + "of": { + "type": "string" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "strings.any_suffix_match", + "decl": { + "args": [ + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + { + "of": { + "type": "string" + }, + "type": "set" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + { + "of": { + "type": "string" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "strings.count", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "strings.render_template", + "decl": { + "args": [ + { + "type": "string" + }, + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "strings.replace_n", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "type": "object" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "strings.reverse", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "substring", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "sum", + "decl": { + "args": [ + { + "of": [ + { + "dynamic": { + "type": "number" + }, + "type": "array" + }, + { + "of": { + "type": "number" + }, + "type": "set" + } + ], + "type": "any" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "time.add_date", + "decl": { + "args": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "time.clock", + "decl": { + "args": [ + { + "of": [ + { + "type": "number" + }, + { + "static": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "type": "array" + } + ], + "type": "any" + } + ], + "result": { + "static": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "time.date", + "decl": { + "args": [ + { + "of": [ + { + "type": "number" + }, + { + "static": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "type": "array" + } + ], + "type": "any" + } + ], + "result": { + "static": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "time.diff", + "decl": { + "args": [ + { + "of": [ + { + "type": "number" + }, + { + "static": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "type": "array" + } + ], + "type": "any" + }, + { + "of": [ + { + "type": "number" + }, + { + "static": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "type": "array" + } + ], + "type": "any" + } + ], + "result": { + "static": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + "type": "function" + } + }, + { + "name": "time.format", + "decl": { + "args": [ + { + "of": [ + { + "type": "number" + }, + { + "static": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "type": "array" + }, + { + "static": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "string" + } + ], + "type": "array" + } + ], + "type": "any" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "time.now_ns", + "decl": { + "result": { + "type": "number" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "time.parse_duration_ns", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "time.parse_ns", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "time.parse_rfc3339_ns", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "time.weekday", + "decl": { + "args": [ + { + "of": [ + { + "type": "number" + }, + { + "static": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "type": "array" + } + ], + "type": "any" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "to_number", + "decl": { + "args": [ + { + "of": [ + { + "type": "null" + }, + { + "type": "boolean" + }, + { + "type": "number" + }, + { + "type": "string" + } + ], + "type": "any" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "trace", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "trim", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "trim_left", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "trim_prefix", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "trim_right", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "trim_space", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "trim_suffix", + "decl": { + "args": [ + { + "type": "string" + }, + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "type_name", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "union", + "decl": { + "args": [ + { + "of": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "set" + } + ], + "result": { + "of": { + "type": "any" + }, + "type": "set" + }, + "type": "function" + } + }, + { + "name": "units.parse", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "units.parse_bytes", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "number" + }, + "type": "function" + } + }, + { + "name": "upper", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "urlquery.decode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "urlquery.decode_object", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "dynamic": { + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "urlquery.encode", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "urlquery.encode_object", + "decl": { + "args": [ + { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "of": [ + { + "type": "string" + }, + { + "dynamic": { + "type": "string" + }, + "type": "array" + }, + { + "of": { + "type": "string" + }, + "type": "set" + } + ], + "type": "any" + } + }, + "type": "object" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "uuid.parse", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "dynamic": { + "key": { + "type": "string" + }, + "value": { + "type": "any" + } + }, + "type": "object" + }, + "type": "function" + } + }, + { + "name": "uuid.rfc4122", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "string" + }, + "type": "function" + }, + "nondeterministic": true + }, + { + "name": "walk", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "static": [ + { + "dynamic": { + "type": "any" + }, + "type": "array" + }, + { + "type": "any" + } + ], + "type": "array" + }, + "type": "function" + }, + "relation": true + }, + { + "name": "yaml.is_valid", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "boolean" + }, + "type": "function" + } + }, + { + "name": "yaml.marshal", + "decl": { + "args": [ + { + "type": "any" + } + ], + "result": { + "type": "string" + }, + "type": "function" + } + }, + { + "name": "yaml.unmarshal", + "decl": { + "args": [ + { + "type": "string" + } + ], + "result": { + "type": "any" + }, + "type": "function" + } + } + ], + "future_keywords": [ + "contains", + "every", + "if", + "in" + ], + "wasm_abi_versions": [ + { + "version": 1, + "minor_version": 1 + }, + { + "version": 1, + "minor_version": 2 + } + ], + "features": [ + "rule_head_ref_string_prefixes", + "rule_head_refs", + "rego_v1_import" + ] +} diff --git a/version/version.go b/version/version.go index 9e3c16c9b3..1a1834eefe 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ import ( ) // Version is the canonical version of OPA. -var Version = "0.67.0-dev" +var Version = "0.67.0" // GoVersion is the version of Go this was built with var GoVersion = runtime.Version()