Skip to content

Commit d9a169c

Browse files
committed
EPPlus version 8.4.2
1 parent fecba85 commit d9a169c

3 files changed

Lines changed: 23 additions & 12 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.1.{build}
1+
version: 8.4.2.{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.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
13+
Update-AppveyorBuild -Version "8.4.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1414
15-
Write-Host "8.4.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
15+
Write-Host "8.4.2.$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.1.{build}
21-
file_version: 8.4.1.{build}
20+
assembly_version: 8.4.2.{build}
21+
file_version: 8.4.2.{build}
2222
nuget:
2323
project_feed: true
2424
before_build:

docs/articles/fixedissues.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Features / Fixed issues - EPPlus 8
2+
## Version 8.4.2
3+
* Fixed an issue where the ExcelRange.Text property could format negative values with double minus signs in rare cases.
4+
* 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.
5+
* Fixed an issue where the ExcelPowerQueryMetadataItem class parsed dates using the supplied culture instead of the invariant culture, which could cause an unhandled exception.
6+
* Fixed an issue where a workbook could become corrupt when EPPlus adjusted the XML ignorable namespace list.
7+
* Fixed an unhandled exception that occurred when saving a workbook containing a customXml property file without a schemaRefs file.
8+
29
## Version 8.4.1
310
* Fixes several issues related to expanding (spilling) and contracting dynamic array formulas.
411
* Changing cell dependencies were not taken into account when recalculating dirty cells from dynamic array formulas.

src/EPPlus/EPPlus.csproj

Lines changed: 11 additions & 7 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.1.0</AssemblyVersion>
5-
<FileVersion>8.4.1.0</FileVersion>
6-
<Version>8.4.1</Version>
4+
<AssemblyVersion>8.4.2.0</AssemblyVersion>
5+
<FileVersion>8.4.2.0</FileVersion>
6+
<Version>8.4.2</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.1
21+
EPPlus 8.4.2
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
29+
## Version 8.4.2
3030
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
31-
31+
32+
## Version 8.4.1
33+
* Minor bug fixes.
34+
3235
## Version 8.4.0
3336
* Added target framework .NET 10.
3437
Minor bug fixes.
@@ -548,10 +551,11 @@
548551
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
549552

550553
Version history
554+
8.4.2 20260204 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
551555
8.4.1 20260112 Minor bug fixes.
552556
8.4.0 20251212 Updated target frameworks. Minor bug fixes.
553557
8.3.1 20251128 Minor bug fixes.
554-
8.3.0 20251120 Connections and query tables support. Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
558+
8.3.0 20251120 Connections and query tables support. Minor features and bug fixes.
555559
8.2.1 20251012 Minor bug fixes.
556560
8.2.0 20250924 LAMBDA functions support. Minor bug fixes.
557561
8.1.1 20250909 Minor bug fixes.

0 commit comments

Comments
 (0)