Skip to content

Releases: StyraInc/enterprise-opa

v1.2.0

28 Apr 09:52
4374f09
Compare
Choose a tag to compare

This release contains an update to the latest version of OPA (v0.52.0), as well as bugfixes and performance improvements.

CLI

  • Live Impact Analysis: Output now displays time values in human-friendly units, instead of always nanoseconds.

Runtime

  • Small performance improvements around internal string caching.

Fixes

  • Improved logging around licensing errors.
  • data: Plugin now detects and errors when a bundle's roots would clash with the namespace owned by a data plugin.

v1.1.0

20 Apr 16:36
Compare
Choose a tag to compare

Changelog

v1.1.0

This release includes a host of runtime performance improvements, bugfixes, and a new gRPC plugin.
Startup times have also been dramatically improved over older releases, thanks to upstream fixes in some of our dependencies.

New protocol support via the grpc plugin

Load now supports gRPC versions of OPA's Policy and Data REST APIs, as well as a new experimental bulk operations API.
The gRPC server is enabled via the grpc plugin.

The plugin can be enabled in your Load config file like so:

plugins:
  grpc:
    addr: ":9090"

Or if you prefer the CLI, try: load run -s --set plugins.grpc.addr=:9090

In addition to the normal Load HTTP server, this will start up an unsecured gRPC server on the port you specified in the plugin's options.
This mode is great for testing with tools like grpcurl, but we strongly recommend that you protect your gRPC server using one of the TLS options detailed below if you intend to make the gRPC port visible to other systems.

TLS Support

To secure the gRPC server, server-side TLS support is available.
Given the files cert.pem and key.pem, you could configure your Load instance to secure your gRPC connections like so:

plugins:
  grpc:
    addr: ":9090"
    tls:
      cert_file: "cert.pem"
      cert_key_file: "key.pem"

mTLS Support

For additional security, mutual TLS (mTLS) connections can be used, where the client must present a certificate signed by the same Root CA as the server's certificate.
Given the root CA file ca.pem, we can add on to the configuration example for server-side TLS, and require clients to authenticate themselves using mTLS:

plugins:
  grpc:
    addr: ":9090"
    authentication: "tls"
    tls:
      cert_file: "cert.pem"
      cert_key_file: "key.pem"
      ca_cert_file: "ca.pem"

Any client whose certificate was signed with ca.pem will be able to authenticate to the server.
All others will get disconnections or TLS errors.

Runtime

  • Improved iteration speeds over large Rego Object types.
  • Improved memory efficiency via interning for some types.

Fixes

  • Fixed a minor Rego incompatibility to match OPA's behavior.

v1.0.1

  • Performance improvements for queries of "all of data", like load eval [...] data or
    GET /v1/data with Load's API.
  • Fix bug when referencing a bundle via load eval bundle.tar.gz (without explicitly loading it
    as a bundle via -b). This ensures compatibility with how OPA operates in these circumstances.
  • Restructure parts of the gRPC API to make it more resource-focussed.
  • Change the exit code for license validation related errors from 2 to 3 -- to differentiate them
    from any other errors.

v1.0.0

This release marks the first general availability release of Styra Load.
Load provides a number of improvements over open source OPA, including:

  • Optimizations (CPU/Memory use)
  • Datasource integrations
  • Live Impact Analysis

v0.102.5

  • This release is a release engineering fix to sort out part of our gRPC documentation system.

v0.102.4

  • Fix --disable-telemetry being ignored for load run --server.
  • Use google.protobuf.Value and google.protobuf.Struct in the gRPC API instead of raw JSON strings.
  • Further performance improvements to the Rego VM and bundle loading.

v0.102.3

  • Fix load bundle convert regression

v0.102.1, v0.102.2

These releases have been release engineering fixes to sort out MacOS binary signing
of published executables.

v0.102.0

  • load eval now has a CLI flag for changing the instruction limit.
  • Various BJSON bundle loading issues have been identified and fixed.
  • Data paths controlled by data plugins are now protected from manual
    updates via the API.
  • load version has been revamped.
  • Windows users may have a better CLI experience now, as a
    superfluous user information lookup has been removed.
  • Further performance improvements to the Rego VM.
  • Updated the internal OPA version to v0.50.2.
  • Various other third-party dependency bumps.

v0.101.1

  • Fixed a hang triggered by sending the gRPC BulkRW endpoint multiple blank messages in sequence.

v0.101.0

  • Updated the internal OPA version to v0.50.0.
    See the OPA Release Notes for details.
  • Live Impact Analysis can now be used from the CLI: load liactl record. See load liactl help record.
  • Performance improvements to the Rego VM.
  • Capabilities: Load now includes OPA-compatible capabilities data.
  • Build: Load container images now include SBOM data.
  • Various other third-party dependency bumps.

v1.0.1

04 Apr 08:27
Compare
Choose a tag to compare
  • Performance improvements for queries of "all of data", like load eval [...] data or
    GET /v1/data with Load's API.
  • Fix bug when referencing a bundle via load eval bundle.tar.gz (without explicitly loading it
    as a bundle via -b). This ensures compatibility with how OPA operates in these circumstances.
  • Restructure parts of the gRPC API to make it more resource-focused.
  • Change the exit code for license validation related errors from 2 to 3 -- to differentiate them
    from any other errors.

v1.0.0

31 Mar 18:56
Compare
Choose a tag to compare

This release marks the first general availability release of Styra Load.
Load provides a number of improvements over open source OPA, including:

  • Optimizations (CPU/Memory use)
  • Datasource integrations
  • Live Impact Analysis

v0.102.5

28 Mar 21:08
Compare
Choose a tag to compare

This release is a release engineering fix to sort out part of our gRPC documentation system.

v0.102.4

27 Mar 16:23
Compare
Choose a tag to compare
  • Fix --disable-telemetry being ignored for load run --server.
  • Use google.protobuf.Value and google.protobuf.Struct in the gRPC API instead of raw JSON strings.
  • Further performance improvements to the Rego VM and bundle loading.

v0.102.3

23 Mar 19:51
Compare
Choose a tag to compare

Changelog

v0.102.3

  • Fix load bundle convert regression

v0.102.1, v0.102.2

These releases have been release engineering fixes to sort out macos binary signing
of published executables.

v0.102.0

  • load eval now has a CLI flag for changing the instruction limit.
  • Various BJSON bundle loading issues have been identified and fixed.
  • Data paths controlled by data plugins are now protected from manual
    updates via the API.
  • load version has been revamped.
  • Windows users may have a better CLI experience now, as a
    superfluous user information lookup has been removed.
  • Further performance improvements to the Rego VM.
  • Updated the internal OPA version to v0.50.2.
  • Various other third-party dependency bumps.

v0.101.1

  • Fixed a hang triggered by sending the gRPC BulkRW endpoint multiple blank messages in sequence.

v0.101.0

  • Updated the internal OPA version to v0.50.0.
    See the OPA Release Notes for details.
  • Live Impact Analysis can now be used from the CLI: load liactl record. See load liactl help record.
  • Performance improvements to the Rego VM.
  • Capabilities: Load now includes OPA-compatible capabilities data.
  • Build: Load container images now include SBOM data.
  • Various other third-party dependency bumps.

v0.102.2

23 Mar 14:20
Compare
Choose a tag to compare

Last release engineering fix to sort out macos binary signing of published executables.

v0.102.1

22 Mar 21:30
Compare
Choose a tag to compare

Changelog

v0.102.1

This is a patch release to sort out binary signing on macos. No functional changes.

v0.102.0

22 Mar 10:33
Compare
Choose a tag to compare

Changelog

v0.102.0

  • load eval now has a CLI flag for changing the instruction limit.
  • Various BJSON bundle loading issues have been identified and fixed.
  • Data paths controlled by data plugins are now protected from manual
    updates via the API.
  • load version has been revamped.
  • Windows users may have a better CLI experience now, as a
    superfluous user information lookup has been removed.
  • Further performance improvements to the Rego VM.
  • Updated the internal OPA version to v0.50.2.
  • Various other third-party dependency bumps.