Skip to content

Commit

Permalink
EPPlus version 7.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Dec 9, 2024
1 parent f927721 commit 75f7dee
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 11 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.1.{build}
version: 7.5.2.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.5.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.5.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.5.1.$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"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.5.1.{build}
file_version: 7.5.1.{build}
assembly_version: 7.5.2.{build}
file_version: 7.5.2.{build}
nuget:
project_feed: true
before_build:
Expand Down
15 changes: 15 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Features / Fixed issues - EPPlus 7
## 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.
* EPPlus throw an Exception when trying to delete the last column in a worksheet.
* ExcelColor.LookupColor() returned an unexpected color code for empty colors. LookupColor() will now returns an empty string for empty colors.
* DimensionByValue throw an System.ArgumentException: 'Column out of range' in some cases.
* When having a column style on a column that spans multiple columns only the first is considered when reading a package.
* XLOOKUP now returns emtpy string instead of #N/A when the third argument is an empty string.
* ToDataTable did no return rich text cells correctly
* ExcelWorksheets.MoveToStart did not always work correctly if IsWorksheets1Based was set.
* Reading boolean properties of data validations saved in LibreOffice was not correctly read.
* Adding a pivot table page field could crash in some cases.
* Linked images crashed on read if the link attribute was empty.
* Fixed "Worksheet position out of range" exception when calculating a formula having IsWorksheets1Based set.

## Version 7.5.1
* Style set on column/row level did not save on cells with a value and styleId is 0.
* Fix for inserting rows after array formulas when referring to worksheets with '#' as part of the worksheet name.
Expand Down
17 changes: 11 additions & 6 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.1.0</AssemblyVersion>
<FileVersion>7.5.1.0</FileVersion>
<Version>7.5.1</Version>
<AssemblyVersion>7.5.2.0</AssemblyVersion>
<FileVersion>7.5.2.0</FileVersion>
<Version>7.5.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,17 +18,22 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.5.1
EPPlus 7.5.2

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.1
## 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


## Version 7.5.1
* Minor features and bug fixes.

## Version 7.5.0
* Added signatures to the EPPlus.dll's and the EPPlus Nuget package.
* Added new properties RepeatItemLabels and InsertBlankRow to ExcelPivotTableField
Expand Down

0 comments on commit 75f7dee

Please sign in to comment.