Skip to content

Commit

Permalink
EPPlus version 7.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Jan 16, 2025
1 parent eccbd89 commit 213a22d
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 10 deletions.
10 changes: 5 additions & 5 deletions appveyor7.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 7.5.2.{build}
version: 7.5.3.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.5.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.5.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.5.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.5.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.5.2.{build}
file_version: 7.5.2.{build}
assembly_version: 7.5.3.{build}
file_version: 7.5.3.{build}
nuget:
project_feed: true
before_build:
Expand Down
21 changes: 21 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
# Features / Fixed issues - EPPlus 7
## Version 7.5.3
* Improved COUNTIF performance, if full column addresses was used.
* If having a workbook with no reference to a font in the styles.xml, caused an corrupt workbook.
* ZipEntry's containing the zip data descriptor header could result in a BadReadException.
* Added null as valid GetByValue for pivot table field items.
* Added support for [h]:mm number format.
* Improved sorting for pivot table slicer cache.
* Fixed comment indices when sorting cells after deleting a row.
* 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.
* Added Drawings.AddTextBox for easier creation of textboxes
* Sheet protection style properties was not set correctly in some cases.
* Renaming a worksheet could causes formulas to become corrupt, if the name contained spaces or other reserved characters.
* Inserting into a cell range, shifting right, could cause conditional formatting to move incorrectly.
* The LoadFromCollection method did not load ExcelHyperLink types as hyperlinks, if the 'members' argument was used.
* Formula did not calculate when using named ranges to access a spreadsheet.
* Fixed incorrect handling of multi-char delimiters and escape characters in TEXTBEFORE and TEXTAFTER
* The VLOOKUP and HLOOKUP function did not return #REF! if the lookup address was out of bounds.
* Inserting a row in a shared formula sometimes updated the addresses incorrectly.
* Fixed an issue with the Save dialog in Excel showing when closing an unchanged workbook.
* When inserting rows/columns, EPPlus incorrectly set a #REF! value if a function was used with a colon to create an address.

## Version 7.5.2
* Pivot tables with blanks could cause the pivot table to become corrupt.
* Fixed error handling in the TEXTJOIN, TEXTSPLIT and CONCAT functions.
Expand Down
15 changes: 10 additions & 5 deletions src/EPPlus/EPPlus.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>7.5.2.0</AssemblyVersion>
<FileVersion>7.5.2.0</FileVersion>
<Version>7.5.2</Version>
<AssemblyVersion>7.5.3.0</AssemblyVersion>
<FileVersion>7.5.3.0</FileVersion>
<Version>7.5.3</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,18 +18,21 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.5.2
EPPlus 7.5.3

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

## Version 7.5.3
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.5.2
* Pivot tables could crash
* Reading linked images was failed if a relation attribute existed but did not have a value.
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
* Minor features and bug fixes.

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

Version history
7.5.3 20250116 Minor features and bug fixes.
7.5.2 20241209 Minor features and bug fixes.
7.5.1 20241121 Minor features and bug fixes.
7.5.0 20241115 Signed dll's and nuget package. Minor features and bug fixes.
7.4.2 20241028 Minor features and bug fixes.
Expand Down

0 comments on commit 213a22d

Please sign in to comment.