Skip to content

Commit 213a22d

Browse files
committed
EPPlus version 7.5.3
1 parent eccbd89 commit 213a22d

File tree

3 files changed

+36
-10
lines changed

3 files changed

+36
-10
lines changed

appveyor7.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 7.5.2.{build}
1+
version: 7.5.3.{build}
22
branches:
33
only:
44
- develop7
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "7.5.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.5.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.5.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.5.3.$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: 7.5.2.{build}
17-
file_version: 7.5.2.{build}
16+
assembly_version: 7.5.3.{build}
17+
file_version: 7.5.3.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
# Features / Fixed issues - EPPlus 7
2+
## Version 7.5.3
3+
* Improved COUNTIF performance, if full column addresses was used.
4+
* If having a workbook with no reference to a font in the styles.xml, caused an corrupt workbook.
5+
* ZipEntry's containing the zip data descriptor header could result in a BadReadException.
6+
* Added null as valid GetByValue for pivot table field items.
7+
* Added support for [h]:mm number format.
8+
* Improved sorting for pivot table slicer cache.
9+
* Fixed comment indices when sorting cells after deleting a row.
10+
* Fixed bug where adding a comment via ExcelWorksheet.Cells.AddComment and then adding a comment to the same cell via ExcelWorksheet.Comments.Add would generate corrupt workbook.
11+
* Added Drawings.AddTextBox for easier creation of textboxes
12+
* Sheet protection style properties was not set correctly in some cases.
13+
* Renaming a worksheet could causes formulas to become corrupt, if the name contained spaces or other reserved characters.
14+
* Inserting into a cell range, shifting right, could cause conditional formatting to move incorrectly.
15+
* The LoadFromCollection method did not load ExcelHyperLink types as hyperlinks, if the 'members' argument was used.
16+
* Formula did not calculate when using named ranges to access a spreadsheet.
17+
* Fixed incorrect handling of multi-char delimiters and escape characters in TEXTBEFORE and TEXTAFTER
18+
* The VLOOKUP and HLOOKUP function did not return #REF! if the lookup address was out of bounds.
19+
* Inserting a row in a shared formula sometimes updated the addresses incorrectly.
20+
* Fixed an issue with the Save dialog in Excel showing when closing an unchanged workbook.
21+
* When inserting rows/columns, EPPlus incorrectly set a #REF! value if a function was used with a colon to create an address.
22+
223
## Version 7.5.2
324
* Pivot tables with blanks could cause the pivot table to become corrupt.
425
* Fixed error handling in the TEXTJOIN, TEXTSPLIT and CONCAT functions.

src/EPPlus/EPPlus.csproj

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.5.2.0</AssemblyVersion>
5-
<FileVersion>7.5.2.0</FileVersion>
6-
<Version>7.5.2</Version>
4+
<AssemblyVersion>7.5.3.0</AssemblyVersion>
5+
<FileVersion>7.5.3.0</FileVersion>
6+
<Version>7.5.3</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,18 +18,21 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.5.2
21+
EPPlus 7.5.3
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 7.5.3
30+
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
31+
2932
## Version 7.5.2
3033
* Pivot tables could crash
3134
* Reading linked images was failed if a relation attribute existed but did not have a value.
32-
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
35+
* Minor features and bug fixes.
3336

3437
## Version 7.5.1
3538
* Minor features and bug fixes.
@@ -444,6 +447,8 @@
444447
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
445448

446449
Version history
450+
7.5.3 20250116 Minor features and bug fixes.
451+
7.5.2 20241209 Minor features and bug fixes.
447452
7.5.1 20241121 Minor features and bug fixes.
448453
7.5.0 20241115 Signed dll's and nuget package. Minor features and bug fixes.
449454
7.4.2 20241028 Minor features and bug fixes.

0 commit comments

Comments
 (0)