Skip to content

Commit c4cd1b3

Browse files
authored
Merge branch 'master' into issue4557date
2 parents 9a805fd + a907f19 commit c4cd1b3

File tree

88 files changed

+1056
-1727
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1056
-1727
lines changed

.github/workflows/github-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323

2424
- name: Build API documentation
2525
run: |
26-
curl -LO https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.5.0/phpDocumentor.phar
27-
php phpDocumentor.phar --directory src/ --target docs/api
26+
curl -LO https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.8.1/phpDocumentor.phar
27+
php phpDocumentor.phar --directory src/ --target docs/api --visibility=public,protected
2828
2929
- name: Deploy to GithHub Pages
3030
uses: peaceiris/actions-gh-pages@v3

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/analysis
33
/vendor/
44
/phpunit.xml
5+
.phpunit.result.cache
56

67
## IDE support
78
*.buildpath

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com)
6-
and this project adheres to [Semantic Versioning](https://semver.org).
6+
and this project adheres to [Semantic Versioning](https://semver.org). Thia is always true of the master branch. Some earlier branches remain supported and security fixes are applied to them; if the security fix represents a breaking change, it may have to be applied as a minor or patch version.
77

88
## TBD - 5.0.0
99

1010
### Breaking Changes
1111

12-
- Nothing yet.
12+
- Images will be loaded from an external source (e.g. http://example.com/img.png) only if the reader is explicitly set to allow it via `$reader->setAllowExternalImages(true)`. We do not believe that loading of external images is a widely used feature.
13+
- Deletion of items deprecated in Release 4. See "removed" below.
14+
- Move some properties from Base Reader to Html Reader. [PR #4551](https://github.com/PHPOffice/PhpSpreadsheet/pull/4551)
15+
- DefaultValueBinder will treat integers with more than 15 digits as strings. [Issue #4522](https://github.com/PHPOffice/PhpSpreadsheet/issues/4522) [PR #4527](https://github.com/PHPOffice/PhpSpreadsheet/pull/4527)
1316

1417
### Added
1518

1619
- Nothing yet.
1720

1821
### Removed
1922

20-
- Nothing yet.
23+
- Theme public constants COLOR_SCHEME_2013_PLUS_NAME (use COLOR_SCHEME_2013_2022_NAME) and COLOR_SCHEME_2013_PLUS (use COLOR_SCHEME_2013_2022).
2124

2225
### Changed
2326

@@ -34,8 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
3437
### Fixed
3538

3639
- Shared/Date::isDateTime handle cells which calculate as arrays. [Issue #4557](https://github.com/PHPOffice/PhpSpreadsheet/issues/4557) [PR #4562](https://github.com/PHPOffice/PhpSpreadsheet/pull/4562)
37-
38-
## 2025-07-23 - 4.5.0
40+
- Xlsx Writer eliminate xml:space from non-text nodes. [Issue #4542](https://github.com/PHPOffice/PhpSpreadsheet/issues/4542) [PR #4556](https://github.com/PHPOffice/PhpSpreadsheet/pull/4556)## 2025-07-23 - 4.5.0
3941

4042
### Added
4143

0 commit comments

Comments
 (0)