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
15 changes: 15 additions & 0 deletions packages/core/BREAKING-CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Breaking Changes

Cumulative log of breaking changes in `@fireflyframework/core`, with migration notes for consumers.

For the full per-release history (including non-breaking changes), see [CHANGELOG.md](CHANGELOG.md).

## How to read this file

- Entries are grouped by version, newest first.
- Every entry states: what changed, why, and the migration path (before / after).
- Pre-1.0 packages may include breaking changes inside minor bumps; they are still listed here.

## [Unreleased]

_No breaking changes pending release._
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.0] - 2026-07-21

### Added
- `AlertService.confirm(options: ConfirmOptions)` rich-confirm overload; `@Confirm` and `[ffConfirm]` now work with `provideAlerts()` alone (the root injector is captured via an app initializer, no separate `provideConfirm()` needed)
- `ToastOptions.progressBar` option and `AlertService.pauseToast(id)` / `resumeToast(id)` for hover-pausable auto-dismiss toasts

### Changed
- The confirm module now lives inside the alerts domain (`lib/alerts/confirm`); every public symbol keeps its package-root export, so no import changes are needed

### Deprecated
- `ConfirmService` port and `provideConfirm()` — superseded by `AlertService.confirm`; removal planned for the next minor

## [0.17.0] - 2026-07-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fireflyframework/core",
"version": "0.17.0",
"version": "0.18.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
Expand Down
Loading