mirror of
https://github.com/fhswf/aki_prj23_transparenzregister.git
synced 2025-04-24 14:22:33 +02:00
69 Commits
Author | SHA1 | Message | Date | |
---|---|---|---|---|
|
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> |
||
|
1b564276fb
|
build(deps): bump rapidfuzz from 3.5.1 to 3.5.2
Bumps [rapidfuzz](https://github.com/maxbachmann/RapidFuzz) from 3.5.1 to 3.5.2. - [Release notes](https://github.com/maxbachmann/RapidFuzz/releases) - [Changelog](https://github.com/maxbachmann/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/maxbachmann/RapidFuzz/compare/v3.5.1...v3.5.2) --- updated-dependencies: - dependency-name: rapidfuzz dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
a638949644
|
Added a types package and upgraded poetry. (#313) | |||
|
eee77ca84a
|
build(deps): bump pymongo from 4.5.0 to 4.6.0
Bumps [pymongo](https://github.com/mongodb/mongo-python-driver) from 4.5.0 to 4.6.0. - [Release notes](https://github.com/mongodb/mongo-python-driver/releases) - [Changelog](https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst) - [Commits](https://github.com/mongodb/mongo-python-driver/compare/4.5.0...4.6.0) --- updated-dependencies: - dependency-name: pymongo dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
4b4d568b9d
|
build(deps): bump selenium from 4.14.0 to 4.15.0
Bumps [selenium](https://github.com/SeleniumHQ/Selenium) from 4.14.0 to 4.15.0. - [Release notes](https://github.com/SeleniumHQ/Selenium/releases) - [Commits](https://github.com/SeleniumHQ/Selenium/compare/selenium-4.14.0...selenium-4.15.0) --- updated-dependencies: - dependency-name: selenium dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
73e549fffb
|
build(deps): bump rapidfuzz from 3.4.0 to 3.5.1
Bumps [rapidfuzz](https://github.com/maxbachmann/RapidFuzz) from 3.4.0 to 3.5.1. - [Release notes](https://github.com/maxbachmann/RapidFuzz/releases) - [Changelog](https://github.com/maxbachmann/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/maxbachmann/RapidFuzz/compare/v3.4.0...v3.5.1) --- updated-dependencies: - dependency-name: rapidfuzz dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
2476c43548
|
build(deps): bump matplotlib from 3.8.0 to 3.8.1
Bumps [matplotlib](https://github.com/matplotlib/matplotlib) from 3.8.0 to 3.8.1. - [Release notes](https://github.com/matplotlib/matplotlib/releases) - [Commits](https://github.com/matplotlib/matplotlib/compare/v3.8.0...v3.8.1) --- updated-dependencies: - dependency-name: matplotlib dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
f7e1fdb977
|
build(deps): bump sqlalchemy from 1.4.49 to 1.4.50 (#291)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 1.4.49 to 1.4.50. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sqlalchemy/sqlalchemy/releases">sqlalchemy's releases</a>.</em></p> <blockquote> <h1>1.4.50</h1> <p>Released: October 29, 2023</p> <h2>orm</h2> <ul> <li> <p><strong>[orm] [bug]</strong> Fixed fundamental issue which prevented some forms of ORM "annotations" from taking place for subqueries which made use of <code>_sql.Select.join()</code> against a relationship target. These annotations are used whenever a subquery is used in special situations such as within <code>_orm.PropComparator.and_()</code> and other ORM-specific scenarios.</p> <p>References: <a href="https://www.sqlalchemy.org/trac/ticket/10223">#10223</a></p> </li> </ul> <h2>sql</h2> <ul> <li> <p><strong>[sql] [bug]</strong> Fixed issue where using the same bound parameter more than once with <code>literal_execute=True</code> in some combinations with other literal rendering parameters would cause the wrong values to render due to an iteration issue.</p> <p>References: <a href="https://www.sqlalchemy.org/trac/ticket/10142">#10142</a></p> </li> <li> <p><strong>[sql] [bug]</strong> Fixed issue where unpickling of a <code>_schema.Column</code> or other <code>_sql.ColumnElement</code> would fail to restore the correct "comparator" object, which is used to generate SQL expressions specific to the type object.</p> <p>References: <a href="https://www.sqlalchemy.org/trac/ticket/10213">#10213</a></p> </li> </ul> <h2>schema</h2> <ul> <li> <p><strong>[schema] [bug]</strong> Modified the rendering of the Oracle only <code>Identity.order</code> parameter that's part of both <code>Sequence</code> and <code>Identity</code> to only take place for the Oracle backend, and not other backends such as that of PostgreSQL. A future release will rename the <code>Identity.order</code>, <code>Sequence.order</code> and <code>Identity.on_null</code> parameters to Oracle-specific names, deprecating the old names, these parameters only apply to Oracle.</p> <p>References: <a href="https://www.sqlalchemy.org/trac/ticket/10207">#10207</a></p> </li> </ul> <h2>mysql</h2> <ul> <li><strong>[mysql] [usecase]</strong> Updated aiomysql dialect since the dialect appears to be maintained again. Re-added to the ci testing using version 0.2.0.</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/sqlalchemy/sqlalchemy/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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
5699270c34
|
build(deps-dev): bump nbconvert from 7.9.2 to 7.10.0 (#290)
Bumps [nbconvert](https://github.com/jupyter/nbconvert) from 7.9.2 to 7.10.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.10.0</h2> <h2>7.10.0</h2> <p>(<a href="https://github.com/jupyter/nbconvert/compare/v7.9.2...48599a4bba00819e4e626fe098eb204977590ee4">Full Changelog</a>)</p> <h3>Enhancements made</h3> <ul> <li>Update to mermaid 10.6.0, docs keyboard navigation <a href="https://redirect.github.com/jupyter/nbconvert/pull/2058">#2058</a> (<a href="https://github.com/bollwyvl"><code>@bollwyvl</code></a>)</li> </ul> <h3>Maintenance and upkeep improvements</h3> <ul> <li>Fix typing for traitlets 5.13 <a href="https://redirect.github.com/jupyter/nbconvert/pull/2060">#2060</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> <li>Adopt ruff format <a href="https://redirect.github.com/jupyter/nbconvert/pull/2059">#2059</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> <li>Update typings and remove dead link <a href="https://redirect.github.com/jupyter/nbconvert/pull/2056">#2056</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> </ul> <h3>Documentation improvements</h3> <ul> <li>Update to mermaid 10.6.0, docs keyboard navigation <a href="https://redirect.github.com/jupyter/nbconvert/pull/2058">#2058</a> (<a href="https://github.com/bollwyvl"><code>@bollwyvl</code></a>)</li> </ul> <h3>Contributors to this release</h3> <p>(<a href="https://github.com/jupyter/nbconvert/graphs/contributors?from=2023-10-05&to=2023-10-30&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-05..2023-10-30&type=Issues"><code>@blink1073</code></a> | <a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Abollwyvl+updated%3A2023-10-05..2023-10-30&type=Issues"><code>@bollwyvl</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.10.0</h2> <p>(<a href="https://github.com/jupyter/nbconvert/compare/v7.9.2...48599a4bba00819e4e626fe098eb204977590ee4">Full Changelog</a>)</p> <h3>Enhancements made</h3> <ul> <li>Update to mermaid 10.6.0, docs keyboard navigation <a href="https://redirect.github.com/jupyter/nbconvert/pull/2058">#2058</a> (<a href="https://github.com/bollwyvl"><code>@bollwyvl</code></a>)</li> </ul> <h3>Maintenance and upkeep improvements</h3> <ul> <li>Fix typing for traitlets 5.13 <a href="https://redirect.github.com/jupyter/nbconvert/pull/2060">#2060</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> <li>Adopt ruff format <a href="https://redirect.github.com/jupyter/nbconvert/pull/2059">#2059</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> <li>Update typings and remove dead link <a href="https://redirect.github.com/jupyter/nbconvert/pull/2056">#2056</a> (<a href="https://github.com/blink1073"><code>@blink1073</code></a>)</li> </ul> <h3>Documentation improvements</h3> <ul> <li>Update to mermaid 10.6.0, docs keyboard navigation <a href="https://redirect.github.com/jupyter/nbconvert/pull/2058">#2058</a> (<a href="https://github.com/bollwyvl"><code>@bollwyvl</code></a>)</li> </ul> <h3>Contributors to this release</h3> <p>(<a href="https://github.com/jupyter/nbconvert/graphs/contributors?from=2023-10-05&to=2023-10-30&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-05..2023-10-30&type=Issues"><code>@blink1073</code></a> | <a href="https://github.com/search?q=repo%3Ajupyter%2Fnbconvert+involves%3Abollwyvl+updated%3A2023-10-05..2023-10-30&type=Issues"><code>@bollwyvl</code></a></p> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
11eb2c9bf5
|
build(deps-dev): bump types-pyopenssl from 23.2.0.2 to 23.3.0.0 (#292)
Bumps [types-pyopenssl](https://github.com/python/typeshed) from 23.2.0.2 to 23.3.0.0. <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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
4362463f3c
|
Added types-six to the linting packages and unlocked all the linter versions. (#286)
Added the from mypy demanded types-six package as a lint dependency. This should allow for a faster execution. |
|||
fca53c5e0c
|
Dash security-fix against DoS. (#284)
Dash has currently a security vulnerability. This updated should fix this. Dependabot is currently not allowed to upgrade main-version. |
|||
|
d3189f78c4
|
build(deps-dev): bump types-cachetools from 5.3.0.6 to 5.3.0.7 (#277)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [types-cachetools](https://github.com/python/typeshed) from 5.3.0.6 to 5.3.0.7. <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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
759ee0ecf2
|
build(deps-dev): bump ruff from 0.1.2 to 0.1.3 (#276)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.2 to 0.1.3. <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.3</h2> <p>This release includes a variety of improvements to the Ruff formatter (available now as <code>ruff format</code>), removing several known and unintentional deviations from Black.</p> <h2>Changes</h2> <h3>Formatter</h3> <ul> <li>Avoid space around pow for <code>None</code>, <code>True</code> and <code>False</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8189">#8189</a>)</li> <li>Avoid sorting all paths in the format command (<a href="https://redirect.github.com/astral-sh/ruff/pull/8181">#8181</a>)</li> <li>Insert necessary blank line between class and leading comments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8224">#8224</a>)</li> <li>Avoid introducing new parentheses in annotated assignments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8233">#8233</a>)</li> <li>Refine the warnings about incompatible linter options (<a href="https://redirect.github.com/astral-sh/ruff/pull/8196">#8196</a>)</li> <li>Add test and basic implementation for formatter preview mode (<a href="https://redirect.github.com/astral-sh/ruff/pull/8044">#8044</a>)</li> <li>Refine warning about incompatible <code>isort</code> settings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8192">#8192</a>)</li> <li>Only omit optional parentheses for starting or ending with parentheses (<a href="https://redirect.github.com/astral-sh/ruff/pull/8238">#8238</a>)</li> <li>Use source type to determine parser mode for formatting (<a href="https://redirect.github.com/astral-sh/ruff/pull/8205">#8205</a>)</li> <li>Don't warn about magic trailing comma when <code>isort.force-single-line</code> is true (<a href="https://redirect.github.com/astral-sh/ruff/pull/8244">#8244</a>)</li> <li>Use <code>SourceKind::diff</code> for formatter (<a href="https://redirect.github.com/astral-sh/ruff/pull/8240">#8240</a>)</li> <li>Fix <code>fmt:off</code> with trailing child comment (<a href="https://redirect.github.com/astral-sh/ruff/pull/8234">#8234</a>)</li> <li>Formatter parentheses support for <code>IpyEscapeCommand</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8207">#8207</a>)</li> </ul> <h3>Linter</h3> <ul> <li>[<code>pylint</code>] Add buffer methods to <code>bad-dunder-method-name</code> (<code>PLW3201</code>) exclusions (<a href="https://redirect.github.com/astral-sh/ruff/pull/8190">#8190</a>)</li> <li>Match rule prefixes from <code>external</code> codes setting in <code>unused-noqa</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8177">#8177</a>)</li> <li>Use <code>line-length</code> setting for isort in lieu of <code>pycodestyle.max-line-length</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8235">#8235</a>)</li> <li>Update fix for <code>unnecessary-paren-on-raise-exception</code> to unsafe for unknown types (<a href="https://redirect.github.com/astral-sh/ruff/pull/8231">#8231</a>)</li> <li>Correct quick fix message for <code>W605</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8255">#8255</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Fix typo in max-doc-length documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8201">#8201</a>)</li> <li>Improve documentation around linter-formatter conflicts (<a href="https://redirect.github.com/astral-sh/ruff/pull/8257">#8257</a>)</li> <li>Fix link to error suppression documentation in <code>unused-noqa</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8172">#8172</a>)</li> <li>Add <code>external</code> option to <code>unused-noqa</code> documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8171">#8171</a>)</li> <li>Add title attribute to icons (<a href="https://redirect.github.com/astral-sh/ruff/pull/8060">#8060</a>)</li> <li>Clarify unsafe case in RSE102 (<a href="https://redirect.github.com/astral-sh/ruff/pull/8256">#8256</a>)</li> <li>Fix skipping formatting examples (<a href="https://redirect.github.com/astral-sh/ruff/pull/8210">#8210</a>)</li> <li>docs: fix name of <code>magic-trailing-comma</code> option in README (<a href="https://redirect.github.com/astral-sh/ruff/pull/8200">#8200</a>)</li> <li>Add note about scope of rule changing in versioning policy (<a href="https://redirect.github.com/astral-sh/ruff/pull/8169">#8169</a>)</li> <li>Document: Fix default lint rules (<a href="https://redirect.github.com/astral-sh/ruff/pull/8218">#8218</a>)</li> <li>Fix a wrong setting in configuration.md (<a href="https://redirect.github.com/astral-sh/ruff/pull/8186">#8186</a>)</li> <li>Fix misspelled TOML headers in the tutorial (<a href="https://redirect.github.com/astral-sh/ruff/pull/8209">#8209</a>)</li> </ul> <h2>Contributors</h2> <ul> <li><a href="https://github.com/MichaReiser"><code>@MichaReiser</code></a></li> <li><a href="https://github.com/T-256"><code>@T-256</code></a></li> <li><a href="https://github.com/TeamSpen210"><code>@TeamSpen210</code></a></li> <li><a href="https://github.com/charliermarsh"><code>@charliermarsh</code></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.3</h2> <p>This release includes a variety of improvements to the Ruff formatter, removing several known and unintentional deviations from Black.</p> <h3>Formatter</h3> <ul> <li>Avoid space around pow for <code>None</code>, <code>True</code> and <code>False</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8189">#8189</a>)</li> <li>Avoid sorting all paths in the format command (<a href="https://redirect.github.com/astral-sh/ruff/pull/8181">#8181</a>)</li> <li>Insert necessary blank line between class and leading comments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8224">#8224</a>)</li> <li>Avoid introducing new parentheses in annotated assignments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8233">#8233</a>)</li> <li>Refine the warnings about incompatible linter options (<a href="https://redirect.github.com/astral-sh/ruff/pull/8196">#8196</a>)</li> <li>Add test and basic implementation for formatter preview mode (<a href="https://redirect.github.com/astral-sh/ruff/pull/8044">#8044</a>)</li> <li>Refine warning about incompatible <code>isort</code> settings (<a href="https://redirect.github.com/astral-sh/ruff/pull/8192">#8192</a>)</li> <li>Only omit optional parentheses for starting or ending with parentheses (<a href="https://redirect.github.com/astral-sh/ruff/pull/8238">#8238</a>)</li> <li>Use source type to determine parser mode for formatting (<a href="https://redirect.github.com/astral-sh/ruff/pull/8205">#8205</a>)</li> <li>Don't warn about magic trailing comma when <code>isort.force-single-line</code> is true (<a href="https://redirect.github.com/astral-sh/ruff/pull/8244">#8244</a>)</li> <li>Use <code>SourceKind::diff</code> for formatter (<a href="https://redirect.github.com/astral-sh/ruff/pull/8240">#8240</a>)</li> <li>Fix <code>fmt:off</code> with trailing child comment (<a href="https://redirect.github.com/astral-sh/ruff/pull/8234">#8234</a>)</li> <li>Formatter parentheses support for <code>IpyEscapeCommand</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8207">#8207</a>)</li> </ul> <h3>Linter</h3> <ul> <li>[<code>pylint</code>] Add buffer methods to <code>bad-dunder-method-name</code> (<code>PLW3201</code>) exclusions (<a href="https://redirect.github.com/astral-sh/ruff/pull/8190">#8190</a>)</li> <li>Match rule prefixes from <code>external</code> codes setting in <code>unused-noqa</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8177">#8177</a>)</li> <li>Use <code>line-length</code> setting for isort in lieu of <code>pycodestyle.max-line-length</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8235">#8235</a>)</li> <li>Update fix for <code>unnecessary-paren-on-raise-exception</code> to unsafe for unknown types (<a href="https://redirect.github.com/astral-sh/ruff/pull/8231">#8231</a>)</li> <li>Correct quick fix message for <code>W605</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8255">#8255</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Fix typo in max-doc-length documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8201">#8201</a>)</li> <li>Improve documentation around linter-formatter conflicts (<a href="https://redirect.github.com/astral-sh/ruff/pull/8257">#8257</a>)</li> <li>Fix link to error suppression documentation in <code>unused-noqa</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8172">#8172</a>)</li> <li>Add <code>external</code> option to <code>unused-noqa</code> documentation (<a href="https://redirect.github.com/astral-sh/ruff/pull/8171">#8171</a>)</li> <li>Add title attribute to icons (<a href="https://redirect.github.com/astral-sh/ruff/pull/8060">#8060</a>)</li> <li>Clarify unsafe case in RSE102 (<a href="https://redirect.github.com/astral-sh/ruff/pull/8256">#8256</a>)</li> <li>Fix skipping formatting examples (<a href="https://redirect.github.com/astral-sh/ruff/pull/8210">#8210</a>)</li> <li>docs: fix name of <code>magic-trailing-comma</code> option in README (<a href="https://redirect.github.com/astral-sh/ruff/pull/8200">#8200</a>)</li> <li>Add note about scope of rule changing in versioning policy (<a href="https://redirect.github.com/astral-sh/ruff/pull/8169">#8169</a>)</li> <li>Document: Fix default lint rules (<a href="https://redirect.github.com/astral-sh/ruff/pull/8218">#8218</a>)</li> <li>Fix a wrong setting in configuration.md (<a href="https://redirect.github.com/astral-sh/ruff/pull/8186">#8186</a>)</li> <li>Fix misspelled TOML headers in the tutorial (<a href="https://redirect.github.com/astral-sh/ruff/pull/8209">#8209</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
5787d71f90
|
build(deps): bump dash from 2.14.0 to 2.14.1 (#278)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [dash](https://github.com/plotly/dash) from 2.14.0 to 2.14.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/plotly/dash/releases">dash's releases</a>.</em></p> <blockquote> <h2>Dash v2.14.1</h2> <h2>Fixed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2672">#2672</a> Fix <code>get_caller_name</code> in case the source is not available.</li> </ul> <h2>Changed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2674">#2674</a> Raise flask & werkzeug limits to <3.1</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/plotly/dash/blob/dev/CHANGELOG.md">dash's changelog</a>.</em></p> <blockquote> <h2>[2.14.1] - 2023-10-26</h2> <h2>Fixed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2672">#2672</a> Fix <code>get_caller_name</code> in case the source is not available.</li> </ul> <h2>Changed</h2> <ul> <li><a href="https://redirect.github.com/plotly/dash/pull/2674">#2674</a> Raise flask & werkzeug limits to <3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
ba529aced9
|
build(deps-dev): bump types-tqdm from 4.66.0.2 to 4.66.0.3 (#279)
Bumps [types-tqdm](https://github.com/python/typeshed) from 4.66.0.2 to 4.66.0.3. <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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
b564b2627c
|
Update company stats after extraction of more stammdaten (#267) | ||
6d77867eb5
|
Using the python action and the inbuild poetry cache (#261)
I have found out that the python setup action supports the use of the poetry cache which increases the build speed. |
|||
1eb972b7ff
|
Adds the transfer of sentiments into the sql db (#253)
Transfers the sentimenes from the mongodb int the sql db. |
|||
|
aca6648997
|
build(deps-dev): bump ruff from 0.1.0 to 0.1.1 (#259)
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.0 to 0.1.1. <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.1</h2> <h2>Changes</h2> <h3>Rule changes</h3> <ul> <li>Add unsafe fix for <code>escape-sequence-in-docstring</code> (<code>D301</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7970">#7970</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Respect <code>#(deprecated)</code> attribute in configuration options (<a href="https://redirect.github.com/astral-sh/ruff/pull/8035">#8035</a>)</li> <li>Add <code>[format|lint].exclude</code> options (<a href="https://redirect.github.com/astral-sh/ruff/pull/8000">#8000</a>)</li> <li>Respect <code>tab-size</code> setting in formatter (<a href="https://redirect.github.com/astral-sh/ruff/pull/8006">#8006</a>)</li> <li>Add <code>lint.preview</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8002">#8002</a>)</li> </ul> <h3>Preview features</h3> <ul> <li>[<code>pylint</code>] Implement <code>literal-membership</code> (<code>PLR6201</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7973">#7973</a>)</li> <li>[<code>pylint</code>] Implement <code>too-many-boolean-expressions</code> (<code>PLR0916</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7975">#7975</a>)</li> <li>[<code>pylint</code>] Implement <code>misplaced-bare-raise</code> (<code>E0704</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7961">#7961</a>)</li> <li>[<code>pylint</code>] Implement <code>global-at-module-level</code> (<code>W0604</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8058">#8058</a>)</li> <li>[<code>pylint</code>] Implement <code>unspecified-encoding</code> (<code>PLW1514</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7939">#7939</a>)</li> <li>Add fix for <code>triple-single-quotes</code> (<code>D300</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7967">#7967</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>New code style badge for <code>ruff format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/7878">#7878</a>)</li> <li>Fix comments outside expression parentheses (<a href="https://redirect.github.com/astral-sh/ruff/pull/7873">#7873</a>)</li> <li>Add <code>--target-version</code> to <code>ruff format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8055">#8055</a>)</li> <li>Skip over parentheses when detecting <code>in</code> keyword (<a href="https://redirect.github.com/astral-sh/ruff/pull/8054">#8054</a>)</li> <li>Add <code>--diff</code> option to <code>ruff format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/7937">#7937</a>)</li> <li>Insert newline after nested function or class statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/7946">#7946</a>)</li> <li>Use <code>pass</code> over ellipsis in non-function/class contexts (<a href="https://redirect.github.com/astral-sh/ruff/pull/8049">#8049</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Lazily evaluate all PEP 695 type alias values (<a href="https://redirect.github.com/astral-sh/ruff/pull/8033">#8033</a>)</li> <li>Avoid failed assertion when showing fixes from stdin (<a href="https://redirect.github.com/astral-sh/ruff/pull/8029">#8029</a>)</li> <li>Avoid flagging HTTP and HTTPS literals in urllib-open (<a href="https://redirect.github.com/astral-sh/ruff/pull/8046">#8046</a>)</li> <li>Avoid flagging <code>bad-dunder-method-name</code> for <code>_</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8015">#8015</a>)</li> <li>Remove Python 2-only methods from <code>URLOpen</code> audit (<a href="https://redirect.github.com/astral-sh/ruff/pull/8047">#8047</a>)</li> <li>Use set bracket replacement for <code>iteration-over-set</code> to preserve whitespace and comments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8001">#8001</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Update tutorial to match revised Ruff defaults (<a href="https://redirect.github.com/astral-sh/ruff/pull/8066">#8066</a>)</li> <li>Update rule <code>B005</code> docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8028">#8028</a>)</li> <li>Update GitHub actions example in docs to use <code>--output-format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8014">#8014</a>)</li> <li>Document <code>lint.preview</code> and <code>format.preview</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8032">#8032</a>)</li> <li>Clarify that new rules should be added to <code>RuleGroup::Preview</code>. (<a href="https://redirect.github.com/astral-sh/ruff/pull/7989">#7989</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.1</h2> <h3>Rule changes</h3> <ul> <li>Add unsafe fix for <code>escape-sequence-in-docstring</code> (<code>D301</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7970">#7970</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Respect <code>#(deprecated)</code> attribute in configuration options (<a href="https://redirect.github.com/astral-sh/ruff/pull/8035">#8035</a>)</li> <li>Add <code>[format|lint].exclude</code> options (<a href="https://redirect.github.com/astral-sh/ruff/pull/8000">#8000</a>)</li> <li>Respect <code>tab-size</code> setting in formatter (<a href="https://redirect.github.com/astral-sh/ruff/pull/8006">#8006</a>)</li> <li>Add <code>lint.preview</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8002">#8002</a>)</li> </ul> <h3>Preview features</h3> <ul> <li>[<code>pylint</code>] Implement <code>literal-membership</code> (<code>PLR6201</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7973">#7973</a>)</li> <li>[<code>pylint</code>] Implement <code>too-many-boolean-expressions</code> (<code>PLR0916</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7975">#7975</a>)</li> <li>[<code>pylint</code>] Implement <code>misplaced-bare-raise</code> (<code>E0704</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7961">#7961</a>)</li> <li>[<code>pylint</code>] Implement <code>global-at-module-level</code> (<code>W0604</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/8058">#8058</a>)</li> <li>[<code>pylint</code>] Implement <code>unspecified-encoding</code> (<code>PLW1514</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7939">#7939</a>)</li> <li>Add fix for <code>triple-single-quotes</code> (<code>D300</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/7967">#7967</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>New code style badge for <code>ruff format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/7878">#7878</a>)</li> <li>Fix comments outside expression parentheses (<a href="https://redirect.github.com/astral-sh/ruff/pull/7873">#7873</a>)</li> <li>Add <code>--target-version</code> to <code>ruff format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8055">#8055</a>)</li> <li>Skip over parentheses when detecting <code>in</code> keyword (<a href="https://redirect.github.com/astral-sh/ruff/pull/8054">#8054</a>)</li> <li>Add <code>--diff</code> option to <code>ruff format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/7937">#7937</a>)</li> <li>Insert newline after nested function or class statements (<a href="https://redirect.github.com/astral-sh/ruff/pull/7946">#7946</a>)</li> <li>Use <code>pass</code> over ellipsis in non-function/class contexts (<a href="https://redirect.github.com/astral-sh/ruff/pull/8049">#8049</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Lazily evaluate all PEP 695 type alias values (<a href="https://redirect.github.com/astral-sh/ruff/pull/8033">#8033</a>)</li> <li>Avoid failed assertion when showing fixes from stdin (<a href="https://redirect.github.com/astral-sh/ruff/pull/8029">#8029</a>)</li> <li>Avoid flagging HTTP and HTTPS literals in urllib-open (<a href="https://redirect.github.com/astral-sh/ruff/pull/8046">#8046</a>)</li> <li>Avoid flagging <code>bad-dunder-method-name</code> for <code>_</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8015">#8015</a>)</li> <li>Remove Python 2-only methods from <code>URLOpen</code> audit (<a href="https://redirect.github.com/astral-sh/ruff/pull/8047">#8047</a>)</li> <li>Use set bracket replacement for <code>iteration-over-set</code> to preserve whitespace and comments (<a href="https://redirect.github.com/astral-sh/ruff/pull/8001">#8001</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Update tutorial to match revised Ruff defaults (<a href="https://redirect.github.com/astral-sh/ruff/pull/8066">#8066</a>)</li> <li>Update rule <code>B005</code> docs (<a href="https://redirect.github.com/astral-sh/ruff/pull/8028">#8028</a>)</li> <li>Update GitHub actions example in docs to use <code>--output-format</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8014">#8014</a>)</li> <li>Document <code>lint.preview</code> and <code>format.preview</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/8032">#8032</a>)</li> <li>Clarify that new rules should be added to <code>RuleGroup::Preview</code>. (<a href="https://redirect.github.com/astral-sh/ruff/pull/7989">#7989</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
3afcd54fec
|
build(deps-dev): bump types-requests from 2.31.0.9 to 2.31.0.10 (#245)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [types-requests](https://github.com/python/typeshed) from 2.31.0.9 to 2.31.0.10. <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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
ac59427249
|
build(deps-dev): bump pytest-mock from 3.11.1 to 3.12.0 (#244)
Bumps [pytest-mock](https://github.com/pytest-dev/pytest-mock) from 3.11.1 to 3.12.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-mock/releases">pytest-mock's releases</a>.</em></p> <blockquote> <h2>v3.12.0</h2> <ul> <li>Added support for Python 3.12.</li> <li>Dropped support for EOL Python 3.7.</li> <li><code>mocker.resetall()</code> now also resets mocks created by <code>mocker.create_autospec</code> (<a href="https://redirect.github.com/pytest-dev/pytest-mock/pull/390">#390</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst">pytest-mock's changelog</a>.</em></p> <blockquote> <h2>3.12.0 (2023-10-19)</h2> <ul> <li>Added support for Python 3.12.</li> <li>Dropped support for EOL Python 3.7.</li> <li><code>mocker.resetall()</code> now also resets mocks created by <code>mocker.create_autospec</code> (<code>[#390](https://github.com/pytest-dev/pytest-mock/issues/390)</code>_).</li> </ul> <p>.. _<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/390">#390</a>: <a href="https://redirect.github.com/pytest-dev/pytest-mock/pull/390">pytest-dev/pytest-mock#390</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
ea3f02ab58
|
build(deps): bump seaborn from 0.12.2 to 0.13.0 (#239)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [seaborn](https://github.com/mwaskom/seaborn) from 0.12.2 to 0.13.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mwaskom/seaborn/releases">seaborn's releases</a>.</em></p> <blockquote> <h2>v0.13.0 (September 2023)</h2> <p><strong>See the <a href="https://seaborn.pydata.org/whatsnew/v0.13.0.html">online docs</a> for an annotated version of these notes with working links.</strong></p> <p>This is a major release with a number of important new features and changes. The highlight is a major overhaul to seaborn's categorical plotting functions, providing them with many new capabilities and better aligning their API with the rest of the library. There is also provisional support for alternate dataframe libraries like <a href="https://www.pola.rs">polars</a>, a new theme and display configuration system for <code>objects.Plot</code>, and many smaller bugfixes and enhancements.</p> <p>Updating is recommended, but users are encouraged to carefully check the outputs of existing code that uses the categorical functions, and they should be aware of some deprecations and intentional changes to the default appearance of the resulting plots (see notes below with and tags).</p> <h2>Major enhancements to categorical plots</h2> <p>Seaborn's <code>categorical functions <categorical_api></code> have been completely rewritten for this release. This provided the opportunity to address some longstanding quirks as well as to add a number of smaller but much-desired features and enhancements.</p> <h3>Support for numeric and datetime data</h3> <p>The categorical functions have historically treated <em>all</em> data as categorical, even when it has a numeric or datetime type. This can now be controlled with the new <!-- raw HTML omitted -->native_scale<!-- raw HTML omitted --> parameter. The default remains <!-- raw HTML omitted -->False<!-- raw HTML omitted --> to preserve existing behavior. But with <!-- raw HTML omitted -->native_scale=True<!-- raw HTML omitted -->, values will be treated as they would by other seaborn or matplotlib functions. Element widths will be derived from the minimum distance between two unique values on the categorical axis.</p> <p>Additionally, while seaborn previously determined the mapping from categorical values to ordinal positions internally, this is now delegated to matplotlib. The change should mostly be transparent to the user, but categorical plots (even with <!-- raw HTML omitted -->native_scale=False<!-- raw HTML omitted -->) will better align with artists added by other seaborn or matplotlib functions in most cases, and matplotlib's interactive machinery will work better.</p> <h3>Changes to color defaults and specification</h3> <p>The categorical functions now act more like the rest of seaborn in that they will produce a plot with a single main color unless the <!-- raw HTML omitted -->hue<!-- raw HTML omitted --> variable is assigned. Previously, there would be an implicit redundant color mapping (e.g., each box in a boxplot would get a separate color from the default palette). To retain the previous behavior, explicitly assign a redundant <!-- raw HTML omitted -->hue<!-- raw HTML omitted --> variable (e.g., <!-- raw HTML omitted -->boxplot(data, x="x", y="y", hue="x")<!-- raw HTML omitted -->).</p> <p>Two related idiosyncratic color specifications are deprecated, but they will continue to work (with a warning) for one release cycle:</p> <ul> <li>Passing a <!-- raw HTML omitted -->palette<!-- raw HTML omitted --> without explicitly assigning <!-- raw HTML omitted -->hue<!-- raw HTML omitted --> is no longer supported (add an explicitly redundant <!-- raw HTML omitted -->hue<!-- raw HTML omitted --> assignment instead).</li> <li>Passing a <!-- raw HTML omitted -->color<!-- raw HTML omitted --> while assigning <!-- raw HTML omitted -->hue<!-- raw HTML omitted --> to produce a gradient is no longer supported (use <!-- raw HTML omitted -->palette="dark:{color}"<!-- raw HTML omitted --> or <!-- raw HTML omitted -->palette="light:{color}"<!-- raw HTML omitted --> instead).</li> </ul> <p>Finally, like other seaborn functions, the default palette now depends on the variable type, and a sequential palette will be used with numeric data. To retain the previous behavior, pass the name of a qualitative palette (e.g., <!-- raw HTML omitted -->palette="deep"<!-- raw HTML omitted --> for seaborn's default). Accordingly, the functions have gained a parameter to control numeric color mappings (<!-- raw HTML omitted -->hue_norm<!-- raw HTML omitted -->).</p> <h3>Other features, enhancements, and changes</h3> <p>The following updates apply to multiple categorical functions.</p> <ul> <li>All functions now accept a <!-- raw HTML omitted -->legend<!-- raw HTML omitted --> parameter, which can be a boolean (to suppress the legend) or one of <!-- raw HTML omitted -->{"auto", "brief", "full"}<!-- raw HTML omitted --> to control the amount of information shown in the legend for a numerical color mapping.</li> <li>All functions now accept a callable <!-- raw HTML omitted -->formatter<!-- raw HTML omitted --> parameter to control the string representation of the data.</li> <li>All functions that draw a solid patch now accept a boolean <!-- raw HTML omitted -->fill<!-- raw HTML omitted --> parameter, which when set to <!-- raw HTML omitted -->False<!-- raw HTML omitted --> will draw line-art elements.</li> <li>All functions that support dodging now have an additional <!-- raw HTML omitted -->gap<!-- raw HTML omitted --> parameter that can be set to a non-zero value to leave space between dodged elements.</li> <li>The <code>boxplot</code>, <code>boxenplot</code>, and <code>violinplot</code> functions now support a single <!-- raw HTML omitted -->linecolor<!-- raw HTML omitted --> parameter.</li> <li>The default value for <!-- raw HTML omitted -->dodge<!-- raw HTML omitted --> has changed from <!-- raw HTML omitted -->True<!-- raw HTML omitted --> to <!-- raw HTML omitted -->"auto"<!-- raw HTML omitted -->. With <!-- raw HTML omitted -->"auto"<!-- raw HTML omitted -->, elements will dodge only when at least one set of elements would otherwise overlap.</li> <li>When the value axis of the plot has a non-linear scale, the statistical operations (e.g. an aggregation in <code>pointplot</code> or the kernel density fit in <code>violinplot</code>) are now applied in that scale space.</li> <li>All functions now accept a <!-- raw HTML omitted -->log_scale<!-- raw HTML omitted --> parameter. With a single argument, this will set the scale on the "value" axis (<em>opposite</em> the categorical axis). A tuple will set each axis directly (although setting a log scale categorical axis also requires <!-- raw HTML omitted -->native_scale=True<!-- raw HTML omitted -->).</li> <li>The <!-- raw HTML omitted -->orient<!-- raw HTML omitted --> parameter now accepts <!-- raw HTML omitted -->"x"/"y"<!-- raw HTML omitted --> to specify the categorical axis, matching the objects interface.</li> <li>The categorical functions are generally more deferential to the user's additional matplotlib keyword arguments.</li> <li>Using <!-- raw HTML omitted -->"gray"<!-- raw HTML omitted --> to select an automatic gray value that complements the main palette is now deprecated in favor of <!-- raw HTML omitted -->"auto"<!-- raw HTML omitted -->.</li> </ul> <p>The following updates are function-specific.</p> <ul> <li>In <code>pointplot</code>, a single <code>matplotlib.lines.Line2D</code> artist is now used rather than adding separate <code>matplotlib.collections.PathCollection</code> artist for the points. As a result, it is now possible to pass additional keyword arguments for complete customization the appearance of both the lines and markers; additionally, the legend representation is improved. Accordingly, parameters that previously allowed only partial customization (<!-- raw HTML omitted -->scale<!-- raw HTML omitted -->, <!-- raw HTML omitted -->join<!-- raw HTML omitted -->, and <!-- raw HTML omitted -->errwidth<!-- raw HTML omitted -->) are now deprecated. The old parameters will now trigger detailed warning messages with instructions for adapting existing code.</li> <li>The bandwidth specification in <code>violinplot</code> better aligns with <code>kdeplot</code>, as the <!-- raw HTML omitted -->bw<!-- raw HTML omitted --> parameter is now deprecated in favor of <!-- raw HTML omitted -->bw_method<!-- raw HTML omitted --> and <!-- raw HTML omitted -->bw_adjust<!-- raw HTML omitted -->.</li> <li>In <code>boxenplot</code>, the boxen are now drawn with separate patch artists in each tail. This may have consequences for code that works with the underlying artists, but it produces a better result for low-alpha / unfilled plots and enables proper area/density scaling.</li> <li>In <code>barplot</code>, the <!-- raw HTML omitted -->errcolor<!-- raw HTML omitted --> and <!-- raw HTML omitted -->errwidth<!-- raw HTML omitted --> parameters are now deprecated in favor of a more general <!-- raw HTML omitted -->err_kws<!-- raw HTML omitted -->` dictionary. The existing parameters will continue to work for two releases.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
41f590b2e8
|
build(deps-dev): bump sphinxcontrib-drawio from 0.0.16 to 0.0.17 (#236)
Bumps [sphinxcontrib-drawio](https://github.com/Modelmat/sphinxcontrib-drawio) from 0.0.16 to 0.0.17. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Modelmat/sphinxcontrib-drawio/releases">sphinxcontrib-drawio's releases</a>.</em></p> <blockquote> <h2>0.0.17</h2> <h2>What's Changed</h2> <ul> <li>Update CI with new python and draw.io versions by <a href="https://github.com/modelmat"><code>@modelmat</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/76">modelmat/sphinxcontrib-drawio#76</a></li> <li>Revert "Run off of latest draw.io version" by <a href="https://github.com/modelmat"><code>@modelmat</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/79">modelmat/sphinxcontrib-drawio#79</a></li> <li>Remove deprecated <code>.. drawio</code> directive by <a href="https://github.com/modelmat"><code>@modelmat</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/78">modelmat/sphinxcontrib-drawio#78</a></li> <li>option: add page-name option to select by name by <a href="https://github.com/schspa"><code>@schspa</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/75">modelmat/sphinxcontrib-drawio#75</a></li> <li>Rework conversion handling to prevent subtle errors by <a href="https://github.com/modelmat"><code>@modelmat</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/80">modelmat/sphinxcontrib-drawio#80</a></li> <li>Produce a warning if the supplied :page-index: is outside the valid range by <a href="https://github.com/modelmat"><code>@modelmat</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/82">modelmat/sphinxcontrib-drawio#82</a></li> <li>Add drawio_disable_gpu config option by <a href="https://github.com/jdillard"><code>@jdillard</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/85">modelmat/sphinxcontrib-drawio#85</a></li> <li>Add drawio_disable_dev_shm_usage config option by <a href="https://github.com/jdillard"><code>@jdillard</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/86">modelmat/sphinxcontrib-drawio#86</a></li> <li>Fix black formatting errors by <a href="https://github.com/jdillard"><code>@jdillard</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/87">modelmat/sphinxcontrib-drawio#87</a></li> <li>Bump wheel from 0.33.6 to 0.38.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/83">modelmat/sphinxcontrib-drawio#83</a></li> <li>Fix deprecated sphinx.testing.path by <a href="https://github.com/jdillard"><code>@jdillard</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/90">modelmat/sphinxcontrib-drawio#90</a></li> <li>Fix absolute path by <a href="https://github.com/jdillard"><code>@jdillard</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/91">modelmat/sphinxcontrib-drawio#91</a></li> <li>Restore support for multiple versions of Sphinx by <a href="https://github.com/jdillard"><code>@jdillard</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/92">modelmat/sphinxcontrib-drawio#92</a></li> <li>More multi-version Sphinx path support by <a href="https://github.com/jdillard"><code>@jdillard</code></a> in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/93">modelmat/sphinxcontrib-drawio#93</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/schspa"><code>@schspa</code></a> made their first contribution in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/75">modelmat/sphinxcontrib-drawio#75</a></li> <li><a href="https://github.com/dependabot"><code>@dependabot</code></a> made their first contribution in <a href="https://redirect.github.com/modelmat/sphinxcontrib-drawio/pull/83">modelmat/sphinxcontrib-drawio#83</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/modelmat/sphinxcontrib-drawio/compare/0.0.16...0.0.17">https://github.com/modelmat/sphinxcontrib-drawio/compare/0.0.16...0.0.17</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
9fcb265bc2
|
build(deps-dev): bump mypy from 1.6.0 to 1.6.1 (#238)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [mypy](https://github.com/python/mypy) from 1.6.0 to 1.6.1. <details> <summary>Commits</summary> <ul> <li><a href=" |
||
fdba24ef11
|
Updates including security-updates (#226) | |||
|
c680ac9759
|
Feature/ner (#103)
NER und Sentiment-Pipeline mit Services zur Datenextraktion. --------- Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> Co-authored-by: TrisNol <tristan.nolde@yahoo.de> |
||
c0d42a22d7
|
General updates & linting (#218) | |||
|
9f7d714403
|
Visualize financials (#206)
Adds the financial graph to the company page. The graph is only available for companies with existing financial data. |
||
ea9c777217
|
Enabeling data processing in docker container. (#195) | |||
ea89a64a80
|
Linter update to ruff==0.0.292 (#191) | |||
d2d4a436f8
|
Add a cli interface to choose a configuration (#163)
- [x] add a cli to the webserver to take env variables into account - [x] add a cli to the data processing that takes enviromental variable as a valid source into account - [x] rework the cli for the reset sql command - [x] rework the cli for the copying of sql data from one db to another |
|||
2abe12f027
|
Add a function to convert DM to EUR (#168)
The function is ment to transform the captial dict into a format that can be added as a kwarg (**norm_capital(capital_dict) to the company entities. This PR only contains the function itself. |
|||
05472cc16a
|
Added longitude/latitude and positional accuracy to the company data (#180) | |||
4d99601fc6
|
Optional docs Feature: Changelog (#155)
Added the ability to generate a changelog of the main branch in the Documenation. |
|||
|
9566276047
|
Create multi page layout (#147)
Created two pages (home and company), page reloads after company selection in dropdown or clicking the home button. |
||
f54c140d98
|
Update after rebasing | |||
091e67de79
|
build first set of docker container in pipline and place them in the the github registry (#142)
- added a Dockerfile for the thre containers - added a workflow step to build and placing the container in the registry - added a docker-compose.yaml to use the build images - added a docker compose to build the images locally and a script for prebuild steps |
|||
|
81b8752abf | Merge branch 'main' into feature/additional-stammdaten | ||
c5a383e903
|
Pipline / dependency updates (#145) | |||
|
77f08cd901 | Merge branch 'main' into feature/additional-stammdaten | ||
|
487b2f42d1
|
update data based on selected company (#122)
Added UI elements to select a company and update shown data depending on chosen company --------- Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> |
||
|
febcd59e39 | test(data-extraction): Include first unit tests | ||
80f077ee7a
|
Version ups (#117)
Rutine version ups for - python-depdencies - pre-commits - piplines |
|||
|
8be192e1de | checkpoint(data-ingestion): Include type in company relations, fix issue in capital for KGs | ||
507647d164
|
Added custom 404 error code page in the sphinx docs (#115) | |||
|
cf92cb61cc | checkpoint(data-ingestion): Extract founding_date and other stats | ||
d64f53eca9
|
Script for the transfer of data from Mongo to SQL (#80) | |||
cee1ef901a
|
Updatest vor everything (#106)
- direct dependencies - other depdenencies - pre-commit |
|||
|
0f6ea8a1ec | feat(config): Read secrets from .env file and environemnt variables |