Skip to content
Merged
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
14 changes: 7 additions & 7 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
".": "0.5.0",
"crates/earl-core": "0.5.0",
"crates/earl-protocol-http": "0.5.0",
"crates/earl-protocol-grpc": "0.5.0",
"crates/earl-protocol-bash": "0.5.0",
"crates/earl-protocol-sql": "0.5.0",
"crates/earl-protocol-browser": "0.5.0"
".": "0.5.1",
"crates/earl-core": "0.5.1",
"crates/earl-protocol-http": "0.5.1",
"crates/earl-protocol-grpc": "0.5.1",
"crates/earl-protocol-bash": "0.5.1",
"crates/earl-protocol-sql": "0.5.1",
"crates/earl-protocol-browser": "0.5.1"
}
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.5.1](https://github.com/brwse/earl/compare/v0.5.0...v0.5.1) (2026-02-26)


### Features

* add earl runtime skill and reorganize skills by category ([#66](https://github.com/brwse/earl/issues/66)) ([9bec065](https://github.com/brwse/earl/commit/9bec06510536ad6d3bb11d5119f19cdd3fe939aa))
* **browser:** add browser protocol with full Playwright MCP parity ([#59](https://github.com/brwse/earl/issues/59)) ([65f01da](https://github.com/brwse/earl/commit/65f01daf7a3c2ad63a737cd075d06fa06f975bd7))
* **browser:** default to 'default' session when session_id is omitted ([#63](https://github.com/brwse/earl/issues/63)) ([99c3a66](https://github.com/brwse/earl/commit/99c3a66e2be92c951b48f3c948961b168435b46e))


### Bug Fixes

* add earl-protocol-browser to release-please config and manifest ([#67](https://github.com/brwse/earl/issues/67)) ([6f18bc2](https://github.com/brwse/earl/commit/6f18bc24d1563225559a9e82a79b6f30e8528335))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* earl-core bumped from 0.5.0 to 0.5.1
* earl-protocol-grpc bumped from 0.5.0 to 0.5.1
* earl-protocol-http bumped from 0.5.0 to 0.5.1
* earl-protocol-bash bumped from 0.5.0 to 0.5.1
* earl-protocol-sql bumped from 0.5.0 to 0.5.1
* earl-protocol-browser bumped from 0.5.0 to 0.5.1

## [0.5.0](https://github.com/brwse/earl/compare/v0.4.1...v0.5.0) (2026-02-24)


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
Expand Up @@ -16,7 +16,7 @@ strip = true

[package]
name = "earl"
version = "0.5.0"
version = "0.5.1"
edition.workspace = true
build = "build.rs"
description = "AI-safe CLI for AI agents"
Expand All @@ -29,7 +29,7 @@ keywords = ["cli", "security", "ai", "http", "templates"]
categories = ["command-line-utilities", "network-programming"]

[dependencies]
earl-core = { version = "0.5.0", path = "crates/earl-core" }
earl-core = { version = "0.5.1", path = "crates/earl-core" }
anyhow = "1.0"
axum = "0.8"
base64 = "0.22"
Expand All @@ -40,7 +40,7 @@ clap_complete = "4.5"
comfy-table = "7.2"
directories = "6.0"
fastembed = { version = "5.11", optional = true }
earl-protocol-grpc = { version = "0.5.0", path = "crates/earl-protocol-grpc", optional = true }
earl-protocol-grpc = { version = "0.5.1", path = "crates/earl-protocol-grpc", optional = true }
jsonwebtoken = "9"
hcl = { package = "hcl-rs", version = "0.19.5" }
hickory-resolver = "0.25"
Expand Down Expand Up @@ -87,10 +87,10 @@ tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
url = "2.5"
webbrowser = "1.0"
include_dir = "0.7"
earl-protocol-http = { version = "0.5.0", path = "crates/earl-protocol-http", optional = true }
earl-protocol-bash = { version = "0.5.0", path = "crates/earl-protocol-bash", optional = true }
earl-protocol-sql = { version = "0.5.0", path = "crates/earl-protocol-sql", optional = true }
earl-protocol-browser = { version = "0.5.0", path = "crates/earl-protocol-browser", optional = true }
earl-protocol-http = { version = "0.5.1", path = "crates/earl-protocol-http", optional = true }
earl-protocol-bash = { version = "0.5.1", path = "crates/earl-protocol-bash", optional = true }
earl-protocol-sql = { version = "0.5.1", path = "crates/earl-protocol-sql", optional = true }
earl-protocol-browser = { version = "0.5.1", path = "crates/earl-protocol-browser", optional = true }
vaultrs = { version = "0.7", optional = true }
aws-config = { version = "1", optional = true }
aws-sdk-secretsmanager = { version = "1", optional = true }
Expand Down
7 changes: 7 additions & 0 deletions crates/earl-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.5.1](https://github.com/brwse/earl/compare/earl-core-v0.5.0...earl-core-v0.5.1) (2026-02-26)


### Miscellaneous Chores

* **earl-core:** Synchronize earl versions

## [0.5.0](https://github.com/brwse/earl/compare/earl-core-v0.4.1...earl-core-v0.5.0) (2026-02-24)


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.5.0"
version = "0.5.1"
edition.workspace = true
description = "Shared types and traits for earl protocol crates"
license.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/earl-protocol-bash/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.1](https://github.com/brwse/earl/compare/earl-protocol-bash-v0.5.0...earl-protocol-bash-v0.5.1) (2026-02-26)


### Miscellaneous Chores

* **earl-protocol-bash:** Synchronize earl versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* earl-core bumped from 0.5.0 to 0.5.1

## [0.5.0](https://github.com/brwse/earl/compare/earl-protocol-bash-v0.4.1...earl-protocol-bash-v0.5.0) (2026-02-24)


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.5.0"
version = "0.5.1"
edition.workspace = true
description = "Bash sandboxed execution protocol for earl"
license.workspace = true
Expand All @@ -11,7 +11,7 @@ documentation.workspace = true
[dependencies]
anyhow = "1.0"
rkyv = { version = "0.8", features = ["std", "bytecheck"] }
earl-core = { version = "0.5.0", path = "../earl-core" }
earl-core = { version = "0.5.1", path = "../earl-core" }
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
16 changes: 16 additions & 0 deletions crates/earl-protocol-browser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

## [0.5.1](https://github.com/brwse/earl/compare/earl-protocol-browser-v0.5.0...earl-protocol-browser-v0.5.1) (2026-02-26)


### Features

* **browser:** add browser protocol with full Playwright MCP parity ([#59](https://github.com/brwse/earl/issues/59)) ([65f01da](https://github.com/brwse/earl/commit/65f01daf7a3c2ad63a737cd075d06fa06f975bd7))
* **browser:** default to 'default' session when session_id is omitted ([#63](https://github.com/brwse/earl/issues/63)) ([99c3a66](https://github.com/brwse/earl/commit/99c3a66e2be92c951b48f3c948961b168435b46e))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* earl-core bumped from 0.5.0 to 0.5.1
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.5.0"
version = "0.5.1"
edition.workspace = true
description = "Browser automation protocol for earl (chromiumoxide)"
license.workspace = true
Expand All @@ -14,7 +14,7 @@ base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
chromiumoxide = { version = "0.9", default-features = false, features = ["bytes"] }
directories = "6.0"
earl-core = { version = "0.5.0", path = "../earl-core" }
earl-core = { version = "0.5.1", path = "../earl-core" }
fs4 = { version = "0.12", features = ["tokio"] }
futures = "0.3"
rkyv = { version = "0.8", features = ["std", "bytecheck"] }
Expand Down
14 changes: 14 additions & 0 deletions crates/earl-protocol-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.1](https://github.com/brwse/earl/compare/earl-protocol-grpc-v0.5.0...earl-protocol-grpc-v0.5.1) (2026-02-26)


### Miscellaneous Chores

* **earl-protocol-grpc:** Synchronize earl versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* earl-core bumped from 0.5.0 to 0.5.1

## [0.5.0](https://github.com/brwse/earl/compare/earl-protocol-grpc-v0.4.1...earl-protocol-grpc-v0.5.0) (2026-02-24)


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.5.0"
version = "0.5.1"
edition.workspace = true
description = "gRPC execution protocol for earl"
license.workspace = true
Expand All @@ -11,7 +11,7 @@ documentation.workspace = true
[dependencies]
anyhow = "1.0"
rkyv = { version = "0.8", features = ["std", "bytecheck"] }
earl-core = { version = "0.5.0", path = "../earl-core" }
earl-core = { version = "0.5.1", path = "../earl-core" }
futures-util = "0.3"
http = "1"
http-body = "1"
Expand Down
14 changes: 14 additions & 0 deletions crates/earl-protocol-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.1](https://github.com/brwse/earl/compare/earl-protocol-http-v0.5.0...earl-protocol-http-v0.5.1) (2026-02-26)


### Miscellaneous Chores

* **earl-protocol-http:** Synchronize earl versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* earl-core bumped from 0.5.0 to 0.5.1

## [0.5.0](https://github.com/brwse/earl/compare/earl-protocol-http-v0.4.1...earl-protocol-http-v0.5.0) (2026-02-24)


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.5.0"
version = "0.5.1"
edition.workspace = true
description = "HTTP and GraphQL execution protocol for earl"
license.workspace = true
Expand All @@ -12,7 +12,7 @@ documentation.workspace = true
anyhow = "1.0"
rkyv = { version = "0.8", features = ["std", "bytecheck"] }
base64 = "0.22"
earl-core = { version = "0.5.0", path = "../earl-core" }
earl-core = { version = "0.5.1", path = "../earl-core" }
reqwest = { version = "0.13.2", features = [
"json", "multipart", "gzip", "brotli", "deflate", "zstd", "rustls", "query", "form",
] }
Expand Down
14 changes: 14 additions & 0 deletions crates/earl-protocol-sql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.5.1](https://github.com/brwse/earl/compare/earl-protocol-sql-v0.5.0...earl-protocol-sql-v0.5.1) (2026-02-26)


### Miscellaneous Chores

* **earl-protocol-sql:** Synchronize earl versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* earl-core bumped from 0.5.0 to 0.5.1

## [0.5.0](https://github.com/brwse/earl/compare/earl-protocol-sql-v0.4.1...earl-protocol-sql-v0.5.0) (2026-02-24)


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.5.0"
version = "0.5.1"
edition.workspace = true
description = "SQL execution protocol for earl (sqlx)"
license.workspace = true
Expand All @@ -11,7 +11,7 @@ documentation.workspace = true
[dependencies]
anyhow = "1.0"
rkyv = { version = "0.8", features = ["std", "bytecheck"] }
earl-core = { version = "0.5.0", path = "../earl-core" }
earl-core = { version = "0.5.1", path = "../earl-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = [
Expand Down