diff options
| author | Zsolt Kozaroczy <[email protected]> | 2023-10-30 09:45:42 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-30 09:45:42 +0100 |
| commit | 333331d54639685046d0aeb11a605a729edba656 (patch) | |
| tree | fda869bef91511ccf4a696deac8f3df620a045f5 | |
| parent | 51689ff2aa32acf855e6d07cf98da765b37d3fe0 (diff) | |
| parent | c61c39c456f910cae76adbac1e37326e82c47a01 (diff) | |
| download | caxlsx-333331d54639685046d0aeb11a605a729edba656.tar.gz caxlsx-333331d54639685046d0aeb11a605a729edba656.zip | |
Version bump to 4.0.0
| -rw-r--r-- | CHANGELOG.md | 23 | ||||
| -rw-r--r-- | lib/axlsx/version.rb | 2 |
2 files changed, 14 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 476db005..f3751ff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,19 @@ CHANGELOG --------- -- **Unreleased**: 4.0.0 +- **Unreleased** + + +- **October.30.23**: 4.0.0 + - [PR #189](https://github.com/caxlsx/caxlsx/pull/189) **breaking** Make `Axlsx::escape_formulas` true by default to mitigate [Formula Injection](https://www.owasp.org/index.php/CSV_Injection) vulnerabilities. + - [PR #212](https://github.com/caxlsx/caxlsx/pull/212) **breaking** Raise exception if `axlsx_styler` gem is present as its code was merged directly into `caxlsx` in v3.3.0 + - [PR #225](https://github.com/caxlsx/caxlsx/pull/225) **breaking** Remove ability to set `u=` to true in favor of using :single or one of the other underline options - Drop support for Ruby versions < 2.6 - - Added frozen string literals - - Fix `SimpleTypedList#to_a` and `SimpleTypedList#to_ary` returning the internal list instance - - Remove ability to set `u=` to true in favor of using :single or one of the other underline options - - Fix `Workbook#sheet_by_name` not returning sheets with encoded characters in the name - - Raise exception if `axlsx_styler` gem is present as its code was merged directly into `caxlsx` in v3.3.0 - - Add 'SortState' and 'SortCondition' classes to the 'AutoFilter' class to add sorting to the generated file. - - [PR #189](https://github.com/caxlsx/caxlsx/pull/189) - Make `Axlsx::escape_formulas` true by default to mitigate [Formula Injection](https://www.owasp.org/index.php/CSV_Injection) vulnerabilities. - - [PR #269](https://github.com/caxlsx/caxlsx/pull/269) - Add optional interpolation points to icon sets - - [PR #304](https://github.com/caxlsx/caxlsx/pull/304) - Fix data validations for none type validations + - [PR #219](https://github.com/caxlsx/caxlsx/pull/219) Added frozen string literals + - [PR #223](https://github.com/caxlsx/caxlsx/pull/223) Fix `SimpleTypedList#to_a` and `SimpleTypedList#to_ary` returning the internal list instance + - [PR #239](https://github.com/caxlsx/caxlsx/pull/239) Fix `Workbook#sheet_by_name` not returning sheets with encoded characters in the name + - [PR #286](https://github.com/caxlsx/caxlsx/pull/286) Add 'SortState' and 'SortCondition' classes to the 'AutoFilter' class to add sorting to the generated file. + - [PR #269](https://github.com/caxlsx/caxlsx/pull/269) Add optional interpolation points to icon sets + - [PR #304](https://github.com/caxlsx/caxlsx/pull/304) Fix data validations for none type validations - **April.23.23**: 3.4.1 - [PR #209](https://github.com/caxlsx/caxlsx/pull/209) - Revert characters other than `=` being considered as formulas. diff --git a/lib/axlsx/version.rb b/lib/axlsx/version.rb index 4c284c7f..bbd35cd8 100644 --- a/lib/axlsx/version.rb +++ b/lib/axlsx/version.rb @@ -2,5 +2,5 @@ module Axlsx # The current version - VERSION = "3.4.1" + VERSION = "4.0.0" end |
