File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.1.1] - 2024-10-10
9+ ### Fixed
10+ - Fixed IPatreonApi.GetIdentityJson missing types error for source generated json deserialization.
11+
812## [ 1.1.0] - 2024-10-09
913### Added
1014- Added IPatreonApi.GetIdentity overloads that accept field parameters.
Original file line number Diff line number Diff line change 1- using System . Text . Json . Serialization ;
1+ using System . Text . Json . Nodes ;
2+ using System . Text . Json . Serialization ;
23
34namespace Patreon . Api . Models ;
45
56[ JsonSourceGenerationOptions ( PropertyNamingPolicy = JsonKnownNamingPolicy . SnakeCaseLower ) ]
67[ JsonSerializable ( typeof ( PatreonIdentityResponse ) ) ]
8+ [ JsonSerializable ( typeof ( JsonObject ) ) ]
9+ [ JsonSerializable ( typeof ( JsonValue ) ) ]
710internal partial class PatreonApiSourceGenerationContext : JsonSerializerContext ;
You can’t perform that action at this time.
0 commit comments