Commit Graph

6153 Commits

Author SHA1 Message Date
oleibman 3852e81bb5 Update CHANGELOG.md 2026-01-21 12:45:09 -08:00
oleibman f8ce6a9a83 Support for Defined Names 2026-01-20 12:19:23 -08:00
oleibman 3590000687 Merge branch 'master' into issue4656 2026-01-19 12:42:24 -08:00
oleibman 7f284c7d93 Deprecate FormulaParser, FormulaToken
Unused in this project. I checked to see if they might be of use for this PR. They aren't.
2026-01-19 12:38:56 -08:00
oleibman 4b0bdd6cfd Merge pull request #4781 from oleibman/checkbox
Add Checkbox Style (Xlsx and Html only)
2026-01-19 06:54:08 +00:00
oleibman f2a5ad26a7 Merge branch 'master' into checkbox 2026-01-18 19:20:12 -08:00
oleibman bdb950205c Update CHANGELOG.md 2026-01-18 19:18:58 -08:00
oleibman b837dbb55c More Tests 2026-01-18 18:31:08 -08:00
oleibman f91fcf82c4 Merge pull request #4780 from xannyprox/master
Optimize formula detection in DefaultValueBinder by reusing Calculati…
2026-01-18 20:54:44 +00:00
oleibman e1a72c1631 Remove Redundant Tests 2026-01-18 12:25:17 -08:00
oleibman db8f3d2669 Extra Testing 2026-01-18 02:53:03 -08:00
oleibman a71ae2a736 Consolidate Some Tests 2026-01-18 02:32:55 -08:00
oleibman 3b02929010 Restore Inappropriately Deleted Test 2026-01-18 02:13:58 -08:00
oleibman ba3b2938cb Coverage Tweak 2026-01-17 21:06:25 -08:00
oleibman f2588c1e05 Support Html After All
Use Unicode characters U+2610 (Ballot Box) and U+2611 (Ballot Box with Check).
2026-01-17 20:27:24 -08:00
oleibman dc6b1e9ed2 Update Changelog 2026-01-16 20:16:24 -08:00
oleibman 860f2c6637 Restore Tests Whose Absence Led to Omitted Coverage 2026-01-16 18:21:57 -08:00
oleibman 0d72d12044 Add Checkbox Style (Xlsx only)
Fix #4280, an issue with many problems; this is the last one (PR #4281 and PR #4677 dealt with other aspects of the problem). New releases of Excel allow representing TRUE/FALSE as a checked/unchecked checkbox. This requires a change to Styles, as expected. But Excel has implemented it in such a manner that changes are also required to Content_Types and workbook.xml.rels; and a new xml file propertyFeatureBag is also required. Seems like a lot of work for such a small change. A new property is added to Style, but only Xlsx Reader and Writer support it; no other format does.
2026-01-16 12:48:04 -08:00
xannyprox 820640d516 Merge branch 'master' of https://github.com/xannyprox/PhpSpreadsheet 2026-01-16 21:02:48 +03:00
xannyprox 8b010e4dcd php-cs-fixer Fixes Applied 2026-01-16 21:02:44 +03:00
Xanny 2b5e6bd14d Merge branch 'master' into master 2026-01-16 20:32:38 +03:00
xannyprox 2c4faa535d [Perf] Optimize DefaultValueBinder formula detection with dedicated CalculationParserOnly singleton 2026-01-16 20:25:11 +03:00
oleibman e2ead071da Merge pull request #4779 from oleibman/lineending2
Writer/Html Option to Set Line Ending
2026-01-16 06:40:58 +00:00
oleibman 050743f179 Eliminate Redundant Line 2026-01-15 22:37:44 -08:00
oleibman 501f4fe6ee Test CellRanges with Union 2026-01-15 12:19:25 -08:00
oleibman 52938a2eb5 Coverage Tweak 2026-01-15 02:10:47 -08:00
oleibman 23b12228fd Merge branch 'master' into issue4656 2026-01-14 19:59:49 -08:00
oleibman f0dc9f702f A Bit More Coverage 2026-01-14 17:17:38 -08:00
xannyprox 2c087ead2a Optimize formula detection in DefaultValueBinder by reusing Calculation singleton
While reviewing the DefaultValueBinder::dataTypeForValue() method, I noticed that a new Calculation instance is being created for every single cell validation.

Since the Calculation class is quite heavy (initializing components like CyclicReferenceStack and BranchPruner), instantiating it repeatedly causes unnecessary memory and CPU overhead, especially during bulk imports of large spreadsheets.

Changes:

    Switched from new Calculation() to Calculation::getInstance() to leverage the existing singleton.

    Added state preservation logic for branchPruning to ensure the shared instance remains consistent for other parts of the application.

    Wrapped the logic in a finally block to guarantee that the pruning state is restored regardless of success or failure.

No changes were made to the public API, so this is fully backward compatible. I've also added a unit test to verify that formula detection and state isolation work as expected.

Tests:

    Added tests/PhpSpreadsheetTests/Cell/DefaultValueBinderTest.php.
2026-01-15 03:06:28 +03:00
oleibman dcaff346a3 Clean Up Some Regexp Logic 2026-01-14 15:19:58 -08:00
oleibman c7ff53ab52 Case Error in Filename 2026-01-13 23:07:22 -08:00
oleibman 0afd874fc3 Try Pre-processing Formulas
See if we can identify where comma needs to be replaced by union operator.
2026-01-13 23:01:04 -08:00
oleibman 561308b307 Misused and Deprecated Html Attributes
The table attributes `border`, `cellspacing`, and `cellpadding` are used in Html Writer. They are deprecated in Html5 in favor of css attributes. Further, their use is redundant or outright wrong. Their use is eliminated. A sample is added to show how equivalents might be used.
2026-01-12 23:22:03 -08:00
oleibman dbd353c90e Php-cs-fixer Error 2026-01-11 09:18:08 -08:00
oleibman 4a8f2a8f0c Witer/Html Option to Set Line Ending
It currently always uses PHP_EOL, which, of course, works, but you get slightly different results in Windows and Unix. User can now set line ending to `\n` or `\r\n` to ensure consistent results regardless of environment. Default remains PHP_EOL. We already do this for CSV.
2026-01-11 08:57:02 -08:00
oleibman 48f2fe37d6 Merge pull request #4777 from oleibman/changelog20260109
Update Changelog For New Release
5.4.0
2026-01-11 04:52:00 +00:00
oleibman 79208b34f4 Update Changelog For New Release 2026-01-10 20:43:53 -08:00
oleibman 2a60b97508 Merge pull request #4775 from oleibman/issue4773
Mpdf Styling of Multi-Line Strings
2026-01-09 17:40:05 +00:00
oleibman 69d337ded7 Update CHANGELOG.md 2026-01-09 09:35:32 -08:00
oleibman 60d0afd501 Merge pull request #4772 from oleibman/issue606
More Consistent Handling of Unsupported Functions
2026-01-09 16:32:55 +00:00
oleibman c0b28c45fd Merge branch 'master' into issue606 2026-01-09 08:30:01 -08:00
oleibman d9a4765bd5 Update CHANGELOG.md 2026-01-09 08:29:14 -08:00
oleibman a9d60a10df Remove Trailing Space 2026-01-07 22:02:53 -08:00
oleibman 53fe59626a Merge branch 'master' into issue4773 2026-01-07 21:41:33 -08:00
oleibman f3f09bc9a6 Mpdf Styling of Multi-Line Strings
Fix #4773. Mpdf is applying cell style only to the first line of a multi-line string. Explanation - Html Writer replaces newlines with `<br />` by calling `nl2br`, at least that was the intention. However, `nl2br` doesn't replace - it prepends. This doesn't do any harm in Html, Dompdf, or Tcpdf. However, Mpdf is known to be subject to occasional regexp backtracking errors when parsing large blocks of html. To avoid this, we chunk the html by splitting it at newlines, but this causes the styling to be lost for rich text elements following a newline.

The solution to this problem seems easy enough - replace `nl2br` with a routine that replaces rather than prepends. Unfortunately, Html Reader needs the newlines intact in order to parse things correctly. So a solution where the `nl2br` calls are used for non-Mpdf and using a substitute routine for Mpdf ought to work. However, doing my testing uncovered another bug - rich text with newlines can result in multiple `<br />` tags (see new Html test). The solution to this is a bit kludgey, but it does seem to fix both the Mpdf problem and the newly discovered Html problem. It will also tend to avoid the very minor problem of generating different line endings on Windows systems.
2026-01-07 21:34:34 -08:00
oleibman c69b747ec8 Merge pull request #4677 from raziel057/drawing-in-cell
Support Drawing in cell Read & Write
2026-01-07 04:30:38 +00:00
oleibman 83513c2cd5 Update Changelog 2026-01-06 20:17:28 -08:00
oleibman c96f9a7612 Coverage Tweak 2026-01-06 13:53:06 -08:00
oleibman 002f618416 More Tests and a Sample 2026-01-06 11:50:31 -08:00
Thomas Lallement 059a75880e Merge branch 'master' into drawing-in-cell 2026-01-06 09:38:09 +01:00