Skip to content

Commit cf96021

Browse files
chore: release main (#128)
* chore: release main * chore: sync Cargo.lock with bumped workspace versions --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8115109 commit cf96021

10 files changed

Lines changed: 29 additions & 18 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.2"
2+
".": "0.5.3"
33
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.5.3](https://github.com/tableau/hyper-api-rust/compare/v0.5.2...v0.5.3) (2026-06-09)
4+
5+
6+
### Bug Fixes
7+
8+
* **mcp:** avoid deadlock in heartbeat by passing health port directly ([26fd046](https://github.com/tableau/hyper-api-rust/commit/26fd046fb1c6df246f5059d2242839db1d2ed951))
9+
* **mcp:** default chart inline to true for immediate display ([8792ef3](https://github.com/tableau/hyper-api-rust/commit/8792ef37d6c0114be7c10e0a322b0614c6a64bb7))
10+
* **mcp:** heartbeat deadlock, chart inline default, lock-free status fast path ([#118](https://github.com/tableau/hyper-api-rust/issues/118)) ([#126](https://github.com/tableau/hyper-api-rust/issues/126)) ([8115109](https://github.com/tableau/hyper-api-rust/commit/81151096391bd07c51c257e91b8486b8f9679ae5))
11+
* **mcp:** lock-free status fast path so diagnostics never hang ([#118](https://github.com/tableau/hyper-api-rust/issues/118)) ([0f8fa5a](https://github.com/tableau/hyper-api-rust/commit/0f8fa5a4e2f56deb2ed808a20777d541c5d07b9e))
12+
* remove redundant Duration import in connect_named_pipe ([02feadc](https://github.com/tableau/hyper-api-rust/commit/02feadc71536259cee2d26a4818bc28d8b374d91))
13+
314
## [0.5.2](https://github.com/tableau/hyper-api-rust/compare/v0.5.1...v0.5.2) (2026-06-08)
415

516

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exclude = ["hyperdb-compile-check"]
2626
# `cargo build --manifest-path hyperdb-compile-check/Cargo.toml`.
2727

2828
[workspace.package]
29-
version = "0.5.2"
29+
version = "0.5.3"
3030
edition = "2021"
3131
rust-version = "1.81"
3232
license = "MIT OR Apache-2.0"

hyperdb-api-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ serde_json = { workspace = true }
6565

6666
# Salesforce OAuth authentication (optional, via standalone crate)
6767
# x-release-please-start-version
68-
hyperdb-api-salesforce = { path = "../hyperdb-api-salesforce", version = "=0.5.2", optional = true }
68+
hyperdb-api-salesforce = { path = "../hyperdb-api-salesforce", version = "=0.5.3", optional = true }
6969
# x-release-please-end
7070

7171
# Arrow parsing for catalog operations (optional, used by authenticated_client)

hyperdb-api-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ syn = { version = "2", features = ["full"] }
2727
quote = "1"
2828
proc-macro2 = "1"
2929
# x-release-please-start-version
30-
hyperdb-compile-check = { path = "../hyperdb-compile-check", version = "=0.5.2", optional = true }
30+
hyperdb-compile-check = { path = "../hyperdb-compile-check", version = "=0.5.3", optional = true }
3131
# x-release-please-end
3232

3333
[dev-dependencies]

hyperdb-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ autobenches = false
1414

1515
[dependencies]
1616
# x-release-please-start-version
17-
hyperdb-api-core = { path = "../hyperdb-api-core", version = "=0.5.2" }
17+
hyperdb-api-core = { path = "../hyperdb-api-core", version = "=0.5.3" }
1818
# x-release-please-end
1919
# NOTE: hyperdb-api-derive is intentionally NOT a dep of hyperdb-api.
2020
# Adding it creates a cycle:

hyperdb-compile-check/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[package]
88
name = "hyperdb-compile-check"
99
# x-release-please-start-version
10-
version = "0.5.2"
10+
version = "0.5.3"
1111
# x-release-please-end
1212
edition = "2021"
1313
rust-version = "1.81"
@@ -25,7 +25,7 @@ categories = ["database", "development-tools"]
2525

2626
[dependencies]
2727
# x-release-please-start-version
28-
hyperdb-api = { path = "../hyperdb-api", version = "=0.5.2" }
28+
hyperdb-api = { path = "../hyperdb-api", version = "=0.5.3" }
2929
# x-release-please-end
3030
parking_lot = "0.12"
3131
tempfile = "3.20"

hyperdb-mcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "src/main.rs"
2121

2222
[dependencies]
2323
# x-release-please-start-version
24-
hyperdb-api = { path = "../hyperdb-api", version = "=0.5.2" }
24+
hyperdb-api = { path = "../hyperdb-api", version = "=0.5.3" }
2525
# x-release-please-end
2626
rmcp = { version = "1.7", features = ["server", "transport-io"] }
2727
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "signal", "time"] }

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.2
1+
0.5.3

0 commit comments

Comments
 (0)