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: .github/ISSUE_TEMPLATE.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,20 @@ $spreadsheet = new \PhpOffice\PhpSpreadsheet\Spreadsheet();
26
26
27
27
// add code that show the issue here...
28
28
```
29
+
If this is an issue with reading a specific spreadsheet file, then it may be appropriate to provide a sample file that demonstrates the problem; but please keep it as small as possible, and sanitize any confidential information before uploading.
30
+
31
+
### What features do you think are causing the issue
32
+
33
+
-[ ] Reader
34
+
-[ ] Writer
35
+
-[ ] Styles
36
+
-[ ] Data Validations
37
+
-[ ] Formula Calulations
38
+
-[ ] Charts
39
+
-[ ] AutoFilter
40
+
-[ ] Form Elements
41
+
42
+
### Does an issue affect all spreadsheet file formats? If not, which formats are affected?
29
43
30
44
31
45
### Which versions of PhpSpreadsheet and PHP are affected?
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,14 +3,21 @@ This is:
3
3
```
4
4
- [ ] a bugfix
5
5
- [ ] a new feature
6
+
- [ ] refactoring
7
+
- [ ] additional unit tests
6
8
```
7
9
8
10
Checklist:
9
11
10
12
-[ ] Changes are covered by unit tests
13
+
-[ ] Changes are covered by existing unit tests
14
+
-[ ] New unit tests have been added
11
15
-[ ] Code style is respected
12
16
-[ ] Commit message explains **why** the change is made (see https://github.com/erlang/otp/wiki/Writing-good-commit-messages)
13
17
-[ ] CHANGELOG.md contains a short summary of the change
14
18
-[ ] Documentation is updated as necessary
15
19
16
20
### Why this change is needed?
21
+
22
+
Provide an explanation of why this change is needed, with links to any Issues (if appropriate).
23
+
If this is a bugfix or a new feature, and there are no existing Issues, then please also create an issue that will make it easier to track progress with this PR.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+41-3Lines changed: 41 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,31 @@ and this project adheres to [Semantic Versioning](https://semver.org).
9
9
10
10
### Added
11
11
12
+
- Nothing
13
+
14
+
### Changed
15
+
16
+
- Nothing
17
+
18
+
### Deprecated
19
+
20
+
- Nothing
21
+
22
+
### Removed
23
+
24
+
- Nothing
25
+
26
+
### Fixed
27
+
28
+
- Nothing
29
+
30
+
31
+
## 1.23.0 - 2022-04-24
32
+
33
+
### Added
34
+
35
+
- Ods Writer support for Freeze Pane [Issue #2013](https://github.com/PHPOffice/PhpSpreadsheet/issues/2013)[PR #2755](https://github.com/PHPOffice/PhpSpreadsheet/pull/2755)
36
+
- Ods Writer support for setting column width/row height (including the use of AutoSize) [Issue #2346](https://github.com/PHPOffice/PhpSpreadsheet/issues/2346)[PR #2753](https://github.com/PHPOffice/PhpSpreadsheet/pull/2753)
12
37
- Introduced CellAddress, CellRange, RowRange and ColumnRange value objects that can be used as an alternative to a string value (e.g. `'C5'`, `'B2:D4'`, `'2:2'` or `'B:C'`) in appropriate contexts.
13
38
- Implementation of the FILTER(), SORT(), SORTBY() and UNIQUE() Lookup/Reference (array) functions.
14
39
- Implementation of the ISREF() Information function.
@@ -18,11 +43,18 @@ and this project adheres to [Semantic Versioning](https://semver.org).
18
43
19
44
This functionality is locale-aware, using the server's locale settings to identify the thousands and decimal separators.
20
45
21
-
- Support for two cell anchor drawing of images. [#2532](https://github.com/PHPOffice/PhpSpreadsheet/pull/2532)
46
+
- Support for two cell anchor drawing of images. [#2532](https://github.com/PHPOffice/PhpSpreadsheet/pull/2532)[#2674](https://github.com/PHPOffice/PhpSpreadsheet/pull/2674)
22
47
- Limited support for Xls Reader to handle Conditional Formatting:
23
48
24
49
Ranges and Rules are read, but style is currently limited to font size, weight and color; and to fill style and color.
25
50
51
+
- Add ability to suppress Mac line ending check for CSV [#2623](https://github.com/PHPOffice/PhpSpreadsheet/pull/2623)
52
+
- Initial support for creating and writing Tables (Xlsx Writer only) [PR #2671](https://github.com/PHPOffice/PhpSpreadsheet/pull/2671)
53
+
54
+
See `/samples/Table` for examples of use.
55
+
56
+
Note that PreCalculateFormulas needs to be disabled when saving spreadsheets containing tables with formulae (totals or column formulae).
57
+
26
58
### Changed
27
59
28
60
- Gnumeric Reader now loads number formatting for cells.
@@ -66,22 +98,28 @@ and this project adheres to [Semantic Versioning](https://semver.org).
66
98
67
99
### Fixed
68
100
101
+
- Make allowance for the AutoFilter dropdown icon in the first row of an Autofilter range when using Autosize columns. [Issue #2413](https://github.com/PHPOffice/PhpSpreadsheet/issues/2413)[PR #2754](https://github.com/PHPOffice/PhpSpreadsheet/pull/2754)
69
102
- Support for "chained" ranges (e.g. `A5:C10:C20:F1`) in the Calculation Engine; and also support for using named ranges with the Range operator (e.g. `NamedRange1:NamedRange2`) [Issue #2730](https://github.com/PHPOffice/PhpSpreadsheet/issues/2730)[PR #2746](https://github.com/PHPOffice/PhpSpreadsheet/pull/2746)
70
103
- Update Conditional Formatting ranges and rule conditions when inserting/deleting rows/columns [Issue #2678](https://github.com/PHPOffice/PhpSpreadsheet/issues/2678)[PR #2689](https://github.com/PHPOffice/PhpSpreadsheet/pull/2689)
71
104
- Allow `INDIRECT()` to accept row/column ranges as well as cell ranges [PR #2687](https://github.com/PHPOffice/PhpSpreadsheet/pull/2687)
72
105
- Fix bug when deleting cells with hyperlinks, where the hyperlink was then being "inherited" by whatever cell moved to that cell address.
73
106
- Fix bug in Conditional Formatting in the Xls Writer that resulted in a broken file when there were multiple conditional ranges in a worksheet.
74
107
- Fix Conditional Formatting in the Xls Writer to work with rules that contain string literals, cell references and formulae.
75
108
- Fix for setting Active Sheet to the first loaded worksheet when bookViews element isn't defined [Issue #2666](https://github.com/PHPOffice/PhpSpreadsheet/issues/2666)[PR #2669](https://github.com/PHPOffice/PhpSpreadsheet/pull/2669)
76
-
- Fixed behaviour of XLSX font style vertical align settings.
109
+
- Fixed behaviour of XLSX font style vertical align settings[PR #2619](https://github.com/PHPOffice/PhpSpreadsheet/pull/2619)
77
110
- Resolved formula translations to handle separators (row and column) for array functions as well as for function argument separators; and cleanly handle nesting levels.
78
111
79
112
Note that this method is used when translating Excel functions between `en_us` and other locale languages, as well as when converting formulae between different spreadsheet formats (e.g. Ods to Excel).
80
113
81
114
Nor is this a perfect solution, as there may still be issues when function calls have array arguments that themselves contain function calls; but it's still better than the current logic.
82
115
- Fix for escaping double quotes within a formula [Issue #1971](https://github.com/PHPOffice/PhpSpreadsheet/issues/1971)[PR #2651](https://github.com/PHPOffice/PhpSpreadsheet/pull/2651)
116
+
- Change open mode for output from `wb+` to `wb`[Issue #2372](https://github.com/PHPOffice/PhpSpreadsheet/issues/2372)[PR #2657](https://github.com/PHPOffice/PhpSpreadsheet/pull/2657)
117
+
- Use color palette if supplied [Issue #2499](https://github.com/PHPOffice/PhpSpreadsheet/issues/2499)[PR #2595](https://github.com/PHPOffice/PhpSpreadsheet/pull/2595)
118
+
- Xls reader treat drawing offsets as int rather than float [PR #2648](https://github.com/PHPOffice/PhpSpreadsheet/pull/2648)
119
+
- Handle booleans in conditional styles properly [PR #2654](https://github.com/PHPOffice/PhpSpreadsheet/pull/2654)
120
+
- Fix for reading files in the root directory of a ZipFile, which should not be prefixed by relative paths ("./") as dirname($filename) does by default.
83
121
- Fix invalid style of cells in empty columns with columnDimensions and rows with rowDimensions in added external sheet. [PR #2739](https://github.com/PHPOffice/PhpSpreadsheet/pull/2739)
84
-
122
+
- Time Interval Formatting [Issue #2768](https://github.com/PHPOffice/PhpSpreadsheet/issues/2768)[PR #2772](https://github.com/PHPOffice/PhpSpreadsheet/pull/2772)
0 commit comments