Skip to content

Commit 4b32065

Browse files
antoinemzsSeb-MIGUELcorinnekrychMegafredorenovate[bot]
authored
[client] chore(merge): merge release current (#242)
* [clientpython] feat(contracts): add new ContractOutputType values for structured findings (#191) * [client-python] feat(pyoaev): add multi-tenancy (#205) * [client-python] chore(deps): update astral-sh/setup-uv action to v8.1.0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency isort to v8 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency slack to v5.2.3 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency black to v26 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency pydantic to >=2.13.3,<2.14.0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency pydantic-settings to >=2.14.0,<2.15.0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency wheel to >=0.47.0,<0.48.0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency setuptools to >=82.0.1,<82.1.0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency build to >=1.4.4,<1.5.0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency sphinx-autodoc-typehints to v3.6.1 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [client-python] chore(deps): update dependency pre-commit to >=4.6.0,<4.7.0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * [pyoaev] test(utils): fixing utils test (missing tenant id in log) --------- Co-authored-by: Sébastien MIGUEL <sebastien.miguel@filigran.io> Co-authored-by: Corinne Krych <corinne.krych@filigran.io> Co-authored-by: Frédéric BASLER <14902945+Megafredo@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ferdinand <8749389+guzmud@users.noreply.github.com>
1 parent 456b6e0 commit 4b32065

32 files changed

Lines changed: 1990 additions & 22 deletions

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
version: 2.1
33
orbs:
4-
slack: circleci/slack@5.2.0
4+
slack: circleci/slack@5.2.3
55
jobs:
66
ensure_formatting:
77
docker:

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v6
1919

2020
- name: Setup uv
21-
uses: astral-sh/setup-uv@v8.0.0
21+
uses: astral-sh/setup-uv@v8.1.0
2222
with:
2323
python-version: "3.12"
2424

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
========================================
2+
``pyoaev.apis.inject_expectation.model``
3+
========================================
4+
5+
.. automodule:: pyoaev.apis.inject_expectation.model
6+
7+
.. contents::
8+
:local:
9+
10+
.. currentmodule:: pyoaev.apis.inject_expectation.model
11+
12+
13+
Classes
14+
=======
15+
16+
- :py:class:`DetectionExpectation`:
17+
An expectation that is specific to Detection, i.e. that is used
18+
19+
- :py:class:`ExpectationTypeEnum`:
20+
Types of Expectations
21+
22+
- :py:class:`PreventionExpectation`:
23+
An expectation that is specific to Prevention, i.e. that is used
24+
25+
26+
.. autoclass:: DetectionExpectation
27+
:members:
28+
29+
.. rubric:: Inheritance
30+
.. inheritance-diagram:: DetectionExpectation
31+
:parts: 1
32+
33+
.. autoclass:: ExpectationTypeEnum
34+
:members:
35+
36+
.. rubric:: Inheritance
37+
.. inheritance-diagram:: ExpectationTypeEnum
38+
:parts: 1
39+
40+
.. autoclass:: PreventionExpectation
41+
:members:
42+
43+
.. rubric:: Inheritance
44+
.. inheritance-diagram:: PreventionExpectation
45+
:parts: 1
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
==================================
2+
``pyoaev.apis.inject_expectation``
3+
==================================
4+
5+
.. automodule:: pyoaev.apis.inject_expectation
6+
7+
.. contents::
8+
:local:
9+
10+
11+
Submodules
12+
==========
13+
14+
.. toctree::
15+
16+
pyoaev.apis.inject_expectation.model
17+
18+
.. currentmodule:: pyoaev.apis.inject_expectation

0 commit comments

Comments
 (0)