Skip to content

Commit 5404acf

Browse files
5.3.2 (#88)
* FEATURES updated * Removed NAP compiler * App Protect compiler container removed * OpenAPI parser fix * API Gateway template update * 20250722 - API Gateway use case fixes
1 parent e4ac4f7 commit 5404acf

File tree

14 files changed

+39
-319
lines changed

14 files changed

+39
-319
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@ Thumbs.db
2424
/src/v5_2/__pycache__/
2525
/src/v5_3/__pycache__/
2626
/contrib/devportal/redocly/src/__pycache__/
27-
/contrib/app-protect/src/__pycache__/
2827
/venv/

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ COPY templates/ templates/
1111

1212
RUN python3 -m venv /deployment/env/ && \
1313
source /deployment/env/bin/activate && \
14-
# python3 -m pip install --upgrade pip && \
1514
pip3 install --no-cache --upgrade pip setuptools virtualenv && \
1615
pip3 install -r src/requirements.txt
1716

FEATURES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Client-side authorization profiles to be defined under `.declaration.http.author
181181

182182
### Upstream and Source of truth authentication
183183

184-
| Type | Description | API v5.1 | API v5.2 | API v5.2 | Notes |
184+
| Type | Description | API v5.1 | API v5.2 | API v5.3 | Notes |
185185
|--------------|----------------------------------------------|----------|----------|----------|----------------------------------------------------------------------------------------|
186186
| Bearer token | Authentication token as Authorization Bearer | X | X | X | `Bearer` Authorization header is injected in requests to upstreams and source of truth |
187187
| Basic Auth | Authentication token as Authorization Basic | X | X | X | `Basic` Authorization header is injected in requests to upstreams and source of truth |

contrib/app-protect/Dockerfile

Lines changed: 0 additions & 53 deletions
This file was deleted.

contrib/app-protect/README.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

contrib/app-protect/src/requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

contrib/app-protect/src/server.py

Lines changed: 0 additions & 164 deletions
This file was deleted.

contrib/app-protect/src/start.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

contrib/docker-compose/docker-compose.yaml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,6 @@ services:
2828
networks:
2929
- dapi-network
3030

31-
nap-compiler:
32-
profiles:
33-
- nap
34-
image: nginx-declarative-api-nap-compiler
35-
build:
36-
context: ../app-protect
37-
dockerfile: Dockerfile
38-
secrets:
39-
- nginx-crt
40-
- nginx-key
41-
args:
42-
VERSION_TAG: "${NAP_COMPILER_TAG}"
43-
container_name: "nap-compiler"
44-
restart: always
45-
ports:
46-
- "5002:5000"
47-
networks:
48-
- dapi-network
49-
5031
nginx-dapi:
5132
image: nginx-declarative-api
5233
build:

0 commit comments

Comments
 (0)