Releases: wso2/api-platform
WSO2 API Platform AI Gateway 0.4.0 Released
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
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
- CORS support
- Metrics support
- AI Analytics support
- AI Model based routing policy
- AI Model based weighted routing policy
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
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
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.0OCI Registry
oci://ghcr.io/wso2/api-platform/helm-charts/gateway:0.2.0
WSO2 API Platform Gateway Operator v0.2.0 Released
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-configNamespace 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_NAMESPACEScan 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(previouslyapi.api-platform.wso2.com) - New Version:
v1alpha1(previouslyv1)
Kind Renaming
GatewayConfigurationis renamed toGateway.APIConfigurationis renamed toRestApi.
Manifest Changes
Gateway (formerly GatewayConfiguration)
- Kind:
Gateway - APIVersion:
gateway.api-platform.wso2.com/v1alpha1 - Spec Changes:
- Added
configReffor external configuration.
- Added
RestApi (formerly APIConfiguration)
- Kind:
RestApi - APIVersion:
gateway.api-platform.wso2.com/v1alpha1 - Spec Changes:
- Flattened Structure: The
apiConfigurationwrapper underspechas been removed. All fields (context,operations, etc.) effectively move up one level directly underspec. - New Field:
displayNameadded tospec. - Removed Constraint:
gatewayRefsfield has been removed. APIs are now strictly selected by Gateways via the Gateway'sapiSelector.
- Flattened Structure: The
Migration Guide
To upgrade from 0.1.0 to 0.2.0, you must update your YAML files:
- Update
apiVersion: Changeapi.api-platform.wso2.com/v1togateway.api-platform.wso2.com/v1alpha1. - Rename Kinds:
GatewayConfiguration→GatewayAPIConfiguration→RestApi
- Refactor
RestApiSpec: Remove theapiConfiguration: ...nesting. - Remove
gatewayRefs: Ensure your Gateways useapiSelectorto 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
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
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
- LLM Proxy support - The API Platform Gateway provides first-class support for configuring and deploying LLM proxies
- AI Guardrails
- API Key Authentication
- API Analytics via Moesif
- MCP Authentication Support
- Logging
- Tracing
- Gateway REST API Authentication
- Build Gateway with Policies
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
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
- LLM Proxy support - The API Platform Gateway provides first-class support for configuring and deploying LLM proxies
- AI Guardrails
- MCP Authentication Support
- Logging
- Tracing
- AI Gateway REST API Authentication
- Customizing the AI Gateway with Guardrails
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
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.0OCI Registry
oci://ghcr.io/wso2/api-platform/helm-charts/gateway:0.1.0
WSO2 API Platform Gateway Operator 0.1.0 Released
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.