Skip to content

Commit 7e92c29

Browse files
committed
Update Change Logs plus One Very Minor Code Change
1 parent f8059d8 commit 7e92c29

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

docs/changes/1.x/1.2.0.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@
6060

6161

6262
### BC Breaks
63-
- Removed dependency `laminas/laminas-escaper`
63+
- Removed dependency `laminas/laminas-escaper`
64+
- *Unintended Break* TemplateProcessor Does Not Persist File After Destruct. [#2539](https://github.com/PHPOffice/PHPWord/issues/2539) To be fixed by [#2542](https://github.com/PHPOffice/PHPWord/pull/2542

docs/changes/2.x/2.0.0.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# [2.0.0](https://github.com/PHPOffice/PHPWord/tree/2.0.0) (WIP)
2+
3+
[Full Changelog](https://github.com/PHPOffice/PHPWord/compare/1.2.0...2.0.0)
4+
5+
## Enhancements
6+
7+
### Bug fixes
8+
9+
- MsDoc Reader : Correct Font Size Calculation by [@oleibman](https://github.com/oleibman) fixing [#2526](https://github.com/PHPOffice/PHPWord/issues/2526) in [#2531](https://github.com/PHPOffice/PHPWord/pull/2531)
10+
- TemplateProcessor Persist File After Destruct [@oleibman](https://github.com/oleibman) fixing [#2539](https://github.com/PHPOffice/PHPWord/issues/2539) in [#2542](https://github.com/PHPOffice/PHPWord/pull/2531)
11+
12+
### Miscellaneous
13+
14+
- Bump dompdf/dompdf from 2.0.3 to 2.0.4 by [@dependabot](https://github.com/dependabot) in [#2530](https://github.com/PHPOffice/PHPWord/pull/2530)
15+
- Bump phpunit/phpunit from 9.6.13 to 9.6.14 by [@dependabot](https://github.com/dependabot) in [#2519](https://github.com/PHPOffice/PHPWord/pull/2519)
16+
- Bump mpdf/mpdf from 8.2.0 to 8.2.2 by [@dependabot](https://github.com/dependabot) in [#2518](https://github.com/PHPOffice/PHPWord/pull/2518)
17+
- Bump phpmd/phpmd from 2.14.1 to 2.15.0 by [@dependabot](https://github.com/dependabot) in [#2538](https://github.com/PHPOffice/PHPWord/pull/2538)
18+
- Bump phpunit/phpunit from 9.6.14 to 9.6.15 by [@dependabot](https://github.com/dependabot) in [#2537](https://github.com/PHPOffice/PHPWord/pull/2537)
19+
- Bump symfony/process from 5.4.28 to 5.4.34 by [@dependabot](https://github.com/dependabot) in [#2536](https://github.com/PHPOffice/PHPWord/pull/2536)
20+
- Allow rgb() when converting Html [@oleibman](https://github.com/oleibman) fixing [#2508](https://github.com/PHPOffice/PHPWord/issues/2508) in [#2512](https://github.com/PHPOffice/PHPWord/pull/2512)
21+
22+
### BC Breaks

src/PhpWord/TemplateProcessor.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -982,8 +982,7 @@ public function save()
982982
return $this->tempDocumentFilename;
983983
}
984984

985-
/** @return string */
986-
public function getTempDocumentFilename()
985+
public function getTempDocumentFilename(): string
987986
{
988987
return $this->tempDocumentFilename;
989988
}

0 commit comments

Comments
 (0)