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
12 changes: 6 additions & 6 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
".": "0.4.1",
"crates/earl-core": "0.4.1",
"crates/earl-protocol-http": "0.4.1",
"crates/earl-protocol-grpc": "0.4.1",
"crates/earl-protocol-bash": "0.4.1",
"crates/earl-protocol-sql": "0.4.1"
".": "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"
}
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* handle optional params gracefully and validate template args ([#49](https://github.com/brwse/earl/issues/49))

### Features

* add named environments support ([#41](https://github.com/brwse/earl/issues/41)) ([98773b1](https://github.com/brwse/earl/commit/98773b17f44a3a6e7461f66e5cb3d9676e1f62e7))
* **bash:** add memory and CPU resource limits to sandbox ([#39](https://github.com/brwse/earl/issues/39)) ([6f57817](https://github.com/brwse/earl/commit/6f578170cf12b53f7e1d597a74d3546e203aa3c5))
* compiled catalog cache for faster CLI startup ([#34](https://github.com/brwse/earl/issues/34)) ([0349a86](https://github.com/brwse/earl/commit/0349a86973b003a7c532190737e334e4142664ac))
* earl agent skills suite (setup-earl, create-template, migrate-to-earl, troubleshoot-earl, secure-agent) ([#40](https://github.com/brwse/earl/issues/40)) ([c75a399](https://github.com/brwse/earl/commit/c75a399023d2c5072b39c84941660c0a6e7a61ea))
* external secret manager support ([#43](https://github.com/brwse/earl/issues/43)) ([e6afe3c](https://github.com/brwse/earl/commit/e6afe3cef58a65c3bdd62ed7f530eb1ce34b2f69))
* handle optional params gracefully and validate template args ([#49](https://github.com/brwse/earl/issues/49)) ([b0f1654](https://github.com/brwse/earl/commit/b0f1654616c4f19cd7f586904bfe986fee148112))
* recall.ai integration (14-command template + agent skill) ([#44](https://github.com/brwse/earl/issues/44)) ([4fee573](https://github.com/brwse/earl/commit/4fee573dd2ff14801be5453ac7972e7f70ccbe9e))


### Bug Fixes

* serialize onepassword env-var tests to prevent parallel races ([#54](https://github.com/brwse/earl/issues/54)) ([427d689](https://github.com/brwse/earl/commit/427d6892c85f7fcb3631657ec207f1e8895b8afa))


### Dependencies

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

## [0.4.1](https://github.com/brwse/earl/compare/v0.4.0...v0.4.1) (2026-02-23)


Expand Down
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.

12 changes: 6 additions & 6 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.4.1"
version = "0.5.0"
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.4.1", path = "crates/earl-core" }
earl-core = { version = "0.5.0", 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.4.1", path = "crates/earl-protocol-grpc", optional = true }
earl-protocol-grpc = { version = "0.5.0", 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,9 +87,9 @@ tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
url = "2.5"
webbrowser = "1.0"
include_dir = "0.7"
earl-protocol-http = { version = "0.4.1", path = "crates/earl-protocol-http", optional = true }
earl-protocol-bash = { version = "0.4.1", path = "crates/earl-protocol-bash", optional = true }
earl-protocol-sql = { version = "0.4.1", path = "crates/earl-protocol-sql", optional = true }
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 }
vaultrs = { version = "0.7", optional = true }
aws-config = { version = "1", optional = true }
aws-sdk-secretsmanager = { version = "1", optional = true }
Expand Down
12 changes: 12 additions & 0 deletions crates/earl-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* handle optional params gracefully and validate template args ([#49](https://github.com/brwse/earl/issues/49))

### Features

* compiled catalog cache for faster CLI startup ([#34](https://github.com/brwse/earl/issues/34)) ([0349a86](https://github.com/brwse/earl/commit/0349a86973b003a7c532190737e334e4142664ac))
* handle optional params gracefully and validate template args ([#49](https://github.com/brwse/earl/issues/49)) ([b0f1654](https://github.com/brwse/earl/commit/b0f1654616c4f19cd7f586904bfe986fee148112))

## [0.4.1](https://github.com/brwse/earl/compare/earl-core-v0.4.0...earl-core-v0.4.1) (2026-02-23)


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

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


### Features

* add named environments support ([#41](https://github.com/brwse/earl/issues/41)) ([98773b1](https://github.com/brwse/earl/commit/98773b17f44a3a6e7461f66e5cb3d9676e1f62e7))
* **bash:** add memory and CPU resource limits to sandbox ([#39](https://github.com/brwse/earl/issues/39)) ([6f57817](https://github.com/brwse/earl/commit/6f578170cf12b53f7e1d597a74d3546e203aa3c5))
* compiled catalog cache for faster CLI startup ([#34](https://github.com/brwse/earl/issues/34)) ([0349a86](https://github.com/brwse/earl/commit/0349a86973b003a7c532190737e334e4142664ac))


### Dependencies

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

## [0.4.1](https://github.com/brwse/earl/compare/earl-protocol-bash-v0.4.0...earl-protocol-bash-v0.4.1) (2026-02-23)


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.4.1"
version = "0.5.0"
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.4.1", path = "../earl-core" }
earl-core = { version = "0.5.0", path = "../earl-core" }
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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.0](https://github.com/brwse/earl/compare/earl-protocol-grpc-v0.4.1...earl-protocol-grpc-v0.5.0) (2026-02-24)


### Features

* compiled catalog cache for faster CLI startup ([#34](https://github.com/brwse/earl/issues/34)) ([0349a86](https://github.com/brwse/earl/commit/0349a86973b003a7c532190737e334e4142664ac))


### Dependencies

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

## [0.4.1](https://github.com/brwse/earl/compare/earl-protocol-grpc-v0.4.0...earl-protocol-grpc-v0.4.1) (2026-02-23)


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.4.1"
version = "0.5.0"
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.4.1", path = "../earl-core" }
earl-core = { version = "0.5.0", 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.0](https://github.com/brwse/earl/compare/earl-protocol-http-v0.4.1...earl-protocol-http-v0.5.0) (2026-02-24)


### Features

* compiled catalog cache for faster CLI startup ([#34](https://github.com/brwse/earl/issues/34)) ([0349a86](https://github.com/brwse/earl/commit/0349a86973b003a7c532190737e334e4142664ac))


### Dependencies

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

## [0.4.1](https://github.com/brwse/earl/compare/earl-protocol-http-v0.4.0...earl-protocol-http-v0.4.1) (2026-02-23)


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.4.1"
version = "0.5.0"
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.4.1", path = "../earl-core" }
earl-core = { version = "0.5.0", path = "../earl-core" }
reqwest = { version = "0.13.2", features = [
"json", "multipart", "gzip", "brotli", "deflate", "zstd", "rustls", "query", "form",
] }
Expand Down
15 changes: 15 additions & 0 deletions crates/earl-protocol-sql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

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


### Features

* add named environments support ([#41](https://github.com/brwse/earl/issues/41)) ([98773b1](https://github.com/brwse/earl/commit/98773b17f44a3a6e7461f66e5cb3d9676e1f62e7))
* compiled catalog cache for faster CLI startup ([#34](https://github.com/brwse/earl/issues/34)) ([0349a86](https://github.com/brwse/earl/commit/0349a86973b003a7c532190737e334e4142664ac))


### Dependencies

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

## [0.4.1](https://github.com/brwse/earl/compare/earl-protocol-sql-v0.4.0...earl-protocol-sql-v0.4.1) (2026-02-23)


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.4.1"
version = "0.5.0"
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.4.1", path = "../earl-core" }
earl-core = { version = "0.5.0", path = "../earl-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = [
Expand Down
Loading