Skip to content

Commit

Permalink
Merge pull request #161 from patrikspiess/main
Browse files Browse the repository at this point in the history
🔖 Commit version v1.1.0
  • Loading branch information
patrikspiess authored Oct 18, 2023
2 parents b858936 + 3c313a8 commit add4791
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions WHATSNEW.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

## [1.1.0] - 2023-10-18

### Added

- Add support for Python 3.12
Expand All @@ -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.
Expand All @@ -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

2 changes: 1 addition & 1 deletion fotoobo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>", "Lukas Murer-Jäckle <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit add4791

Please sign in to comment.