Skip to content

Commit

Permalink
Release v0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
epompeii committed Sep 20, 2023
1 parent 72c7d1d commit 7b72deb
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 49 deletions.
24 changes: 12 additions & 12 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 @@ -3,7 +3,7 @@ members = ["services/api", "services/cli", "lib/*", "plus/*", "xtask"]
resolver = "2"

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

Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ heading: "Bencher Changelog"
sortOrder: 4
---

## Pending `v0.3.11`
## `v0.3.11`
- Add strongly typed IDs for database entities
- Remove deprecated configuration keys (`endpoint` => `console.url` and `secret_key` => `security.secret_key`)

Expand Down
2 changes: 1 addition & 1 deletion services/action/dist/index.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion services/action/package-lock.json

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

4 changes: 2 additions & 2 deletions services/console/package-lock.json

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

4 changes: 2 additions & 2 deletions services/console/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bencher-ui",
"type": "module",
"version": "0.3.10",
"version": "0.3.11",
"scripts": {
"typeshare": "typeshare ../.. --lang=typescript --output-file=./src/types/bencher.ts",
"wasm": "../../scripts/build_wasm.sh",
Expand Down Expand Up @@ -46,4 +46,4 @@
"sass": "^1.66.1",
"vitest": "^0.34.3"
}
}
}
34 changes: 5 additions & 29 deletions services/console/src/content/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.3.10"
"version": "0.3.11"
},
"paths": {
"/v0/auth/confirm": {
Expand Down Expand Up @@ -6201,24 +6201,11 @@
]
},
"console": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/JsonConsole"
}
]
"$ref": "#/components/schemas/JsonConsole"
},
"database": {
"$ref": "#/components/schemas/JsonDatabase"
},
"endpoint": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/Url"
}
]
},
"logging": {
"$ref": "#/components/schemas/JsonLogging"
},
Expand All @@ -6230,21 +6217,8 @@
}
]
},
"secret_key": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/Secret"
}
]
},
"security": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/JsonSecurity"
}
]
"$ref": "#/components/schemas/JsonSecurity"
},
"server": {
"$ref": "#/components/schemas/JsonServer"
Expand All @@ -6259,8 +6233,10 @@
}
},
"required": [
"console",
"database",
"logging",
"security",
"server"
]
},
Expand Down

0 comments on commit 7b72deb

Please sign in to comment.