Skip to content

Commit ede8683

Browse files
committed
EPPlus version 8.4.1
1 parent 177a882 commit ede8683

File tree

3 files changed

+29
-10
lines changed

3 files changed

+29
-10
lines changed

appveyor8.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 8.4.0.{build}
1+
version: 8.4.1.{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.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
13+
Update-AppveyorBuild -Version "8.4.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1414
15-
Write-Host "8.4.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
15+
Write-Host "8.4.1.$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.0.{build}
21-
file_version: 8.4.0.{build}
20+
assembly_version: 8.4.1.{build}
21+
file_version: 8.4.1.{build}
2222
nuget:
2323
project_feed: true
2424
before_build:

docs/articles/fixedissues.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
# Features / Fixed issues - EPPlus 8
2+
## Version 8.4.1
3+
* Fixes several issues related to expanding (spilling) and contracting dynamic array formulas.
4+
* Changing cell dependencies were not taken into account when recalculating dirty cells from dynamic array formulas.
5+
* Clearing dynamic array formulas that reduced in size did not work correctly.
6+
* Cells containing formulas with the INDIRECT function are now always treated as dynamic.
7+
* Invalid UTF-16 surrogate sequences in comment text are now sanitized before XML generation to prevent ´XmlException´.
8+
* Using the [@page] attribute in headers or footers did not return the next character in some cases.
9+
* The FILTER function always returned the third parameter if it contained an error value (for example, #VALUE!).
10+
* The FACT function returned (n-1)! instead of n!.
11+
* Formula inline arrays did not correctly convert scientific notation (for example, 1.0E-305) to numbers.
12+
* Defined names could use the wrong scope when a name existed in both worksheet and workbook scope and a formula was calculated using the ´Calculate(formula)´ method.
13+
* Using the ^ operator on non-numeric values returned 0 instead of #VALUE!.
14+
* Inserting columns into an empty worksheet throw an ´ArgumentExceptio´n when inserting more than 8 columns.
15+
* GROWTH and TREND did not handle a single-value newX parameter correctly.
16+
217
## Version 8.4.0
318
### Features
419
* Added targeting framework .NET 10.

src/EPPlus/EPPlus.csproj

Lines changed: 9 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.0.0</AssemblyVersion>
5-
<FileVersion>8.4.0.0</FileVersion>
6-
<Version>8.4.0</Version>
4+
<AssemblyVersion>8.4.1.0</AssemblyVersion>
5+
<FileVersion>8.4.1.0</FileVersion>
6+
<Version>8.4.1</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,17 +18,20 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 8.4.0
21+
EPPlus 8.4.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.4.1
30+
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
31+
2932
## Version 8.4.0
3033
* Added target framework .NET 10.
31-
Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
34+
Minor bug fixes.
3235

3336
## Version 8.3.1
3437
Minor bug fixes.
@@ -545,6 +548,7 @@
545548
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
546549

547550
Version history
551+
8.4.1 20260112 Minor bug fixes.
548552
8.4.0 20251212 Updated target frameworks. Minor bug fixes.
549553
8.3.1 20251128 Minor bug fixes.
550554
8.3.0 20251120 Connections and query tables support. Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues

0 commit comments

Comments
 (0)