You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/articles/breakingchanges.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,16 @@ Misspelled property `ExcelIgnoreError.CalculatedColumm` has been renamed `Calcul
143
143
### Breaking change from EPPlus 7.5.2
144
144
Renaming worksheet's will now change the formula correctly to include single quotes for the worksheet name if necessary.
145
145
146
+
### Breaking changes from EPPlus 7.6.0
147
+
* Altering the worksheets collection when iterating it using IEnumerable, now throws an InvalidOperationException.
148
+
146
149
### Breaking changes from EPPlus 8.0
147
150
* Set ExcelPackageSettings.ApplyFiltersOnSave default value to false.
148
151
* RichText now returns font name, size and font family from cell style if not set.
149
-
* Fixed spelling error in ExcelDrawingGradientFillLinearSettings. `public double Angel` is now `public double Angle`
152
+
* Fixed spelling error in ExcelDrawingGradientFillLinearSettings. `public double Angel` is now `public double Angle`
153
+
* Removed reference to EPPlus.System.Drawing for primary image and text handlers. The generic handler is now used for all target frameworks.
154
+
You can still use these handlers by referencing the EPPlus.System.Drawing handlers nuget package and use the 'SystemDrawingTextMeasurer' or 'SystemDrawingImageHandler' classes as primary handler.
155
+
Also see https://github.com/EPPlusSoftware/EPPlus/wiki/Autofit-columns
156
+
#### Removed Methods & Properties
157
+
* ExcelVbaReferenceControl.LibIdExternal, please use LibIdExtended instead.
Copy file name to clipboardExpand all lines: docs/articles/fixedissues.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,18 @@
6
6
* Override borders in Adjacent cells in BorderAround method.
7
7
8
8
# Features / Fixed issues - EPPlus 7
9
+
## Version 7.6.0
10
+
* Added target framework .NET 9.
11
+
* Removed out of support frameworks, .NET 6 and .NET 7.
12
+
* Fixed an issue handling formulas when sorting a range.
13
+
* Insert row in table caused corrupt workbook.
14
+
* A workbook could lose styles if the ExcelPackage.FullPrecision property was set.
15
+
* When copying a worksheet, drawings would be resized after inserting rows. This was caused by drawings being copied before styles and therefore drawings would not be aware of any styles.
16
+
* Set Active Tab did not work correctly, if 'CompatibilitySettings.IsWorksheet1Based' was set to true.
17
+
* Fixed "Part already exist" error when copying images between workbooks that already have images.
18
+
* Fixed another issue when copying ExcelPicture’s between workbooks.
19
+
* Iteration of worksheets indexed incorrectly in rare cases. EPPlus now throws an InvalidOperationException, if the collection has been altered under an enumerable operation.
20
+
9
21
## Version 7.5.3
10
22
* Improved COUNTIF performance, if full column addresses was used.
11
23
* If having a workbook with no reference to a font in the styles.xml, caused an corrupt workbook.
0 commit comments