diff --git a/CHANGELOG.md b/CHANGELOG.md index 6735acee91..3b0a23a024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,82 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## 1.4.0 + +This release contains a security fix addressing CVE-2025-46569. +It also includes a mix of new features, bugfixes, and dependency updates. + +#### Security Fix: CVE-2025-46569 - OPA server Data API HTTP path injection of Rego ([GHSA-6m8w-jc87-6cr7](https://github.com/open-policy-agent/opa/security/advisories/GHSA-6m8w-jc87-6cr7)) + +A vulnerability in the OPA server's [Data API](https://www.openpolicyagent.org/docs/latest/rest-api/#data-api) allows an attacker to craft the HTTP path in a way that injects Rego code into the query that is evaluated. +The evaluation result cannot be made to return any other data than what is generated by the requested path, but this path can be misdirected, and the injected Rego code can be crafted to make the query succeed or fail; opening up for oracle attacks or, given the right circumstances, erroneous policy decision results. +Furthermore, the injected code can be crafted to be computationally expensive, resulting in a Denial Of Service (DoS) attack. + +**Users are only impacted if all of the following apply:** + +* OPA is deployed as a standalone server (rather than being used as a Go library) +* The OPA server is exposed outside of the local host in an untrusted environment. +* The configured [authorization policy](https://www.openpolicyagent.org/docs/latest/security/#authentication-and-authorization) does not do exact matching of the input.path attribute when deciding if the request should be allowed. + +**or, if all of the following apply:** + +* OPA is deployed as a standalone server. +* The service connecting to OPA allows 3rd parties to insert unsanitised text into the path of the HTTP request to OPA’s Data API. + +Note: With **no** [Authorization Policy](https://www.openpolicyagent.org/docs/latest/security/#authentication-and-authorization) configured for restricting API access (the default configuration), the RESTful [Data API](https://www.openpolicyagent.org/docs/latest/rest-api/#data-api) provides access for managing Rego policies; and the RESTful [Query API](https://www.openpolicyagent.org/docs/latest/rest-api/#query-api) facilitates advanced queries. +Full access to these APIs provides both simpler, and broader access than what the security issue describes here can facilitate. +As such, OPA servers exposed to a network are **not** considered affected by the attack described here if they are knowingly not restricting access through an Authorization Policy. + +This issue affects all versions of OPA prior to 1.4.0. + +See the [Security Advisory](https://github.com/open-policy-agent/opa/security/advisories/GHSA-6m8w-jc87-6cr7) for more details. + +Reported by @GamrayW, @HyouKash, @AdrienIT, authored by @johanfylling + +### Runtime, Tooling, SDK + +- ast: Adding `rego_v1` feature to `--v0-compatible` capabilities ([#7474](https://github.com/open-policy-agent/opa/pull/7474)) authored by @johanfylling +- executable: Add version and icon to OPA windows executable ([#3171](https://github.com/open-policy-agent/opa/issues/3171)) authored by @sspaink reported by @christophwille +- format: Don't panic on format due to unexpected comments ([#6330](https://github.com/open-policy-agent/opa/issues/6330)) authored by @sspaink reported by @sirpi +- format: Avoid modifying strings when formatting ([#6220](https://github.com/open-policy-agent/opa/issues/6220)) authored by @sspaink reported by @zregvart +- plugins/status: FIFO buffer channel for status events to prevent slow status API blocking ([#7522](https://github.com/open-policy-agent/opa/pull/7522)) authored by @sspaink + +### Topdown and Rego + +- gqlparser: Add JSON annotation in `internal/gqlparser/ast` to Position fields ([#7509](https://github.com/open-policy-agent/opa/pull/7509)) authored by @robmyersrobmyers +- graphql: Cache GraphQL schema parse results ([#7457](https://github.com/open-policy-agent/opa/pull/7457)) authored by @robmyersrobmyers +- topdown: Handling default functions in Partial Eval ([#7220](https://github.com/open-policy-agent/opa/issues/7220)) authored by @johanfylling +- topdown: Fix wall clock time init for `PartialRun()` ([#7490](https://github.com/open-policy-agent/opa/issues/7490)) authored by @srenatus +- topdown: Zero alloc lower/upper unless changed ([#7472](https://github.com/open-policy-agent/opa/pull/7472)) authored by @anderseknert + +### Docs, Website, Ecosystem + +- adopters: Cloudsmith adds support for OPA ([#7498](https://github.com/open-policy-agent/opa/pull/7498)) authored by @ndouglas-cloudsmith +- docs: Fixed broken docs link ([#7452](https://github.com/open-policy-agent/opa/issues/7452)) reported and authored by @fvarg00 +- docs: Update built-in function examples for OPA v1 ([#7514](https://github.com/open-policy-agent/opa/issues/7514)) reported and authored by @robmyersrobmyers +- docs: Add link to inline schema annotations ([#7496](https://github.com/open-policy-agent/opa/pull/7496)) authored by @kmadan +- docs: Add manual trigger to integration docs ([#7473](https://github.com/open-policy-agent/opa/pull/7473)) authored by @charlieegan3 +- docs: Point path versioned requests to new sites ([#7531](https://github.com/open-policy-agent/opa/pull/7531)) authored by @charlieegan3 +- docs: Update community slack inviter link ([#7488](https://github.com/open-policy-agent/opa/pull/7488), [#7493](https://github.com/open-policy-agent/opa/pull/7493)) authored by @charlieegan3 +- docs: Set versioned docs links to point to archive ([#7528](https://github.com/open-policy-agent/opa/pull/7528)) authored by @charlieegan3 +- docs: Update helm-kubernetes-quickstart bundle ([#7469](https://github.com/open-policy-agent/opa/pull/7469)) authored by @johanfylling +- docs: Update opa-docker-authz example to use ghcr and v0.10 release tag ([#7513](https://github.com/open-policy-agent/opa/pull/7513)) authored by @larhauga +- docs: Fix post merge badge ([#7532](https://github.com/open-policy-agent/opa/pull/7532)) authored by @sspaink +- docs: Improve request headers documentation in REST APIs ([#7524](https://github.com/open-policy-agent/opa/pull/7524)) authored by @ali-jalaal +- docs: Update edge links to use `/docs/edge/` path ([#7529](https://github.com/open-policy-agent/opa/pull/7529)) authored by @charlieegan3 +- ecosystem: Add NACP integration ([#7503](https://github.com/open-policy-agent/opa/pull/7503)) authored by @charlieegan3 +- ecosystem: Update traefik integration docs ([#7506](https://github.com/open-policy-agent/opa/pull/7506)) authored by @charlieegan3 +- ecosystem: Add Principled Evolution integration ([#7495](https://github.com/open-policy-agent/opa/pull/7495)) authored by @kmadan +- ecosystem: Add tavo to ecosystem integration ([#7511](https://github.com/open-policy-agent/opa/pull/7511)) authored by @percyding-tavo + +### Miscellaneous + +- Dependency updates; notably: + - build(deps): bump github.com/hypermodeinc/badger from v4.6.0 to v4.7.0 + - build(deps): bump github.com/spf13/viper from 1.18.2 to 1.20.1 + - build(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 + - build(deps): bump google.golang.org/grpc from 1.71.0 to 1.71.1 + - build(deps): bump oras.land/oras-go/v2 from 2.3.1 to 2.5.0 ## 1.3.0 diff --git a/builtin_metadata.json b/builtin_metadata.json index 96cfd4ea73..1ce87b45f3 100644 --- a/builtin_metadata.json +++ b/builtin_metadata.json @@ -368,6 +368,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the number without its sign.", @@ -499,6 +500,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -635,6 +637,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the intersection of two sets.", @@ -767,6 +770,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -903,6 +907,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Concatenates two arrays.", @@ -986,6 +991,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the reverse of a given array.", @@ -1129,6 +1135,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a slice of a given array. If `start` is greater or equal than `stop`, `slice` is `[]`.", @@ -1263,6 +1270,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": ":=", @@ -1394,6 +1402,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Deserializes the base64 encoded input string.", @@ -1527,6 +1536,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Serializes the input string into base64 encoding.", @@ -1639,6 +1649,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies the input string is base64 encoded.", @@ -1772,6 +1783,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Deserializes the base64url encoded input string.", @@ -1905,6 +1917,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Serializes the input string into base64url encoding.", @@ -2015,6 +2028,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Serializes the input string into base64url encoding without padding.", @@ -2149,6 +2163,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the bitwise \"AND\" of two integers.", @@ -2283,6 +2298,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a new integer with its bits shifted `s` bits to the left.", @@ -2412,6 +2428,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the bitwise negation (flip) of an integer.", @@ -2546,6 +2563,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the bitwise \"OR\" of two integers.", @@ -2680,6 +2698,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a new integer with its bits shifted `s` bits to the right.", @@ -2814,6 +2833,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the bitwise \"XOR\" (exclusive-or) of two integers.", @@ -2945,6 +2965,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -3074,6 +3095,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -3203,6 +3225,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -3332,6 +3355,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -3461,6 +3485,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -3590,6 +3615,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -3692,6 +3718,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Rounds the number _up_ to the nearest integer.", @@ -3830,6 +3857,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Joins a set or array of strings with a delimiter.", @@ -3968,6 +3996,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `true` if the search string is included in the base string", @@ -4101,6 +4130,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": " Count takes a collection or string and returns the number of elements (or characters) in it.", @@ -4155,6 +4185,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a boolean representing the result of comparing two MACs for equality without leaking timing information.", @@ -4243,6 +4274,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string representing the MD5 HMAC of the input message using the input key.", @@ -4331,6 +4363,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string representing the SHA1 HMAC of the input message using the input key.", @@ -4419,6 +4452,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string representing the SHA256 HMAC of the input message using the input key.", @@ -4507,6 +4541,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string representing the SHA512 HMAC of the input message using the input key.", @@ -4640,6 +4675,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string representing the input string hashed with the MD5 function", @@ -4685,6 +4721,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -4818,6 +4855,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string representing the input string hashed with the SHA1 function", @@ -4951,6 +4989,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string representing the input string hashed with the SHA256 function", @@ -5043,6 +5082,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -5083,6 +5123,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -5201,6 +5242,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a PKCS #10 certificate signing request from the given PEM-encoded PKCS#10 certificate signing request.", @@ -5334,6 +5376,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -5387,6 +5430,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a valid key pair", @@ -5476,6 +5520,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a JWK for signing a JWT from the given PEM-encoded RSA private key.", @@ -5614,6 +5659,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Divides the first number by the second number.", @@ -5753,6 +5799,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns true if the search string ends with the base string.", @@ -5887,6 +5934,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "=", @@ -6021,6 +6069,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "==", @@ -6125,6 +6174,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Rounds the number _down_ to the nearest integer.", @@ -6263,6 +6313,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the string representation of the number in the given base after rounding it down to an integer value.", @@ -6406,6 +6457,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Parses and matches strings against the glob notation. Not to be confused with `regex.globs_match`.", @@ -6539,6 +6591,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a string which represents a version of the pattern where all asterisks have been escaped.", @@ -6668,6 +6721,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Computes the set of reachable nodes in the graph from a set of starting nodes.", @@ -6754,6 +6808,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Computes the set of reachable paths in the graph from a set of starting nodes.", @@ -6833,6 +6888,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -6912,6 +6968,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -6991,6 +7048,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -7065,6 +7123,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns an AST object for a GraphQL query.", @@ -7139,6 +7198,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns an AST object for a GraphQL schema.", @@ -7205,6 +7265,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -7341,6 +7402,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "\u003e", @@ -7477,6 +7539,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "\u003e=", @@ -7587,6 +7650,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Deserializes the hex-encoded input string.", @@ -7697,6 +7761,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Serializes the input string using hex-encoding.", @@ -7830,6 +7895,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a HTTP response to the given HTTP request.", @@ -7968,6 +8034,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the index of a substring contained inside a string.", @@ -8054,6 +8121,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a list of all the indexes of a substring contained inside a string.", @@ -8142,6 +8210,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "in", @@ -8231,6 +8300,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "in", @@ -8314,6 +8384,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "introduced": "v0.34.0", @@ -8329,6 +8400,7 @@ "available": [ "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "introduced": "v1.2.0", @@ -8457,6 +8529,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the intersection of the given input sets.", @@ -8590,6 +8663,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Decodes a JSON Web Token and outputs it as an object.", @@ -8728,6 +8802,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -8871,6 +8946,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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`).", @@ -9014,6 +9090,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Encodes and optionally signs a JSON Web Token.", @@ -9152,6 +9229,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a ES256 JWT signature is valid.", @@ -9281,6 +9359,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a ES384 JWT signature is valid.", @@ -9410,6 +9489,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a ES512 JWT signature is valid.", @@ -9548,6 +9628,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a HS256 (secret) JWT signature is valid.", @@ -9677,6 +9758,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a HS384 (secret) JWT signature is valid.", @@ -9806,6 +9888,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a HS512 (secret) JWT signature is valid.", @@ -9944,6 +10027,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a PS256 JWT signature is valid.", @@ -10073,6 +10157,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a PS384 JWT signature is valid.", @@ -10202,6 +10287,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a PS512 JWT signature is valid.", @@ -10340,6 +10426,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a RS256 JWT signature is valid.", @@ -10469,6 +10556,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a RS384 JWT signature is valid.", @@ -10598,6 +10686,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies if a RS512 JWT signature is valid.", @@ -10731,6 +10820,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `true` if the input value is an array.", @@ -10864,6 +10954,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `true` if the input value is a boolean.", @@ -10997,6 +11088,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `true` if the input value is null.", @@ -11130,6 +11222,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `true` if the input value is a number.", @@ -11263,6 +11356,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns true if the input value is an object", @@ -11396,6 +11490,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `true` if the input value is a set.", @@ -11529,6 +11624,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `true` if the input value is a string.", @@ -11667,6 +11763,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -11778,6 +11875,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies the input string is a valid JSON document.", @@ -11911,6 +12009,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Serializes the input term to JSON.", @@ -11950,6 +12049,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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`).", @@ -12008,6 +12108,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Checks that the document matches the JSON schema.", @@ -12120,6 +12221,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -12254,6 +12356,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -12387,6 +12490,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Deserializes the input string.", @@ -12440,6 +12544,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -12573,6 +12678,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the input string but with all characters in lower-case.", @@ -12709,6 +12815,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "\u003c", @@ -12845,6 +12952,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "\u003c=", @@ -12978,6 +13086,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the maximum value in a collection.", @@ -13111,6 +13220,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the minimum value in a collection.", @@ -13247,6 +13357,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Minus subtracts the second number from the first number or computes the difference between two sets.", @@ -13384,6 +13495,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Multiplies two numbers.", @@ -13521,6 +13633,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "infix": "!=", @@ -13659,6 +13772,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -13792,6 +13906,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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).", @@ -13925,6 +14040,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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\"}`).", @@ -14063,6 +14179,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -14129,6 +14246,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Parses an IPv4/IPv6 CIDR and returns a boolean indicating if the provided CIDR is valid.", @@ -14241,6 +14359,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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\").", @@ -14375,6 +14494,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -14457,6 +14577,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -14578,6 +14699,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -14632,6 +14754,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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", @@ -14768,6 +14891,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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\"}}`).", @@ -14911,6 +15035,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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`.", @@ -14973,6 +15098,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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\"}`.", @@ -15109,6 +15235,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Removes specified keys from an object.", @@ -15187,6 +15314,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -15323,6 +15451,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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}}`.", @@ -15404,6 +15533,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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}`.", @@ -15531,6 +15661,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns an object that describes the runtime environment where OPA is deployed.", @@ -15667,6 +15798,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the union of two sets.", @@ -15804,6 +15936,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Plus adds two numbers together.", @@ -15886,6 +16019,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "introduced": "v0.34.0", @@ -16014,6 +16148,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Multiplies elements of an array or set of numbers", @@ -16086,6 +16221,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -16183,6 +16319,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a random integer between `0` and `n` (`n` exclusive). 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.", @@ -16317,6 +16454,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -16458,6 +16596,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns all successive matches of the expression.", @@ -16601,6 +16740,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the specified number of matches when matching the input against the pattern.", @@ -16739,6 +16879,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -16854,6 +16995,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -16974,6 +17116,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Matches a string against a regular expression.", @@ -17051,6 +17194,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Find and replaces the text using the regular expression pattern.", @@ -17189,6 +17333,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Splits the input string by the occurrences of the given pattern.", @@ -17337,6 +17482,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Matches a string against a pattern, where there pattern may be glob-like", @@ -17406,6 +17552,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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).", @@ -17475,6 +17622,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns annotations declared for the active rule and using the _rule_ scope.", @@ -17613,6 +17761,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Parses the input Rego string and returns an object representation of the AST.", @@ -17749,6 +17898,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the remainder for of `x` divided by `y`, for `y != 0`.", @@ -17893,6 +18043,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Replace replaces all instances of a sub-string.", @@ -18026,6 +18177,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Rounds the number to the nearest integer.", @@ -18147,6 +18299,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Compares valid SemVer formatted version strings.", @@ -18263,6 +18416,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Validates that the input is a valid SemVer string.", @@ -18397,6 +18551,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "deprecated": true, @@ -18528,6 +18683,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a sorted array.", @@ -18666,6 +18822,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Split returns an array containing elements of the input string split on a delimiter.", @@ -18804,6 +18961,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the given string, formatted.", @@ -18942,6 +19100,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns true if the search string begins with the base string.", @@ -19015,6 +19174,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns true if any of the search strings begins with any of the base strings.", @@ -19088,6 +19248,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns true if any of the search strings ends with any of the base strings.", @@ -19123,6 +19284,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the number of non-overlapping instances of a substring in a string.", @@ -19168,6 +19330,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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", @@ -19306,6 +19469,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -19389,6 +19553,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Reverses a given string.", @@ -19532,6 +19697,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -19665,6 +19831,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Sums elements of an array or set of numbers.", @@ -19807,6 +19974,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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`.", @@ -19940,6 +20108,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the `[hour, minute, second]` of the day for the nanoseconds since epoch.", @@ -20073,6 +20242,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the `[year, month, day]` for the nanoseconds since epoch.", @@ -20179,6 +20349,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the difference between two unix timestamps in nanoseconds (with optional timezone strings).", @@ -20236,6 +20407,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the formatted timestamp for the nanoseconds since epoch.", @@ -20363,6 +20535,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the current time since epoch in nanoseconds.", @@ -20496,6 +20669,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the duration in nanoseconds represented by a string.", @@ -20634,6 +20808,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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`.", @@ -20767,6 +20942,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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`.", @@ -20900,6 +21076,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the day of the week (Monday, Tuesday, ...) for the nanoseconds since epoch.", @@ -21033,6 +21210,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -21166,6 +21344,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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.", @@ -21304,6 +21483,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `value` with all leading or trailing instances of the `cutset` characters removed.", @@ -21442,6 +21622,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `value` with all leading instances of the `cutset` characters removed.", @@ -21580,6 +21761,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `value` without the prefix. If `value` doesn't start with `prefix`, it is returned unchanged.", @@ -21718,6 +21900,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `value` with all trailing instances of the `cutset` characters removed.", @@ -21851,6 +22034,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Return the given string with all leading and trailing white space removed.", @@ -21989,6 +22173,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns `value` without the suffix. If `value` doesn't end with `suffix`, it is returned unchanged.", @@ -22122,6 +22307,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the type of its input value.", @@ -22255,6 +22441,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the union of the given input sets.", @@ -22329,6 +22516,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.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. Scientific notation is supported,\nallowing values such as \"1e-3K\" (1) or \"2.5e6M\" (2.5 million M).\n\nSupports standard metric decimal and binary SI units (e.g., K, Ki, M, Mi, G, Gi, etc.) where\nm, K, M, G, T, P, and E are treated as decimal units and Ki, Mi, Gi, Ti, Pi, and Ei are treated as\nbinary units.\n\nNote that 'm' and 'M' are case-sensitive to allow distinguishing between \"milli\" and \"mega\" units\nrespectively. Other units are case-insensitive.", @@ -22462,6 +22650,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Converts strings like \"10GB\", \"5K\", \"4mb\", or \"1e6KB\" into an integer number of bytes.\n\nSupports standard byte units (e.g., KB, KiB, etc.) where KB, MB, GB, and TB are treated as decimal\nunits, and KiB, MiB, GiB, and TiB are treated as binary units. Scientific notation is supported,\nenabling values like \"1.5e3MB\" (1500MB) or \"2e6GiB\" (2 million GiB).\n\nThe bytes symbol (b/B) in the unit is optional; omitting it will yield the same result (e.g., \"Mi\"\nand \"MiB\" are equivalent).", @@ -22595,6 +22784,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns the input string but with all characters in upper-case.", @@ -22728,6 +22918,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Decodes a URL-encoded input string.", @@ -22840,6 +23031,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Decodes the given URL query string into an object.", @@ -22973,6 +23165,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Encodes the input string into a URL-encoded string.", @@ -23106,6 +23299,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Encodes the given object into a URL encoded query string.", @@ -23149,6 +23343,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Parses the string value as an UUID and returns an object with the well-defined fields of the UUID if valid.", @@ -23273,6 +23468,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Returns a new UUIDv4.", @@ -23406,6 +23602,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Generates `[path, value]` tuples for all nested documents of `x` (recursively). Queries can use `walk` to traverse documents nested under `x`.", @@ -23518,6 +23715,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Verifies the input string is a valid YAML document.", @@ -23651,6 +23849,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Serializes the input term to YAML.", @@ -23784,6 +23983,7 @@ "v1.1.0", "v1.2.0", "v1.3.0", + "v1.4.0", "edge" ], "description": "Deserializes the input string.", diff --git a/capabilities/v1.4.0.json b/capabilities/v1.4.0.json new file mode 100644 index 0000000000..1253c88b30 --- /dev/null +++ b/capabilities/v1.4.0.json @@ -0,0 +1,4849 @@ +{ + "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": "internal.test_case", + "decl": { + "args": [ + { + "dynamic": { + "type": "any" + }, + "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" + } + } + ], + "wasm_abi_versions": [ + { + "version": 1, + "minor_version": 1 + }, + { + "version": 1, + "minor_version": 2 + } + ], + "features": [ + "rego_v1" + ] +} diff --git a/v1/version/version.go b/v1/version/version.go index e3f8f42812..3af111395e 100644 --- a/v1/version/version.go +++ b/v1/version/version.go @@ -11,7 +11,7 @@ import ( ) // Version is the canonical version of OPA. -var Version = "1.4.0-dev" +var Version = "1.4.0" // GoVersion is the version of Go this was built with var GoVersion = runtime.Version()