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: CHANGELOG.md
+19-2
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com)
6
6
and this project adheres to [Semantic Versioning](https://semver.org).
7
7
8
-
## TBD - 3.8.0
8
+
## TBD - 3.9.0
9
9
10
10
### Added
11
11
12
-
- CHOOSECOLS, CHOOSEROWS, DROP, TAKE, and EXPAND. [PR #4286](https://github.com/PHPOffice/PhpSpreadsheet/pull/4286)
12
+
- Methods to get style for row or column. [PR #4317](https://github.com/PHPOffice/PhpSpreadsheet/pull/4317)
13
+
- Method for duplicating worksheet in spreadsheet. [PR #4315](https://github.com/PHPOffice/PhpSpreadsheet/pull/4315)
13
14
14
15
### Changed
15
16
@@ -25,7 +26,23 @@ and this project adheres to [Semantic Versioning](https://semver.org).
25
26
26
27
### Fixed
27
28
29
+
- Ods Reader Sheet Names with Period. [Issue #4311](https://github.com/PHPOffice/PhpSpreadsheet/issues/4311)[PR #4313](https://github.com/PHPOffice/PhpSpreadsheet/pull/4313)
30
+
- Mpdf and Tcpdf Hidden Columns and Merged Cells. [Issue #4319](https://github.com/PHPOffice/PhpSpreadsheet/issues/4319)[PR #4320](https://github.com/PHPOffice/PhpSpreadsheet/pull/4320)
31
+
- Html Writer Allow mailto. [Issue #4316](https://github.com/PHPOffice/PhpSpreadsheet/issues/4316)[PR #4322](https://github.com/PHPOffice/PhpSpreadsheet/pull/4322)
32
+
- Use composer/pcre rather than preg_* in Writer. [PR #4323](https://github.com/PHPOffice/PhpSpreadsheet/pull/4323)
33
+
34
+
## 2025-01-11 - 3.8.0
35
+
36
+
### Added
37
+
38
+
- CHOOSECOLS, CHOOSEROWS, DROP, TAKE, and EXPAND. [PR #4286](https://github.com/PHPOffice/PhpSpreadsheet/pull/4286)
39
+
40
+
### Fixed
41
+
42
+
- Security patch for Html navigation.
28
43
- Xlsx Reader Shared Formula with Boolean Result. Partial solution for [Issue #4280](https://github.com/PHPOffice/PhpSpreadsheet/issues/4280)[PR #4281](https://github.com/PHPOffice/PhpSpreadsheet/pull/4281)
- Extremely limited support for GROUPBY function. Partial response to [Issue #4282](https://github.com/PHPOffice/PhpSpreadsheet/issues/4282)[PR #4283](https://github.com/PHPOffice/PhpSpreadsheet/pull/4283)
Copy file name to clipboardExpand all lines: docs/topics/recipes.md
+3
Original file line number
Diff line number
Diff line change
@@ -925,6 +925,9 @@ getStyle('A1:M500'), rather than styling the cells individually in a
925
925
loop. This is much faster compared to looping through cells and styling
926
926
them individually.
927
927
928
+
**Tip** If you are styling entire row(s) or column(s), e.g. getStyle('A:A'), it is recommended to use applyFromArray as described below rather than setting the styles individually as described above.
929
+
Also, starting with release 3.9.0, you should use getRowStyle or getColumnStyle to get the style for an entire row or column.
930
+
928
931
There is also an alternative manner to set styles. The following code
929
932
sets a cell's style to font bold, alignment right, top border thin and a
0 commit comments