Skip to content

Commit 46a4ace

Browse files
committed
EPPlus version 7.4.2
1 parent 7a56a79 commit 46a4ace

File tree

3 files changed

+26
-15
lines changed

3 files changed

+26
-15
lines changed

appveyor7.yml

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

docs/articles/fixedissues.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
# Features / Fixed issues - EPPlus 7
22

33
## Version 7.4.2
4-
* Fixed innacurate relative addresses in cloned formulas in rare cases.
5-
6-
7-
4+
* Added support the array attribute on table column formulas.
5+
* Added new property 'ExcelTableColumn.IsCalculatedFormulaArray'
6+
* EPPlus automatically updates the IsCalculatedFormulaArray if a table formula is identified as an array formula in the calculation.
7+
* Allows adding mappings for error values as string in the ToDataTableOptions.
8+
* Rich text strings in the shared strings xml did not support both text and RichText elements in the same item.
9+
* The dynamic array formula flag was not set for single cell results containing range operations.
10+
* Fixed inacurate relative addresses in cloned formulas in rare cases.
811
* Deleting and adding a table with multiple worksheets no longer gives the added table an invalid id.
912
* Ensured ExcelPictures are sized correctly when copying worksheets
1013
* 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.
1114
* Fixed ExcelErrorValues GetHashCode and Equals methods to return appropriate Type value.
1215
* Fixed incorrect datatype flags for ExcelPivotTableCacheField.
16+
* One-cell anchored, and absolute positioned drawings failed to copy when copying ranges.
17+
* 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.
18+
* Fixes for preserving geo, stock and currency data types.
19+
1320
## Version 7.4.1
1421
* Updated for vulnerability in System.Text.Json 8.0.4 - Microsoft.Extensions.Configuration.Json 8.0.0 -> 8.0.1
1522

src/EPPlus/EPPlus.csproj

+10-6
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.4.1.0</AssemblyVersion>
5-
<FileVersion>7.4.1.0</FileVersion>
6-
<Version>7.4.1</Version>
4+
<AssemblyVersion>7.4.2.0</AssemblyVersion>
5+
<FileVersion>7.4.2.0</FileVersion>
6+
<Version>7.4.2</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,22 +18,25 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.4.1
21+
EPPlus 7.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 7.4.2
30+
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
31+
2932
## Version 7.4.1
3033
* Updated for vulnerability in System.Text.Json - Microsoft.Extensions.Configuration.Json 8.0.0 -> 8.0.1
3134

3235
## Version 7.4.0
3336
* Conditional formatting in Pivot Tables.
3437
* Support for linked pictures in drawings.
3538
* Added 2 new functions
36-
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
39+
* Minor features and bug fixes.
3740

3841
## Version 7.3.2
3942
* Minor features and bug fixes.
@@ -42,7 +45,7 @@
4245
* Minor features and bug fixes.
4346

4447
## Version 7.3.0
45-
* Added precision as displayd to formula calculation
48+
* Added precision as displayed to formula calculation
4649
* Added 4 new functions
4750
* Bug fixes See
4851

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

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

0 commit comments

Comments
 (0)