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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.2.0

Breaking changes:

- Removed `[MergePatchTarget]`; use `[MergePatch(typeof(Target))]` for generated `ApplyTo`. Additional generated target overloads are no longer supported.
- Non-nullable reference patch properties now reject explicit JSON `null`.
- Nullable patch values now fail build-time validation when they would flow into non-nullable `ApplyTo` targets or `[PatchUsing]` parameters.

Changes:

- Inherited patch DTO properties now participate in presence tracking, JSON metadata, and generated `ApplyTo`.
- Added clearer diagnostics for unsupported patch shapes, inaccessible targets, duplicate names, and ambiguous mappings.
- Fixed strict unknown-property rejection, property-level `JsonConverterAttribute` handling, and release packaging metadata.

## 0.1.0 - Initial release

MergePatchDto provides source-generated DTO presence tracking for merge-patch-style ASP.NET Core endpoints.
Expand Down
2 changes: 1 addition & 1 deletion src/MergePatchDto/MergePatchDto.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>disable</ImplicitUsings>
<IsPackable>true</IsPackable>
<PackageId>MergePatchDto</PackageId>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
<Description>Source-generated DTO presence tracking for merge-patch-style ASP.NET Core endpoints.</Description>
<Authors>mxtordev</Authors>
<Copyright>Copyright (c) 2026 mxtordev</Copyright>
Expand Down