Skip to content

Commit

Permalink
Release v0.2.23
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed Nov 10, 2022
1 parent 77d3d58 commit dd7b768
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 31 deletions.
12 changes: 6 additions & 6 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["services/api", "services/cli", "services/lib/*"]

[workspace.package]
version = "0.2.22"
version = "0.2.23"
authors = ["Everett Pompeii <[email protected]>"]
edition = "2021"

Expand Down
63 changes: 39 additions & 24 deletions services/ui/src/components/docs/api/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "Bencher API",
"version": "0.2.22"
"version": "0.2.23"
},
"paths": {
"/v0/auth/confirm": {
Expand Down Expand Up @@ -4462,9 +4462,6 @@
"uuid"
]
},
"AdapterResults": {
"type": "object"
},
"JsonBranch": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4555,6 +4552,15 @@
"JsonEmpty": {
"type": "object"
},
"JsonFold": {
"type": "string",
"enum": [
"min",
"max",
"mean",
"median"
]
},
"JsonLogging": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4668,9 +4674,6 @@
"uuid"
]
},
"AdapterMetrics": {
"type": "object"
},
"JsonNewBranch": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4771,13 +4774,12 @@
"type": "object",
"properties": {
"adapter": {
"$ref": "#/components/schemas/JsonAdapter"
},
"benchmarks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AdapterResults"
}
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/JsonAdapter"
}
]
},
"branch": {
"type": "string",
Expand All @@ -4787,10 +4789,24 @@
"type": "string",
"format": "date-time"
},
"fold": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/JsonFold"
}
]
},
"hash": {
"nullable": true,
"type": "string"
},
"results": {
"type": "array",
"items": {
"type": "string"
}
},
"start_time": {
"type": "string",
"format": "date-time"
Expand All @@ -4801,10 +4817,9 @@
}
},
"required": [
"adapter",
"benchmarks",
"branch",
"end_time",
"results",
"start_time",
"testbed"
]
Expand Down Expand Up @@ -5158,16 +5173,16 @@
"$ref": "#/components/schemas/JsonReportAlert"
}
},
"benchmarks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/JsonReportBenchmark"
}
},
"end_time": {
"type": "string",
"format": "date-time"
},
"results": {
"type": "array",
"items": {
"$ref": "#/components/schemas/JsonReportResult"
}
},
"start_time": {
"type": "string",
"format": "date-time"
Expand All @@ -5192,8 +5207,8 @@
"required": [
"adapter",
"alerts",
"benchmarks",
"end_time",
"results",
"start_time",
"testbed",
"user",
Expand All @@ -5205,7 +5220,7 @@
"type": "string",
"format": "uuid"
},
"JsonReportBenchmark": {
"JsonReportResult": {
"type": "string",
"format": "uuid"
},
Expand Down

0 comments on commit dd7b768

Please sign in to comment.