Skip to content

Releases: wso2/api-platform

WSO2 API Platform AI Gateway 0.4.0 Released

26 Jan 12:43
25479be

Choose a tag to compare

Overview

The WSO2 API Platform AI Gateway is an AI-native gateway designed to securely manage and optimize AI traffic. It provides two core capabilities:

  • LLM Gateway - Proxy and secure traffic to Large Language Model (LLM) providers with built-in guardrails, prompt management, and cost optimization capabilities
  • MCP Gateway - Proxy and secure Model Context Protocol (MCP) servers with authentication support per the MCP specification

Quick Start

Choose the quick start guide based on your use case:

  • LLM Gateway - Proxy and route traffic to LLM providers like OpenAI
  • MCP Gateway - Proxy and expose your MCP servers

Documentation

For complete documentation on all features and capabilities, see the AI Gateway Documentation.

What’s New in This Release

Features

See details of all the changes including features, improvements, and bug fixes

Known Issues

All the open issues pertaining to WSO2 API Platform are reported here.

How To Contribute

Your feedback is most welcome!

Community

You can use our Discord Channel and Stackoverflow Collective to engage with a wider audience https://wso2.com/community/

Reporting Issues

We encourage you to report issues, improvements, and feature requests regarding WSO2 API Platform Gateway through WSO2 API Platform GIT Issues.

And please be advised that security issues must be reported to security@wso2.com, not as a GitHub issue, in order to reach the proper audience. We strongly advise following the WSO2 Security Vulnerability Reporting Guidelines when reporting security issues.

WSO2 API Platform Gateway 0.3.0 Released

14 Jan 17:49

Choose a tag to compare

Overview

The WSO2 API Platform Gateway is a modern, Envoy-based gateway designed to provide high-performance API traffic management with a unified, policy-driven model. The gateway consists of the following core components:

  • Envoy-based Router
    Handles all inbound and outbound API traffic, routing requests to the appropriate backend services.

  • Policy Engine
    A centralized execution engine that applies gateway policies such as authentication, authorization, rate limiting, and other runtime behaviors.

  • Gateway Controller
    A control-plane component responsible for configuring Envoy routes, managing policy attachments, and reconciling API-related resources.

Quick Start

Get started with the Quick Start Guide to deploy and configure your first API proxy.

Documentation

For complete documentation on all features and capabilities, see the Gateway Documentation.

What’s New in This Release

See details of all the changes including features, improvements, and bug fixes

Known Issues

All the open issues pertaining to WSO2 API Platform are reported here.

How To Contribute

Your feedback is most welcome!

Community

You can use our Discord Channel and Stackoverflow Collective to engage with a wider audience https://wso2.com/community/

Reporting Issues

We encourage you to report issues, improvements, and feature requests regarding WSO2 API Platform Gateway through WSO2 API Platform GIT Issues.

And please be advised that security issues must be reported to security@wso2.com, not as a GitHub issue, in order to reach the proper audience. We strongly advise following the WSO2 Security Vulnerability Reporting Guidelines when reporting security issues.

WSO2 API Platform AI Gateway 0.3.0 Released

14 Jan 13:55
f9be091

Choose a tag to compare

Overview

The WSO2 API Platform AI Gateway is an AI-native gateway designed to securely manage and optimize AI traffic. It provides two core capabilities:

  • LLM Gateway - Proxy and secure traffic to Large Language Model (LLM) providers with built-in guardrails, prompt management, and cost optimization capabilities
  • MCP Gateway - Proxy and secure Model Context Protocol (MCP) servers with authentication support per the MCP specification

Quick Start

Choose the quick start guide based on your use case:

  • LLM Gateway - Proxy and route traffic to LLM providers like OpenAI
  • MCP Gateway - Proxy and expose your MCP servers

Documentation

For complete documentation on all features and capabilities, see the AI Gateway Documentation.

What’s New in This Release

Features

See details of all the changes including features, improvements, and bug fixes

Known Issues

All the open issues pertaining to WSO2 API Platform are reported here.

How To Contribute

Your feedback is most welcome!

Community

You can use our Discord Channel and Stackoverflow Collective to engage with a wider audience https://wso2.com/community/

Reporting Issues

We encourage you to report issues, improvements, and feature requests regarding WSO2 API Platform Gateway through WSO2 API Platform GIT Issues.

And please be advised that security issues must be reported to security@wso2.com, not as a GitHub issue, in order to reach the proper audience. We strongly advise following the WSO2 Security Vulnerability Reporting Guidelines when reporting security issues.

WSO2 API Platform Gateway Helm v0.2.0 Released

23 Dec 03:37
ba79ba9

Choose a tag to compare

WSO2 API Platform Gateway Helm 0.2.0 Released

App Version: 0.2.0

Installation

helm install my-gateway oci://ghcr.io/wso2/api-platform/helm-charts/gateway --version 0.2.0

OCI Registry

oci://ghcr.io/wso2/api-platform/helm-charts/gateway:0.2.0

WSO2 API Platform Gateway Operator v0.2.0 Released

23 Dec 03:35
ba79ba9

Choose a tag to compare

We are excited to announce the release of Gateway Operator 0.2.0! This release introduces significant improvements in flexibility with namespace-scoped operator installation and external configuration monitoring, alongside a major restructuring of our Custom Resource Definitions (CRDs).

New Features

ConfigMap Reference for Gateway Configuration

The Gateway CRD now supports referencing a ConfigMap for Helm values configuration. This allows for dynamic updates to the Gateway deployment without modifying the CR itself.

  • Dynamic Updates: Changes to the referenced ConfigMap or the Gateway CR will trigger a Helm upgrade via the operator.
  • Field: spec.configRef
spec:
  configRef:
    name: my-gateway-config

Namespace Scoped Installation

The Operator now supports namespace-scoped installation, allowing it to manage resources only within specific namespaces. This enhances security and allows for multi-tenant operator deployments.

  • Environment Variable: WATCH_NAMESPACES can be configured in the operator deployment to restrict the scope.

Breaking Changes

CRD Restructuring and API Group Changes

This release brings major breaking changes to the CRDs. Please update your manifests accordingly.

API Group & Version

  • New Group: gateway.api-platform.wso2.com (previously api.api-platform.wso2.com)
  • New Version: v1alpha1 (previously v1)

Kind Renaming

  • GatewayConfiguration is renamed to Gateway.
  • APIConfiguration is renamed to RestApi.

Manifest Changes

Gateway (formerly GatewayConfiguration)

  • Kind: Gateway
  • APIVersion: gateway.api-platform.wso2.com/v1alpha1
  • Spec Changes:
    • Added configRef for external configuration.

RestApi (formerly APIConfiguration)

  • Kind: RestApi
  • APIVersion: gateway.api-platform.wso2.com/v1alpha1
  • Spec Changes:
    • Flattened Structure: The apiConfiguration wrapper under spec has been removed. All fields (context, operations, etc.) effectively move up one level directly under spec.
    • New Field: displayName added to spec.
    • Removed Constraint: gatewayRefs field has been removed. APIs are now strictly selected by Gateways via the Gateway's apiSelector.

Migration Guide

To upgrade from 0.1.0 to 0.2.0, you must update your YAML files:

  1. Update apiVersion: Change api.api-platform.wso2.com/v1 to gateway.api-platform.wso2.com/v1alpha1.
  2. Rename Kinds:
    • GatewayConfigurationGateway
    • APIConfigurationRestApi
  3. Refactor RestApi Spec: Remove the apiConfiguration: ... nesting.
  4. Remove gatewayRefs: Ensure your Gateways use apiSelector to match the labels or namespaces of your APIs.

Example: RestApi Migration

Old (0.1.0):

apiVersion: api.api-platform.wso2.com/v1
kind: APIConfiguration
spec:
  apiConfiguration:
    name: my-api
    context: /my-api
    ...

New (0.2.0):

apiVersion: gateway.api-platform.wso2.com/v1alpha1
kind: RestApi
spec:
  displayName: My API # New required field
  context: /my-api
  ...

WSO2 API Platform CLI (ap) v0.2.0 is Released

23 Dec 07:50
436846a

Choose a tag to compare

Overview

The WSO2 API Platform CLI (ap) is a command-line tool for managing and interacting with the WSO2 API Platform. It provides capabilities to deploy API configurations, customize gateway policies, and manage platform resources.

Quick Start

Get started with the Quick Start Guide to install and configure the CLI.

Documentation

For complete documentation on all features and capabilities, see the CLI Documentation.

Known Issues

All the open issues pertaining to WSO2 API Platform CLI are reported here.

How To Contribute

Your feedback is most welcome!

Community

You can use our Discord Channel and Stackoverflow Collective to engage with a wider audience https://wso2.com/community/

Reporting Issues

We encourage you to report issues, improvements, and feature requests regarding WSO2 API Platform CLI through WSO2 API Platform GIT Issues.

And please be advised that security issues must be reported to security@wso2.com, not as a GitHub issue, in order to reach the proper audience. We strongly advise following the WSO2 Security Vulnerability Reporting Guidelines when reporting security issues.

WSO2 API Platform Gateway 0.2.0 Released

23 Dec 07:28

Choose a tag to compare

Overview

The WSO2 API Platform Gateway is a modern, Envoy-based gateway designed to provide high-performance API traffic management with a unified, policy-driven model. The gateway consists of the following core components:

  • Envoy-based Router
    Handles all inbound and outbound API traffic, routing requests to the appropriate backend services.

  • Policy Engine
    A centralized execution engine that applies gateway policies such as authentication, authorization, rate limiting, and other runtime behaviors.

  • Gateway Controller
    A control-plane component responsible for configuring Envoy routes, managing policy attachments, and reconciling API-related resources.

Quick Start

Get started with the Quick Start Guide to deploy and configure your first API proxy.

Documentation

For complete documentation on all features and capabilities, see the Gateway Documentation.

What’s New in This Release

See details of all the changes including features, improvements, and bug fixes

Known Issues

All the open issues pertaining to WSO2 API Platform are reported here.

How To Contribute

Your feedback is most welcome!

Community

You can use our Discord Channel and Stackoverflow Collective to engage with a wider audience https://wso2.com/community/

Reporting Issues

We encourage you to report issues, improvements, and feature requests regarding WSO2 API Platform Gateway through WSO2 API Platform GIT Issues.

And please be advised that security issues must be reported to security@wso2.com, not as a GitHub issue, in order to reach the proper audience. We strongly advise following the WSO2 Security Vulnerability Reporting Guidelines when reporting security issues.

WSO2 API Platform AI Gateway 0.2.0 Released

23 Dec 09:08

Choose a tag to compare

Overview

The WSO2 API Platform AI Gateway is an AI-native gateway designed to securely manage and optimize AI traffic. It provides two core capabilities:

  • LLM Gateway - Proxy and secure traffic to Large Language Model (LLM) providers with built-in guardrails, prompt management, and cost optimization capabilities
  • MCP Gateway - Proxy and secure Model Context Protocol (MCP) servers with authentication support per the MCP specification

Quick Start

Choose the quick start guide based on your use case:

  • LLM Gateway - Proxy and route traffic to LLM providers like OpenAI
  • MCP Gateway - Proxy and expose your MCP servers

Documentation

For complete documentation on all features and capabilities, see the AI Gateway Documentation.

What’s New in This Release

Features

See details of all the changes including features, improvements, and bug fixes

Known Issues

All the open issues pertaining to WSO2 API Platform are reported here.

How To Contribute

Your feedback is most welcome!

Community

You can use our Discord Channel and Stackoverflow Collective to engage with a wider audience https://wso2.com/community/

Reporting Issues

We encourage you to report issues, improvements, and feature requests regarding WSO2 API Platform Gateway through WSO2 API Platform GIT Issues.

And please be advised that security issues must be reported to security@wso2.com, not as a GitHub issue, in order to reach the proper audience. We strongly advise following the WSO2 Security Vulnerability Reporting Guidelines when reporting security issues.

WSO2 API Platform Gateway Helm 0.1.0 Released

15 Dec 08:19
09d6f12

Choose a tag to compare

WSO2 API Platform Gateway Helm 0.1.0 Released

App Version: 0.1.0

Installation

helm install my-gateway oci://ghcr.io/wso2/api-platform/helm-charts/gateway --version 0.1.0

OCI Registry

oci://ghcr.io/wso2/api-platform/helm-charts/gateway:0.1.0

WSO2 API Platform Gateway Operator 0.1.0 Released

15 Dec 08:23
09d6f12

Choose a tag to compare

The WSO2 API Platform Gateway Operator is designed to run natively on Kubernetes, providing a fully GitOps- and operator-friendly deployment model.

What’s New in This Release

  • Watches Kubernetes Custom Resources (CRs) representing APIs, gateways, and related configuration.

  • Creates and manages gateway instances based on those CR definitions.

  • Deploys APIs to one or more target gateways by reconciling the desired state (as defined in CRs) with the actual runtime state.

See details of all the changes including features, improvements, and bug fixes

Quick Start Guide

Please refer to the Quick Start Guide

Known Issues

All the open issues pertaining to WSO2 API Platform are reported here.

How To Contribute

Your feedback is most welcome!

Community

You can use our Discord Channel and Stackoverflow Collective to engage with a wider audience https://wso2.com/community/

Reporting Issues

We encourage you to report issues, improvements, and feature requests regarding WSO2 API Platform Gateway through WSO2 API Platform GIT Issues.