Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update AngleSharp version to 1.1.0 #407

Merged
merged 2 commits into from
May 22, 2024
Merged
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
27 changes: 4 additions & 23 deletions PreMailer.Net/PreMailer.Net/PreMailer.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>2.5.0</Version>
<Version>2.6.0</Version>
<Authors>Martin H. Normark</Authors>
<Description>
PreMailer.Net is a C# utility for moving CSS to inline style attributes, to gain maximum E-mail client compatibility.
Expand All @@ -17,36 +17,17 @@
<PackageReleaseNotes>
What's Changed

* Bump AngleSharp from 0.16.1 to 1.0.7. Only the IMarkupFormatter from AngleSharp is exposed as public api and that interface has not changed in that version jump so this should not cause any breakages for users.
* Dependency Bumps for the Tests and Benchmark projects.
* Fix race condition when running unit tests by @jasekiw in https://github.com/milkshakesoftware/PreMailer.Net/pull/374
* Normalize all file line endings by @jasekiw in https://github.com/milkshakesoftware/PreMailer.Net/pull/365
* Update benchmark project framework by @jasekiw in https://github.com/milkshakesoftware/PreMailer.Net/pull/351
* Use correct framework by @kasperk81 https://github.com/milkshakesoftware/PreMailer.Net/pull/334
* Update CI triggers to main branch by @martinnormark https://github.com/milkshakesoftware/PreMailer.Net/pull/332
* Bug triage by @martinnormark https://github.com/milkshakesoftware/PreMailer.Net/pull/328
* More efficient selector matching of all elements by @patrikwlund https://github.com/milkshakesoftware/PreMailer.Net/pull/326
* Read text node instead of InnerHtml for CSS by @patrikwlund https://github.com/milkshakesoftware/PreMailer.Net/pull/325
* Include a benchmark that sets all MoveCssInline() flags by @patrikwlund https://github.com/milkshakesoftware/PreMailer.Net/pull/324
* Realistic benchmark by @patrikwlund https://github.com/milkshakesoftware/PreMailer.Net/pull/323
* Decent optimizations for CssAttributeCollection by @patrikwlund https://github.com/milkshakesoftware/PreMailer.Net/pull/322


New Contributors

* @patrikwlund made their first contribution in https://github.com/milkshakesoftware/PreMailer.Net/pull/323
* @kasperk81 made their first contribution in https://github.com/milkshakesoftware/PreMailer.Net/pull/334
* @jasekiw made their first contribution in https://github.com/milkshakesoftware/PreMailer.Net/pull/351
* Bump AngleSharp from 1.0.7 to 1.1.0. Only the IMarkupFormatter from AngleSharp is exposed as public api and that interface has not changed in that version jump so this should not cause any breakages for users.

Full Changelog: https://github.com/milkshakesoftware/PreMailer.Net/compare/v2.4.0...v2.5.0
Full Changelog: https://github.com/milkshakesoftware/PreMailer.Net/compare/v2.5.0...v2.6.0
</PackageReleaseNotes>
<PackageTags>email css newsletter html</PackageTags>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>PreMailer.Net.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AngleSharp" Version="1.0.7" />
<PackageReference Include="AngleSharp" Version="1.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading