Skip to content

Releases: PHPOffice/PhpSpreadsheet

1.29.4

10 Nov 16:32
Compare
Choose a tag to compare

1.29.4 - 2024-11-10

Fixed

  • 1.29.3 omitted
  • Backported security patches.
  • Write ignoredErrors Tag Before Drawings. Backport of PR #4212 intended for 3.4.0.
  • Changes to ROUNDDOWN/ROUNDUP/TRUNC. Backport of PR #4214 intended for 3.4.0.
  • Replace str_starts_with in Drawing. Issue #4215

Added

  • Method to Test Whether Csv Will Be Affected by Php9. Backport of PR #4189 intended for 3.4.0.

3.3.0

29 Sep 07:44
87ddd21
Compare
Choose a tag to compare

This should have been a 3.0.0, but a typo was made when releasing. This has no technical impact and will stay as-is.

Dynamic Arrays

  • Support for Excel dynamic arrays is added. It is an opt-in feature, so our hope is that there will be no BC breaks, but it is a very large change. Full support is added for Xlsx. It is emulated as Ctrl-Shift-Enter arrays for Ods read and write and Excel2003 and Gnumeric read. Html/Pdf and Csv writers will populate cells on output if they are the result of array formulas. No support is added for Xls or Slk.

Added

Changed

  • Xlsx Reader default datatype when none is specified in Xml is changed from string to numeric, which is how Excel treats it. There is expected to be little impact because DefaultValueBinder and AdvancedValueBinder correct mis-identification as string, and StringValueBinder usually expects string. PR #4139
  • Currency and Accounting Wizards are changed to act like Excel, and a new CurrencyBase Wizard is added for for non-Excel formats. Issue #4125 Issue #4124 PR #4127
  • Images will not be added to spreadsheet if they cannot be validated as images.

Deprecated

  • Nothing yet.

Removed

  • The following items were deprecated in release 2 and are now removed.
  • Writer\Xls\Style\ColorMap (no longer needed).
  • Reader\Xml::trySimpleXMLLoadString (should not have been public, no public replacement).
  • Calculation\Calculation::_translateFormulaToLocale (use method name translateFormulaToLocale without leading underscore).
  • Calculation\Calculation::_translateFormulaToEnglish (use method name translateFormulaToEnglish without leading underscore).

Moved

  • Nothing yet.

Fixed

2.3.0

29 Sep 07:42
Compare
Choose a tag to compare

2024-09-29 - 2.3.0

Fixed

  • Backported security patches.
  • Improve Xlsx Reader speed (backport of PR #4153 intended for 3.0.0). Issue #3917
  • Change to Csv Reader (see below under Deprecated). Backport of PR #4162 intended for 3.0.0. Issue #4161
  • Tweak to AMORDEGRC. Backport of PR #4164 intended for 3.0.0.

Changed

  • Images will not be added to spreadsheet if they cannot be validated as images.

Deprecated

  • Php8.4 will deprecate the escape parameter of fgetcsv. Csv Reader is affected by this; code is changed to be unaffected, but this will mean a breaking change is coming with Php9. Any code which uses the default escape value of backslash will fail in Php9. It is recommended to explicitly set the escape value to null string before then.

2.1.1

29 Sep 07:37
Compare
Choose a tag to compare

2024-09-29 2.1.1

Fixed

  • Backported security patches.
  • Change to Csv Reader (see below under Deprecated). Backport of PR #4162 intended for 3.0.0. Issue #4161
  • Tweak to AMORDEGRC. Backport of PR #4164 intended for 3.0.0.

Changed

  • Images will not be added to spreadsheet if they cannot be validated as images.

Deprecated

  • Php8.4 will deprecate the escape parameter of fgetcsv. Csv Reader is affected by this; code is changed to be unaffected, but this will mean a breaking change is coming with Php9. Any code which uses the default escape value of backslash will fail in Php9. It is recommended to explicitly set the escape value to null string before then.

1.29.2

29 Sep 07:34
Compare
Choose a tag to compare

1.29.2 - 2024-09-29

Fixed

  • Backported security patches.
  • Support for Php8.4.
  • Change to Csv Reader (see below under Deprecated). Backport of PR #4162 intended for 3.0.0. Issue #4161
  • Tweaks to ROUNDUP, ROUNDDOWN, TRUNC, AMORDEGRC (results had been different under 8.4).

Changed

  • Images will not be added to spreadsheet if they cannot be validated as images.

Security Patch

04 Sep 02:44
Compare
Choose a tag to compare

1.29.1 - 2024-09-03

Fixed

  • Backported security patches from PR #4119 and PR #3957.

2.2.2

08 Aug 02:45
ffbcee6
Compare
Choose a tag to compare

Added

  • Nothing yet.

Changed

  • Nothing yet.

Deprecated

  • Nothing yet.

Moved

  • Nothing yet.

Fixed

2.2.1

29 Jul 07:57
2.2.1
a3c5c9e
Compare
Choose a tag to compare

Security Fix

  • Prevent XXE when loading files PR #4119

Fixed

2.2.0

24 Jul 13:28
b0993b7
Compare
Choose a tag to compare

2024-07-24 - 2.2.0

Added

  • Xlsx Reader Optionally Ignore Rows With No Cells. Issue #3982 PR #4035
  • Means to change style without affecting current cell/sheet. PR #4073
  • Option for CSV output file to have varying numbers of columns for each row. Issue #1415 PR #4076

Changed

  • On read, Xlsx Reader had been breaking up union ranges into separate individual ranges. It will now try to preserve range as it was read in. PR #4042
  • Xlsx/Xls spreadsheet calculation and formatting of dates will use base date of spreadsheet even when spreadsheets with different base dates are simultaneously open. Issue #1036 Issue #1635 PR #4071

Deprecated

  • Writer\Xls\Style\ColorMap is no longer needed.

Moved

  • Nothing

Fixed

2.1.0

11 May 04:18
2.1.0
dbed77b
Compare
Choose a tag to compare

MINOR BREAKING CHANGE

  • Writing of cell comments to Html will now sanitize all Html tags within the comment, so the tags will be rendered as plaintext and have no other effects when rendered. Styling can be achieved by using the Font property of of the TextRuns which make up the comment, as is already the cases for Xlsx. PR #3957

Added

  • Default Style Alignment Property (workaround for bug in non-Excel spreadsheet apps) Issue #3918 PR #3924
  • Additional Support for Date/Time Styles PR #3939

Changed

  • Nothing

Deprecated

  • Reader/Xml trySimpleXMLLoadString should not have had public visibility, and will be removed.

Removed

  • Nothing

Fixed