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
+4-1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org).
11
11
12
12
- Data Validations will be stored by worksheet, not cell. Index can be one or more cells or cell ranges. [Issue #797](https://github.com/PHPOffice/PhpSpreadsheet/issues/797)[Issue #4091](https://github.com/PHPOffice/PhpSpreadsheet/issues/4091)[Issue #4206](https://github.com/PHPOffice/PhpSpreadsheet/issues/4206)[PR #4240](https://github.com/PHPOffice/PhpSpreadsheet/pull/4240)
- Csv Reader will no longer auto-detect Mac line endings by default. Prior behavior can be explicitly enabled via `setTestAutoDetect(true)`, and it will not be possible at all with Php9+. [Issue #4092](https://github.com/PHPOffice/PhpSpreadsheet/issues/4092)[PR #4340](https://github.com/PHPOffice/PhpSpreadsheet/pull/4340)
15
+
- Html Writer will now use "better boolean" logic. Booleans will now be output by default as TRUE/FALSE rather than 1/null-string. Prior behavior can be explicitly enabled via `setBetterBoolean(false)`. [PR #4340](https://github.com/PHPOffice/PhpSpreadsheet/pull/4340)
16
+
- Xlsx Writer will now use false as the default for `forceFullCalc`. This affects writes with `preCalculateFormulas` set to false. Prior behavior can be explicitly enabled via `setForceFullCalc(null)`.[PR #4340](https://github.com/PHPOffice/PhpSpreadsheet/pull/4340)
14
17
- Deletion of items deprecated in Release 3. See "removed" below.
15
18
16
19
### Added
@@ -35,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -42,8 +42,8 @@ This makes it easier to see exactly what is being tested when reviewing the PR.
42
42
3. Push the tag with `git push --tags`, GitHub Actions will create a GitHub release automatically, and the release details will automatically be sent to packagist.
43
43
4. By default, Github removes markdown headings in the Release Notes. You can either edit to restore these, or, probably preferably, change the default comment character on your system - `git config core.commentChar ";"`.
44
44
45
-
> **Note:** Tagged releases are made from the `master` branch. Only in an emergency should a tagged release be made from the `release` branch. (i.e. cherry-picked hot-fixes.) However, there are 3 branches which have been updated to apply security patches, and those may be tagged if future security updates are needed.
45
+
> **Note:** Tagged releases are made from the `master` branch. Only in an emergency should a tagged release be made from the `release` branch. (i.e. cherry-picked hot-fixes.) However, there are 4 branches which have been updated to apply security patches, and those may be tagged if future security updates are needed.
Copy file name to clipboardExpand all lines: docs/topics/reading-and-writing-to-file.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -173,7 +173,7 @@ even if pre-calculated is set to false
173
173
```php
174
174
$writer->setForceFullCalc(false);
175
175
```
176
-
In a future release, the property's default may change to `false` and that statement may no longer be required.
176
+
Starting with Release 4.0.0, the property's default is changed to `false` and that statement is no longer be required. The property can be set to `null` if the old behavior is needed.
177
177
178
178
#### Office 2003 compatibility pack
179
179
@@ -594,6 +594,9 @@ You can suppress testing for Mac line endings as follows:
594
594
$reader = new \PhpOffice\PhpSpreadsheet\Reader\Csv();
595
595
$reader->setTestAutoDetect(false);
596
596
```
597
+
Starting with Release 4.0.0, the property defaults to `false`,
598
+
so the statement above is no longer needed. The old behavior
0 commit comments