Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.3"
".": "0.6.4"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.6.4](https://github.com/mathematic-inc/earl/compare/v0.6.3...v0.6.4) (2026-08-31)


### Bug Fixes

* **auth:** Remove OAuth fallback diagnostic ([#99](https://github.com/mathematic-inc/earl/issues/99)) ([0065dd3](https://github.com/mathematic-inc/earl/commit/0065dd338b8ed5ffd078e16ed442d2d066f62ea5))
* **auth:** Stop logging OAuth error details ([#97](https://github.com/mathematic-inc/earl/issues/97)) ([e617a1e](https://github.com/mathematic-inc/earl/commit/e617a1e6b0ea359ec28a09be9ccc11dd93768061))

## [0.6.3](https://github.com/mathematic-inc/earl/compare/v0.6.2...v0.6.3) (2026-08-27)


Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "earl"
version = "0.6.3"
version = "0.6.4"
edition.workspace = true
rust-version.workspace = true
description = "AI-safe CLI for AI agents"
Expand Down Expand Up @@ -44,12 +44,12 @@ clap = { version = "4.6", features = ["derive"] }
clap_complete = "4.6"
comfy-table = "8.0"
directories = "6.0"
earl-core = { path = "crates/earl-core", version = "0.6.3" }
earl-protocol-bash = { path = "crates/earl-protocol-bash", version = "0.6.3", optional = true }
earl-protocol-browser = { path = "crates/earl-protocol-browser", version = "0.6.3", optional = true }
earl-protocol-grpc = { path = "crates/earl-protocol-grpc", version = "0.6.3", optional = true }
earl-protocol-http = { path = "crates/earl-protocol-http", version = "0.6.3", optional = true }
earl-protocol-sql = { path = "crates/earl-protocol-sql", version = "0.6.3", optional = true }
earl-core = { path = "crates/earl-core", version = "0.6.4" }
earl-protocol-bash = { path = "crates/earl-protocol-bash", version = "0.6.4", optional = true }
earl-protocol-browser = { path = "crates/earl-protocol-browser", version = "0.6.4", optional = true }
earl-protocol-grpc = { path = "crates/earl-protocol-grpc", version = "0.6.4", optional = true }
earl-protocol-http = { path = "crates/earl-protocol-http", version = "0.6.4", optional = true }
earl-protocol-sql = { path = "crates/earl-protocol-sql", version = "0.6.4", optional = true }
fastembed = { version = "6.0", optional = true }
hcl = { package = "hcl-rs", version = "0.19.8" }
hickory-resolver = "0.26"
Expand Down
2 changes: 1 addition & 1 deletion crates/earl-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "earl-core"
version = "0.6.3"
version = "0.6.4"
edition.workspace = true
rust-version.workspace = true
description = "Shared types and traits for earl protocol crates"
Expand Down
4 changes: 2 additions & 2 deletions crates/earl-protocol-bash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "earl-protocol-bash"
version = "0.6.3"
version = "0.6.4"
edition.workspace = true
rust-version.workspace = true
description = "Bash sandboxed execution protocol for earl"
Expand All @@ -13,7 +13,7 @@ categories = ["command-line-utilities"]

[dependencies]
anyhow = "1.0"
earl-core = { path = "../earl-core", version = "0.6.3" }
earl-core = { path = "../earl-core", version = "0.6.4" }
libc = "0.2"
rkyv = { version = "0.8", features = ["bytecheck", "std"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/earl-protocol-browser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "earl-protocol-browser"
version = "0.6.3"
version = "0.6.4"
edition.workspace = true
rust-version.workspace = true
description = "Browser automation protocol for earl (chromiumoxide)"
Expand All @@ -17,7 +17,7 @@ base64 = "0.23"
chromiumoxide = { version = "0.9", default-features = false, features = ["bytes"] }
chrono = { version = "0.4", features = ["serde"] }
directories = "6.0"
earl-core = { path = "../earl-core", version = "0.6.3" }
earl-core = { path = "../earl-core", version = "0.6.4" }
fs4 = { version = "1.1", features = ["tokio"] }
futures = "0.3"
rkyv = { version = "0.8", features = ["bytecheck", "std"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/earl-protocol-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "earl-protocol-grpc"
version = "0.6.3"
version = "0.6.4"
edition.workspace = true
rust-version.workspace = true
description = "gRPC execution protocol for earl"
Expand All @@ -13,7 +13,7 @@ categories = ["network-programming"]

[dependencies]
anyhow = "1.0"
earl-core = { path = "../earl-core", version = "0.6.3" }
earl-core = { path = "../earl-core", version = "0.6.4" }
futures-util = "0.3"
http = "1"
http-body = "1"
Expand Down
4 changes: 2 additions & 2 deletions crates/earl-protocol-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "earl-protocol-http"
version = "0.6.3"
version = "0.6.4"
edition.workspace = true
rust-version.workspace = true
description = "HTTP and GraphQL execution protocol for earl"
Expand All @@ -14,7 +14,7 @@ categories = ["network-programming", "web-programming"]
[dependencies]
anyhow = "1.0"
base64 = "0.23"
earl-core = { path = "../earl-core", version = "0.6.3" }
earl-core = { path = "../earl-core", version = "0.6.4" }
reqwest = { version = "0.13.4", features = ["brotli", "deflate", "form", "gzip", "json", "multipart", "query", "rustls", "zstd"] }
rkyv = { version = "0.8", features = ["bytecheck", "std"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/earl-protocol-sql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "earl-protocol-sql"
version = "0.6.3"
version = "0.6.4"
edition.workspace = true
rust-version.workspace = true
description = "SQL execution protocol for earl (sqlx)"
Expand All @@ -13,7 +13,7 @@ categories = ["database"]

[dependencies]
anyhow = "1.0"
earl-core = { path = "../earl-core", version = "0.6.3" }
earl-core = { path = "../earl-core", version = "0.6.4" }
rkyv = { version = "0.8", features = ["bytecheck", "std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down