Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump phpoffice/phpspreadsheet from 1.18.0 to 1.23.0 #528

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2022

Bumps phpoffice/phpspreadsheet from 1.18.0 to 1.23.0.

Release notes

Sourced from phpoffice/phpspreadsheet's releases.

1.23.0 - 2022-04-24

  • Ods Writer support for Freeze Pane [Issue #2013](PHPOffice/PhpSpreadsheet#2013) [PR #2755](PHPOffice/PhpSpreadsheet#2755)

  • Ods Writer support for setting column width/row height (including the use of AutoSize) [Issue #2346](PHPOffice/PhpSpreadsheet#2346) [PR #2753](PHPOffice/PhpSpreadsheet#2753)

  • 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.

  • Implementation of the FILTER(), SORT(), SORTBY() and UNIQUE() Lookup/Reference (array) functions.

  • Implementation of the ISREF() Information function.

  • Added support for reading "formatted" numeric values from Csv files; although default behaviour of reading these values as strings is preserved.

    (i.e a value of "12,345.67" can be read as numeric 12345.67, not simply as a string "12,345.67", if the castFormattedNumberToNumeric() setting is enabled.

    This functionality is locale-aware, using the server's locale settings to identify the thousands and decimal separators.

  • Support for two cell anchor drawing of images. #2532 #2674

  • Limited support for Xls Reader to handle Conditional Formatting:

    Ranges and Rules are read, but style is currently limited to font size, weight and color; and to fill style and color.

  • Add ability to suppress Mac line ending check for CSV #2623

  • Initial support for creating and writing Tables (Xlsx Writer only) [PR #2671](PHPOffice/PhpSpreadsheet#2671)

    See /samples/Table for examples of use.

    Note that PreCalculateFormulas needs to be disabled when saving spreadsheets containing tables with formulae (totals or column formulae).

  • Gnumeric Reader now loads number formatting for cells.

  • Gnumeric Reader now correctly identifies selected worksheet and selected cells in a worksheet.

  • Some Refactoring of the Ods Reader, moving all formula and address translation from Ods to Excel into a separate class to eliminate code duplication and ensure consistency.

  • Make Boolean Conversion in Csv Reader locale-aware when using the String Value Binder.

    This is determined by the Calculation Engine locale setting.

    (i.e. "Vrai" wil be converted to a boolean true if the Locale is set to fr.)

  • Allow psr/simple-cache 2.x

  • All Excel Function implementations in Calculation\Functions (including the Error functions) have been moved to dedicated classes for groups of related functions. See the docblocks against all the deprecated methods for details of the new methods to call instead. At some point, these old classes will be deleted.

  • Worksheet methods that reference cells "byColumnandRow". All such methods have an equivalent that references the cell by its address (e.g. 'E3' rather than 5, 3).

    These functions now accept either a cell address string ('E3') or an array with columnId and rowId ([5, 3]) or a new CellAddress object as their cellAddress/coordinate argument. This includes the methods:

    • setCellValueByColumnAndRow() use the equivalent setCellValue()
    • setCellValueExplicitByColumnAndRow() use the equivalent setCellValueExplicit()
    • getCellByColumnAndRow() use the equivalent getCell()
    • cellExistsByColumnAndRow() use the equivalent cellExists()
    • getStyleByColumnAndRow() use the equivalent getStyle()
    • setBreakByColumnAndRow() use the equivalent setBreak()
    • mergeCellsByColumnAndRow() use the equivalent mergeCells()
    • unmergeCellsByColumnAndRow() use the equivalent unmergeCells()
    • protectCellsByColumnAndRow() use the equivalent protectCells()
    • unprotectCellsByColumnAndRow() use the equivalent unprotectCells()
    • setAutoFilterByColumnAndRow() use the equivalent setAutoFilter()

... (truncated)

Changelog

Sourced from phpoffice/phpspreadsheet's changelog.

1.23.0 - 2022-04-24

Added

  • Ods Writer support for Freeze Pane [Issue #2013](PHPOffice/PhpSpreadsheet#2013) [PR #2755](PHPOffice/PhpSpreadsheet#2755)

  • Ods Writer support for setting column width/row height (including the use of AutoSize) [Issue #2346](PHPOffice/PhpSpreadsheet#2346) [PR #2753](PHPOffice/PhpSpreadsheet#2753)

  • 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.

  • Implementation of the FILTER(), SORT(), SORTBY() and UNIQUE() Lookup/Reference (array) functions.

  • Implementation of the ISREF() Information function.

  • Added support for reading "formatted" numeric values from Csv files; although default behaviour of reading these values as strings is preserved.

    (i.e a value of "12,345.67" can be read as numeric 12345.67, not simply as a string "12,345.67", if the castFormattedNumberToNumeric() setting is enabled.

    This functionality is locale-aware, using the server's locale settings to identify the thousands and decimal separators.

  • Support for two cell anchor drawing of images. #2532 #2674

  • Limited support for Xls Reader to handle Conditional Formatting:

    Ranges and Rules are read, but style is currently limited to font size, weight and color; and to fill style and color.

  • Add ability to suppress Mac line ending check for CSV #2623

  • Initial support for creating and writing Tables (Xlsx Writer only) [PR #2671](PHPOffice/PhpSpreadsheet#2671)

    See /samples/Table for examples of use.

    Note that PreCalculateFormulas needs to be disabled when saving spreadsheets containing tables with formulae (totals or column formulae).

Changed

  • Gnumeric Reader now loads number formatting for cells.

  • Gnumeric Reader now correctly identifies selected worksheet and selected cells in a worksheet.

  • Some Refactoring of the Ods Reader, moving all formula and address translation from Ods to Excel into a separate class to eliminate code duplication and ensure consistency.

  • Make Boolean Conversion in Csv Reader locale-aware when using the String Value Binder.

    This is determined by the Calculation Engine locale setting.

    (i.e. "Vrai" wil be converted to a boolean true if the Locale is set to fr.)

  • Allow psr/simple-cache 2.x

Deprecated

  • All Excel Function implementations in Calculation\Functions (including the Error functions) have been moved to dedicated classes for groups of related functions. See the docblocks against all the deprecated methods for details of the new methods to call instead. At some point, these old classes will be deleted.

  • Worksheet methods that reference cells "byColumnandRow". All such methods have an equivalent that references the cell by its address (e.g. 'E3' rather than 5, 3).

    These functions now accept either a cell address string ('E3') or an array with columnId and rowId ([5, 3]) or a new CellAddress object as their cellAddress/coordinate argument. This includes the methods:

    • setCellValueByColumnAndRow() use the equivalent setCellValue()
    • setCellValueExplicitByColumnAndRow() use the equivalent setCellValueExplicit()
    • getCellByColumnAndRow() use the equivalent getCell()
    • cellExistsByColumnAndRow() use the equivalent cellExists()

... (truncated)

Commits
  • 21e4cf6 Prepare Change Log for Release
  • b72d911 Update Change Log
  • 763e0de Merge pull request #2772 from oleibman/issue2768
  • da76f0d Merge branch 'master' into issue2768
  • c286fb8 Minor Changes
  • 7fe5ee8 Time Interval Formatting
  • 27221ee Update Change Log
  • b6f9868 Quickfix - default Worksheet in CellAddress constructor to null
  • 10d175e Merge pull request #2671 from aswinkumar863/Table-for-Xlsx
  • 534cbc0 Accept table range as AddressRange and array
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [phpoffice/phpspreadsheet](https://github.com/PHPOffice/PhpSpreadsheet) from 1.18.0 to 1.23.0.
- [Release notes](https://github.com/PHPOffice/PhpSpreadsheet/releases)
- [Changelog](https://github.com/PHPOffice/PhpSpreadsheet/blob/master/CHANGELOG.md)
- [Commits](PHPOffice/PhpSpreadsheet@1.18.0...1.23.0)

---
updated-dependencies:
- dependency-name: phpoffice/phpspreadsheet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/composer/phpoffice/phpspreadsheet-1.23.0 branch from 0ed696b to ff0042c Compare June 10, 2022 07:15
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 1, 2022

Superseded by #546.

@dependabot dependabot bot closed this Aug 1, 2022
@dependabot dependabot bot deleted the dependabot/composer/phpoffice/phpspreadsheet-1.23.0 branch August 1, 2022 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants