akademischerverein / ava

MIT License
1 stars 0 forks source link

Bump ClosedXML from 0.97.0 to 0.100.3 #172

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps ClosedXML from 0.97.0 to 0.100.3.

Release notes

Sourced from ClosedXML's releases.

0.100.3 Bulk insert of numbers

Fix a regression where some types of numbers were inserted as text by InsertData/InsertTable API.

// Only int and double were inserted as numbers, now all types are
cell.InsertData(new object[] { (sbyte)1, (byte)2, (short)3, (ushort)4, (uint)6, (long)7, (ulong)8, 15f, 17m });

What's Changed

Full Changelog: https://github.com/ClosedXML/ClosedXML/compare/0.100.2...0.100.3

0.100.2 Nullable conversion

Nullable conversions

Second fix for https://github.com/ClosedXML/ClosedXML/releases/tag/0.100.0.

Added conversion for nullable numbers/DateTime/TimeSpan to XLCellValue. Null values will be converted to Blank.Value in the XLCellValue. There is no value in having user code littered by cell.Value = nullableNumber ?? Blank.Value.

Null strings assigned to XLCellValue will also be converted to Blank.Value (unlike exception from 0.100).

What's Changed

Full Changelog: https://github.com/ClosedXML/ClosedXML/compare/0.100.1...0.100.2

0.100.1 Implicit conversion

This is a quick improvement for https://github.com/ClosedXML/ClosedXML/releases/tag/0.100.0. It adds an implicit conversion for decimal numbers to XLCellValue, so users who generate workbooks with decimal number don't have to add explicit casting from decimal to double everywhere.

What's Changed

Full Changelog: https://github.com/ClosedXML/ClosedXML/compare/0.100.0...0.100.1

0.100: Clean Break

Clean Break

These are release notes for a version 0.100. We skipped a few version since the last release (0.97), because 0.100 should denote a major change at the very heart of ClosedXML. Not as clean break as I hoped, but close enough.

The list of all things that were changed from 0.97 to 0.100 is at the migration guide at the https://closedxml.readthedocs.io/en/latest/migrations/migrate-to-0.100.html

This is more like list of you should upgrade despite breaking changes :)

Memory consumption during big was decreased

... (truncated)

Commits
  • 873ec09 Update version to 0.100.3 for third hotfix of 0.100. It fixes incorrect conve...
  • df82f71 XLEventTracking was removed, add it to migration guide.
  • f9599b9 Fix a bug, when user supplies data through IInsertDataReader, numbers of diff...
  • f0af52d Update version for second hotfix of 0.100 due to missing nullable conversions.
  • 65f0e7f Modify conversion from string to XLCellValue, so null is converted to blank. ...
  • f4a292f Add implicit conversion from Nullable<TimeSpan> to either serial time span or...
  • 87dff03 Add implicit conversion from Nullable<DateTime> to either serial date time or...
  • 9c4ce30 Add implicit conversion from Nullable<number> to either number or a blank.
  • 60261a6 Update version for hotfix that allows conversion of decimals without explicit...
  • 65a5c49 Add implicit conversion from decimal to double for XLCellValue. Other convers...
  • Additional commits viewable in compare view


Dependabot compatibility score

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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)