Skip to content

Commit

Permalink
EPPlus version 7.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Nov 21, 2024
1 parent d7e5c1d commit 326261d
Show file tree
Hide file tree
Showing 3 changed files with 27 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.5.0.{build}
version: 7.5.1.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.5.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.5.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.5.0.$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"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.5.0.{build}
file_version: 7.5.0.{build}
assembly_version: 7.5.1.{build}
file_version: 7.5.1.{build}
nuget:
project_feed: true
before_build:
Expand Down
10 changes: 9 additions & 1 deletion docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Features / Fixed issues - EPPlus 7
## Version 7.5.1
* Fix for inserting rows after array formulas when reffering to worksheets with '#' as part of the worksheet name.
* 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.
* Pivottable Field.Names on a field with rich text now returns the text content instead of OfficeOpenXml.Style.ExcelRichTextCollection
* Fixed .ToDataTable not reading rich text correctly in rare cases.
* ExcelPicture.Image.SetImage(" can now correctly be set to a .svg even if the original ExcelPicture was not created with a .svg file. And vice versa for other file formats.
* Fixed reference mismatches in some cases after removing and adding a picture multiple times. When referring to the same picture with multiple ExcelPicture's.
* Files created in the /media zipped subfolder now have the correct name index for a given workbook. Even if other workbooks in the same session reference the same image/images.
* Shared formulas failed to calculate if a worksheet was copied.
* Formulas referencing a deleted worksheet was not calculated correctly.

## Version 7.5.0
### Fixed issues and minor features
Expand Down
22 changes: 13 additions & 9 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.0.0</AssemblyVersion>
<FileVersion>7.5.0.0</FileVersion>
<Version>7.5.0</Version>
<AssemblyVersion>7.5.1.0</AssemblyVersion>
<FileVersion>7.5.1.0</FileVersion>
<Version>7.5.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,21 +18,24 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.5.0
EPPlus 7.5.1

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
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.5.0
* Added signatures to the EPPlus.dll's and the EPPlus Nuget package.
* Added new properties RepeatItemLabels and InsertBlankRow to ExcelPivotTableField
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
* Minor features and bug fixes.

## Version 7.4.2
* Minor features and bug fixes.
* Minor features and bug fixes.

## Version 7.4.1
* Updated for vulnerability in System.Text.Json - Microsoft.Extensions.Configuration.Json 8.0.0 -> 8.0.1
Expand Down Expand Up @@ -68,7 +71,7 @@
* Html export now supports all conditional formattings (Added support for Icon sets and Data bars in 7.2).
* Copy of drawings.
* Transpose functionality added to many Copy, Import and Export function.
* Bug fixes - For more details see https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
* Bug fixes

## Version 7.1.3
* Bug fixes
Expand Down Expand Up @@ -436,7 +439,8 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html

Version history
7.5.0 20241115 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.
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
Expand Down

0 comments on commit 326261d

Please sign in to comment.