Skip to content

Bump the nuget group with 4 updates - #263

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/nuget-382d51f6dd
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/nuget-382d51f6dd

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 19, 2026

Copy link
Copy Markdown
Contributor

Updated Magick.NET-Q16-AnyCPU from 14.16.0 to 14.17.1.

Release notes

Sourced from Magick.NET-Q16-AnyCPU's releases.

14.17.1

What's Changed

  • Check if an exception was thrown to prevent a deadlock when reading the image asynchronous (#​2084)

Full Changelog: dlemstra/Magick.NET@14.17.0...14.17.1

14.17.0

What's Changed

  • Make sure that ReadAsync and WriteAsync throw an OperationCanceledException when the task was canceled (#​2066)
  • Fixed decoding of yuv422 tiff (#​2074)
  • Added JFIF as a supported extension (##​2075)
  • Report the correct error when decoding an invalid WebP file (#​2076)
  • Make sure we clear the collection before reading in the ReadAsync and PingAsync methods (#​2077)
  • Make sure that WriteAsync uses a stream that is both readable and writable when reading from a file path (#​2081)
  • Fixed cancelling MagickImage.ReadAsync crashes the process with an access violation (14.16.0, 14.15.0) (#​2084)

Related changes in ImageMagick since the last release of Magick.NET:

Library updates:

  • ImageMagick 7.1.2-31 (2026-09-03)
  • aom 3.15.0 (2026-08-25)
  • openexr 3.4.15 (2026-08-22)
  • libffi 3.8.0 (2026-08-09)
  • fontconfig 2.18.3 (2026-08-06)
  • gdk-pixbuf 2.44.8 (2026-08-12)
  • harfbuzz 14.4.0 (2026-08-26)
  • libheif 1.23.2 (2026-08-25)
  • imath 3.2.3 (2026-08-20)
  • openjph 0.31.0 (2026-07-27)

Full Changelog: dlemstra/Magick.NET@14.16.0...14.17.0

Commits viewable in compare view.

Updated QuestPDF from 2026.7.3 to 2026.9.0.

Release notes

Sourced from QuestPDF's releases.

2026.9.0

This release is dedicated to text handling improvements

QuestPDF 2026.9.0 improves font management to make document rendering more predictable across development machines, CI, containers, and cloud environments.

Fonts installed on the operating system vary between machines. A document that looks correct during development may use different fallback fonts, display placeholder glyphs, or lose text after deployment. To help catch these problems before a PDF reaches its recipient, QuestPDF now excludes system fonts by default and validates font availability and glyph coverage during document generation.

Upgrading to 2026.9.0

Deploy the required font files with your application and reference them by the family names stored in those files. Fonts in the application directory are registered automatically; you can also register them explicitly through FontManager. Use FontManager.GetRegisteredFonts() to inspect the available family names.

Please compare previous settings with the new defaults:

// previous behavior:
QuestPDF.Settings.UseSystemFonts = true;
QuestPDF.Settings.ThrowOnMissingFontFamilies = false;
QuestPDF.Settings.ThrowOnMissingTextGlyphs = false;
QuestPDF.Settings.EnableDetailedLayoutErrors = false;

// current behavior:
QuestPDF.Settings.UseSystemFonts = false;
QuestPDF.Settings.ThrowOnMissingFontFamilies = true;
QuestPDF.Settings.ThrowOnMissingTextGlyphs = true;
QuestPDF.Settings.EnableDetailedLayoutErrors = true;

Also review the deployment and API changes below. Renamed APIs remain available under their previous names, marked as obsolete with compiler warnings.

Covering additional languages

QuestPDF includes the bundled Lato font, which covers Latin, Greek, and Cyrillic scripts. For other scripts, such as Chinese, Japanese, Korean, Arabic, Hebrew, Thai, or emoji, we recommend additionally deploying the free, open-source Google Noto font family, registering it with FontManager, and configuring it as a font fallback in the default text style of the document.

// at application startup
FontManager.RegisterFontsFromDirectory("Fonts/Noto");

// in the document
Document.Create(document => 
{
    document.Page(page => 
    {
        page.DefaultTextStyle(style => style.FontFamily("Lato", "Noto Sans", "Noto Sans CJK SC", "Noto Emoji"));
    });
});

⚠️ Breaking changes

... (truncated)

2026.8.0

🚀 This release is dedicated to performance, parallelism, and use of available resources. 🚀

Documents render faster, allocate a fraction of the memory they used to, and scale across all available CPU cores. No code changes are required — existing documents benefit simply by upgrading the package.

The numbers below were measured on a MacBook Pro M5 (18-core CPU), using the invoice document from the Getting Started tutorial, across various levels of parallelism, over a sample of 5,000 documents.

  • Reduced allocated memory amount and allocated object count by 85%.
  • Improved single-threaded performance by around 15%.
  • Substantially improved parallel scaling: throughput previously peaked at 4 threads and flattened beyond that, and now scales with available CPU cores — with around 4x better scaling.
  • Improved performance and scalability for text-heavy documents.
  • Improved cache usage (mainly for fonts) and significantly reduced locking.

✨ Other improvements:

  • Added support for soft hyphens: the library does not hyphenate text automatically, but soft hyphen characters (U+00AD) are now correctly interpreted as optional break points and rendered as hyphens when a line breaks.
  • Added the TextStyle.BreakAnywhere API, which allows a text span to break between any two characters, not only at word boundaries such as spaces or hyphens. Useful for content without natural break points, e.g. long URLs, identifiers, hashes, or file paths.
  • Improved the visual position of the underline and double underline text decorations.
  • Improved reliability of the Companion App integration: document previews are now refreshed from a consistent snapshot, and rendered pages are transferred more efficiently.
  • Increased the zlib compression level used for PDF generation from 1 to 3, which produces significantly smaller files (for text-heavy documents) with a minimal increase in generation time.
  • Updated the Skia native dependency to version m152.

⚠️ Breaking change

XPS generation has been removed. The format was supported only on Windows, had several rendering issues that could not be reliably resolved, and had negligible adoption. The GenerateXps and GenerateXpsAndShow methods are still present, but calling them now results in a compilation error, and code compiled against an earlier version throws an exception at runtime. Please use PDF generation instead.

Commits viewable in compare view.

Updated TUnit from 1.65.38 to 1.68.17.

Release notes

Sourced from TUnit's releases.

1.68.17

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.68.4...v1.68.17

1.68.4

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.68.0...v1.68.4

1.68.0

What's Changed

Other Changes

Dependencies

New Contributors

Full Changelog: thomhurst/TUnit@v1.67.0...v1.68.0

1.67.0

What's Changed

Other Changes

Dependencies

New Contributors

1.66.27

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.66.16...v1.66.27

1.66.16

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.66.10...v1.66.16

1.66.10

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.66.8...v1.66.10

1.66.8

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.66.0...v1.66.8

1.66.0

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.65.68...v1.66.0

1.65.68

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.65.63...v1.65.68

1.65.63

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.65.51...v1.65.63

1.65.51

What's Changed

Other Changes

Dependencies

Full Changelog: thomhurst/TUnit@v1.65.38...v1.65.51

Commits viewable in compare view.

Updated Verify.TUnit from 32.0.0 to 32.0.1.

Release notes

Sourced from Verify.TUnit's releases.

No release notes found for this version range.

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps Magick.NET-Q16-AnyCPU from 14.16.0 to 14.17.1
Bumps QuestPDF from 2026.7.3 to 2026.9.0
Bumps TUnit from 1.65.38 to 1.68.17
Bumps Verify.TUnit from 32.0.0 to 32.0.1

---
updated-dependencies:
- dependency-name: Magick.NET-Q16-AnyCPU
  dependency-version: 14.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: QuestPDF
  dependency-version: 2026.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: TUnit
  dependency-version: 1.68.17
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Verify.TUnit
  dependency-version: 32.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Sep 19, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants