-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): update Quarkus to 3.8 LTS
Clean up labels/annotations internal representation using KeyValue type for better uniformity across API. Fix up some misuse of Blocking annotation and some bad transaction handling at startup.
- Loading branch information
1 parent
8f86147
commit 4cfb601
Showing
26 changed files
with
378 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,13 @@ components: | |
Annotations: | ||
properties: | ||
cryostat: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
items: | ||
$ref: '#/components/schemas/KeyValue' | ||
type: array | ||
platform: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
items: | ||
$ref: '#/components/schemas/KeyValue' | ||
type: array | ||
type: object | ||
ArchivedRecording: | ||
properties: | ||
|
@@ -66,9 +66,9 @@ components: | |
format: int64 | ||
type: integer | ||
labels: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
items: | ||
$ref: '#/components/schemas/KeyValue' | ||
type: array | ||
name: | ||
pattern: \S | ||
type: string | ||
|
@@ -85,6 +85,7 @@ components: | |
DiscoveryPlugin: | ||
properties: | ||
builtin: | ||
readOnly: true | ||
type: boolean | ||
callback: | ||
format: uri | ||
|
@@ -124,6 +125,13 @@ components: | |
value: {} | ||
type: object | ||
type: array | ||
KeyValue: | ||
properties: | ||
key: | ||
type: string | ||
value: | ||
type: string | ||
type: object | ||
LinkedRecordingDescriptor: | ||
properties: | ||
continuous: | ||
|
@@ -296,6 +304,7 @@ components: | |
Target: | ||
properties: | ||
agent: | ||
readOnly: true | ||
type: boolean | ||
alias: | ||
pattern: \S | ||
|
@@ -311,9 +320,9 @@ components: | |
jvmId: | ||
type: string | ||
labels: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
items: | ||
$ref: '#/components/schemas/KeyValue' | ||
type: array | ||
required: | ||
- connectUrl | ||
- alias | ||
|
@@ -347,11 +356,6 @@ components: | |
meta: | ||
$ref: '#/components/schemas/Meta' | ||
type: object | ||
securitySchemes: | ||
SecurityScheme: | ||
description: Authentication | ||
scheme: basic | ||
type: http | ||
info: | ||
contact: | ||
email: [email protected] | ||
|
@@ -913,7 +917,7 @@ paths: | |
type: string | ||
requestBody: | ||
content: | ||
application/json: | ||
text/plain: | ||
schema: | ||
type: string | ||
responses: | ||
|
@@ -1906,7 +1910,7 @@ paths: | |
responses: | ||
"200": | ||
content: | ||
application/json: | ||
text/plain: | ||
schema: | ||
type: string | ||
description: OK | ||
|
@@ -2393,13 +2397,13 @@ paths: | |
type: integer | ||
requestBody: | ||
content: | ||
application/json: | ||
text/plain: | ||
schema: | ||
type: string | ||
responses: | ||
"200": | ||
content: | ||
application/json: | ||
text/plain: | ||
schema: | ||
type: string | ||
description: OK | ||
|
@@ -2429,7 +2433,7 @@ paths: | |
responses: | ||
"200": | ||
content: | ||
application/json: | ||
text/plain: | ||
schema: | ||
type: string | ||
description: OK | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.