Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed Mutual TLS between APIcast and the Backend API fails when using a Forward Proxy [PR #1499](https://github.com/3scale/APIcast/pull/1499) [THREESCALE-5105](https://issues.redhat.com/browse/THREESCALE-5105)
- Fixed dns cache miss [PR #1500](https://github.com/3scale/APIcast/pull/1500) [THEESCALE-9301](https://issues.redhat.com/browse/THREESCALE-9301)
- Fixed APIcast panic when parsing invalid base64 encoded value [PR #1505](https://github.com/3scale/APIcast/pull/1505) [THEESCALE-11435](https://issues.redhat.com/browse/THREESCALE-11435)
- Remove "$id" from the policy schema [PR #1525](https://github.com/3scale/APIcast/pull/1525) [THEESCALE-11610](https://issues.redhat.com/browse/THREESCALE-11610)

### Added

Expand Down
2 changes: 0 additions & 2 deletions gateway/src/apicast/policy/conditional/apicast-policy.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"definitions": {
"operation": {
"type": "object",
"$id": "#/definitions/operation",
"properties": {
"left": {
"type": "string"
Expand Down Expand Up @@ -58,7 +57,6 @@
"required": ["left", "op", "right"]
},
"condition": {
"$id": "#/definitions/condition",
"type": "object",
"description": "Condition to be evaluated",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"definitions": {
"operation": {
"type": "object",
"$id": "#/definitions/operation",
"properties": {
"left": {
"type": "string"
Expand Down Expand Up @@ -75,7 +74,6 @@
},
"rule": {
"type": "object",
"$id": "#/definitions/rule",
"title": "Rule",
"required": [
"cache"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"definitions": {
"operation": {
"type": "object",
"$id": "#/definitions/operation",
"properties": {
"left": {
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"configuration": {
"definitions": {
"value_type": {
"$id": "#/definitions/value_type",
"type": "string",
"oneOf": [{
"enum": ["plain"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"type": "object",
"definitions": {
"value_type": {
"$id": "#/definitions/value_type",
"type": "string",
"oneOf": [{
"enum": ["plain"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"definitions": {
"operation": {
"type": "object",
"$id": "#/definitions/operation",
"properties": {
"left": {
"type": "string"
Expand Down
3 changes: 0 additions & 3 deletions gateway/src/apicast/policy/rate_limit/apicast-policy.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"type": "object",
"definitions": {
"key": {
"$id": "#/definitions/key",
"description": "The key corresponding to the limiter object",
"type": "object",
"properties": {
Expand Down Expand Up @@ -43,7 +42,6 @@
}
},
"error_handling": {
"$id": "#/definitions/error_handling",
"type": "string",
"description": "How to handle an error",
"default": "exit",
Expand All @@ -57,7 +55,6 @@
},
"operation": {
"type": "object",
"$id": "#/definitions/operation",
"properties": {
"left": {
"type": "string"
Expand Down
1 change: 0 additions & 1 deletion gateway/src/apicast/policy/routing/apicast-policy.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"definitions": {
"operation": {
"type": "object",
"$id": "#/definitions/operation",
"properties": {
"match": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"type": "object",
"definitions": {
"certificate": {
"$id": "#/definitions/certificate",
"type": "object",
"properties": {
"pem_certificate": {
Expand All @@ -21,7 +20,6 @@
}
},
"store": {
"$id": "#/definitions/store",
"type": "array",
"items": {
"$ref": "#/definitions/certificate"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"definitions": {
"methods": {
"description": "Array of HTTP methods this rule must be applied to. If left blank it will be applied to all HTTP methods",
"$id": "#/definitions/methods",
"type": "array",
"items": {
"type": "string",
Expand Down