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

## [Unreleased]

## [0.1.1] - 2026-09-13

### Fixed
- **Both `AddEscalated` overloads left services unregistered.** They kept
separate lists that had drifted apart, and nothing fails at startup when a
registration is missing -- a controller is only built when a request reaches
it.
- Following the README (`AddEscalated(configuration, configureDb)`), inbound
email returned 500s, `WebhookDispatcher` could not be resolved, and
`MentionService` was never registered, so @-mentions in internal notes were
dropped silently.
- The parameterless `AddEscalated()` could not build nine controllers,
including the admin and agent ticket controllers and every newsletter
controller, and registered none of the background services, so automations,
SLA monitoring and escalations never ran.

Both now register the same services, and calling both no longer registers
every background service twice.

### Changed
- EF Core 9.0.20 in every project, together, and the ASP.NET Core test
packages to their latest patches.

## [0.1.0] - 2026-09-12

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/Escalated/Escalated.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<RootNamespace>Escalated</RootNamespace>
<PackageId>Escalated</PackageId>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
<Authors>escalated-dev</Authors>
<Description>A full-featured, embeddable support ticket system for ASP.NET Core. Drop it into any app to get a complete helpdesk with SLA tracking, escalation rules, agent workflows, and a customer portal.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down