Skip to content

Commit 96e43a5

Browse files
authored
v 1.2.0 (#82)
1 parent f3acbd6 commit 96e43a5

File tree

125 files changed

+2722
-703
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+2722
-703
lines changed

.flake8

Lines changed: 0 additions & 12 deletions
This file was deleted.

.gitignore

Lines changed: 5 additions & 101 deletions
Original file line numberDiff line numberDiff line change
@@ -3,123 +3,27 @@ test.py
33

44
# Byte-compiled / optimized / DLL files
55
__pycache__/
6-
*.py[cod]
7-
*$py.class
8-
9-
# C extensions
10-
*.so
116

127
# Distribution / packaging
13-
.Python
14-
build/
15-
develop-eggs/
168
dist/
17-
downloads/
18-
eggs/
19-
.eggs/
20-
lib/
21-
lib64/
22-
parts/
23-
sdist/
24-
var/
25-
wheels/
26-
pip-wheel-metadata/
27-
share/python-wheels/
289
*.egg-info/
29-
.installed.cfg
30-
*.egg
31-
MANIFEST
32-
33-
# PyInstaller
34-
# Usually these files are written by a python script from a template
35-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36-
*.manifest
37-
*.spec
38-
39-
# Installer logs
40-
pip-log.txt
41-
pip-delete-this-directory.txt
4210

4311
# Unit test / coverage reports
44-
htmlcov/
4512
.tox/
46-
.nox/
4713
.coverage
48-
.coverage.*
49-
.cache
50-
nosetests.xml
51-
coverage.xml
52-
*.cover
53-
*.py,cover
54-
.hypothesis/
5514
.pytest_cache/
5615

57-
# Translations
58-
*.mo
59-
*.pot
60-
61-
# Django stuff:
62-
*.log
63-
local_settings.py
64-
db.sqlite3
65-
db.sqlite3-journal
66-
67-
# Flask stuff:
68-
instance/
69-
.webassets-cache
70-
71-
# Scrapy stuff:
72-
.scrapy
73-
7416
# Sphinx documentation
7517
docs/_build/
7618

77-
# PyBuilder
78-
target/
79-
80-
# Jupyter Notebook
81-
.ipynb_checkpoints
82-
83-
# IPython
84-
profile_default/
85-
ipython_config.py
86-
87-
# pyenv
88-
.python-version
89-
90-
# pipenv
91-
Pipfile.lock
92-
93-
# celery beat schedule file
94-
celerybeat-schedule
95-
96-
# SageMath parsed files
97-
*.sage.py
98-
9919
# Environments
100-
.idea
101-
.env
10220
.venv
103-
env/
104-
venv/
105-
ENV/
106-
env.bak/
107-
venv.bak/
10821

109-
# Spyder project settings
110-
.spyderproject
111-
.spyproject
22+
# Vscode
23+
.vscode/
11224

113-
# Rope project settings
114-
.ropeproject
25+
# Ruff
26+
.ruff_cache/
11527

116-
# mkdocs documentation
117-
/site
118-
119-
# mypy
28+
# Mypy
12029
.mypy_cache/
121-
.dmypy.json
122-
dmypy.json
123-
124-
# Pyre type checker
125-
.pyre/

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v2.3.0
3+
rev: v5.0.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
@@ -10,9 +10,9 @@ repos:
1010
- id: check-toml
1111
- id: check-yaml
1212
- id: check-added-large-files
13-
- id: flake8
14-
- id: double-quote-string-fixer
15-
- repo: https://github.com/psf/black
16-
rev: 19.10b0
13+
- repo: https://github.com/astral-sh/ruff-pre-commit
14+
rev: v0.9.5
1715
hooks:
18-
- id: black
16+
- id: ruff
17+
args: [ '--fix' ]
18+
- id: ruff-format

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 1.2.0 [2025-02-17]
2+
3+
## New
4+
5+
* Add support for Cloud Delivered FMC (cdFMC) (#79, #80)
6+
* Add helper function `get_domain_name` (#74)
7+
8+
## Fixed
9+
10+
* Missing filtering support for Network Group (#81)
11+
* Corrected API Endpoint for `auditrecords` (#67)
12+
* Ensure version response contains processable information (#77)
13+
* Standard community fix (#78)
14+
* Missing RaVPN policy hook
15+
* Other minor fixes
16+
117
# 1.1.0 [2023-03-19]
218

319
## New
@@ -98,7 +114,7 @@
98114
* troubleshoot.packettracer.file.delete(...)
99115
* troubleshoot.packettracer.file.details.get(...)
100116
* troubleshoot.packettracer.trace(...)
101-
* troubleshoot.packettracer.pcaptrace(...)
117+
* troubleshoot.packettracer.pcaptrace(...)
102118
* update.revert(...)
103119
* user.duoconfig.get(...)
104120
* user.duoconfig.update(...)

Pipfile

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)