diff --git a/CHANGELOG.md b/CHANGELOG.md index 14bde681..b446ad9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0](https://github.com/nearai/ironclaw/compare/v0.13.1...v0.14.0) - 2026-03-04 + +### Added + +- remove the okta tool ([#506](https://github.com/nearai/ironclaw/pull/506)) +- add OAuth support for WASM tools in web gateway ([#489](https://github.com/nearai/ironclaw/pull/489)) +- *(web)* fix jobs UI parity for non-sandbox mode ([#491](https://github.com/nearai/ironclaw/pull/491)) +- *(workspace)* add TOOLS.md, BOOTSTRAP.md, and disk-to-DB import ([#477](https://github.com/nearai/ironclaw/pull/477)) + +### Fixed + +- *(web)* mobile browser bar obscures chat input ([#508](https://github.com/nearai/ironclaw/pull/508)) +- *(web)* assign unique thread_id to manual routine triggers ([#500](https://github.com/nearai/ironclaw/pull/500)) +- *(web)* refresh routine UI after Run Now trigger ([#501](https://github.com/nearai/ironclaw/pull/501)) +- *(skills)* use slug for skill download URL from ClawHub ([#502](https://github.com/nearai/ironclaw/pull/502)) +- *(workspace)* thread document path through search results ([#503](https://github.com/nearai/ironclaw/pull/503)) +- *(workspace)* import custom templates before seeding defaults ([#505](https://github.com/nearai/ironclaw/pull/505)) +- use std::sync::RwLock in MessageTool to avoid runtime panic ([#411](https://github.com/nearai/ironclaw/pull/411)) +- wire secrets store into all WASM runtime activation paths ([#479](https://github.com/nearai/ironclaw/pull/479)) + +### Other + +- enforce regression tests for fix commits ([#517](https://github.com/nearai/ironclaw/pull/517)) +- add code coverage with cargo-llvm-cov and Codecov ([#511](https://github.com/nearai/ironclaw/pull/511)) +- Remove restart infrastructure, generalize WASM channel setup ([#493](https://github.com/nearai/ironclaw/pull/493)) + ## [0.13.1](https://github.com/nearai/ironclaw/compare/v0.13.0...v0.13.1) - 2026-03-02 ### Added diff --git a/Cargo.lock b/Cargo.lock index 2795ce28..1990884d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2828,7 +2828,7 @@ dependencies = [ [[package]] name = "ironclaw" -version = "0.13.1" +version = "0.14.0" dependencies = [ "aes-gcm", "aho-corasick", diff --git a/Cargo.toml b/Cargo.toml index 49e652da..ab06784e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ exclude = [ [package] name = "ironclaw" -version = "0.13.1" +version = "0.14.0" edition = "2024" rust-version = "1.92" description = "Secure personal AI assistant that protects your data and expands its capabilities on the fly"