mirror of
https://github.com/fhswf/aki_prj23_transparenzregister.git
synced 2026-02-13 22:17:38 +01:00
392b85347a778f8e7c42babee6eeaa1f8dd2d4bc
605 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
bcb6df8e5d | Added 2d and 3d network to dash | ||
|
|
e45f3a3b98 | Added 3D Network | ||
|
|
077846d3be | NetworkX experiments | ||
|
|
5f4f732eb2 | Added iGraph | ||
|
|
5cd03306d6 | feat: NetworkX in Plotly Dash | ||
|
|
afb1c70460 | added networkX styling | ||
|
|
21c9e99ae3 | Extracted Data-Extraction Metrhods into separate Files | ||
|
|
e81b5fb518 | Integrated NetworkX graphs into App | ||
|
|
6a313f9803 | On branch feature/visualize-verflechtungen | ||
|
|
af0578bb00 | feat: NetworkX in Plotly Dash | ||
|
|
b9e9475050 | added networkX styling | ||
|
|
b06d553f75 | Extracted Data-Extraction Metrhods into separate Files | ||
|
|
3301726dea | Integrated NetworkX graphs into App | ||
|
|
6585a0ee11 | On branch feature/visualize-verflechtungen | ||
|
|
d3158c4592 |
Update pre-commit hooks (#360)
Update versions of pre-commit hooks to latest version. Co-authored-by: philipp-horstenkamp <philipp-horstenkamp@users.noreply.github.com> |
||
|
|
a24086f6e1 |
build(deps-dev): bump mypy from 1.6.1 to 1.7.0 (#359)
Bumps [mypy](https://github.com/python/mypy) from 1.6.1 to 1.7.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's changelog</a>.</em></p> <blockquote> <h1>Mypy Release Notes</h1> <h2>Next release</h2> <p>Stubgen will now include <code>__all__</code> in its output if it is in the input file (PR <a href="https://redirect.github.com/python/mypy/pull/16356">16356</a>).</p> <h2>Mypy 1.7</h2> <p>We’ve just uploaded mypy 1.7 to the Python Package Index (<a href="https://pypi.org/project/mypy/">PyPI</a>). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:</p> <pre><code>python3 -m pip install -U mypy </code></pre> <p>You can read the full documentation for this release on <a href="http://mypy.readthedocs.io">Read the Docs</a>.</p> <h4>Using TypedDict for <code>**kwargs</code> Typing</h4> <p>Mypy now has support for using <code>Unpack[...]</code> with a TypedDict type to annotate <code>**kwargs</code> arguments enabled by default. Example:</p> <pre><code># Or 'from typing_extensions import ...' from typing import TypedDict, Unpack <p>class Person(TypedDict): name: str age: int</p> <p>def foo(**kwargs: Unpack[Person]) -> None: ...</p> <p>foo(name="x", age=1) # Ok foo(name=1) # Error </code></pre></p> <p>The definition of <code>foo</code> above is equivalent to the one below, with keyword-only arguments <code>name</code> and <code>age</code>:</p> <pre><code>def foo(*, name: str, age: int) -> None: ... </code></pre> <p>Refer to <a href="https://peps.python.org/pep-0692/">PEP 692</a> for more information. Note that unlike in the current version of the PEP, mypy always treats signatures with <code>Unpack[SomeTypedDict]</code> as equivalent to their expanded forms with explicit keyword arguments, and there aren't special type checking rules for TypedDict arguments.</p> <p>This was contributed by Ivan Levkivskyi back in 2022 (PR <a href="https://redirect.github.com/python/mypy/pull/13471">13471</a>).</p> <h4>TypeVarTuple Support Enabled (Experimental)</h4> <p>Mypy now has support for variadic generics (TypeVarTuple) enabled by default, as an experimental feature. Refer to <a href="https://peps.python.org/pep-0646/">PEP 646</a> for the details.</p> <p>TypeVarTuple was implemented by Jared Hance and Ivan Levkivskyi over several mypy releases, with help from Jukka Lehtosalo.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/mypy/commit/f6b9972329d5d68f6defc92a10cc4c3bc339c27b"><code>f6b9972</code></a> Remove +dev from version</li> <li><a href="https://github.com/python/mypy/commit/62bcae2d9bad12c5d3b5dda23dc031e1c7ddf136"><code>62bcae2</code></a> Fix handling of tuple type context with unpacks (<a href="https://redirect.github.com/python/mypy/issues/16444">#16444</a>)</li> <li><a href="https://github.com/python/mypy/commit/c22294a80b000ea673e407994ac5111644944486"><code>c22294a</code></a> Handle TypeVarTupleType when checking overload constraints (<a href="https://redirect.github.com/python/mypy/issues/16428">#16428</a>)</li> <li><a href="https://github.com/python/mypy/commit/8813968abb657113df5edfa207db46b0649c9dce"><code>8813968</code></a> Fix type narrowing in lambda expressions (<a href="https://redirect.github.com/python/mypy/issues/16407">#16407</a>)</li> <li><a href="https://github.com/python/mypy/commit/681e54cfe1642adddc41c4ff11198b8bc955d5af"><code>681e54c</code></a> Fix crash on unpack call special-casing (<a href="https://redirect.github.com/python/mypy/issues/16381">#16381</a>)</li> <li><a href="https://github.com/python/mypy/commit/f68f46351e30644aefd19900ba1634595adc1d09"><code>f68f463</code></a> Fix file reloading in dmypy with --export-types (<a href="https://redirect.github.com/python/mypy/issues/16359">#16359</a>)</li> <li><a href="https://github.com/python/mypy/commit/5624f401b3786ebdbe167c27297ed778cce3faa5"><code>5624f40</code></a> Fix daemon crash caused by deleted submodule (<a href="https://redirect.github.com/python/mypy/issues/16370">#16370</a>)</li> <li><a href="https://github.com/python/mypy/commit/ad0e183b0df7cc3dd94d9e1cd6f5710859beda96"><code>ad0e183</code></a> Enable Unpack/TypeVarTuple support (<a href="https://redirect.github.com/python/mypy/issues/16354">#16354</a>)</li> <li><a href="https://github.com/python/mypy/commit/b064a5c183b53a84d895bb8e3c36a3a74e24be9c"><code>b064a5c</code></a> Fix dmypy inspect on Windows (<a href="https://redirect.github.com/python/mypy/issues/16355">#16355</a>)</li> <li><a href="https://github.com/python/mypy/commit/4e30e896486b774cdecaef6d3521a585b8acf8bc"><code>4e30e89</code></a> Fix dmypy inspect for namespace packages (<a href="https://redirect.github.com/python/mypy/issues/16357">#16357</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python/mypy/compare/v1.6.1...v1.7.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
2e30657c89 |
build(deps-dev): bump mypy from 1.6.1 to 1.7.0
Bumps [mypy](https://github.com/python/mypy) from 1.6.1 to 1.7.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.6.1...v1.7.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
39debf28f0 |
Update pre-commit hooks (#356)
Update versions of pre-commit hooks to latest version. Co-authored-by: philipp-horstenkamp <philipp-horstenkamp@users.noreply.github.com> |
||
|
|
4716eb9fe2 |
Added a frist rollback function on a pending Rollback error. (#346)
Possible fix for #341. Rolls back stuck SQL sessions. This only helps against the symptomps not the cause. |
||
|
|
97fc7f01b5 | Added some redirects to home page. (#348) | ||
|
|
3ce49c9e19 | Added requirements.txt to gitignore (#347) | ||
|
|
fe02b0f6c5 | Added an error handling when the sql session crashes in process on network connection lost. (#352) | ||
|
|
ed08ffbfe1 |
build(deps-dev): bump types-setuptools from 68.2.0.0 to 68.2.0.1 (#355)
Bumps [types-setuptools](https://github.com/python/typeshed) from 68.2.0.0 to 68.2.0.1. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/python/typeshed/commits">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
83002cfc8b |
build(deps-dev): bump ruff from 0.1.4 to 0.1.5 (#354)
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.4 to 0.1.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/releases">ruff's releases</a>.</em></p> <blockquote> <h2>v0.1.5</h2> <h2>Changes</h2> <h3>Preview features</h3> <ul> <li>[<code>flake8-bandit</code>] Implement <code>mako-templates</code> (<code>S702</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8533">#8533</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO105</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8490">#8490</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO109</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8534">#8534</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO110</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8537">#8537</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO115</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8486">#8486</a>)</li> <li>[<code>refurb</code>] Implement <code>type-none-comparison</code> (<code>FURB169</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8487">#8487</a>)</li> <li>Flag all comparisons against builtin types in <code>E721</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8491">#8491</a>)</li> <li>Make <code>SIM118</code> fix as safe when the expression is a known dictionary (<a href="https://redirect.github.com/astral-sh/ruff/pull/8525">#8525</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>Fix multiline lambda expression statement formatting (<a href="https://redirect.github.com/astral-sh/ruff/pull/8466">#8466</a>)</li> </ul> <h3>CLI</h3> <ul> <li>Add hidden <code>--extension</code> to override inference of source type from file extension (<a href="https://redirect.github.com/astral-sh/ruff/pull/8373">#8373</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Account for selector specificity when merging <code>extend_unsafe_fixes</code> and <code>override extend_safe_fixes</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8444">#8444</a>)</li> <li>Add support for disabling cache with <code>RUFF_NO_CACHE</code> environment variable (<a href="https://redirect.github.com/astral-sh/ruff/pull/8538">#8538</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>E721</code>] Flag comparisons to <code>memoryview</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8485">#8485</a>)</li> <li>Allow collapsed-ellipsis bodies in other statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/8499">#8499</a>)</li> <li>Avoid <code>D301</code> autofix for <code>u</code> prefixed strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8495">#8495</a>)</li> <li>Only flag <code>flake8-trio</code> rules when <code>trio</code> import is present (<a href="https://redirect.github.com/astral-sh/ruff/pull/8550">#8550</a>)</li> <li>Reject more syntactically invalid Python programs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8524">#8524</a>)</li> <li>Avoid raising <code>TRIO115</code> violations for <code>trio.sleep(...)</code> calls with non-number values (<a href="https://redirect.github.com/astral-sh/ruff/pull/8532">#8532</a>)</li> <li>Fix <code>F841</code> false negative on assignment to multiple variables (<a href="https://redirect.github.com/astral-sh/ruff/pull/8489">#8489</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Fix link to isort <code>known-first-party</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8562">#8562</a>)</li> <li>Add notes on fix safety to a few rules (<a href="https://redirect.github.com/astral-sh/ruff/pull/8500">#8500</a>)</li> <li>Add missing toml config tabs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8512">#8512</a>)</li> <li>Add instructions for configuration of Emacs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8488">#8488</a>)</li> <li>Improve detail link contrast in dark mode (<a href="https://redirect.github.com/astral-sh/ruff/pull/8548">#8548</a>)</li> <li>Fix typo in example (<a href="https://redirect.github.com/astral-sh/ruff/pull/8506">#8506</a>)</li> <li>Added tabs for configuration files in the documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8480">#8480</a>)</li> <li>Recommend <code>project.requires-python</code> over <code>target-version</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8513">#8513</a>)</li> <li>Add singleton escape hatch to <code>B008</code> documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8501">#8501</a>)</li> <li>Fix tab configuration docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8502">#8502</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's changelog</a>.</em></p> <blockquote> <h2>0.1.5</h2> <h3>Preview features</h3> <ul> <li>[<code>flake8-bandit</code>] Implement <code>mako-templates</code> (<code>S702</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8533">#8533</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO105</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8490">#8490</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO109</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8534">#8534</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO110</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8537">#8537</a>)</li> <li>[<code>flake8-trio</code>] Implement <code>TRIO115</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8486">#8486</a>)</li> <li>[<code>refurb</code>] Implement <code>type-none-comparison</code> (<code>FURB169</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8487">#8487</a>)</li> <li>Flag all comparisons against builtin types in <code>E721</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8491">#8491</a>)</li> <li>Make <code>SIM118</code> fix as safe when the expression is a known dictionary (<a href="https://redirect.github.com/astral-sh/ruff/pull/8525">#8525</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>Fix multiline lambda expression statement formatting (<a href="https://redirect.github.com/astral-sh/ruff/pull/8466">#8466</a>)</li> </ul> <h3>CLI</h3> <ul> <li>Add hidden <code>--extension</code> to override inference of source type from file extension (<a href="https://redirect.github.com/astral-sh/ruff/pull/8373">#8373</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Account for selector specificity when merging <code>extend_unsafe_fixes</code> and <code>override extend_safe_fixes</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8444">#8444</a>)</li> <li>Add support for disabling cache with <code>RUFF_NO_CACHE</code> environment variable (<a href="https://redirect.github.com/astral-sh/ruff/pull/8538">#8538</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>E721</code>] Flag comparisons to <code>memoryview</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8485">#8485</a>)</li> <li>Allow collapsed-ellipsis bodies in other statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/8499">#8499</a>)</li> <li>Avoid <code>D301</code> autofix for <code>u</code> prefixed strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8495">#8495</a>)</li> <li>Only flag <code>flake8-trio</code> rules when <code>trio</code> import is present (<a href="https://redirect.github.com/astral-sh/ruff/pull/8550">#8550</a>)</li> <li>Reject more syntactically invalid Python programs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8524">#8524</a>)</li> <li>Avoid raising <code>TRIO115</code> violations for <code>trio.sleep(...)</code> calls with non-number values (<a href="https://redirect.github.com/astral-sh/ruff/pull/8532">#8532</a>)</li> <li>Fix <code>F841</code> false negative on assignment to multiple variables (<a href="https://redirect.github.com/astral-sh/ruff/pull/8489">#8489</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Fix link to isort <code>known-first-party</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8562">#8562</a>)</li> <li>Add notes on fix safety to a few rules (<a href="https://redirect.github.com/astral-sh/ruff/pull/8500">#8500</a>)</li> <li>Add missing toml config tabs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8512">#8512</a>)</li> <li>Add instructions for configuration of Emacs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8488">#8488</a>)</li> <li>Improve detail link contrast in dark mode (<a href="https://redirect.github.com/astral-sh/ruff/pull/8548">#8548</a>)</li> <li>Fix typo in example (<a href="https://redirect.github.com/astral-sh/ruff/pull/8506">#8506</a>)</li> <li>Added tabs for configuration files in the documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8480">#8480</a>)</li> <li>Recommend <code>project.requires-python</code> over <code>target-version</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8513">#8513</a>)</li> <li>Add singleton escape hatch to <code>B008</code> documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8501">#8501</a>)</li> <li>Fix tab configuration docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8502">#8502</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ruff/commit/3956f38999ff7c036e9d1ac9410b3eff834cb158"><code>3956f38</code></a> Prepare release 0.1.5 (<a href="https://redirect.github.com/astral-sh/ruff/issues/8570">#8570</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/fe9727ac38db6d3b8ab3efcbf4e1766eb2ec9736"><code>fe9727a</code></a> Add <code>rooster</code> release management configuration and instructions (<a href="https://redirect.github.com/astral-sh/ruff/issues/8567">#8567</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/3ebaca52464e1db3d808adca9c3de09b90dabfaf"><code>3ebaca5</code></a> Doc: Fix link to isort <code>known-first-party</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/8562">#8562</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/7391f74cbcf24b9c09244a3376bbb2a0ca8929d4"><code>7391f74</code></a> Add hidden <code>--extension</code> to override inference of source type from file exten...</li> <li><a href="https://github.com/astral-sh/ruff/commit/71e93a9fa40d98414c7859b827dac7d6eda7d523"><code>71e93a9</code></a> Only flag flake8-trio rule when trio is present (<a href="https://redirect.github.com/astral-sh/ruff/issues/8550">#8550</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/e2c7b1ece6db83af919c4c2e006bf00496d7fa73"><code>e2c7b1e</code></a> [TRIO] Add TRIO109 rule (<a href="https://redirect.github.com/astral-sh/ruff/issues/8534">#8534</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/621e98f4523267526391947154bb9f64fdb8c9c6"><code>621e98f</code></a> Improve detail link contrast in dark mode (<a href="https://redirect.github.com/astral-sh/ruff/issues/8548">#8548</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/0126f74c29c5647295bebf4b42d79f12b7ffd8e4"><code>0126f74</code></a> Add TRIO110 rule (<a href="https://redirect.github.com/astral-sh/ruff/issues/8537">#8537</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/fce9f634180989089d6f761913b34d7219a10138"><code>fce9f63</code></a> [<code>flake8-bandit</code>] Implement <code>mako-templates</code> (<code>S702</code>) (<a href="https://redirect.github.com/astral-sh/ruff/issues/8533">#8533</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/ce549e75bc93e200f82b3bde48167efb60f8f750"><code>ce549e7</code></a> Update pre-commit documentation (<a href="https://redirect.github.com/astral-sh/ruff/issues/8545">#8545</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ruff/compare/v0.1.4...v0.1.5">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
d6b5b58f33 | Weekly Meeting Notes 2023-10-26 | ||
|
|
8f7eecb513 |
build(deps-dev): bump types-setuptools from 68.2.0.0 to 68.2.0.1
Bumps [types-setuptools](https://github.com/python/typeshed) from 68.2.0.0 to 68.2.0.1. - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: types-setuptools dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
ca88f5dd79 |
build(deps-dev): bump ruff from 0.1.4 to 0.1.5
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.4 to 0.1.5. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.1.4...v0.1.5) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
029e0dba15 |
Update pre-commit hooks (#353)
Update versions of pre-commit hooks to latest version. Co-authored-by: philipp-horstenkamp <philipp-horstenkamp@users.noreply.github.com> |
||
|
|
b9c250ff19 |
build(deps-dev): bump black from 23.10.1 to 23.11.0 (#345)
Bumps [black](https://github.com/psf/black) from 23.10.1 to 23.11.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/psf/black/releases">black's releases</a>.</em></p> <blockquote> <h2>23.11.0</h2> <h3>Highlights</h3> <ul> <li>Support formatting ranges of lines with the new <code>--line-ranges</code> command-line option (<a href="https://redirect.github.com/psf/black/issues/4020">#4020</a>)</li> </ul> <h3>Stable style</h3> <ul> <li>Fix crash on formatting bytes strings that look like docstrings (<a href="https://redirect.github.com/psf/black/issues/4003">#4003</a>)</li> <li>Fix crash when whitespace followed a backslash before newline in a docstring (<a href="https://redirect.github.com/psf/black/issues/4008">#4008</a>)</li> <li>Fix standalone comments inside complex blocks crashing Black (<a href="https://redirect.github.com/psf/black/issues/4016">#4016</a>)</li> <li>Fix crash on formatting code like <code>await (a ** b)</code> (<a href="https://redirect.github.com/psf/black/issues/3994">#3994</a>)</li> <li>No longer treat leading f-strings as docstrings. This matches Python's behaviour and fixes a crash (<a href="https://redirect.github.com/psf/black/issues/4019">#4019</a>)</li> </ul> <h3>Preview style</h3> <ul> <li>Multiline dicts and lists that are the sole argument to a function are now indented less (<a href="https://redirect.github.com/psf/black/issues/3964">#3964</a>)</li> <li>Multiline unpacked dicts and lists as the sole argument to a function are now also indented less (<a href="https://redirect.github.com/psf/black/issues/3992">#3992</a>)</li> <li>In f-string debug expressions, quote types that are visible in the final string are now preserved (<a href="https://redirect.github.com/psf/black/issues/4005">#4005</a>)</li> <li>Fix a bug where long <code>case</code> blocks were not split into multiple lines. Also enable general trailing comma rules on <code>case</code> blocks (<a href="https://redirect.github.com/psf/black/issues/4024">#4024</a>)</li> <li>Keep requiring two empty lines between module-level docstring and first function or class definition (<a href="https://redirect.github.com/psf/black/issues/4028">#4028</a>)</li> <li>Add support for single-line format skip with other comments on the same line (<a href="https://redirect.github.com/psf/black/issues/3959">#3959</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Consistently apply force exclusion logic before resolving symlinks (<a href="https://redirect.github.com/psf/black/issues/4015">#4015</a>)</li> <li>Fix a bug in the matching of absolute path names in <code>--include</code> (<a href="https://redirect.github.com/psf/black/issues/3976">#3976</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Fix mypyc builds on arm64 on macOS (<a href="https://redirect.github.com/psf/black/issues/4017">#4017</a>)</li> </ul> <h3>Integrations</h3> <ul> <li>Black's pre-commit integration will now run only on git hooks appropriate for a code formatter (<a href="https://redirect.github.com/psf/black/issues/3940">#3940</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/psf/black/blob/main/CHANGES.md">black's changelog</a>.</em></p> <blockquote> <h2>23.11.0</h2> <h3>Highlights</h3> <ul> <li>Support formatting ranges of lines with the new <code>--line-ranges</code> command-line option (<a href="https://redirect.github.com/psf/black/issues/4020">#4020</a>)</li> </ul> <h3>Stable style</h3> <ul> <li>Fix crash on formatting bytes strings that look like docstrings (<a href="https://redirect.github.com/psf/black/issues/4003">#4003</a>)</li> <li>Fix crash when whitespace followed a backslash before newline in a docstring (<a href="https://redirect.github.com/psf/black/issues/4008">#4008</a>)</li> <li>Fix standalone comments inside complex blocks crashing Black (<a href="https://redirect.github.com/psf/black/issues/4016">#4016</a>)</li> <li>Fix crash on formatting code like <code>await (a ** b)</code> (<a href="https://redirect.github.com/psf/black/issues/3994">#3994</a>)</li> <li>No longer treat leading f-strings as docstrings. This matches Python's behaviour and fixes a crash (<a href="https://redirect.github.com/psf/black/issues/4019">#4019</a>)</li> </ul> <h3>Preview style</h3> <ul> <li>Multiline dicts and lists that are the sole argument to a function are now indented less (<a href="https://redirect.github.com/psf/black/issues/3964">#3964</a>)</li> <li>Multiline unpacked dicts and lists as the sole argument to a function are now also indented less (<a href="https://redirect.github.com/psf/black/issues/3992">#3992</a>)</li> <li>In f-string debug expressions, quote types that are visible in the final string are now preserved (<a href="https://redirect.github.com/psf/black/issues/4005">#4005</a>)</li> <li>Fix a bug where long <code>case</code> blocks were not split into multiple lines. Also enable general trailing comma rules on <code>case</code> blocks (<a href="https://redirect.github.com/psf/black/issues/4024">#4024</a>)</li> <li>Keep requiring two empty lines between module-level docstring and first function or class definition (<a href="https://redirect.github.com/psf/black/issues/4028">#4028</a>)</li> <li>Add support for single-line format skip with other comments on the same line (<a href="https://redirect.github.com/psf/black/issues/3959">#3959</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Consistently apply force exclusion logic before resolving symlinks (<a href="https://redirect.github.com/psf/black/issues/4015">#4015</a>)</li> <li>Fix a bug in the matching of absolute path names in <code>--include</code> (<a href="https://redirect.github.com/psf/black/issues/3976">#3976</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Fix mypyc builds on arm64 on macOS (<a href="https://redirect.github.com/psf/black/issues/4017">#4017</a>)</li> </ul> <h3>Integrations</h3> <ul> <li>Black's pre-commit integration will now run only on git hooks appropriate for a code formatter (<a href="https://redirect.github.com/psf/black/issues/3940">#3940</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/psf/black/commit/2a1c67e0b2f81df602ec1f6e7aeb030b9709dc7c"><code>2a1c67e</code></a> Prepare release 23.11.0 (<a href="https://redirect.github.com/psf/black/issues/4032">#4032</a>)</li> <li><a href="https://github.com/psf/black/commit/72e7a2e43eef2aa0c83652bb6725eb004a2a69f3"><code>72e7a2e</code></a> Remove redundant condition from <code>has_magic_trailing_comma</code> (<a href="https://redirect.github.com/psf/black/issues/4023">#4023</a>)</li> <li><a href="https://github.com/psf/black/commit/1a7d9c2f58de1ffcbbe6d133f60f283601ba3f54"><code>1a7d9c2</code></a> Preserve visible quote types for f-string debug expressions (<a href="https://redirect.github.com/psf/black/issues/4005">#4005</a>)</li> <li><a href="https://github.com/psf/black/commit/f4c7be5445c87d9af5eba3d12faea62d2635e3d8"><code>f4c7be5</code></a> docs: fix minor typo (<a href="https://redirect.github.com/psf/black/issues/4030">#4030</a>)</li> <li><a href="https://github.com/psf/black/commit/2e4fac9d87615e904a49e46a9cab2293e0b13126"><code>2e4fac9</code></a> Apply force exclude logic before symlink resolution (<a href="https://redirect.github.com/psf/black/issues/4015">#4015</a>)</li> <li><a href="https://github.com/psf/black/commit/66008fda5dc07f5626e5f5d0dcefc476a9c12ab8"><code>66008fd</code></a> [563] Fix standalone comments inside complex blocks crashing Black (<a href="https://redirect.github.com/psf/black/issues/4016">#4016</a>)</li> <li><a href="https://github.com/psf/black/commit/50ed6221d97b265025abaa66116a7b185f2df5e2"><code>50ed622</code></a> Fix long case blocks not split into multiple lines (<a href="https://redirect.github.com/psf/black/issues/4024">#4024</a>)</li> <li><a href="https://github.com/psf/black/commit/46be1f8e54ac9a7d67723c0fa28c7bec13a0a2bf"><code>46be1f8</code></a> Support formatting specified lines (<a href="https://redirect.github.com/psf/black/issues/4020">#4020</a>)</li> <li><a href="https://github.com/psf/black/commit/ecbd9e8cf71f13068c7e6803a534e00363114c91"><code>ecbd9e8</code></a> Fix crash with f-string docstrings (<a href="https://redirect.github.com/psf/black/issues/4019">#4019</a>)</li> <li><a href="https://github.com/psf/black/commit/e808e61db8c7a8f9c7fd4b2fff2281141f6b2517"><code>e808e61</code></a> Preview: Keep requiring two empty lines between module-level docstring and fi...</li> <li>Additional commits viewable in <a href="https://github.com/psf/black/compare/23.10.1...23.11.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
339858a420 |
build(deps-dev): bump black from 23.10.1 to 23.11.0
Bumps [black](https://github.com/psf/black) from 23.10.1 to 23.11.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/23.10.1...23.11.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
daf39d6ee3 |
Fix metric (#344)
Small fix for the metric of "Umsatz" widget on the company page |
||
|
|
f4998a6fae |
Feat/233 incremental company extension (#322)
1. New app capable of processing the `missing_company` table has been added 2. Data transformation for Unternehmensregister data has been extended to handle v1 and v3 data with a generic layer in between selecting the right API upon request Sorry for the big PR, if preferred I can give a quick tour through the code rather than having you review every line of code |
||
|
|
0af7622cc3 |
Update pre-commit hooks (#342)
Update versions of pre-commit hooks to latest version. Co-authored-by: philipp-horstenkamp <philipp-horstenkamp@users.noreply.github.com> |
||
|
|
12f40af538 |
Added pagination, sorting and filtering for the table of related persons. (#333)
Added pagination, sorting and filtering for the table of related persons. |
||
|
|
16b975a0f4 | Hide the plotly logo in graph objects (#339) | ||
|
|
97b05bacf4 | Added a custom favicon. (#338) | ||
|
|
177ec6a673 |
build(deps-dev): bump types-tqdm from 4.66.0.3 to 4.66.0.4 (#335)
Bumps [types-tqdm](https://github.com/python/typeshed) from 4.66.0.3 to 4.66.0.4. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/python/typeshed/commits">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
428e4e6e52 |
build(deps-dev): bump types-tqdm from 4.66.0.3 to 4.66.0.4
Bumps [types-tqdm](https://github.com/python/typeshed) from 4.66.0.3 to 4.66.0.4. - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: types-tqdm dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
aec7414e69 |
Removed the background color of plotly plot. (#334)
Removed the background color of the plot to fully use the plotly_white layout. |
||
|
|
d79bc0f267 |
Added poetry install to the pre-commit hooks. (#332)
Limiting most pre-commit hooks to the pre-commit stage. |
||
|
|
d6fabfff1a | Create company page tab "Beteiligte Personen" (#330) | ||
|
|
4323522b96 | Added poetry install to the pre-commit hooks. (#329) | ||
|
|
c4649f1594 |
build(deps): bump selenium from 4.15.1 to 4.15.2 (#327)
Bumps [selenium](https://github.com/SeleniumHQ/Selenium) from 4.15.1 to 4.15.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/SeleniumHQ/Selenium/releases">selenium's releases</a>.</em></p> <blockquote> <h2>Selenium 4.0.0 RC3</h2> <h3>Changelog</h3> <p>For each component's detailed changelog, please check:</p> <ul> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES">Ruby</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES">Python</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/CHANGES.md">JavaScript</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG">Java</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG">DotNet</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/cpp/iedriverserver/CHANGELOG">IEDriverServer</a></li> </ul> <h3>Commits in this release</h3> <!-- raw HTML omitted --> <ul> <li><a href="http://github.com/seleniumhq/selenium/commit/ae5c7cb81d6a074e3df2bb6843226502e745e51b"><code>ae5c7cb81d</code></a> - [grid] Add error message and exception type if the session does not exist :: Puja Jagani</li> <li><a href="http://github.com/seleniumhq/selenium/commit/4a1bc4cf9f2698736f71a5cf500c036da5756e93"><code>4a1bc4cf9f</code></a> - Removing old comment in the PR template. :: Diego Molina</li> <li><a href="http://github.com/seleniumhq/selenium/commit/59055b3f97cddb63c8d08281d97e05e575f37715"><code>59055b3f97</code></a> - [java] Deprecating <code>VERSION</code> to favour <code>BROWSER_VERSION</code> :: Diego Molina</li> <li><a href="http://github.com/seleniumhq/selenium/commit/681eae6493c4fcd2392cfad6d5546d950bd6cd40"><code>681eae6493</code></a> - Add jmx info for OneShotNode :: Simon Mavi Stewart</li> <li><a href="http://github.com/seleniumhq/selenium/commit/294d1c92fb9578513c82c1431d6c25b98364fcc2"><code>294d1c92fb</code></a> - Use the IANA port range when there are less the 5k ports to choose from :: Thomas Flori</li> <li><a href="http://github.com/seleniumhq/selenium/commit/22638e01b1fcf6911ef81f8fdc78b9b3f47bd11f"><code>22638e01b1</code></a> - Support getting timeouts from the driver :: Alex Rodionov</li> <li><a href="http://github.com/seleniumhq/selenium/commit/320cd389dbb5f5c7882d709f9d7ff78aeb0ec944"><code>320cd389db</code></a> - [java] Fixing misspellings in Java docs :: Diego Molina</li> <li><a href="http://github.com/seleniumhq/selenium/commit/24ae200b53315ded06484f8037c3fd200aa7da72"><code>24ae200b53</code></a> - Update Firefox to 93 and Edge to 94 :: Simon Mavi Stewart</li> <li><a href="http://github.com/seleniumhq/selenium/commit/3b84577bc1e0498239417f03e4979c521edf9ee4"><code>3b84577bc1</code></a> - Laying the groundwork for 4.0.0 :: Simon Mavi Stewart</li> <li><a href="http://github.com/seleniumhq/selenium/commit/3fba1c847f77f5aea9af62132d029a5300eea3bd"><code>3fba1c847f</code></a> - Update most java deps to latest stable releases :: Simon Mavi Stewart</li> <li><a href="http://github.com/seleniumhq/selenium/commit/e8937abef8dd8f0bb1d54d0238b25da1e39b365b"><code>e8937abef8</code></a> - Bump OpenTelemetry to 1.6.0 and correct docs :: Simon Mavi Stewart</li> <li><a href="http://github.com/seleniumhq/selenium/commit/8e1a3f62cddb5850e64d8239a7f8c100828ca1a7"><code>8e1a3f62cd</code></a> - Ensure zsh completions are correctly generated :: Simon Mavi Stewart</li> <li><a href="http://github.com/seleniumhq/selenium/commit/46de1e60031f0061b4e6989da7b914f4e5093592"><code>46de1e6003</code></a> - [dotnet] Explicitly remove Expect header :: Jim Evans</li> <li><a href="http://github.com/seleniumhq/selenium/commit/0a2b4d979d5b1d57d4a044d2e760b7f5ca99437f"><code>0a2b4d979d</code></a> - [dotnet] Updating version for impending 4.0.0 stable release :: Jim Evans</li> <li><a href="http://github.com/seleniumhq/selenium/commit/c4e685ac9f47edf2d168156c9f745d9f8829cdb3"><code>c4e685ac9f</code></a> - [js] Avoid modifying CDP Grid endpoint :: Puja Jagani</li> <li><a href="http://github.com/seleniumhq/selenium/commit/136067e0dbe9de2e910daf602a8fd0ce9a847c39"><code>136067e0db</code></a> - [rb] update changelog and bump version to Selenium 4 RC3 :: titusfortner</li> <li><a href="http://github.com/seleniumhq/selenium/commit/6c5c572c4adc6c7596692840014df1a2d814ad2d"><code>6c5c572c4a</code></a> - [py] Correct deprecations in IE bindings. Fixes <a href="https://redirect.github.com/SeleniumHQ/Selenium/issues/9818">#9818</a> :: AutomatedTester</li> <li><a href="http://github.com/seleniumhq/selenium/commit/e6080b6f5997e1462ed97fbda0e13b0299742527"><code>e6080b6f59</code></a> - [dotnet] Update version for 4.0 RC3 :: Jim Evans</li> <li><a href="http://github.com/seleniumhq/selenium/commit/46d4ee53a867c1fe1882484890cd8a0d4402420f"><code>46d4ee53a8</code></a> - [dotnet] Update CHANGELOG :: Jim Evans</li> <li><a href="http://github.com/seleniumhq/selenium/commit/6c6a72c3bc9e15eb063ad1c7efe38ebfacc44e6a"><code>6c6a72c3bc</code></a> - [py] bump to RC 3 :: AutomatedTester</li> </ul> <!-- raw HTML omitted --> <h2>Selenium 4.0.0 RC2</h2> <h3>Changelog</h3> <p>For each component's detailed changelog, please check:</p> <ul> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES">Ruby</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES">Python</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/CHANGES.md">JavaScript</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG">Java</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG">DotNet</a></li> <li><a href="https://github.com/SeleniumHQ/selenium/blob/trunk/cpp/iedriverserver/CHANGELOG">IEDriverServer</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/SeleniumHQ/Selenium/commits">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
2eca15750a |
build(deps): bump selenium from 4.15.1 to 4.15.2
Bumps [selenium](https://github.com/SeleniumHQ/Selenium) from 4.15.1 to 4.15.2. - [Release notes](https://github.com/SeleniumHQ/Selenium/releases) - [Commits](https://github.com/SeleniumHQ/Selenium/commits) --- updated-dependencies: - dependency-name: selenium dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
a1a519d4d6 |
build(deps-dev): bump ruff from 0.1.3 to 0.1.4 (#326)
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.3 to 0.1.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/releases">ruff's releases</a>.</em></p> <blockquote> <h2>v0.1.4</h2> <h2>Changes</h2> <h3>Preview features</h3> <ul> <li>[<code>flake8-trio</code>] Implement <code>timeout-without-await</code> (<code>TRIO001</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8439">#8439</a>)</li> <li>[<code>numpy</code>] Implement NumPy 2.0 migration rule (<code>NPY200</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7702">#7702</a>)</li> <li>[<code>pylint</code>] Implement <code>bad-open-mode</code> (<code>W1501</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8294">#8294</a>)</li> <li>[<code>pylint</code>] Implement <code>import-outside-toplevel</code> (<code>C0415</code>) rule (<a href="https://redirect.github.com/astral-sh/ruff/pull/5180">#5180</a>)</li> <li>[<code>pylint</code>] Implement <code>useless-with-lock</code> (<code>W2101</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8321">#8321</a>)</li> <li>[<code>pyupgrade</code>] Implement <code>timeout-error-alias</code> (<code>UP041</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8476">#8476</a>)</li> <li>[<code>refurb</code>] Implement <code>isinstance-type-none</code> (<code>FURB168</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8308">#8308</a>)</li> <li>Detect confusable Unicode-to-Unicode units in <code>RUF001</code>, <code>RUF002</code>, and <code>RUF003</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/4430">#4430</a>)</li> <li>Add newline after module docstrings in preview style (<a href="https://redirect.github.com/astral-sh/ruff/pull/8283">#8283</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>Add a note on line-too-long to the formatter docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8314">#8314</a>)</li> <li>Preserve trailing statement semicolons when using <code>fmt: skip</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8273">#8273</a>)</li> <li>Preserve trailing semicolons when using <code>fmt: off</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8275">#8275</a>)</li> <li>Avoid duplicating linter-formatter compatibility warnings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8292">#8292</a>)</li> <li>Avoid inserting a newline after function docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8375">#8375</a>)</li> <li>Insert newline between docstring and following own line comment (<a href="https://redirect.github.com/astral-sh/ruff/pull/8216">#8216</a>)</li> <li>Split tuples in return positions by comma first (<a href="https://redirect.github.com/astral-sh/ruff/pull/8280">#8280</a>)</li> <li>Avoid treating byte strings as docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8350">#8350</a>)</li> <li>Add <code>--line-length</code> option to <code>format</code> command (<a href="https://redirect.github.com/astral-sh/ruff/pull/8363">#8363</a>)</li> <li>Avoid parenthesizing unsplittable because of comments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8431">#8431</a>)</li> </ul> <h3>CLI</h3> <ul> <li>Add <code>--output-format</code> to <code>ruff rule</code> and <code>ruff linter</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8203">#8203</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Respect <code>--force-exclude</code> in <code>lint.exclude</code> and <code>format.exclude</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8393">#8393</a>)</li> <li>Respect <code>--extend-per-file-ignores</code> on the CLI (<a href="https://redirect.github.com/astral-sh/ruff/pull/8329">#8329</a>)</li> <li>Extend <code>bad-dunder-method-name</code> to permit <code>__index__</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8300">#8300</a>)</li> <li>Fix panic with 8 in octal escape (<a href="https://redirect.github.com/astral-sh/ruff/pull/8356">#8356</a>)</li> <li>Avoid raising <code>D300</code> when both triple quote styles are present (<a href="https://redirect.github.com/astral-sh/ruff/pull/8462">#8462</a>)</li> <li>Consider unterminated f-strings in <code>FStringRanges</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8154">#8154</a>)</li> <li>Avoid including literal <code>shell=True</code> for truthy, non-<code>True</code> diagnostics (<a href="https://redirect.github.com/astral-sh/ruff/pull/8359">#8359</a>)</li> <li>Avoid triggering single-element test for starred expressions (<a href="https://redirect.github.com/astral-sh/ruff/pull/8433">#8433</a>)</li> <li>Detect and ignore Jupyter automagics (<a href="https://redirect.github.com/astral-sh/ruff/pull/8398">#8398</a>)</li> <li>Fix invalid E231 error with f-strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8369">#8369</a>)</li> <li>Avoid triggering <code>NamedTuple</code> rewrite with starred annotation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8434">#8434</a>)</li> <li>Avoid un-setting bracket flag in logical lines (<a href="https://redirect.github.com/astral-sh/ruff/pull/8380">#8380</a>)</li> <li>Place 'r' prefix before 'f' for raw format strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8464">#8464</a>)</li> <li>Remove trailing periods from NumPy 2.0 code actions (<a href="https://redirect.github.com/astral-sh/ruff/pull/8475">#8475</a>)</li> <li>Fix bug where <code>PLE1307</code> was raised when formatting <code>%c</code> with characters (<a href="https://redirect.github.com/astral-sh/ruff/pull/8407">#8407</a>)</li> <li>Remove unicode flag from comparable (<a href="https://redirect.github.com/astral-sh/ruff/pull/8440">#8440</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's changelog</a>.</em></p> <blockquote> <h2>0.1.4</h2> <h3>Preview features</h3> <ul> <li>[<code>flake8-trio</code>] Implement <code>timeout-without-await</code> (<code>TRIO001</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8439">#8439</a>)</li> <li>[<code>numpy</code>] Implement NumPy 2.0 migration rule (<code>NPY200</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7702">#7702</a>)</li> <li>[<code>pylint</code>] Implement <code>bad-open-mode</code> (<code>W1501</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8294">#8294</a>)</li> <li>[<code>pylint</code>] Implement <code>import-outside-toplevel</code> (<code>C0415</code>) rule (<a href="https://redirect.github.com/astral-sh/ruff/pull/5180">#5180</a>)</li> <li>[<code>pylint</code>] Implement <code>useless-with-lock</code> (<code>W2101</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8321">#8321</a>)</li> <li>[<code>pyupgrade</code>] Implement <code>timeout-error-alias</code> (<code>UP041</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8476">#8476</a>)</li> <li>[<code>refurb</code>] Implement <code>isinstance-type-none</code> (<code>FURB168</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8308">#8308</a>)</li> <li>Detect confusable Unicode-to-Unicode units in <code>RUF001</code>, <code>RUF002</code>, and <code>RUF003</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/4430">#4430</a>)</li> <li>Add newline after module docstrings in preview style (<a href="https://redirect.github.com/astral-sh/ruff/pull/8283">#8283</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>Add a note on line-too-long to the formatter docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8314">#8314</a>)</li> <li>Preserve trailing statement semicolons when using <code>fmt: skip</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8273">#8273</a>)</li> <li>Preserve trailing semicolons when using <code>fmt: off</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8275">#8275</a>)</li> <li>Avoid duplicating linter-formatter compatibility warnings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8292">#8292</a>)</li> <li>Avoid inserting a newline after function docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8375">#8375</a>)</li> <li>Insert newline between docstring and following own line comment (<a href="https://redirect.github.com/astral-sh/ruff/pull/8216">#8216</a>)</li> <li>Split tuples in return positions by comma first (<a href="https://redirect.github.com/astral-sh/ruff/pull/8280">#8280</a>)</li> <li>Avoid treating byte strings as docstrings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8350">#8350</a>)</li> <li>Add <code>--line-length</code> option to <code>format</code> command (<a href="https://redirect.github.com/astral-sh/ruff/pull/8363">#8363</a>)</li> <li>Avoid parenthesizing unsplittable because of comments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8431">#8431</a>)</li> </ul> <h3>CLI</h3> <ul> <li>Add <code>--output-format</code> to <code>ruff rule</code> and <code>ruff linter</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8203">#8203</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Respect <code>--force-exclude</code> in <code>lint.exclude</code> and <code>format.exclude</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8393">#8393</a>)</li> <li>Respect <code>--extend-per-file-ignores</code> on the CLI (<a href="https://redirect.github.com/astral-sh/ruff/pull/8329">#8329</a>)</li> <li>Extend <code>bad-dunder-method-name</code> to permit <code>__index__</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8300">#8300</a>)</li> <li>Fix panic with 8 in octal escape (<a href="https://redirect.github.com/astral-sh/ruff/pull/8356">#8356</a>)</li> <li>Avoid raising <code>D300</code> when both triple quote styles are present (<a href="https://redirect.github.com/astral-sh/ruff/pull/8462">#8462</a>)</li> <li>Consider unterminated f-strings in <code>FStringRanges</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8154">#8154</a>)</li> <li>Avoid including literal <code>shell=True</code> for truthy, non-<code>True</code> diagnostics (<a href="https://redirect.github.com/astral-sh/ruff/pull/8359">#8359</a>)</li> <li>Avoid triggering single-element test for starred expressions (<a href="https://redirect.github.com/astral-sh/ruff/pull/8433">#8433</a>)</li> <li>Detect and ignore Jupyter automagics (<a href="https://redirect.github.com/astral-sh/ruff/pull/8398">#8398</a>)</li> <li>Fix invalid E231 error with f-strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8369">#8369</a>)</li> <li>Avoid triggering <code>NamedTuple</code> rewrite with starred annotation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8434">#8434</a>)</li> <li>Avoid un-setting bracket flag in logical lines (<a href="https://redirect.github.com/astral-sh/ruff/pull/8380">#8380</a>)</li> <li>Place 'r' prefix before 'f' for raw format strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8464">#8464</a>)</li> <li>Remove trailing periods from NumPy 2.0 code actions (<a href="https://redirect.github.com/astral-sh/ruff/pull/8475">#8475</a>)</li> <li>Fix bug where <code>PLE1307</code> was raised when formatting <code>%c</code> with characters (<a href="https://redirect.github.com/astral-sh/ruff/pull/8407">#8407</a>)</li> <li>Remove unicode flag from comparable (<a href="https://redirect.github.com/astral-sh/ruff/pull/8440">#8440</a>)</li> <li>Improve B015 message (<a href="https://redirect.github.com/astral-sh/ruff/pull/8295">#8295</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ruff/commit/c4889196e7e4d36517f29592e90e40ca991bc98d"><code>c488919</code></a> Add missing pyupgrade entry to changelog (<a href="https://redirect.github.com/astral-sh/ruff/issues/8479">#8479</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/6e635e99f47a6f81c4332ebe39c52125ec271c2e"><code>6e635e9</code></a> Add changelog for v0.1.4 (<a href="https://redirect.github.com/astral-sh/ruff/issues/8478">#8478</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/260ea41975632166899c51f7f9a42f7eeb74feec"><code>260ea41</code></a> Bump version to v0.1.4 (<a href="https://redirect.github.com/astral-sh/ruff/issues/8477">#8477</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/65effc6666d2d3af65dd491da3eb6b635be90842"><code>65effc6</code></a> Add pyupgrade <code>UP041</code> to replace <code>TimeoutError</code> aliases (<a href="https://redirect.github.com/astral-sh/ruff/issues/8476">#8476</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/4982694b54e941f437740b9e75a9b1be58560e77"><code>4982694</code></a> <code>D300</code>: prevent autofix when both triples are in body (<a href="https://redirect.github.com/astral-sh/ruff/issues/8462">#8462</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/536ac550ede22092b4309b07d3c0be2d9a3189a0"><code>536ac55</code></a> Remove trailing periods from NumPy 2.0 code actions (<a href="https://redirect.github.com/astral-sh/ruff/issues/8475">#8475</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/f2335fe69278cb30ca338bf3ba234013c3e2125b"><code>f2335fe</code></a> Make Unicode-to-Unicode confusables a preview change (<a href="https://redirect.github.com/astral-sh/ruff/issues/8473">#8473</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/b0f9a14d9a03af3ef97ee81d544afd3e255278a3"><code>b0f9a14</code></a> Mark <code>byte_bounds</code> as a non-backwards-compatible NumPy 2.0 change (<a href="https://redirect.github.com/astral-sh/ruff/issues/8474">#8474</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/f56bc1983b16c34a2fcb4a467a5220f54e8aa72f"><code>f56bc19</code></a> Place 'r' prefix before 'f' for raw format strings (<a href="https://redirect.github.com/astral-sh/ruff/issues/8464">#8464</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/7c12eaf322c0da18278ec62b1c11fd1b8a4b2ef2"><code>7c12eaf</code></a> Use characters instead of <code>u32</code> in confusable map (<a href="https://redirect.github.com/astral-sh/ruff/issues/8463">#8463</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ruff/compare/v0.1.3...v0.1.4">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
15425430a9 |
build(deps-dev): bump nbconvert from 7.10.0 to 7.11.0 (#328)
Bumps [nbconvert](https://github.com/jupyter/nbconvert) from 7.10.0 to 7.11.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jupyter/nbconvert/releases">nbconvert's releases</a>.</em></p> <blockquote> <h2>v7.11.0</h2> <h2>7.11.0</h2> <p>(<a href="https://github.com/jupyter/nbconvert/compare/v7.10.0...422dd2a1697b191dc8e11806ddeca314df66c282">Full Changelog</a>)</p> <h3>Enhancements made</h3> <ul> <li>Support es modules in js includes <a href="https://redirect.github.com/jupyter/nbconvert/pull/2063">#2063</a> (<a href="https://github.com/timkpaine"><code>@timkpaine</code></a>)</li> </ul> <h3>Maintenance and upkeep improvements</h3> <ul> <li>Clean up lint handling and list generics <a href="https://redirect.github.com/jupyter/nbconvert/pull/2065">#2065</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> <li>Remove not needed pytest-dependency test requirement <a href="https://redirect.github.com/jupyter/nbconvert/pull/2062">#2062</a> (<a href="https://github.com/danigm"><code>@danigm</code></a>)</li> </ul> <h3>Contributors to this release</h3> <p>(<a href="https://github.com/jupyter/nbconvert/graphs/contributors?from=2023-10-30&to=2023-11-06&type=c">GitHub contributors page for this release</a>)</p> <p><a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2023-10-30..2023-11-06&type=Issues"><code>@blink1073</code></a> | <a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Adanigm+updated%3A2023-10-30..2023-11-06&type=Issues"><code>@danigm</code></a> | <a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Atimkpaine+updated%3A2023-10-30..2023-11-06&type=Issues"><code>@timkpaine</code></a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jupyter/nbconvert/blob/main/CHANGELOG.md">nbconvert's changelog</a>.</em></p> <blockquote> <h2>7.11.0</h2> <p>(<a href="https://github.com/jupyter/nbconvert/compare/v7.10.0...422dd2a1697b191dc8e11806ddeca314df66c282">Full Changelog</a>)</p> <h3>Enhancements made</h3> <ul> <li>Support es modules in js includes <a href="https://redirect.github.com/jupyter/nbconvert/pull/2063">#2063</a> (<a href="https://github.com/timkpaine"><code>@timkpaine</code></a>)</li> </ul> <h3>Maintenance and upkeep improvements</h3> <ul> <li>Clean up lint handling and list generics <a href="https://redirect.github.com/jupyter/nbconvert/pull/2065">#2065</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> <li>Remove not needed pytest-dependency test requirement <a href="https://redirect.github.com/jupyter/nbconvert/pull/2062">#2062</a> (<a href="https://github.com/danigm"><code>@danigm</code></a>)</li> </ul> <h3>Contributors to this release</h3> <p>(<a href="https://github.com/jupyter/nbconvert/graphs/contributors?from=2023-10-30&to=2023-11-06&type=c">GitHub contributors page for this release</a>)</p> <p><a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Ablink1073+updated%3A2023-10-30..2023-11-06&type=Issues"><code>@blink1073</code></a> | <a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Adanigm+updated%3A2023-10-30..2023-11-06&type=Issues"><code>@danigm</code></a> | <a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Atimkpaine+updated%3A2023-10-30..2023-11-06&type=Issues"><code>@timkpaine</code></a></p> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jupyter/nbconvert/commit/d10418d8503c75f084da71416a8c9905946cf533"><code>d10418d</code></a> Publish 7.11.0</li> <li><a href="https://github.com/jupyter/nbconvert/commit/422dd2a1697b191dc8e11806ddeca314df66c282"><code>422dd2a</code></a> Clean up lint handling and list generics (<a href="https://redirect.github.com/jupyter/nbconvert/issues/2065">#2065</a>)</li> <li><a href="https://github.com/jupyter/nbconvert/commit/0e290e18e16c3abdd28608dea7035dc6a1a8b82c"><code>0e290e1</code></a> Support es modules in js includes (<a href="https://redirect.github.com/jupyter/nbconvert/issues/2063">#2063</a>)</li> <li><a href="https://github.com/jupyter/nbconvert/commit/a3aed8d2638784f03d59df456f8243c3ba554d8b"><code>a3aed8d</code></a> Remove not needed pytest-dependency test requirement (<a href="https://redirect.github.com/jupyter/nbconvert/issues/2062">#2062</a>)</li> <li>See full diff in <a href="https://github.com/jupyter/nbconvert/compare/v7.10.0...v7.11.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> |
||
|
|
de92c8fe1f |
build(deps-dev): bump nbconvert from 7.10.0 to 7.11.0
Bumps [nbconvert](https://github.com/jupyter/nbconvert) from 7.10.0 to 7.11.0. - [Release notes](https://github.com/jupyter/nbconvert/releases) - [Changelog](https://github.com/jupyter/nbconvert/blob/main/CHANGELOG.md) - [Commits](https://github.com/jupyter/nbconvert/compare/v7.10.0...v7.11.0) --- updated-dependencies: - dependency-name: nbconvert dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
266a6c33e5 |
build(deps-dev): bump ruff from 0.1.3 to 0.1.4
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.1.3...v0.1.4) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
982cbd7ad4 | refactor: Resolve leftover todos | ||
|
|
f9d3f0eb76 | test: Cover apps/find_missing_companies.py |