Skip to content

Commit

Permalink
EPPlus version 6.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Aug 15, 2023
1 parent 22a60d7 commit db675d5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
version: 6.2.7.{build}
version: 6.2.8.{build}
branches:
only:
- develop
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "6.2.7.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.2.8.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.7.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.8.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.2.7.{build}
file_version: 6.2.7.{build}
assembly_version: 6.2.8.{build}
file_version: 6.2.8.{build}
nuget:
project_feed: true
before_build:
Expand Down
8 changes: 7 additions & 1 deletion docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Features / Fixed issues - EPPlus 6
## Version 6.2.8
### Fixed issues
* Boolean style xml elements (like b, i or strike), with attribute 'val' set to 'false' or 'true' did not work.
* The ExcelRangeBase.Insert and ExcelRangeBase.Delete methods failed if a defined name referenced another defined name.
* The AND and OR functions did'nt handle multi-cell ranges as parameters.

## Version 6.2.7
### Fixed issues
* Copying a worksheet with more than two tables to a new workbook sometimes throws an exception due to different table ids.
Expand Down Expand Up @@ -29,7 +35,7 @@
* Added IRangeDataValidation. ClearDataValidation to clear data validations from a range.
### Fixed issues
* Having a table data source set to a defined name, and then insert rows into the range, caused the table source to be inverted into a range without inserting the rows.
* An error occured when setting the Shape.Text in some cases."Name cannot begin with the ' ' character, hexadecimal value 0x20, due to invalid xml.
* An error occured when setting the Shape.Text in some cases. Name cannot begin with the ' ' character, hexadecimal value 0x20, due to invalid xml.
* Scientific notation numbers were not being recognized in the calculation when there were leading or trailing whitespaces.
* Formulas update for Data Validation and Conditional Formatting sometimes updated the addresses wrong when inserting and deleting.
* The worksheet xml got corrupt in rare cases, when having extLst items.
Expand Down
14 changes: 9 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>net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>6.2.7.0</AssemblyVersion>
<FileVersion>6.2.7.0</FileVersion>
<Version>6.2.7</Version>
<AssemblyVersion>6.2.8.0</AssemblyVersion>
<FileVersion>6.2.8.0</FileVersion>
<Version>6.2.8</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,14 +18,17 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 6.2.7
EPPlus 6.2.8

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 6.2.8
* Bug fixes.

## Version 6.2.7
* Bug fixes.

Expand Down Expand Up @@ -314,7 +317,8 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html

Version history
6.2.7 20230719 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.8 20230815 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.7 20230719 Minor bug fixes.
6.2.6 20230615 Minor bug fixes.
6.2.5 20230614 Minor bug fixes.
6.2.4 20230515 Minor bug fixes.
Expand Down
3 changes: 2 additions & 1 deletion src/EPPlus/Style/XmlAccess/StyleXmlHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ internal bool GetBoolValue(XmlNode topNode, string path)
}
else
{
if (node != null && (node.Attributes["val"] == null || (node.Attributes["val"] != null && node.Attributes["val"].Value != "0" && node.Attributes["val"].Value != "false")))
if (node != null && (node.Attributes["val"] == null ||
(node.Attributes["val"] != null && node.Attributes["val"].Value != "0" && node.Attributes["val"].Value != "false")))
{
return true;
}
Expand Down

0 comments on commit db675d5

Please sign in to comment.