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
35 changes: 22 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,26 @@ Entries before v0.5.0 were written retroactively as summaries.

## [Unreleased]

## [0.5.1] - 2026-08-01
## [0.5.2] - 2026-08-01

### Changed

- **`run_python` persistence semantics unified**: file writes now always
persist — the `save` flag is deprecated and ignored (silent data loss when
omitting `save=True` on Cloud is no longer possible). The deck's PPTX
artifact refreshes automatically whenever the deck changes;
`measure_slides` remains the trigger for the expensive verification pass
(render, text overflow measurement, previews). Cloud sandbox write-back is
now diff-based (changed/new files only), preventing a stale sandbox copy
from overwriting newer S3 writes

### Fixed

- Cloud: superseded PPTX artifacts are now deleted after each refresh — the
automatic artifact refresh no longer accumulates orphaned objects in S3
(`update_deck` returns previous values via `UPDATED_OLD`)

## [0.5.1] - 2026-07-31

### Added

Expand All @@ -23,9 +42,6 @@ Entries before v0.5.0 were written retroactively as summaries.

### Fixed

- Cloud: superseded PPTX artifacts are now deleted after each refresh — the
automatic artifact refresh no longer accumulates orphaned objects in S3
(`update_deck` returns previous values via `UPDATED_OLD`)
- **Cloud agent output-token limit**: model profiles now set an explicit
`max_tokens` (Claude 32768, others 8192) — Bedrock's small default truncated
long single-call outputs (e.g. writing `specs/brief.md` from a long article)
Expand All @@ -35,14 +51,6 @@ Entries before v0.5.0 were written retroactively as summaries.

### Changed

- **`run_python` persistence semantics unified**: file writes now always
persist — the `save` flag is deprecated and ignored (silent data loss when
omitting `save=True` on Cloud is no longer possible). The deck's PPTX
artifact refreshes automatically whenever the deck changes;
`measure_slides` remains the trigger for the expensive verification pass
(render, text overflow measurement, previews). Cloud sandbox write-back is
now diff-based (changed/new files only), preventing a stale sandbox copy
from overwriting newer S3 writes
- **L4 agent personas unified**: the cloud agent (Strands) now fetches mode
behavior from `personas/*.md` through the same `start_presentation(mode=...)`
port as every other client, instead of carrying its own copies in
Expand Down Expand Up @@ -118,7 +126,8 @@ decks and cloud data keep working. See the
- Initial release: spec-driven slide generation (Engine json ↔ pptx, CLI,
local/remote MCP servers, Strands Agent, React Web UI, CDK stacks)

[Unreleased]: https://github.com/aws-samples/sample-spec-driven-presentation-maker/compare/v0.5.1...HEAD
[Unreleased]: https://github.com/aws-samples/sample-spec-driven-presentation-maker/compare/v0.5.2...HEAD
[0.5.2]: https://github.com/aws-samples/sample-spec-driven-presentation-maker/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/aws-samples/sample-spec-driven-presentation-maker/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/aws-samples/sample-spec-driven-presentation-maker/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/aws-samples/sample-spec-driven-presentation-maker/compare/v0.3.8...v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion sdpm/sdpm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# SPDX-License-Identifier: MIT-0
"""sdpm - Generate PowerPoint from JSON using template."""

__version__ = "0.5.1"
__version__ = "0.5.2"
Loading