Skip to content

Commit e115bc4

Browse files
authored
Merge pull request #25 from IBM-Security/v25.01
Update for v25.03.
2 parents 5e382e5 + 918622c commit e115bc4

File tree

124 files changed

+220
-139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+220
-139
lines changed

config-ui/react.skeleton/src/content/landingPage/landingPage.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ import yaml from 'js-yaml';
1515

1616
const DOC_URL = "https://docs.verify.ibm.com/gateway/docs/";
1717

18-
const SAMPLE_EMPTY_YAML = "version: 24.09";
18+
const SAMPLE_EMPTY_YAML = "version: 25.03";
1919

2020
const SAMPLE_EMPTY = {
2121
"yaml": SAMPLE_EMPTY_YAML,
2222
"link": "#"
2323
}
2424

25-
const SAML_AUTHZ_YAML = "version: \"24.09\"\n" +
25+
const SAML_AUTHZ_YAML = "version: \"25.03\"\n" +
2626
"#\n" +
2727
"# Configure an IAG container to proxy a single Web application, and define \n" +
2828
"# an authorization policy for the Web application. This configuration will \n" +
@@ -132,7 +132,7 @@ const SAMPLE_AUTHZ = {
132132
"link": DOC_URL + "examples-authorization-yaml"
133133
}
134134

135-
const SAMPLE_BASIC_YAML = "version: \"24.09\"\n" +
135+
const SAMPLE_BASIC_YAML = "version: \"25.03\"\n" +
136136
"\n" +
137137
"#\n" +
138138
"# Configure an IAG container with a very basic configuration. This \n" +
@@ -191,7 +191,7 @@ const SAMPLE_BASIC = {
191191
"link": DOC_URL + "examples-oidc-verify-yaml"
192192
}
193193

194-
const SAMPLE_ISVA_YAML = "version: \"24.09\"\n" +
194+
const SAMPLE_ISVA_YAML = "version: \"25.03\"\n" +
195195
"\n" +
196196
"#\n" +
197197
"# Configure an IAG container with a very basic configuration. This \n" +
@@ -257,7 +257,7 @@ const SAMPLE_ISVA = {
257257
"link": DOC_URL + "examples-oidc-verify-access-yaml"
258258
}
259259

260-
const SAMPLE_CREDVIEWER_YAML = "version: \"24.09\"\n" +
260+
const SAMPLE_CREDVIEWER_YAML = "version: \"25.03\"\n" +
261261
"\n" +
262262
"#\n" +
263263
"# Configure an IAG container with a very basic configuration. This \n" +
@@ -330,7 +330,7 @@ const SAMPLE_CREDVIEWER = {
330330
"link": DOC_URL + "examples-cred-viewer-yaml"
331331
}
332332

333-
const SAMPLE_LWP_YAML = "version: \"24.09\"\n" +
333+
const SAMPLE_LWP_YAML = "version: \"25.03\"\n" +
334334
"\n" +
335335
"#\n" +
336336
"# Configure an IAG container with a very basic configuration. This \n" +
@@ -397,7 +397,7 @@ const SAMPLE_LWP = {
397397
"link": DOC_URL + "examples-local-webpages-yaml"
398398
}
399399

400-
const SAMPLE_RL_YAML = "version: \"24.09\"\n" +
400+
const SAMPLE_RL_YAML = "version: \"25.03\"\n" +
401401
"\n" +
402402
"#\n" +
403403
"# Configure an IAG container to proxy a single Web application. This \n" +
@@ -494,7 +494,7 @@ const SAMPLE_RL = {
494494
"link": DOC_URL + "examples-rate-limiting-yaml"
495495
};
496496

497-
const SAMPLE_STDAPP_YAML = "version: \"24.09\"\n" +
497+
const SAMPLE_STDAPP_YAML = "version: \"25.03\"\n" +
498498
"\n" +
499499
"#\n" +
500500
"# Configure an IAG container to proxy a single Web application. This \n" +
@@ -563,7 +563,7 @@ const SAMPLE_STDAPP = {
563563
"link": DOC_URL + "examples-standard-application-yaml"
564564
};
565565

566-
const SAMPLE_TRACING_YAML = "version: \"24.09\"\n" +
566+
const SAMPLE_TRACING_YAML = "version: \"25.03\"\n" +
567567
"\n" +
568568
"#\n" +
569569
"# Configure an IAG container to proxy a single Web application, and activate\n" +
@@ -647,7 +647,7 @@ const SAMPLE_TRACING = {
647647
"link": DOC_URL + "examples-tracing-yaml"
648648
};
649649

650-
const SAMPLE_UNAUTH_YAML = "version: \"24.09\"\n" +
650+
const SAMPLE_UNAUTH_YAML = "version: \"25.03\"\n" +
651651
"\n" +
652652
"#\n" +
653653
"# Configure an IAG container to proxy a single Web application. Due to the\n" +
@@ -671,7 +671,7 @@ const SAMPLE_UNAUTH = {
671671
"link": DOC_URL + "examples-unauth-application-yaml"
672672
};
673673

674-
const SAMPLE_ISV_2FA_YAML = "version: \"24.09\"\n" +
674+
const SAMPLE_ISV_2FA_YAML = "version: \"25.03\"\n" +
675675
"\n" +
676676
"#\n" +
677677
"# Configure an IAG container to proxy a single Web application, and define\n" +
@@ -756,7 +756,7 @@ const SAMPLE_ISV_2FA = {
756756
"link": DOC_URL + "examples-2fa-verify-yaml"
757757
};
758758

759-
const SAMPLE_VH_YAML = "version: \"24.09\"\n" +
759+
const SAMPLE_VH_YAML = "version: \"25.03\"\n" +
760760
"\n" +
761761
"#\n" +
762762
"# Configure an IAG container to proxy a single virtual host Web application. \n" +
@@ -825,7 +825,7 @@ const SAMPLE_VH = {
825825
"link": DOC_URL + "examples-virtualhost-application-yaml"
826826
};
827827

828-
const SAMPLE_HTTPTRAN_YAML = "version: \"24.09\"\n" +
828+
const SAMPLE_HTTPTRAN_YAML = "version: \"25.03\"\n" +
829829
"\n" +
830830
"#\n" +
831831
"# Configure an IAG container to proxy a single Web application. This \n" +
@@ -925,7 +925,7 @@ const SAMPLE_HTTPTRAN = {
925925
"link": DOC_URL + "examples-transformation-yaml"
926926
};
927927

928-
const SAMPLE_OAUTH_ISVA_YAML = "version: \"24.09\"\n" +
928+
const SAMPLE_OAUTH_ISVA_YAML = "version: \"25.03\"\n" +
929929
"\n" +
930930
"#\n" +
931931
"# Configure an IAG container with a very basic configuration. This \n" +
@@ -981,7 +981,7 @@ const SAMPLE_OAUTH_ISVA = {
981981
"link": DOC_URL + "examples-oauth-verify-access-yaml"
982982
};
983983

984-
const SAMPLE_OAUTH_ISV_YAML = "version: \"24.09\"\n" +
984+
const SAMPLE_OAUTH_ISV_YAML = "version: \"25.03\"\n" +
985985
"\n" +
986986
"#\n" +
987987
"# Configure an IAG container with a very basic configuration. This \n" +

openapi/logging.yaml

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,51 @@ logging:
88
type: object
99
properties:
1010

11+
language:
12+
type: string
13+
description: >
14+
Specifies the language in which the log messages will be displayed.
15+
The LANG environment variable, if set, will take precedence over
16+
this configuration entry. The following languages are supported:
17+
18+
Language Code | Language
19+
------------- | --------
20+
cs | Czech
21+
de | German
22+
en | English
23+
es | Spanish
24+
fr | French
25+
hu | Hungarian
26+
it | Italian
27+
ja | Japanese
28+
ko | Korean
29+
pl | Polish
30+
pt | Brazilian Portuguese
31+
ru | Russian
32+
zh_CN | Chinese (Simplified)
33+
zh_TW | Chinese (Traditional)
34+
35+
default: en
36+
x-name: Language
37+
x-examples:
38+
- logging:
39+
language: de
40+
enum:
41+
- cs
42+
- de
43+
- en
44+
- es
45+
- fr
46+
- hu
47+
- it
48+
- ja
49+
- ko
50+
- pl
51+
- pt
52+
- ru
53+
- zh_CN
54+
- zh_TW
55+
1156
json_logging:
1257
description: >
1358
A boolean which indicates whether the logging will be
@@ -328,4 +373,3 @@ logging:
328373
- iag.sescache
329374
- iag.threads
330375
- iag.websocket
331-

openapi/openapi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright contributors to the Application Gateway project
22
openapi: '3.0.0'
33
info:
4-
version: 24.12
4+
version: 25.03
55
title: IBM Application Gateway Configuration Specification (OpenAPI)
66
components:
77
schemas:
@@ -26,6 +26,7 @@ components:
2626
- 24.06
2727
- 24.09
2828
- 24.12
29+
- 25.03
2930
secrets:
3031
$ref: "secrets.yaml#/secrets"
3132
server:

openshift/build-sample/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright contributors to the Application Gateway project
22

33
# The container is based on the IAG container.
4-
FROM icr.io/ibmappgateway/ibm-application-gateway:24.12
4+
FROM icr.io/ibmappgateway/ibm-application-gateway:25.03
55

66
# Copy the configuration files from the config directory
77
# to the docker image.

openshift/build-sample/config/identity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright contributors to the Application Gateway project
22

33
---
4-
version: 24.12
4+
version: 25.03
55

66
identity:
77
oidc:

python/doc/Logging.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The `logging` node defines the configuration entries which are used to manage th
99

1010
Name | Type | Description | Notes
1111
------------ | ------------- | ------------- | -------------
12+
**language** | **str** | Specifies the language in which the log messages will be displayed. The LANG environment variable, if set, will take precedence over this configuration entry. The following languages are supported: Language Code | Language ------------- | -------- cs | Czech de | German en | English es | Spanish fr | French hu | Hungarian it | Italian ja | Japanese ko | Korean pl | Polish pt | Brazilian Portuguese ru | Russian zh_CN | Chinese (Simplified) zh_TW | Chinese (Traditional) | [optional] [default to 'en']
1213
**json_logging** | **bool** | A boolean which indicates whether the logging will be in JSON format or not. If not specified logging will not be in JSON format. | [optional] [default to False]
1314
**components** | **list[str]** | Specifies an array of auditing components to be enabled. | [optional]
1415
**request_log** | [**LoggingRequestLog**](LoggingRequestLog.md) | | [optional]

python/packages/ibm_application_gateway/config/advanced.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: 24.12
8+
The version of the OpenAPI document: 25.03
99
Generated by: https://openapi-generator.tech
1010
"""
1111

python/packages/ibm_application_gateway/config/advanced_configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: 24.12
8+
The version of the OpenAPI document: 25.03
99
Generated by: https://openapi-generator.tech
1010
"""
1111

python/packages/ibm_application_gateway/config/authorization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: 24.12
8+
The version of the OpenAPI document: 25.03
99
Generated by: https://openapi-generator.tech
1010
"""
1111

python/packages/ibm_application_gateway/config/authorization_rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: 24.12
8+
The version of the OpenAPI document: 25.03
99
Generated by: https://openapi-generator.tech
1010
"""
1111

0 commit comments

Comments
 (0)