fix(deps): update rust crate calamine to 0.33.0#186
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.32.0→0.33.0Release Notes
tafia/calamine (calamine)
v0.33.0Compare Source
Added
from the internal Pivot Cache. PR #559.
Changed
Update dependencies for release 0.33.0:
zip: 4.2.0 -> 7.0.atoi_simd: 0.16 -> 0.17Fixed
Fixed potential memory exhaustion issue in ODS files that could be triggered
via repeated empty rows/columns.
The fix adds limits to prevent memory exhaustion from malicious ODS files that
declare billions of repeated cells via
table:number-rows-repeatedandtable:number-columns-repeated attributes.The change adds the following protection layers:
MAX_COLUMNS(16,384).MAX_ROWS(1,048,576).MAX_CELLS(100 million) inget_range().These limits match XLSX's existing row/column limits and prevent a 7KB
malicious file from attempting to allocate memory for 17+ billion cells.
When MAX_CELLS is exceeded, return
OdsError::CellLimitExceededinsteadof silently returning an empty range. This ensures callers are properly
informed of truncation rather than receiving silent data loss.
Issue #594, PR #596.
Fixed an issue where XLSX files with tables that had the internal
insertRowattribute set returned a
Dimensionsobject where the end row was less thanthe start row. This caused an assert/panic when trying to create a
Rangeobject to return the table range. Issue #589.
Fixed an issue with XLSX files where worksheet tables used the unusual, but
valid, absolute reference system like
"/xl/tables/table1.xml"instead of thecommon Excel generated relative system
"../tables/table1.xml". Issue #587.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
This PR was generated by Mend Renovate. View the repository job log.