Skip to content

Commit 34edb46

Browse files
committed
EPPlus version 8.5.0
1 parent b1f3b42 commit 34edb46

3 files changed

Lines changed: 35 additions & 10 deletions

File tree

appveyor8.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 8.4.2.{build}
1+
version: 8.5.0.{build}
22
branches:
33
only:
44
- develop8
@@ -10,15 +10,15 @@ install:
1010
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '10.0.100' -InstallDir "$env:ProgramFiles\dotnet"
1111
init:
1212
- ps: >-
13-
Update-AppveyorBuild -Version "8.4.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
13+
Update-AppveyorBuild -Version "8.5.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1414
15-
Write-Host "8.4.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
15+
Write-Host "8.5.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1616
dotnet_csproj:
1717
patch: true
1818
file: '**\*.csproj'
1919
version: '{version}'
20-
assembly_version: 8.4.2.{build}
21-
file_version: 8.4.2.{build}
20+
assembly_version: 8.5.0.{build}
21+
file_version: 8.5.0.{build}
2222
nuget:
2323
project_feed: true
2424
before_build:

docs/articles/fixedissues.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
# Features / Fixed issues - EPPlus 8
2+
## Version 8.5.0
3+
### Minor Features
4+
* Added ´CancellationToken´ to Calculate - see [Cancelling a calculation](https://github.com/EPPlusSoftware/EPPlus/wiki/Cancelling-a-calculation).
5+
* Added property ´ValueFromCellsRange´ and the ´SetValueFromCellsRange´ method to data labels on chart series.
6+
* Improved performance for SUMIFS, AVERAGEIFS, COUNTIFS.
7+
* Improved performance for formula calculation with full column references (e.g. A:A, $B:$B).
8+
### Fixed issues
9+
* Deleting pictures in cells, caused a corrupt workbook in rare cases.
10+
* Fixed several formatting issues when reading and writing tables with checkboxes in them.
11+
* Fixed several issues when using a custom ExcelPackage.Workbook.NumberFormatToTextHandler:
12+
* Fixed unary minus coercion on dynamic array results.
13+
* Fixed off-by-one in ´InsertAndShift´ resize condition. This caused an ´ArgumentException´ when calling ´InsertColumn´ on xlsx files where the number of defined columns was at the array boundary.
14+
* Fixed culture-specific DateTime in PowerQuery metadata.
15+
* Calculated field computation in pivot tables did not work correctly in some cases.
16+
* Copying a Connection shape from one workbook to another caused an unhandled exception.
17+
* Having the wrong content type/extension on an image in the workbook package, caused an unhandled exception on load.
18+
Breaking Change:
19+
* Setting dataLabelPosition.Top on BarCharts corrupted the excel file when saved. Trying to set this now throws an error instead.
20+
* NumberFormatToTextArgs.NumberFormat now returns the interface IExcelNumberFormat rather than the ExcelNumberFormatXml class. All public variables remain the same and it can be safely cast to ´ExcelNumberFormatXml´ as long as ´Package.Workbook.NumberFormatToTextHandler´ is null.
21+
222
## Version 8.4.2
323
* Fixed an issue where the ExcelRange.Text property could format negative values with double minus signs in rare cases.
424
* Fixed a performance issue when using FollowDependencyChain = false in the Calculate method. With this option, EPPlus no longer calculates dependent cells or dynamic array formula spills.

src/EPPlus/EPPlus.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net9.0;net10.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>8.4.2.0</AssemblyVersion>
5-
<FileVersion>8.4.2.0</FileVersion>
6-
<Version>8.4.2</Version>
4+
<AssemblyVersion>8.5.0.0</AssemblyVersion>
5+
<FileVersion>8.5.0.0</FileVersion>
6+
<Version>8.5.0</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,14 +18,18 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 8.4.2
21+
EPPlus 8.5.0
2222

2323
IMPORTANT NOTICE!
2424
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
2525
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
2626
Commercial licenses can be purchased from https://epplussoftware.com
2727
This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL.
2828

29+
## Version 8.5.0
30+
*
31+
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
32+
2933
## Version 8.4.2
3034
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
3135

@@ -551,7 +555,8 @@
551555
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
552556

553557
Version history
554-
8.4.2 20260204 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
558+
8.5.0 20260306 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
559+
8.4.2 20260204 Minor bug fixes.
555560
8.4.1 20260112 Minor bug fixes.
556561
8.4.0 20251212 Updated target frameworks. Minor bug fixes.
557562
8.3.1 20251128 Minor bug fixes.

0 commit comments

Comments
 (0)