Skip to content

Commit 1eeb705

Browse files
committed
Update Changelog
1 parent 6a4c2c6 commit 1eeb705

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ and this project adheres to [Semantic Versioning](https://semver.org).
2525

2626
### Fixed
2727

28-
- Nothing yet.
28+
- Html Reader/Writer Better Handling of Booleans. [PR #4257](https://github.com/PHPOffice/PhpSpreadsheet/pull/4257)
29+
- Fill Patterns/Colors When Xml Attributes are Missing. [Issue #4248](https://github.com/PHPOffice/PhpSpreadsheet/issues/4248) [PR #4250](https://github.com/PHPOffice/PhpSpreadsheet/pull/4250)
30+
- Remove Unneccesary files from Composer Package. [PR #4262](https://github.com/PHPOffice/PhpSpreadsheet/pull/4262)
2931

3032
## 2024-11-22 - 3.5.0
3133

tests/PhpSpreadsheetTests/Writer/Html/BetterBooleanTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ public function testInline(): void
165165
self::assertStringContainsString('<td style="text-align:left;">Hello</td>', $html);
166166
self::assertStringContainsString('<td data-type="b" style="text-align:center;">VRAI</td>', $html);
167167
self::assertStringContainsString('<td data-type="b" style="text-align:center;">FAUX</td>', $html);
168+
self::assertStringContainsString('<td data-type="s" style="text-align:left;">1</td>', $html);
168169
self::assertStringContainsString('<td style="text-align:left;">AB</td>', $html);
169170
self::assertStringContainsString('<td style="text-align:right;">3</td>', $html);
170171

0 commit comments

Comments
 (0)