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
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,34 @@ 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.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased

### ♻️ Refactoring

- *(repo)* Replace task2 package
- *(repo)* Add temporal standalone mode ([#305](https://github.com/compozy/compozy/issues/305))

### 🎉 Features

- *(repo)* Add support for streams ([#297](https://github.com/compozy/compozy/issues/297))
- *(repo)* New call_agents built-in tool ([#299](https://github.com/compozy/compozy/issues/299))
- *(repo)* Built-in tools to call tasks and workflows ([#301](https://github.com/compozy/compozy/issues/301))
- *(repo)* Add standalone mode for cache ([#311](https://github.com/compozy/compozy/issues/311))
- *(repo)* Add postgres standalone ([#307](https://github.com/compozy/compozy/issues/307))

### 🐛 Bug Fixes

- *(task)* Evaluate timeout templates in wait tasks before execution ([#309](https://github.com/compozy/compozy/issues/309))

### 📚 Documentation

- *(repo)* Update CHANGELOG.md

### 📦 Build System

- *(repo)* Remove testdata

## 0.0.19 - 2025-10-20
## 0.0.19 - 2025-10-21

### ♻️ Refactoring

Expand All @@ -23,6 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### 🔧 CI/CD

- *(release)* Release v0.0.19 ([#295](https://github.com/compozy/compozy/issues/295))
- *(repo)* Fix release

## 0.0.18 - 2025-10-17
Expand Down Expand Up @@ -408,6 +434,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- *(repo)* Fix testcontainer timeouts
- *(server)* Add basic tests for server

[0.0.19]: https://github.com/compozy/compozy/compare/v0.0.18...v0.0.19
[0.0.18]: https://github.com/compozy/compozy/compare/v0.0.17...v0.0.18
[0.0.17]: https://github.com/compozy/compozy/compare/v0.0.16...v0.0.17
[0.0.16]: https://github.com/compozy/compozy/compare/v0.0.15...v0.0.16
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@
"format:yaml": "prettier --write \"**/*.{yml,yaml}\"",
"lint": "turbo run lint",
"pr:review": "bun scripts/pr-review.ts",
"reinstall": "bun run clean:deps && bun install",
"reinstall": "bun run clean:deps \u0026\u0026 bun install",
"storybook": "turbo run storybook",
"test": "turbo run test",
"type-check": "turbo run type-check",
"update:deps": "turbo run update:deps"
},
"type": "module",
"version": "0.0.19",
"version": "0.0.20",
"workspaces": [
"examples/**",
"docs"
Expand Down
Loading