diff --git a/CHANGELOG.md b/CHANGELOG.md index e76bd45..3876a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,27 @@ For unreleased changes see [WHATSNEW.md](WHATSNEW.md) # [Released] +## [1.1.0] - 2023-10-18 + +### Added + +- Add support for Python 3.12 +- Option `--smtp` for `fmg assign` and `fmg_post` +- Method `inventory.get_item()` to only get one single item from the inventory + +### Fixed + +- Add dev dependencies to docs requirements file (due to readthedocs build error) +- Update to urllib3 2.0.7 due to dependabot security warning +- No more Traceback for FortiGates without hostname or token specified +- Result.print_result_as_table() gives error with empty Response. Now it just prints an empty line +if no results were pushed. + +### Changed + +- Disable caching in Github Actions due to an error since Python 3.12 +- `fortimanager.post()` now returns list of errors instead of just the number of errors + ## [1.0.3] - 2023-08-17 ### Added diff --git a/WHATSNEW.md b/WHATSNEW.md index 0a7fa15..5743148 100644 --- a/WHATSNEW.md +++ b/WHATSNEW.md @@ -1,3 +1,6 @@ + +## [1.1.0] - 2023-10-18 + ### Added - Add support for Python 3.12 @@ -7,7 +10,7 @@ ### Fixed - Add dev dependencies to docs requirements file (due to readthedocs build error) -- Update to urllib3 2.0.6 due to dependabot security warning +- Update to urllib3 2.0.7 due to dependabot security warning - No more Traceback for FortiGates without hostname or token specified - Result.print_result_as_table() gives error with empty Response. Now it just prints an empty line if no results were pushed. @@ -16,6 +19,3 @@ if no results were pushed. - Disable caching in Github Actions due to an error since Python 3.12 - `fortimanager.post()` now returns list of errors instead of just the number of errors - -### Removed - diff --git a/fotoobo/__init__.py b/fotoobo/__init__.py index 2997c1b..06a82a8 100644 --- a/fotoobo/__init__.py +++ b/fotoobo/__init__.py @@ -8,4 +8,4 @@ from .fortinet import FortiAnalyzer, FortiClientEMS, FortiGate, FortiManager __all__ = ["FortiAnalyzer", "FortiClientEMS", "FortiGate", "FortiManager"] -__version__: str = "1.0.3" +__version__: str = "1.1.0" diff --git a/pyproject.toml b/pyproject.toml index 3e8fe4c..d86f586 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "fotoobo" -version = "1.0.3" +version = "1.1.0" description = "The awesome Fortinet Toolbox" authors = ["Patrik Spiess ", "Lukas Murer-Jäckle "] readme = "README.md"