Skip to content

Commit 2858090

Browse files
committed
EPPlus version 8.3.0
1 parent 6ea27ea commit 2858090

File tree

3 files changed

+33
-16
lines changed

3 files changed

+33
-16
lines changed

appveyor8.yml

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

docs/articles/fixedissues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Fixed issues
2121
* New constructor for `ExcelAddressBase` taking a list of addresses.
2222
* Fixed several formatting issues in the `ARRAYTOTEXT` function.
2323
* Fixed an issue with incorrect mapping of formula columns in the `ExcelRangeBase.LoadFromCollection` method.
24-
* `ExcelRangeBase.InsertColumn` could throw an unhandled Exception in rare cases, when a formula contain references to external workbooks.
25-
* `ExcelRange.DeleteRow` throw an unhandled exception when having a conditional formatting colors scales rule with an empty formula.
24+
* `ExcelRangeBase.InsertColumn` could throw an unhandled Exception in rare cases, when a formula contains references to external workbooks.
25+
* `ExcelRange.DeleteRow` throw an unhandled exception when having a conditional formatting color scale rules with an empty formula.
2626
* A calculated column formula of a table could not be set after it had been cleared.
2727
* `ExcelWorksheet.DimensionByValue` sometimes returned an incorrect range.
2828
* COUNTIF did not compare numeric strings as numeric.

src/EPPlus/EPPlus.csproj

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net9.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>8.2.1.0</AssemblyVersion>
5-
<FileVersion>8.2.1.0</FileVersion>
6-
<Version>8.2.1</Version>
4+
<AssemblyVersion>8.3.0.0</AssemblyVersion>
5+
<FileVersion>8.3.0.0</FileVersion>
6+
<Version>8.3.0</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,14 +18,20 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 8.2.1
21+
EPPlus 8.3.0
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 8.3.0
30+
* Support for adding, updating and removing external connections and query tables. See https://github.com/EPPlusSoftware/EPPlus/wiki/External-Connections-and-Query-Tables
31+
* Support for adding pivot tables with external connections as data source.
32+
* Added three new functions
33+
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
34+
2935
## Version 8.2.1
3036
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
3137

@@ -40,7 +46,7 @@
4046
* BYCOL
4147
* ISOMITTED
4248
* Support for defining lambda functions via defined names.
43-
* Minor bug fixes.
49+
* Minor bug fixes.
4450

4551
## Version 8.1.1
4652
* Minor bug fixes.
@@ -532,8 +538,9 @@
532538
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
533539

534540
Version history
535-
8.2.1 20251012 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
536-
8.2.0 20250924 LAMBDA functions support. Minor bug fixes.
541+
8.3.0 20251120 Connections and query tables support. Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
542+
8.2.1 20251012 Minor bug fixes.
543+
8.2.0 20250924 LAMBDA functions support. Minor bug fixes.
537544
8.1.1 20250909 Minor bug fixes.
538545
8.1.0 20250815 Shapes in Charts. Header/footer styling interface.
539546
8.0.8 20250722 Minor bug fixes.
@@ -716,7 +723,7 @@
716723
<PackageReference Include="System.Security.Cryptography.Xml" />
717724
</ItemGroup>
718725

719-
<ItemGroup Condition="'$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net9.0'">
726+
<ItemGroup Condition="'$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net9.0' and '$(TargetFramework)' != 'net10.0'">
720727
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
721728
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" />
722729
<PackageReference Include="System.Security.Cryptography.Pkcs" />
@@ -733,7 +740,17 @@
733740
<PackageReference Include="System.Text.Encoding.CodePages" VersionOverride="9.0.3" />
734741
<PackageReference Include="System.Security.Cryptography.Xml" VersionOverride="9.0.3" />
735742
</ItemGroup>
736-
743+
<!-- TargetFramework net10.0, remove when GitHub actions and AppVeyor support is available. -->
744+
<!--
745+
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
746+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" VersionOverride="10.0.0" />
747+
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" />
748+
<PackageReference Include="System.Security.Cryptography.Pkcs" VersionOverride="10.0.0" />
749+
<PackageReference Include="System.ComponentModel.Annotations" />
750+
<PackageReference Include="System.Text.Encoding.CodePages" VersionOverride="10.0.0" />
751+
<PackageReference Include="System.Security.Cryptography.Xml" VersionOverride="10.0.0" />
752+
</ItemGroup>
753+
-->
737754
<ItemGroup>
738755
<Compile Remove="LoadFunctions\HeaderReader.cs" />
739756
</ItemGroup>

0 commit comments

Comments
 (0)