Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change version to 1.1.0 #2171

Merged
merged 2 commits into from
Mar 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ metadata:
spec:
apiName: "WSO2 APK Config Deployer API"
apiType: "REST"
apiVersion: "1.0.0"
basePath: "/api/deployer/1.0.0"
apiVersion: "1.1.0"
basePath: "/api/deployer/1.1.0"
isDefaultVersion: true
organization: "apk-system"
definitionFileRef: "{{ template "apk-helm.resource.prefix" . }}-wso2-apk-config-deployer-api-definition"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ metadata:
spec:
apiName: "WSO2 APK Config Generator API"
apiType: "REST"
apiVersion: "1.0.0"
basePath: "/api/configurator/1.0.0"
apiVersion: "1.1.0"
basePath: "/api/configurator/1.1.0"
isDefaultVersion: true
organization: "apk-system"
definitionFileRef: "{{ template "apk-helm.resource.prefix" . }}-wso2-apk-config-generator-api-definition"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ info:
title: WSO2 API Platform for Kubernetes - Deploy K8s Resource API
description: |
This API is used to generate K8s resources for an API.
version: 1.0.0
version: 1.1.0
servers:
- url: https://api.am.wso2.com/apk/1.0.0
- url: https://api.am.wso2.com/apk/1.1.0
paths:
/apis/deploy:
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ info:
title: WSO2 API Platform for Kubernetes - Configuration generator API
description: |
This document specifies a **RESTful API** for WSO2 **APK** - **Runtime Component**.
version: 1.0.0
version: 1.1.0
servers:
- url: https://api.am.wso2.com/apk/1.0.0
- url: https://api.am.wso2.com/apk/1.1.0
paths:
/apis/generate-configuration:
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Constants {
public static final String DEFAULT_GW_PORT = "9443";
public static final String DEFAULT_TOKEN_EP = "oauth2/token";
public static final String DEFAULT_DCR_EP = "client-registration/v0.17/register";
public static final String DEFAULT_API_CONFIGURATOR = "api/configurator/1.0.0/";
public static final String DEFAULT_API_CONFIGURATOR = "api/configurator/1.1.0/";
public static final String DEFAULT_API_DEPLOYER = "api/am/publisher/v4/";
public static final String DEFAULT_DEVPORTAL = "api/am/devportal/v3/";
public static final String ACCESS_TOKEN = "accessToken";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public class Constants {
public static final String DEFAULT_API_HOST = "api.am.wso2.com";
public static final String DEFAULT_GW_PORT = "9095";
public static final String DEFAULT_TOKEN_EP = "oauth2/token";
public static final String DEFAULT_API_CONFIGURATOR = "api/configurator/1.0.0/";
public static final String DEFAULT_API_DEPLOYER = "api/deployer/1.0.0/";
public static final String DEFAULT_API_CONFIGURATOR = "api/configurator/1.1.0/";
public static final String DEFAULT_API_DEPLOYER = "api/deployer/1.1.0/";
public static final String ACCESS_TOKEN = "accessToken";
public static final String EMPTY_STRING = "";
public static final String API_CREATE_SCOPE = "apk:api_create";
Expand Down
Loading