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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- New example `example/lib/store_state_based_transactional.dart` demonstrating `StateBasedStore` with `TransactionalRunner` and a REST API adapter.
- New example `example/lib/store_state_based_local_db.dart` demonstrating `StateBasedStore` with a local key-value database adapter.
- `InMemoryPersistenceAdapter` in `continuum_store_memory` — a ready-made `AggregatePersistenceAdapter` backed by a plain `Map`, suitable for testing and development.
- `HivePersistenceAdapter` in `continuum_store_hive` — a ready-made `AggregatePersistenceAdapter` backed by a Hive `Box<String>`, for local persistence.
- `SembastPersistenceAdapter` in `continuum_store_sembast` — a ready-made `AggregatePersistenceAdapter` backed by a Sembast store, for local persistence.

### Removed

- Removed obsolete hybrid examples from the `example/` package. The
following example files and their helper DTOs were removed because the
recommended pattern is now demonstrated in
`example/lib/store_state_based_transactional.dart`:
- `example/lib/hybrid_optimistic_creation.dart`
- `example/lib/hybrid_profile_edit.dart`
- `example/lib/hybrid_multi_step_form.dart`
- `example/lib/hybrid/backend_api.dart`
- `example/lib/hybrid/dtos.dart`


## [5.0.0] - 2026-02-19

### Breaking Changes
Expand Down
36 changes: 0 additions & 36 deletions packages/continuum/example/lib/hybrid/backend_api.dart

This file was deleted.

64 changes: 0 additions & 64 deletions packages/continuum/example/lib/hybrid/dtos.dart

This file was deleted.

73 changes: 0 additions & 73 deletions packages/continuum/example/lib/hybrid_multi_step_form.dart

This file was deleted.

68 changes: 0 additions & 68 deletions packages/continuum/example/lib/hybrid_optimistic_creation.dart

This file was deleted.

70 changes: 0 additions & 70 deletions packages/continuum/example/lib/hybrid_profile_edit.dart

This file was deleted.

Loading