Skip to content

Commit

Permalink
EPPlus version 7.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Oct 28, 2024
1 parent 7a56a79 commit 46a4ace
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 15 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.4.1.{build}
version: 7.4.2.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.4.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.4.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.4.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.4.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.4.1.{build}
file_version: 7.4.1.{build}
assembly_version: 7.4.2.{build}
file_version: 7.4.2.{build}
nuget:
project_feed: true
before_build:
Expand Down
15 changes: 11 additions & 4 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Features / Fixed issues - EPPlus 7

## Version 7.4.2
* Fixed innacurate relative addresses in cloned formulas in rare cases.



* Added support the array attribute on table column formulas.
* Added new property 'ExcelTableColumn.IsCalculatedFormulaArray'
* EPPlus automatically updates the IsCalculatedFormulaArray if a table formula is identified as an array formula in the calculation.
* Allows adding mappings for error values as string in the ToDataTableOptions.
* Rich text strings in the shared strings xml did not support both text and RichText elements in the same item.
* The dynamic array formula flag was not set for single cell results containing range operations.
* Fixed inacurate relative addresses in cloned formulas in rare cases.
* Deleting and adding a table with multiple worksheets no longer gives the added table an invalid id.
* Ensured ExcelPictures are sized correctly when copying worksheets
* Fixed issue where adding rows to a Table that contained error values would throw error or generate a corrupt workbook. When the table was the source range of a pivot table.
* Fixed ExcelErrorValues GetHashCode and Equals methods to return appropriate Type value.
* Fixed incorrect datatype flags for ExcelPivotTableCacheField.
* One-cell anchored, and absolute positioned drawings failed to copy when copying ranges.
* Pivot tables with a page field, item filter or a slicer added new items as visible when refreshing the pivot table. EPPlus will now keep the filter when refreshing the pivot table, hiding values not matched by the filter.
* Fixes for preserving geo, stock and currency data types.

## Version 7.4.1
* Updated for vulnerability in System.Text.Json 8.0.4 - Microsoft.Extensions.Configuration.Json 8.0.0 -> 8.0.1

Expand Down
16 changes: 10 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.4.1.0</AssemblyVersion>
<FileVersion>7.4.1.0</FileVersion>
<Version>7.4.1</Version>
<AssemblyVersion>7.4.2.0</AssemblyVersion>
<FileVersion>7.4.2.0</FileVersion>
<Version>7.4.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,22 +18,25 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.4.1
EPPlus 7.4.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.4.2
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.4.1
* Updated for vulnerability in System.Text.Json - Microsoft.Extensions.Configuration.Json 8.0.0 -> 8.0.1

## Version 7.4.0
* Conditional formatting in Pivot Tables.
* Support for linked pictures in drawings.
* Added 2 new functions
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
* Minor features and bug fixes.

## Version 7.3.2
* Minor features and bug fixes.
Expand All @@ -42,7 +45,7 @@
* Minor features and bug fixes.

## Version 7.3.0
* Added precision as displayd to formula calculation
* Added precision as displayed to formula calculation
* Added 4 new functions
* Bug fixes See

Expand Down Expand Up @@ -428,6 +431,7 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html

Version history
7.4.2 20241028 Minor features and bug fixes.
7.4.1 20241011 Updated System.Text.Json
7.4.0 20241002 Conditional Formatting's in Pivot tables. Linked image files in Pictures. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.3.2 20240917 Minor features and bug fixes.
Expand Down

0 comments on commit 46a4ace

Please sign in to comment.