Skip to content

Commit 131da88

Browse files
release: 5.6.0
1 parent d8a762f commit 131da88

3 files changed

Lines changed: 41 additions & 7 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.5.0"
2+
".": "5.6.0"
33
}

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## 5.6.0 (2026-04-01)
4+
5+
Full Changelog: [v5.5.0...v5.6.0](https://github.com/trycourier/courier-csharp/compare/v5.5.0...v5.6.0)
6+
7+
### Features
8+
9+
* **api:** add create/retrieve/archive/publish/replace methods, event_id param to notifications ([f857a51](https://github.com/trycourier/courier-csharp/commit/f857a51892cfa3b1089307011943f842bc56ad16))
10+
* **api:** add providers resource with CRUD and catalog endpoints ([d8a762f](https://github.com/trycourier/courier-csharp/commit/d8a762ff628fb461974cc119fa180801965b3545))
11+
* **api:** add routing strategies resource with create/list/retrieve/replace/archive methods ([634aa18](https://github.com/trycourier/courier-csharp/commit/634aa1890769a09509af9675735364ed8d1eb191))
12+
* **api:** add UnionMember7 variant to ElementalNode ([219d6b8](https://github.com/trycourier/courier-csharp/commit/219d6b832fe06f5e4891560bb5f31532ead47b93))
13+
* **client:** enable gzip decompression ([6db30fc](https://github.com/trycourier/courier-csharp/commit/6db30fc0171bfe7a157b270d61c99f4805befec1))
14+
15+
16+
### Bug Fixes
17+
18+
* **client:** allow cancelling when enumerating over an http response ([fd79698](https://github.com/trycourier/courier-csharp/commit/fd7969849208b5a58f7de55bf88615e0a1db98ea))
19+
* **client:** handle path params correctly in `FromRawUnchecked` ([28c65e7](https://github.com/trycourier/courier-csharp/commit/28c65e7eaeaaede6d8e8da6799721855d14b56d2))
20+
* **client:** handle root bodies in requests properly ([2c32f15](https://github.com/trycourier/courier-csharp/commit/2c32f15599be8deb20137cebdd3cae4c78f9f092))
21+
* **docs:** make xml syntactically correct ([85753bd](https://github.com/trycourier/courier-csharp/commit/85753bd6bd99d8381c8ba3adaf0c7d8acb4faa41))
22+
23+
24+
### Chores
25+
26+
* **ci:** skip lint on metadata-only changes ([2f7cd0a](https://github.com/trycourier/courier-csharp/commit/2f7cd0a8453b9e2f51c044eafdf727395aec3549))
27+
* **internal:** tweak CI branches ([f8720a0](https://github.com/trycourier/courier-csharp/commit/f8720a0bec29275a46e22a2e5d3481961ac33a96))
28+
* **internal:** update gitignore ([2d95668](https://github.com/trycourier/courier-csharp/commit/2d95668e1344cfb99b7bf2167fe99de0549f6e1b))
29+
* remove custom code ([e0fb6c0](https://github.com/trycourier/courier-csharp/commit/e0fb6c0dc11df4f1848d650303b1d8db6c0f9800))
30+
* **types:** rename UnionMember7 to ElementalHtmlNodeWithType ([09c113d](https://github.com/trycourier/courier-csharp/commit/09c113d251261571303278664bad67930ae4a092))
31+
32+
33+
### Documentation
34+
35+
* add AGENTS.md for AI coding assistants ([8751217](https://github.com/trycourier/courier-csharp/commit/8751217069ca24cf18bbc1b46fa35681469e0d7d))
36+
337
## 5.5.0 (2026-02-21)
438

539
Full Changelog: [v5.4.0...v5.5.0](https://github.com/trycourier/courier-csharp/compare/v5.4.0...v5.5.0)

src/Courier/Courier.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
<!-- Metadata -->
44
<AssemblyTitle>Courier C#</AssemblyTitle>
55
<AssemblyName>Courier</AssemblyName>
6-
<VersionPrefix>5.5.0</VersionPrefix>
6+
<VersionPrefix>5.6.0</VersionPrefix>
77
<Description>The official .NET library for the Courier API.</Description>
88
<OutputType>Library</OutputType>
99
<PackageReadmeFile>README.md</PackageReadmeFile>
1010
</PropertyGroup>
1111
<ItemGroup>
12-
<InternalsVisibleTo Include="Courier.Tests" />
13-
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
14-
<PackageReference Include="System.Text.Json" Version="9.0.9" />
15-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
12+
<InternalsVisibleTo Include="Courier.Tests"/>
13+
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
14+
<PackageReference Include="System.Text.Json" Version="9.0.9"/>
15+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
1616
</ItemGroup>
1717
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
18-
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
18+
<PackageReference Include="System.Collections.Immutable" Version="8.0.0"/>
1919
</ItemGroup>
2020
</Project>

0 commit comments

Comments
 (0)