From 54e12438c1c675d80ab207e307925859fdd8e0be Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 19:00:01 +0000 Subject: [PATCH 1/5] docs: update changelog for v0.0.143 Co-Authored-By: unknown <> --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index da7f31fc..afe30eb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.0.143] - 2025-05-30 + +### Changed +- Improvements around packaging ([#368](https://github.com/agentuity/cli/pull/368)) + +### Fixed +- [AGENT-258] Use utility function from envutil for better environment variable handling ([#364](https://github.com/agentuity/cli/pull/364)) +- Cloned projects now automatically include an .env file ([#369](https://github.com/agentuity/cli/pull/369)) + ## [v0.0.140] - 2025-05-27 ### Added From ec1693baaaaba0b82ca3190532e67d73da7e4f1c Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 19:00:25 +0000 Subject: [PATCH 2/5] docs: add version comparison link for v0.0.143 Co-Authored-By: unknown <> --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index afe30eb2..f406c68f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -665,6 +665,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added project import checks for new agent creation +[v0.0.143]: https://github.com/agentuity/cli/compare/v0.0.142...v0.0.143 [v0.0.140]: https://github.com/agentuity/cli/compare/v0.0.139...v0.0.140 [v0.0.139]: https://github.com/agentuity/cli/compare/v0.0.138...v0.0.139 [v0.0.138]: https://github.com/agentuity/cli/compare/v0.0.137...v0.0.138 From e14b4d1473fb962e7ccd1f427ba89f605f187fbd Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 19:19:44 +0000 Subject: [PATCH 3/5] docs: add missing CLI versions v0.0.141 and v0.0.142 Co-Authored-By: unknown <> --- CHANGELOG.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f406c68f..cae2dae1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.0.142] - 2025-05-29 + +### Changed +- [AGENT-272] Always reinitialize the viewport on resize to avoid invalid state ([#363](https://github.com/agentuity/cli/pull/363)) +- MCP: Relaxed types for MCP parsing configs ([#365](https://github.com/agentuity/cli/pull/365)) +- Allow SDK to be copied into a project for development purposes ([#366](https://github.com/agentuity/cli/pull/366)) + +### Fixed +- [AGENT-232] Fixed issue with Python project name by ensuring agent names are lowercase ([#359](https://github.com/agentuity/cli/pull/359)) +- Don't run git init when you are already in a git repository ([#362](https://github.com/agentuity/cli/pull/362)) + +## [v0.0.141] - 2025-05-28 + +### Added +- Added additional ignore rule defaults for better project management ([#357](https://github.com/agentuity/cli/pull/357)) +- Added missing disk units for better user feedback ([#355](https://github.com/agentuity/cli/pull/355)) + +### Fixed +- Deploy: Fixed error with missing files during zip creation ([#354](https://github.com/agentuity/cli/pull/354)) +- Fixed directory handling when using last known project ([#358](https://github.com/agentuity/cli/pull/358)) + ## [v0.0.143] - 2025-05-30 ### Changed @@ -644,6 +665,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v0.0.58] - 2025-03-12 ### Fixed +[v0.0.142]: https://github.com/agentuity/cli/compare/v0.0.141...v0.0.142 +[v0.0.141]: https://github.com/agentuity/cli/compare/v0.0.140...v0.0.141 - Fix filepath issues by converting to localized path separators for Windows compatibility ([#80](https://github.com/agentuity/cli/pull/80)) (@jhaynie) ## [v0.0.57] - 2025-03-12 From c17eb5d4676300839615316cfb5ac895bb4fff6d Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 19:49:57 +0000 Subject: [PATCH 4/5] docs: fix version ordering in changelog Co-Authored-By: unknown <> --- CHANGELOG.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cae2dae1..74e73205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.0.143] - 2025-05-30 + +### Changed +- Improvements around packaging ([#368](https://github.com/agentuity/cli/pull/368)) + +### Fixed +- [AGENT-258] Use utility function from envutil for better environment variable handling ([#364](https://github.com/agentuity/cli/pull/364)) +- Cloned projects now automatically include an .env file ([#369](https://github.com/agentuity/cli/pull/369)) + ## [v0.0.142] - 2025-05-29 ### Changed @@ -26,15 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Deploy: Fixed error with missing files during zip creation ([#354](https://github.com/agentuity/cli/pull/354)) - Fixed directory handling when using last known project ([#358](https://github.com/agentuity/cli/pull/358)) -## [v0.0.143] - 2025-05-30 - -### Changed -- Improvements around packaging ([#368](https://github.com/agentuity/cli/pull/368)) - -### Fixed -- [AGENT-258] Use utility function from envutil for better environment variable handling ([#364](https://github.com/agentuity/cli/pull/364)) -- Cloned projects now automatically include an .env file ([#369](https://github.com/agentuity/cli/pull/369)) - ## [v0.0.140] - 2025-05-27 ### Added From 36943b9e6d0615c7062a94139cfd82c5d92dd132 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 30 May 2025 19:55:07 +0000 Subject: [PATCH 5/5] docs: fix version comparison links in changelog Co-Authored-By: unknown <> --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74e73205..d4be09d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -665,8 +665,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v0.0.58] - 2025-03-12 ### Fixed -[v0.0.142]: https://github.com/agentuity/cli/compare/v0.0.141...v0.0.142 -[v0.0.141]: https://github.com/agentuity/cli/compare/v0.0.140...v0.0.141 - Fix filepath issues by converting to localized path separators for Windows compatibility ([#80](https://github.com/agentuity/cli/pull/80)) (@jhaynie) ## [v0.0.57] - 2025-03-12 @@ -689,6 +687,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [v0.0.143]: https://github.com/agentuity/cli/compare/v0.0.142...v0.0.143 +[v0.0.142]: https://github.com/agentuity/cli/compare/v0.0.141...v0.0.142 +[v0.0.141]: https://github.com/agentuity/cli/compare/v0.0.140...v0.0.141 [v0.0.140]: https://github.com/agentuity/cli/compare/v0.0.139...v0.0.140 [v0.0.139]: https://github.com/agentuity/cli/compare/v0.0.138...v0.0.139 [v0.0.138]: https://github.com/agentuity/cli/compare/v0.0.137...v0.0.138