Skip to content

Latest commit

 

History

History
543 lines (404 loc) · 27.8 KB

CHANGELOG.md

File metadata and controls

543 lines (404 loc) · 27.8 KB

0.14.1 (6 May 2021)

This is a patch release improving compatibility with different spreadsheet formats.

Closed issues:

  • Cannot initialize SchemaType from invalid String value extendedProperties (#145)
  • Cannot initialize SchemaType from invalid String value workbookmetadata (#142)

Merged pull requests:

0.14.0 (9 December 2020)

This release improves compatibility with different spreadsheet formats, simplifies cell font and formatting APIs, and drops support for Carthage. Additionally, Xcode 11.3 on macOS is now the oldest supported version for building CoreXLSX.

Breaking changes:

Closed issues:

  • Unable to sort columns by intValue (#137)
  • Cannot initialize SchemaType from invalid String value (#136)
  • Odd cell.s value (#134)
  • 0.13.0 not available on Cocoapods (#133)
  • Unable to read xlsx file (#130)
  • Increase speed of parsing? (#127)
  • .xlsx File not opening with XLSXFile() (#125)
  • Getting Data From a specific Worksheet (#124)
  • ArchiveEntryNotFound error (#121)
  • Printing an empty cell? (#118)
  • Handling encrypted spreadsheets? (#101)

Merged pull requests:

0.13.0 (8 July 2020)

This is a bugfix release with breaking changes that make count property on MergeCells and all properties on Workbook.View optional. Many thanks to @Ethan-Chew and @robgtsoftware for reporting these issues!

Closed issues:

  • Printing Strings in a Column (#116)
  • File.parseWorksheet(at: path) dies (#94)

Merged pull requests:

0.12.0 (26 June 2020)

The is a bugfix release with a breaking change, it makes size and font properties optional on the RichText.Properties type to improve compatibility with certain spreadsheets. Thanks to @Ethan-Chew for reporting this in #116.

0.11.1 (12 June 2020)

This is a bugfix release that resolves an issue with parsing cells that contain time values. Thanks to @mb812 for reporting it!

Closed issues:

  • Error parsing cells with Time value (#114)
  • file.parseWorksheetPathsAndNames() wanna workbook: <#Workbook#> (#113)
  • XLSXFile not initialising when passing document directory path (#108)

Merged pull requests:

0.11.0 (30 May 2020)

This is a feature release that enables compatibility with CryptoOffice for decrypting spreadsheets. Additionally, with 0.11.0 you can easily get worksheet names with a new parseWorksheetPathsAndNames function on XLSXFile and get rich text values from cells with a new richStringValue function on Cell.

Due to technical issues, Swift 5.0 CI job for Linux has been removed, so compatibility with Swift 5.0 on Linux can no longer be guaranteed. While CoreXLSX may continue to work with Swift 5.0 on Linux, please update to Swift 5.1 or later to avoid unexpected issues.

Thanks to @kobylyanets and @duodo2412 for their contributions to this release!

New APIs:

  • XLSXFile now provides a new initializer that takes an argument of Data type. This allows opening in-memory documents, the primary example being spreadsheets decrypted with CryptoOffice.

  • XLSXFile now has a new parseWorksheetPathsAndNames function that returns an array of worksheet names and their paths in a given workbook, while previously you had to use parseWorksheetPaths and match paths manually with results of the parseWorkbooks function.

  • Cell now has a richStringValue function that takes a result of XLSXFile.parseSharedStrings function and produces an array of RichText values. This makes it easier to query rich text content from cells, while previously you had to match cell values against SharedStrings manually.

Breaking change:

Due to the introduction of the new XLSXFile.init(data:) initializer, the filepath property on XLSXFile no longer makes sense. This property was not used internally in any way and in-memory files don't have any filepaths. If you need to refer to a filepath of an .xlsx file after you've parsed from your filesystem, you should retain it manually and process it separately as you see fit.

Closed issues:

  • API for matching sheet names to sheet paths (#105)

Merged pull requests:

0.10.0 (6 April 2020)

This is a release with bugfixes and a few improvements to usability of the spreadsheet cell values API. Thanks to all contributors and users, you provide an invaluable amount of feedback and help!

New API:

The library now provides a simplified API to fetch string and date values from cells, which is much easier to use than the previous version (which is still available).

Here's how you can get all strings (including shared strings) in column "C" for example:

let sharedStrings = try file.parseSharedStrings()
let columnCStrings = worksheet.cells(atColumns: [ColumnReference("C")!])
  .compactMap { $0.stringValue(sharedStrings) }

To parse a date value from a cell, use dateValue property on the Cell type:

let columnCDates = worksheet.cells(atColumns: [ColumnReference("C")!])
  .compactMap { $0.dateValue }

Breaking change:

The type property on Cell is no longer of String type. It was previously used to check if cell's type is equal to "s", which denoted a shared string. You should use enum values for that since this release, which for shared strings now is (unsurprisingly) .sharedString.

Closed issues:

  • Xcode 11 installation and build (#90)
  • Reading Date values from cell (#89)
  • Can't open xml (#82)
  • Not able to read Numeric data from Sheet (#81)
  • Getting the value of a cell with number format? (#71)
  • Opening xlsx file Document Directory, Crashes (#52)

Merged pull requests:

0.9.1 (8 November 2019)

This release adds a new value to the Relationship.SchemaType enum, which fixes compatibility with some spreadsheet files. Thanks to @mxcl for the bug report!

Fixed bugs:

  • Cannot initialize SchemaType from invalid String value #87

Merged pull requests:

0.9.0 (19 October 2019)

This release adds Linux support and improves compatibility with .xlsx files that contain shared strings. Thanks to @CloseServer, @funnel20 and @LiewLi for bug reports and contributions!

Implemented enhancements:

  • Bump XMLCoder to 0.9.0, add CI jobs for Linux, Xcode 11 #86 (MaxDesiatov)

Fixed bugs:

  • Multi-line text in an Excel cell is parsed into single line in the SharedStrings property text #83

Closed issues:

  • I crashed while calling try file.parsesharedstrings () with an error #79

Merged pull requests:

0.8.0 (12 July 2019)

Feature and bugfix release that makes the library compatible with more spreadsheet types. It also adds support for Comments structure, which can be parsed with the new parseComments API.

Many thanks to @grin, @GoldenJoe and @LiewLi for reporting and fixing issues in this release.

Closed issues:

  • parseDocumentPaths has internal protection, but is needed by parseDocumentRelationships #74
  • Missing Documentation #73

Merged pull requests:

0.7.0 (25 May 2019)

Bugfix release that improves compatibility with different spreadsheet types.

Thanks to @grin for reporting and fixing issues in this release.

Breaking changes:

All properties on struct Format except fontId and numberFormatId are now optional.

Additions:

New borderId and fillId properties on struct Format.

Fixed bugs:

  • Can't get cell string #58
  • Can't load basic spreadsheets created in Google Docs #64
  • fillId and borderId attributes missing from CoreXLSX.Format #65

Merged pull requests:

0.6.1 (9 May 2019)

Bugfix release that adds case externalLink to Relationship.SchemaType improving .xlsx compatibility.

0.6.0 (2 May 2019)

This is a bugfix release with changes to the model API that improve compatibility with files containing formulas and varied shared string formats.

Specifically:

  • new struct Formula added with a corresponding property on struct Cell
  • property color on struct Properties became optional
  • properties on struct RichText became optional
  • new chartsheet case added to enum Relationship
  • richText on struct SharedStrings became an array, not optional

Closed issues:

  • Error Domain=NSCocoaErrorDomain Code=4865 "Expected String but found null instead." #59
  • Importing XLSX file #56
  • Error ParseCellContent #51
  • error parseWorksheet #50
  • Couldn't find end of Start Tag c #37

Merged pull requests:

0.5.0 (18 April 2019)

This is a release with API additions and bug fixes.

This release of CoreXLSX can be integrated as a Swift 5 module if you're using Xcode 10.2, but support for Swift 4.2 and earlier Xcode 10 versions is also maintained.

Compatibility is improved for big files and files that internally contain namespaced XML. A few other previously reported compatibility issues are now fixed. Many thanks to everyone who reported the issues, the improvements in this release wouldn't be possible without your contribution!

Breaking changes:

Several properties on the model types became optional when there's no guarantee they are always available in files generated by different apps and tools.

Additions:

Now you can parse style information from the archive with the new parseStyles() function. Please refer to the Styles model for more details. Please note that not all XLSX files contain style information, so you should be prepared to handle the errors thrown from parseStyles() function in that case.

Merged pull requests:

0.4.0 (7 February 2019)

This is a release with API improvements and bug fixes. A big thank you to everyone who provided bug reports and contributions that made this release possible!

Breaking changes:

  • A few properties on the model types were added with cleaner names and better fitting types. Most of the old versions of those properties were kept as deprecated, but you might get some breakage with optionality, where we couldn't find a good deprecation path.

Additions:

  • New parseSharedStrings function on XLSXFile allows you get values of cells with shared string value. Quite frequently those strings are unavailable and are only referenced in the original model types you get with parseWorksheet.

  • Previously when addressing cells and columns you had to use a stringly-typed API. It was also not very convenient for specifying a range of columns. This is now fixed with the new type-safe ColumnReference struct, which conforms to Comparable and Strideable.

  • Following the addition of an error context to XMLCoder, which is the main dependency of CoreXLSX, it is now exposed on struct XLSXFile. Pass a non-zero value to errorContextLength argument (default is 0) of XLSXFile initializer and you'll get a snippet of XML that failed to parse in the debug description of the error value.

  • Additional optional argument bufferSize was added to XLSXFile initializer as a response to previous reports about problems with zip file extraction. The default value is 10 MiB, which seems to be enough in most cases, but you can still try passing a larger value for bigger files if you see that an XML file stops abruptly in the middle of the file. Unfortunately, we haven't found a good way to adjust this value dynamically based on the file size, but a sufficiently large value should work for all files, which is the default.

  • Support for Carthage was added as well as support for tvOS and watchOS.

Bugfixes:

Some files that couldn't be previously parsed should now be handled better thanks to fixes in optionality and more properties added to the model types.

All changes:

0.3.0 (13 November 2018)

  • Improve Worksheet model property naming (#2). Some properties on Worksheet and its descendants had obscure names, most of that is fixed now with old names marked as deprecated.

0.2.3 (12 November 2018)

  • Refine README.md to include implementation details.

0.2.2 (11 November 2018)

  • Refine code comments and links in README.md

0.2.1 (11 November 2018)

  • Update README.md with instructions for Swift Package Manager.

0.2.0 (11 November 2018)

  • Cell by row/column filtering API with worksheetCache (#1) This new API allows users to filter all cells by a row or column reference. To avoid re-parsing of worksheets, a new private worksheetCache property is added on XLSXFile.

0.1.2 (10 November 2018)

  • Added macOS 10.11 deployment target to the podspec

0.1.1 (10 November 2018)

  • Improved README, fixed podspec

0.1.0 (10 November 2018)

  • First release with reading support for basic .xlsx files