Skip to content

Commit

Permalink
Showing 15 changed files with 52 additions and 57 deletions.
4 changes: 2 additions & 2 deletions components/api_server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ optional-dependencies.dev = [
"pydantic==2.8.2", # Needed for importing the data model in the tests from the shared code component
"types-cryptography==3.3.23.2",
"types-ldap3==2.9.13.20240205",
"types-requests==2.32.0.20240622",
"types-requests==2.32.0.20240712",
"unittest-xml-reporting==3.2.0", # Needed to generate JUnit XML output for Sonarcloud.io
]
optional-dependencies.tools = [
@@ -33,7 +33,7 @@ optional-dependencies.tools = [
"mypy==1.10.1",
"pip-audit==2.7.3",
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vulture==2.11",
]

6 changes: 3 additions & 3 deletions components/api_server/requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -725,9 +725,9 @@ types-pyasn1==0.6.0.20240402 \
--hash=sha256:5d54dcb33f69dd269071ca098e923ac20c5f03c814631fa7f3ed9ee035a5da3a \
--hash=sha256:848d01e7313c200acc035a8b3d377fe7b2aecbe77f2be49eb160a7f82835aaaf
# via types-ldap3
types-requests==2.32.0.20240622 \
--hash=sha256:97bac6b54b5bd4cf91d407e62f0932a74821bc2211f22116d9ee1dd643826caf \
--hash=sha256:ed5e8a412fcc39159d6319385c009d642845f250c63902718f605cd90faade31
types-requests==2.32.0.20240712 \
--hash=sha256:90c079ff05e549f6bf50e02e910210b98b8ff1ebdd18e19c873cd237737c1358 \
--hash=sha256:f754283e152c752e46e70942fa2a146b5bc70393522257bb85bd1ef7e019dcc3
# via api-server (pyproject.toml)
typing-extensions==4.12.2 \
--hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \
2 changes: 1 addition & 1 deletion components/api_server/src/healthcheck.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
api_server_port = getenv("API_SERVER_PORT", "5001")
exit_code = 1
try:
with urlopen(f"http://localhost:{api_server_port}/api/health") as response: # nosec B310 # noqa: S310
with urlopen(f"http://localhost:{api_server_port}/api/health") as response: # nosec B310
exit_code = 0 if response.status == HTTPStatus.OK else 1
finally:
sys.exit(exit_code)
2 changes: 1 addition & 1 deletion components/collector/pyproject.toml
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ optional-dependencies.tools = [
"mypy==1.10.1",
"pip-audit==2.7.3",
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vulture==2.11",
]

59 changes: 27 additions & 32 deletions components/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions components/frontend/package.json
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.6.0",
"@eslint/js": "^9.7.0",
"@testing-library/dom": "10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
@@ -58,10 +58,10 @@
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.8.0",
"prettier": "^3.3.2",
"prettier": "^3.3.3",
"react-scripts": "5.0.1"
},
"prettier": {
2 changes: 1 addition & 1 deletion components/frontend/src/widgets/WarningMessage.js
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import { Message } from "../semantic_ui_react_wrappers"
export function WarningMessage(props) {
// Show a warning message if showIf is true or undefined
const { showIf, ...messageProps } = props
return showIf ?? true ? <Message warning {...messageProps} /> : null
return (showIf ?? true) ? <Message warning {...messageProps} /> : null
}
WarningMessage.propTypes = {
showIf: bool,
2 changes: 1 addition & 1 deletion components/notifier/pyproject.toml
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ optional-dependencies.tools = [
"mypy==1.10.1",
"pip-audit==2.7.3",
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vulture==2.11",
]

2 changes: 1 addition & 1 deletion components/shared_code/pyproject.toml
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ optional-dependencies.tools = [
"pip-audit==2.7.3",
"pydantic==2.8.2", # Needed because pipx needs to inject Pydantic into the mpyp venv, see ci/quality.sh
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vulture==2.11",
]

2 changes: 1 addition & 1 deletion docs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ optional-dependencies.tools = [
"pip-audit==2.7.3",
"pydantic==2.8.2", # Needed because pipx needs to inject Pydantic into the mpyp venv, see ci/quality.sh
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vale==3.0.3.0", # Documentation grammar and style checker
"vulture==2.11",
]
2 changes: 1 addition & 1 deletion release/pyproject.toml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ optional-dependencies.tools = [
"mypy==1.10.1",
"pip-audit==2.7.3",
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vulture==2.11",
]

4 changes: 2 additions & 2 deletions tests/application_tests/pyproject.toml
Original file line number Diff line number Diff line change
@@ -15,15 +15,15 @@ optional-dependencies.dev = [
"pip==24.1.2",
"pip-tools==7.4.1", # To add hashes to requirements
"pipx==1.6.0",
"types-requests==2.32.0.20240622",
"types-requests==2.32.0.20240712",
]
optional-dependencies.tools = [
"bandit==1.7.9",
"fixit==2.1.0",
"mypy==1.10.1",
"pip-audit==2.7.3",
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vulture==2.11",
]

6 changes: 3 additions & 3 deletions tests/application_tests/requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -210,9 +210,9 @@ trio-websocket==0.11.1 \
--hash=sha256:18c11793647703c158b1f6e62de638acada927344d534e3c7628eedcb746839f \
--hash=sha256:520d046b0d030cf970b8b2b2e00c4c2245b3807853ecd44214acd33d74581638
# via selenium
types-requests==2.32.0.20240622 \
--hash=sha256:97bac6b54b5bd4cf91d407e62f0932a74821bc2211f22116d9ee1dd643826caf \
--hash=sha256:ed5e8a412fcc39159d6319385c009d642845f250c63902718f605cd90faade31
types-requests==2.32.0.20240712 \
--hash=sha256:90c079ff05e549f6bf50e02e910210b98b8ff1ebdd18e19c873cd237737c1358 \
--hash=sha256:f754283e152c752e46e70942fa2a146b5bc70393522257bb85bd1ef7e019dcc3
# via application-tests (pyproject.toml)
typing-extensions==4.12.2 \
--hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \
4 changes: 2 additions & 2 deletions tests/feature_tests/pyproject.toml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ optional-dependencies.dev = [
"pip==24.1.2",
"pip-tools==7.4.1", # To add hashes to requirements
"pipx==1.6.0",
"types-requests==2.32.0.20240622",
"types-requests==2.32.0.20240712",
"unittest-xml-reporting==3.2.0", # Needed to generate JUnit XML output for Sonarcloud.io
]
optional-dependencies.tools = [
@@ -28,7 +28,7 @@ optional-dependencies.tools = [
"mypy==1.10.1",
"pip-audit==2.7.3",
"pyproject-fmt==2.1.4",
"ruff==0.5.1",
"ruff==0.5.2",
"vulture==2.11",
]

6 changes: 3 additions & 3 deletions tests/feature_tests/requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -533,9 +533,9 @@ six==1.16.0 \
# via
# behave
# parse-type
types-requests==2.32.0.20240622 \
--hash=sha256:97bac6b54b5bd4cf91d407e62f0932a74821bc2211f22116d9ee1dd643826caf \
--hash=sha256:ed5e8a412fcc39159d6319385c009d642845f250c63902718f605cd90faade31
types-requests==2.32.0.20240712 \
--hash=sha256:90c079ff05e549f6bf50e02e910210b98b8ff1ebdd18e19c873cd237737c1358 \
--hash=sha256:f754283e152c752e46e70942fa2a146b5bc70393522257bb85bd1ef7e019dcc3
# via feature-tests (pyproject.toml)
typing-extensions==4.12.2 \
--hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \

0 comments on commit 4fde357

Please sign in to comment.