Skip to content

Commit

Permalink
chore: Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
clintjedwards committed Aug 21, 2024
1 parent ebbaca4 commit ba0b2b5
Show file tree
Hide file tree
Showing 5 changed files with 188 additions and 38 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gofer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gofer"
version = "0.7.2"
version = "0.7.3"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
95 changes: 85 additions & 10 deletions gofer/docs/src/assets/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "Gofer",
"version": "0.7.2"
"version": "0.7.3"
},
"paths": {
"/api/events": {
Expand Down Expand Up @@ -3753,11 +3753,16 @@
"$ref": "#/components/schemas/TokenType"
}
]
},
"user": {
"description": "The plaintext username for of the token.",
"type": "string"
}
},
"required": [
"id",
"kind"
"kind",
"user"
]
},
"InstallExtensionRequest": {
Expand Down Expand Up @@ -3953,7 +3958,7 @@
{
"type": "object",
"properties": {
"deployment_started": {
"started_deployment": {
"type": "object",
"properties": {
"end_version": {
Expand Down Expand Up @@ -3982,14 +3987,14 @@
}
},
"required": [
"deployment_started"
"started_deployment"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"deployment_completed": {
"completed_deployment": {
"type": "object",
"properties": {
"end_version": {
Expand Down Expand Up @@ -4018,7 +4023,7 @@
}
},
"required": [
"deployment_completed"
"completed_deployment"
],
"additionalProperties": false
},
Expand Down Expand Up @@ -4086,6 +4091,36 @@
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"started_run_cancellation": {
"type": "object",
"properties": {
"namespace_id": {
"type": "string"
},
"pipeline_id": {
"type": "string"
},
"run_id": {
"type": "integer",
"format": "uint64",
"minimum": 0
}
},
"required": [
"namespace_id",
"pipeline_id",
"run_id"
]
}
},
"required": [
"started_run_cancellation"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
Expand Down Expand Up @@ -4192,6 +4227,46 @@
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"started_task_execution_cancellation": {
"type": "object",
"properties": {
"namespace_id": {
"type": "string"
},
"pipeline_id": {
"type": "string"
},
"run_id": {
"type": "integer",
"format": "uint64",
"minimum": 0
},
"task_execution_id": {
"type": "string"
},
"timeout": {
"type": "integer",
"format": "uint64",
"minimum": 0
}
},
"required": [
"namespace_id",
"pipeline_id",
"run_id",
"task_execution_id",
"timeout"
]
}
},
"required": [
"started_task_execution_cancellation"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
Expand Down Expand Up @@ -4291,7 +4366,7 @@
{
"type": "object",
"properties": {
"extension_subscription": {
"pipeline_extension_subscription_registered": {
"type": "object",
"properties": {
"extension_id": {
Expand All @@ -4316,14 +4391,14 @@
}
},
"required": [
"extension_subscription"
"pipeline_extension_subscription_registered"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"extension_unsubscription": {
"pipeline_extension_subscription_unregistered": {
"type": "object",
"properties": {
"extension_id": {
Expand All @@ -4348,7 +4423,7 @@
}
},
"required": [
"extension_unsubscription"
"pipeline_extension_subscription_unregistered"
],
"additionalProperties": false
}
Expand Down
Loading

0 comments on commit ba0b2b5

Please sign in to comment.