Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 20, 2025

This PR contains the following updates:

Package Change Age Confidence
github.com/xuri/excelize/v2 v2.9.0 -> v2.10.0 age confidence

Release Notes

xuri/excelize (github.com/xuri/excelize/v2)

v2.10.0

Compare Source

We are pleased to announce the release of version 2.10.0. Featured are a handful of new areas of functionality and numerous bug fixes.

A summary of changes is available in the Release Notes. A full list of changes is available in the changelog.

Release Notes

The most notable changes in this release are:

Breaking Change
  • Upgrade requirements Go language version is 1.24.0 or later, for upgrade of dependency package golang.org/x/crypto
Notable Features
  • Add new exported error variable ErrTransparency
  • Add new ChartDashType, CustomProperty and ZipWriter data types
  • Add new field Border to the ChartMarker data type
  • Add new field Font to the ChartLegend data type
  • Add new field Legend to the ChartSeries data type
  • Add new field Transparency to the Fill data type
  • Add new fields Dash and Fill to the ChartLine data type
  • Add new field TmpDir to the Options data type, support to specifies the custom temporary directory for creating temporary files, related issue #​2024
  • Add new field Charset to the Font data type, support to explicitly specify font encodings when generating spreadsheets
  • Add new functions GetCustomProps and SetCustomProps support getting and setting workbook custom properties, related issue #​2146
  • Add new function SetZipWriter, support set custom ZIP writer, related issue #​2199
  • Add optional parameter withoutValues for the GetMergeCells function
  • The DeleteDataValidation function support delete data validation in extension list, and support delete data validation by given with multiple cell ranges with reference sequence slice or blank separated reference sequence string, related issue #​2133
  • The AddChart function support set dash line and marker border type of charts
  • The AddChart function support to set font for chart legends, related issue #​2169
  • The AddChart and AddChartSheet function support create 4 kinds of box and whisker stock charts: High-Low-Close, Open-High-Low-Close, Volume-High-Low-Close and Volume-Open-High-Low-Close
  • The CalcCellValue function support BAHTTEXT formula function
  • Skip fallback to default font size when create style if font size less than minimum size
  • Support parse number format code with Hijri and Gregorian calendar
  • Support set transparency for chart and shape, related issue #​2176
  • Support apply number format with the new 8 language: Corsican, Croatian, Croatian (Latin), Czech, Danish, Divehi, Dutch, Dzongkha language
Improve the Compatibility
  • Remove all leading equal symbol when set cell formula, for improve compatibility with Apple Numbers, related issue #​2145
  • Using relative sheet target path in the internal workbook relationship parts
Bug Fixes
  • Fix a v2.9.1 regression bug, build failed on ARMv7 architectures, resolve issue #​2132
  • Fix number format parser dropped empty literals in the end of the number format
  • Fix panic on get string item with invalid offset range, resolve issues #​2019 and #​2150
  • Fix panic on read unsupported pivot table cache sorce types, resolve issue #​2161
  • Fix incorrect characters verification, count characters as single runes in characters length limitation checking, resolve issue #​2167
  • Fix add pivot table caused workbook corrupted on Excel for Mac, resolve issue #​2180
  • Fix incorrect month name abbreviations when read cell with the Tibetan language number format code
  • Fix special date number format result not consistent with Excel, resolve issue #​2192
Performance
  • Optimize the GetSheetDimension function by parse worksheet XML in stream mode, speedup about 95%, memory usage reduce about 96%
Miscellaneous
  • The dependencies module has been updated
  • Unit tests and godoc updated
  • Documentation website with multilingual: Arabic, German, English, Spanish, French, Italian, Japanese, Korean, Portuguese, Russian, Chinese Simplified and Chinese Traditional, which has been updated.
  • excelize-wasm NPM package release update for WebAssembly / JavaScript support
  • excelize PyPI package release update for Python
  • ExcelizeCs NuGet .Net package release for C#
  • Add a new logo for Excelize
Thank you

Thanks for all the contributors to Excelize. Below is a list of contributors that have code contributions in this version:

v2.9.1

Compare Source

We are pleased to announce the release of version 2.9.1. Featured are a handful of new areas of functionality and numerous bug fixes.

A summary of changes is available in the Release Notes. A full list of changes is available in the changelog.

Release Notes

The most notable changes in this release are:

Breaking Change
  • Upgrade requirements Go language version is 1.23 or later, for upgrade of dependency package golang.org/x/crypto
  • Change the data type of DataValidationType, DataValidationErrorStyle, DataValidationOperator, PictureInsertType from int to byte
  • SetCellInt function required int64 data type parameter, resolve issue #​2068
  • When adding drawing objects such as pictures, charts, shapes, and form controls, the offset setting will no longer affect the size of the drawing object, related issue #​2001
Notable Features
  • Add new fields GapWidth and Overlap in the Chart data type
  • Add new fields ShowDataTable and ShowDataTableKeys fields in the ChartPlotArea data type
  • Add new field Alignment in the ChartAxis data type
  • Add new field DataLabel in the ChartSeries data type
  • Add new field PageOrder for PageLayoutOptions data type
  • Add 2 new exported error variables: ErrPageSetupAdjustTo and ErrStreamSetColStyle
  • Add 2 new exported enumerations: HeaderFooterImagePositionType and IgnoredErrorsType
  • Add 2 new exported data types: CalcPropsOptions and HeaderFooterImageOptions
  • Add 2 new functions: SetCalcProps and GetCalcProps support setting and getting workbook calculation properties
  • Add new CultureNameJaJP, CultureNameKoKR and CultureNameZhTW enumeration values, support apply number format for the Japanese calendar years, the Korean Danki calendar and the Republic of China year, related issue #​1885
  • Add new function AddHeaderFooterImage to support set graphics in a header and footer, related issue #​1395
  • Add new function AddIgnoredErrors support to ignored error for a range of cells, related issue #​2046
  • Add new function SetColStyle for streaming writer to support set columns style, related issue #​2075
  • The AddChart and AddChartSheet function support set chart axis text direction and rotation, related issue #​2025
  • The AddChart and AddChartSheet function support set gap width and overlap for column and bar chart, related issue #​2033
  • The AddChart and AddChartSheet function support set the format of the chart series data label, related issue #​2052
  • The AddChart and AddChartSheet function support set data table for chart, related issue #​2117
  • The AddFormControl function support set cell link for check box, related issue #​2113
  • The SetPageLayout function support set page order of page layout
  • The DeletePicture function support delete one cell anchor image, related issue #​2059
  • An error will be return if the option value of the SetPageLayout function is invalid
  • Support adjust data validations cross multiple worksheets, related issue #​2072
  • Support apply number format with hash and zero place holder, related issue #​2058
  • Support apply number format with ? symbol
  • Support to insert one cell anchor drawing object when specified the positioning as "oneCell", related issue #​2002
Bug Fixes
  • Fix a v2.9.0 regression bug, corrupted workbook generated by open the workbook generated by stream writer, resolve issue #​2015
  • Fix redundant none type pattern fill generated, resolve issue #​2014
  • Fix missing vertical and horizontal border styles in some case, resolve issue #​2048
  • Fix conditional format's border styles missing in some case, resolve issue #​2061
  • Fix get pivot tables panic in some case, resolve issues #​1954 and #​2051
  • Fix GetStyle function can not get VertAlign format
  • Fix CalcCellValue function subexpressions aren't correctly calculated in some case, resolve issue #​2083
  • Fix delete wrong images in some case which caused by image reference detection issue
  • Fix cell default style doesn't override by none-zero row style when set row by stream writer
  • Fix redundant cols element generated by stream writer
  • Fix panic on set chart title font, resolve issue #​2102
  • Fix panic on delete calc chain in some case
  • Fix incorrect formula calculation result caused by shared formula parse error, resolve issue #​2056
  • Fix corrupted workbook generated when an inner ZIP64 file size exceeds 4GB
  • Fix sheet name error in defined name after rename sheet, resolve issue #​2126
Performance
  • Use a 3 times faster deepcopy library github.com/tiendc/go-deepcopy instead of github.com/mohae/deepcopy, related issue #​2029
  • Fix performance regression in v2.9.0, reduce trim cell value memory allocation for blank cells
  • Improve performance for calculate formula when formula contains whole column and row reference
  • Rows iterator speedup about 20%, memory allocation reduce about 10%
Miscellaneous
  • The dependencies module has been updated
  • Unit tests and godoc updated
  • Documentation website with multilingual: Arabic, German, English, Spanish, French, Italian, Japanese, Korean, Portuguese, Russian, Chinese Simplified and Chinese Traditional, which has been updated.
  • excelize-wasm NPM package release update for WebAssembly / JavaScript support
  • excelize PyPI package release update for Python
Thank you

Thanks for all the contributors to Excelize. Below is a list of contributors that have code contributions in this version:


Configuration

📅 Schedule: Branch creation - "every weekday,every weekend" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Contributor Author

renovate bot commented Nov 20, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 10 additional dependencies were updated

Details:

Package Change
github.com/stretchr/testify v1.10.0 -> v1.11.1
github.com/xuri/efp v0.0.0-20241211021726-c4e992084aa6 -> v0.0.1
github.com/xuri/nfp v0.0.0-20240318013403-ab9948c2c4a7 -> v0.0.2-0.20250530014748-2ddeb826f9a9
golang.org/x/crypto v0.36.0 -> v0.43.0
golang.org/x/mod v0.24.0 -> v0.28.0
golang.org/x/net v0.37.0 -> v0.46.0
golang.org/x/sync v0.13.0 -> v0.17.0
golang.org/x/sys v0.31.0 -> v0.37.0
golang.org/x/text v0.23.0 -> v0.30.0
golang.org/x/tools v0.31.0 -> v0.37.0

@renovate renovate bot changed the title Update module github.com/xuri/excelize/v2 to v2.10.0 Update module github.com/xuri/excelize/v2 to v2.10.0 - autoclosed Dec 2, 2025
@renovate renovate bot closed this Dec 2, 2025
@renovate renovate bot deleted the renovate/github.com-xuri-excelize-v2-2.x branch December 2, 2025 20:56
@renovate renovate bot changed the title Update module github.com/xuri/excelize/v2 to v2.10.0 - autoclosed Update module github.com/xuri/excelize/v2 to v2.10.0 Dec 8, 2025
@renovate renovate bot reopened this Dec 8, 2025
@renovate renovate bot force-pushed the renovate/github.com-xuri-excelize-v2-2.x branch 2 times, most recently from 43fe954 to 0f4d1a0 Compare December 8, 2025 15:10
@renovate
Copy link
Contributor Author

renovate bot commented Dec 15, 2025

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 10 additional dependencies were updated

Details:

Package Change
github.com/stretchr/testify v1.10.0 -> v1.11.1
github.com/xuri/efp v0.0.0-20241211021726-c4e992084aa6 -> v0.0.1
github.com/xuri/nfp v0.0.0-20240318013403-ab9948c2c4a7 -> v0.0.2-0.20250530014748-2ddeb826f9a9
golang.org/x/crypto v0.36.0 -> v0.43.0
golang.org/x/mod v0.24.0 -> v0.28.0
golang.org/x/net v0.37.0 -> v0.46.0
golang.org/x/sync v0.13.0 -> v0.17.0
golang.org/x/sys v0.31.0 -> v0.37.0
golang.org/x/text v0.23.0 -> v0.30.0
golang.org/x/tools v0.31.0 -> v0.37.0

@renovate renovate bot changed the title Update module github.com/xuri/excelize/v2 to v2.10.0 Update module github.com/xuri/excelize/v2 to v2.10.0 - autoclosed Dec 25, 2025
@renovate renovate bot closed this Dec 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant