Skip to content

Commit b39c843

Browse files
committed
EPPlus version 8.2.1
1 parent 868a40b commit b39c843

File tree

4 files changed

+36
-24
lines changed

4 files changed

+36
-24
lines changed

appveyor8.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 8.2.0.{build}
1+
version: 8.2.1.{build}
22
branches:
33
only:
44
- develop8
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "8.2.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "8.2.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "8.2.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "8.2.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
dotnet_csproj:
1313
patch: true
1414
file: '**\*.csproj'
1515
version: '{version}'
16-
assembly_version: 8.2.0.{build}
17-
file_version: 8.2.0.{build}
16+
assembly_version: 8.2.1.{build}
17+
file_version: 8.2.1.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# Features / Fixed issues - EPPlus 8
2+
## Version 8.2.1
3+
### Minor Features
4+
* Added new method `SetAutoTitle` to `ExcelChartTitleStandard` to map chart titles on pivot charts to the pivot tables data fields.
5+
* Possibility to provide the IConfiguration of the hosting application to the ExcelPackage constructor and/or the ExcelPackage.Configure method rather than EPPlus trying to read the config files directly for license information.
6+
### Fixed Issues
7+
* The pivot tables `conditionalFormatting` element was not removed if all conditional formatting’s were cleared, causing a corrupt workbook.
8+
* The function NETWORKDAYS.INTL rounded incorrectly if the date contained a time part.
9+
* Added cancellation tokens handing in the zip extract in the `ExcelPackage.LoadAsync` method. EPPlus will now throw an `OperationCanceledException` if the operation is cancelled.
10+
211
## Version 8.2.0
312
### Features
413
Added support for 8 new LAMBDA-based functions in workbook calculations. See [Using LAMBDA functions](https://github.com/EPPlusSoftware/EPPlus/wiki/Using-LAMBDA-functions):

src/EPPlus/EPPlus.csproj

Lines changed: 22 additions & 18 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;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>8.2.0.0</AssemblyVersion>
5-
<FileVersion>8.2.0.0</FileVersion>
6-
<Version>8.2.0</Version>
4+
<AssemblyVersion>8.2.1.0</AssemblyVersion>
5+
<FileVersion>8.2.1.0</FileVersion>
6+
<Version>8.2.1</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,26 +18,29 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 8.2.0
21+
EPPlus 8.2.1
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.2.0
29+
## Version 8.2.1
30+
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
31+
32+
## Version 8.2.1
3033
* Support for 8 LAMBDA functions when calculating workbooks. See https://github.com/EPPlusSoftware/EPPlus/wiki/Using-LAMBDA-functions
31-
* LAMBDA
32-
* MAKEARRAY
33-
* SCAN
34-
* MAP
35-
* REDUCE
36-
* BYROW
37-
* BYCOL
38-
* ISOMITTED
34+
* LAMBDA
35+
* MAKEARRAY
36+
* SCAN
37+
* MAP
38+
* REDUCE
39+
* BYROW
40+
* BYCOL
41+
* ISOMITTED
3942
* Support for defining lambda functions via defined names.
40-
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
43+
* Minor bug fixes.
4144

4245
## Version 8.1.1
4346
* Minor bug fixes.
@@ -46,7 +49,7 @@
4649
* Add Shapes and Pictures to charts.
4750
* An new interface for styling headers and footers more easily.
4851
* If copying a worksheet or a range to a new workbook, the relevant defined names are also copied.
49-
* Minor bug fixes.
52+
* Minor bug fixes.
5053

5154
## Version 8.0.8
5255
* Minor bug fixes.
@@ -529,9 +532,10 @@
529532
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
530533

531534
Version history
532-
8.2.0 20250924 LAMBDA functions support. Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
533-
8.1.1 20250909 Minor bug fixes.
534-
8.1.0 20250815 Shapes in Charts. Header/footer styling interface.
535+
8.2.1 20251012 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
536+
8.2.0 20250924 LAMBDA functions support. Minor bug fixes.
537+
8.1.1 20250909 Minor bug fixes.
538+
8.1.0 20250815 Shapes in Charts. Header/footer styling interface.
535539
8.0.8 20250722 Minor bug fixes.
536540
8.0.7 20250702 Minor bug fixes.
537541
8.0.6 20250619 Minor bug fixes.

src/EPPlusTest/Issues/LegacyTests/Issues.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4458,7 +4458,6 @@ public void RichText()
44584458
SaveAndCleanup(package);
44594459
}
44604460
}
4461-
44624461
[TestMethod]
44634462
public void extLst()
44644463
{

0 commit comments

Comments
 (0)