-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump marshmallow from 3.21.3 to 3.22.0 in /03_uns_graphdb #1128
Merged
dependabot
merged 1 commit into
main
from
dependabot/pip/03_uns_graphdb/marshmallow-3.22.0
Aug 26, 2024
Merged
Bump marshmallow from 3.21.3 to 3.22.0 in /03_uns_graphdb #1128
dependabot
merged 1 commit into
main
from
dependabot/pip/03_uns_graphdb/marshmallow-3.22.0
Aug 26, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [marshmallow](https://github.com/marshmallow-code/marshmallow) from 3.21.3 to 3.22.0. - [Changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst) - [Commits](marshmallow-code/marshmallow@3.21.3...3.22.0) --- updated-dependencies: - dependency-name: marshmallow dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
bot
added
dependencies
Pull requests that update a dependency file
python
Pull requests that update Python code
labels
Aug 26, 2024
mkashwin
approved these changes
Aug 26, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dependabot squash and merge
dependabot
bot
deleted the
dependabot/pip/03_uns_graphdb/marshmallow-3.22.0
branch
August 26, 2024 12:14
mkashwin
added a commit
that referenced
this pull request
Sep 24, 2024
* d5d1e59 - Ashwin Krishnan - 2024-09-23 21:00:52 | fixed event loops issue | * 19de601 - Ashwin Krishnan - 2024-09-22 20:22:14 | enhanced tests | * 2eeedcb - Ashwin Krishnan - 2024-09-21 21:24:41 | fixed bug for regex generation | * 9b41e02 - Ashwin Krishnan - 2024-09-18 18:56:10 | added database in driver creation for efficiency | * 5302c81 - Ashwin Krishnan - 2024-09-18 18:55:31 | reduced cyclomatic complexity | * 9d87788 - Ashwin Krishnan - 2024-09-17 16:48:35 | commented integration tests having issues with async handling and Future/task | * 71f6d61 - Ashwin Krishnan - 2024-09-17 12:17:42 | added tests to check graphQL queries | * 02738af - Ashwin Krishnan - 2024-09-15 22:03:43 | updated graph db graphQL queries and tests | * 83f6053 - Ashwin Krishnan - 2024-09-02 17:39:25 | test data and queris | * 761bc0c - Ashwin Krishnan - 2024-08-19 13:39:45 added test cases for graphdb backend * 03f8534 - dependabot[bot] - 2024-09-23 13:29:47 | Bump strawberry-graphql from 0.240.4 to 0.242.0 in /07_uns_graphql (#1186) | Bumps | [strawberry-graphql](https://github.com/strawberry-graphql/strawberry) | from 0.240.4 to 0.242.0. | <details> | <summary>Release notes</summary> | <p><em>Sourced from <a | href="https://github.com/strawberry-graphql/strawberry/releases">strawberry-graphql's | releases</a>.</em></p> | <blockquote> | <h2>🍓 0.242.0</h2> | <p>Starting with this release, clients using the legacy graphql-ws | subprotocol will receive an error when they try to send binary data | frames. | Before, binary data frames were silently ignored.</p> | <p>While vaguely defined in the protocol, the legacy graphql-ws | subprotocol is generally understood to only support text data | frames.</p> | <p>Releases contributed by <a | href="https://github.com/DoctorJohn"><code>@DoctorJohn</code></a> via | <a | href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3633">#3633</a></p> | <h2>🍓 0.241.0</h2> | <p>You can now configure your schemas to provide a custom subclass of | <code>strawberry.types.Info</code> to your types and queries.</p> | <pre lang="py"><code>import strawberry | from strawberry.schema.config import StrawberryConfig | <p>from .models import ProductModel</p> | <p>class CustomInfo(strawberry.Info): | <a href="https://github.com/property"><code>@property</code></a> | def selected_group_id(self) -> int | None: | """Get the ID of the group you're logged in | as.""" | return | self.context["request"].headers.get("Group-ID")</p> | <p><a | href="https://github.com/strawberry"><code>@strawberry</code></a>.type | class Group: | id: strawberry.ID | name: str</p> | <p><a | href="https://github.com/strawberry"><code>@strawberry</code></a>.type | class User: | id: strawberry.ID | name: str | group: Group</p> | <p><a | href="https://github.com/strawberry"><code>@strawberry</code></a>.type | class Query: | <a | href="https://github.com/strawberry"><code>@strawberry</code></a>.field | def user(self, id: strawberry.ID, info: CustomInfo) -> Product: | kwargs = {"id": id, "name": ...}</p> | <pre><code> if info.selected_group_id is not None: | # Get information about the group you're a part of, if | # available. | kwargs[&quot;group&quot;] = ... | </code></pre> | <p></tr></table> | </code></pre></p> | </blockquote> | <p>... (truncated)</p> | </details> | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md">strawberry-graphql's | changelog</a>.</em></p> | <blockquote> | <h2>0.242.0 - 2024-09-19</h2> | <p>Starting with this release, clients using the legacy graphql-ws | subprotocol will receive an error when they try to send binary data | frames. | Before, binary data frames were silently ignored.</p> | <p>While vaguely defined in the protocol, the legacy graphql-ws | subprotocol is generally understood to only support text data | frames.</p> | <p>Contributed by <a href="https://github.com/DoctorJohn">Jonathan | Ehwald</a> via [PR <a | href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3633">#3633</a>](<a | href="https://redirect.github.com/strawberry-graphql/strawberry/pull/3633/">strawberry-graphql/strawberry#3633</a>)</p> | <h2>0.241.0 - 2024-09-16</h2> | <p>You can now configure your schemas to provide a custom subclass of | <code>strawberry.types.Info</code> to your types and queries.</p> | <pre lang="py"><code>import strawberry | from strawberry.schema.config import StrawberryConfig | <p>from .models import ProductModel</p> | <p>class CustomInfo(strawberry.Info): | <a href="https://github.com/property"><code>@property</code></a> | def selected_group_id(self) -> int | None: | """Get the ID of the group you're logged in | as.""" | return | self.context["request"].headers.get("Group-ID")</p> | <p><a | href="https://github.com/strawberry"><code>@strawberry</code></a>.type | class Group: | id: strawberry.ID | name: str</p> | <p><a | href="https://github.com/strawberry"><code>@strawberry</code></a>.type | class User: | id: strawberry.ID | name: str | group: Group</p> | <p><a | href="https://github.com/strawberry"><code>@strawberry</code></a>.type | class Query: | <a | href="https://github.com/strawberry"><code>@strawberry</code></a>.field | def user(self, id: strawberry.ID, info: CustomInfo) -> Product: | kwargs = {"id": id, "name": ...}</p> | <p></tr></table> | </code></pre></p> | </blockquote> | <p>... (truncated)</p> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/strawberry-graphql/strawberry/commit/ab169712b83b6e808730b0ee865ccefd0f9c0b12"><code>ab16971</code></a> | Release 🍓 0.242.0</li> | <li><a | href="https://github.com/strawberry-graphql/strawberry/commit/63528a59f2139b83aefb5bbec08b0bea795b7003"><code>63528a5</code></a> | Let legacy ws clients know about invalid data frames (<a | href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3633">#3633</a>)</li> | <li><a | href="https://github.com/strawberry-graphql/strawberry/commit/294114689c4a10de4924fa516538ffe797130a43"><code>2941146</code></a> | [pre-commit.ci] pre-commit autoupdate (<a | href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3618">#3618</a>)</li> | <li><a | href="https://github.com/strawberry-graphql/strawberry/commit/a162c9badd5ea636add571539f0bd7b222536176"><code>a162c9b</code></a> | Release 🍓 0.241.0</li> | <li><a | href="https://github.com/strawberry-graphql/strawberry/commit/72870476096a4ec4428bc6170f43bb3ac5228ba1"><code>7287047</code></a> | Add ability to set a custom info class for a schema (<a | href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3592">#3592</a>)</li> | <li><a | href="https://github.com/strawberry-graphql/strawberry/commit/13bd97b8697929ec82a7fd95bdb9c17ccedaddf5"><code>13bd97b</code></a> | Remove old link</li> | <li>See full diff in <a | href="https://github.com/strawberry-graphql/strawberry/compare/0.240.4...0.242.0">compare | view</a></li> | </ul> | </details> | <br /> | | | [![Dependabot compatibility | score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=strawberry-graphql&package-manager=pip&previous-version=0.240.4&new-version=0.242.0)](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> | Co-authored-by: Ashwin Krishnan <36015265+mkashwin@users.noreply.github.com> * 9dd8178 - Ashwin Krishnan - 2024-09-22 20:29:51 | update poetry dependencies | * bde6902 - mkashwin@gmail.com - 2024-09-16 14:04:08 | updated poetry lock | * 37c7b3e - mkashwin@gmail.com - 2024-09-16 14:03:55 | updated poetry lock | * 5337c0a - dependabot[bot] - 2024-09-16 12:27:28 | Bump ruff from 0.6.4 to 0.6.5 in /07_uns_graphql (#1180) | * b7bbd9e - mkashwin@gmail.com - 2024-09-16 12:07:49 | updated poetry lock | * b3ccd73 - dependabot[bot] - 2024-09-16 13:37:22 | Bump idna from 3.8 to 3.10 (#1184) | [//]: # (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 [idna](https://github.com/kjd/idna) from 3.8 to 3.10. | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/kjd/idna/blob/master/HISTORY.rst">idna's | changelog</a>.</em></p> | <blockquote> | <p>3.10 (2024-09-15) | +++++++++++++++++</p> | <ul> | <li>Reverted to Unicode 15.1.0 data. Unicode 16 has some significant | changes | to UTS46 processing that will require more work to properly | implement.</li> | </ul> | <p>3.9 (2024-09-13) | ++++++++++++++++</p> | <ul> | <li>Update to Unicode 16.0.0</li> | <li>Deprecate setup.cfg in favour of pyproject.toml</li> | <li>Use ruff for code formatting</li> | </ul> | <p>Thanks to Waket Zheng for contributions to this release.</p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/kjd/idna/commit/729225d8b0c58bc66bb38d1d0faf281a757ece59"><code>729225d</code></a> | Release v3.10</li> | <li><a | href="https://github.com/kjd/idna/commit/3eef1680132907e90afb0feb29136f6895001f3c"><code>3eef168</code></a> | Merge pull request <a | href="https://redirect.github.com/kjd/idna/issues/194">#194</a> from | kjd/revert-unicode-16</li> | <li><a | href="https://github.com/kjd/idna/commit/ceca619a214c816e04c7c233565280bf3998c938"><code>ceca619</code></a> | Revert Unicode 16.0.0 data updates</li> | <li><a | href="https://github.com/kjd/idna/commit/c43ac75cf649511c3d593164a32a3ff9cd0cdcd1"><code>c43ac75</code></a> | Merge pull request <a | href="https://redirect.github.com/kjd/idna/issues/191">#191</a> from | kjd/release-3.9</li> | <li><a | href="https://github.com/kjd/idna/commit/1b8800a4d0c76126ab2d3e28c7e62f567cbe69f8"><code>1b8800a</code></a> | Release v3.9</li> | <li><a | href="https://github.com/kjd/idna/commit/a1fd16821734235fb6ce4e0283a49a71d61535d2"><code>a1fd168</code></a> | Merge pull request <a | href="https://redirect.github.com/kjd/idna/issues/190">#190</a> from | kjd/unicode-16</li> | <li><a | href="https://github.com/kjd/idna/commit/7732c6153e07946f1bf5cdea96817264d305b7cc"><code>7732c61</code></a> | Merge branch 'master' into unicode-16</li> | <li><a | href="https://github.com/kjd/idna/commit/4ed183d95cf5cdfc98bb867b9e4b33a3fd13ca9b"><code>4ed183d</code></a> | Refactor membership test</li> | <li><a | href="https://github.com/kjd/idna/commit/762216bd7b1d0c45937703ea0c7632360e32c85b"><code>762216b</code></a> | Format with ruff</li> | <li><a | href="https://github.com/kjd/idna/commit/580ece955f7e127094b21b40761be6b70ab62aef"><code>580ece9</code></a> | Implement changes to UTS46 algorithm</li> | <li>Additional commits viewable in <a | href="https://github.com/kjd/idna/compare/v3.8...v3.10">compare | view</a></li> | </ul> | </details> | <br /> | | | [![Dependabot compatibility | score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=idna&package-manager=pip&previous-version=3.8&new-version=3.10)](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 will merge this PR once it's up-to-date and CI passes on it, | as requested by @mkashwin. | | [//]: # (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> * 9561c3f - dependabot[bot] - 2024-09-16 13:37:13 | Bump setuptools from 74.1.2 to 75.0.0 (#1182) | [//]: # (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 [setuptools](https://github.com/pypa/setuptools) from 74.1.2 to | 75.0.0. | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's | changelog</a>.</em></p> | <blockquote> | <h1>v75.0.0</h1> | <h2>Features</h2> | <ul> | <li>Declare also the dependencies used by distutils (adds | jaraco.collections).</li> | </ul> | <h2>Deprecations and Removals</h2> | <ul> | <li>Removed upload_docs command. (<a | href="https://redirect.github.com/pypa/setuptools/issues/2971">#2971</a>)</li> | <li><code>pypa/distutils#294</code><a | href="https://redirect.github.com/pypa/setuptools/issues/4649">#4649</a>)</li> | </ul> | <h1>v74.1.3</h1> | <h2>Bugfixes</h2> | <ul> | <li>Fix cross-platform compilation using | <code>distutils._msvccompiler.MSVCCompiler</code> -- by | :user:<code>saschanaz</code> and :user:<code>Avasam</code> (<a | href="https://redirect.github.com/pypa/setuptools/issues/4648">#4648</a>)</li> | </ul> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pypa/setuptools/commit/5e27b2a6e324e70bd82a045aef8f75c84a3d3b28"><code>5e27b2a</code></a> | Bump version: 74.1.3 → 75.0.0</li> | <li><a | href="https://github.com/pypa/setuptools/commit/af9e245b57ef78fce03c7e28a0189388d8e4de18"><code>af9e245</code></a> | Merge pull request <a | href="https://redirect.github.com/pypa/setuptools/issues/4649">#4649</a> | from pypa/feature/distutils-7283751</li> | <li><a | href="https://github.com/pypa/setuptools/commit/f15861e3ae2fb8a74efc528fa25754c329090611"><code>f15861e</code></a> | Add news fragment.</li> | <li><a | href="https://github.com/pypa/setuptools/commit/ce01828b6894c4597609da54fd343ea1aabfec84"><code>ce01828</code></a> | Merge <a | href="https://github.com/pypa/distutils">https://github.com/pypa/distutils</a> | into feature/distutils-7283751</li> | <li><a | href="https://github.com/pypa/setuptools/commit/378984e02edae91d5f49425da8436f8dd9152b8a"><code>378984e</code></a> | Remove news fragments, not useful here.</li> | <li><a | href="https://github.com/pypa/setuptools/commit/ffdf0bd160ebf6acc1a0790ec1cb72d7da8968c4"><code>ffdf0bd</code></a> | Merge tag 'v74.1.3'</li> | <li><a | href="https://github.com/pypa/setuptools/commit/4c274911c59dd0161303d6cb991ec2a621ce1fb9"><code>4c27491</code></a> | Bump version: 74.1.2 → 74.1.3</li> | <li><a | href="https://github.com/pypa/setuptools/commit/a56a8f9cb798eec1c023242db15a7b3e27c72911"><code>a56a8f9</code></a> | Fix cross-platform compilation using | <code>distutils._msvccompiler.MSVCCompiler</code>.</li> | <li><a | href="https://github.com/pypa/setuptools/commit/72837514c2b67081401db556be9aaaa43debe44f"><code>7283751</code></a> | cygwinccompiler: Get the compilers from sysconfig</li> | <li><a | href="https://github.com/pypa/setuptools/commit/47353c5c699024429d353b7ae47af5406cac46c2"><code>47353c5</code></a> | Fix cross-platform compilation using | <code>distutils._msvccompiler.MSVCCompiler</code></li> | <li>Additional commits viewable in <a | href="https://github.com/pypa/setuptools/compare/v74.1.2...v75.0.0">compare | view</a></li> | </ul> | </details> | <br /> | | | [![Dependabot compatibility | score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=setuptools&package-manager=pip&previous-version=74.1.2&new-version=75.0.0)](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 will merge this PR once it's up-to-date and CI passes on it, | as requested by @mkashwin. | | [//]: # (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> * 0b7b857 - dependabot[bot] - 2024-09-16 11:34:59 | Bump idna from 3.8 to 3.10 in /07_uns_graphql (#1185) | * 93f339c - dependabot[bot] - 2024-09-16 11:34:53 | Bump setuptools from 74.1.2 to 75.0.0 in /07_uns_graphql (#1183) | * c72eb0f - dependabot[bot] - 2024-09-16 11:34:48 | Bump fastapi from 0.114.1 to 0.114.2 in /07_uns_graphql (#1181) | * 9292dc1 - dependabot[bot] - 2024-09-16 11:34:40 | Bump fastapi from 0.114.1 to 0.114.2 (#1179) | * 967eca9 - dependabot[bot] - 2024-09-16 11:34:38 | Bump strawberry-graphql from 0.239.2 to 0.240.4 in /07_uns_graphql (#1178) | * fc04a5c - dependabot[bot] - 2024-09-16 11:34:35 | Bump ruff from 0.6.4 to 0.6.5 (#1177) | * 62d20cb - dependabot[bot] - 2024-09-16 11:34:31 | Bump setuptools from 74.1.2 to 75.0.0 in /03_uns_graphdb (#1176) | * dc240c1 - dependabot[bot] - 2024-09-16 11:34:29 | Bump ruff from 0.6.4 to 0.6.5 in /03_uns_graphdb (#1175) | * d74fa86 - dependabot[bot] - 2024-09-16 11:34:26 | Bump idna from 3.8 to 3.10 in /03_uns_graphdb (#1174) | * ba396e7 - dependabot[bot] - 2024-09-16 11:34:23 | Bump setuptools from 74.1.2 to 75.0.0 in /06_uns_kafka (#1173) | * 064d930 - dependabot[bot] - 2024-09-16 11:34:19 | Bump ruff from 0.6.4 to 0.6.5 in /06_uns_kafka (#1172) | * 361add6 - dependabot[bot] - 2024-09-16 11:34:17 | Bump idna from 3.8 to 3.10 in /06_uns_kafka (#1171) | * 36f7f17 - dependabot[bot] - 2024-09-16 11:34:11 | Bump setuptools from 74.1.2 to 75.0.0 in /02_mqtt-cluster (#1170) | * ee0868a - dependabot[bot] - 2024-09-16 11:34:09 | Bump ruff from 0.6.4 to 0.6.5 in /02_mqtt-cluster (#1169) | * e07af13 - dependabot[bot] - 2024-09-16 11:34:06 | Bump idna from 3.8 to 3.10 in /02_mqtt-cluster (#1168) | * ce872c1 - dependabot[bot] - 2024-09-16 11:34:03 | Bump setuptools from 74.1.2 to 75.0.0 in /05_sparkplugb (#1167) | * 0d2f885 - dependabot[bot] - 2024-09-16 11:34:01 | Bump ruff from 0.6.4 to 0.6.5 in /05_sparkplugb (#1166) | * 298bd50 - dependabot[bot] - 2024-09-16 11:33:58 | Bump idna from 3.8 to 3.10 in /05_sparkplugb (#1165) | * cef542d - dependabot[bot] - 2024-09-16 11:33:54 | Bump ruff from 0.6.4 to 0.6.5 in /04_uns_historian (#1164) | * 9c06fe0 - dependabot[bot] - 2024-09-16 11:33:49 | Bump idna from 3.8 to 3.10 in /04_uns_historian (#1162) | * bc9bb38 - dependabot[bot] - 2024-09-16 11:33:40 | Bump setuptools from 74.1.2 to 75.0.0 in /04_uns_historian (#1163) | * 41df83d - mkashwin@gmail.com - 2024-09-13 11:40:14 | ran poetry update | * dae85ff - mkashwin@gmail.com - 2024-09-10 08:55:38 | ran poetry update | * 3d86740 - mkashwin@gmail.com - 2024-09-10 08:51:49 | ran poetry update | * 9e1fe1a - dependabot[bot] - 2024-09-09 08:52:19 | Bump yarl from 1.9.11 to 1.11.0 in /07_uns_graphql (#1151) | * b096e47 - dependabot[bot] - 2024-09-09 08:52:12 | Bump yarl from 1.9.11 to 1.11.0 (#1143) | * b8c8edc - dependabot[bot] - 2024-09-09 08:51:23 | Bump fastapi from 0.112.3 to 0.114.0 in /07_uns_graphql (#1152) | * 81c1d06 - dependabot[bot] - 2024-09-09 08:51:07 | Bump fastapi from 0.112.3 to 0.114.0 (#1145) | * 664daeb - dependabot[bot] - 2024-09-09 08:50:04 | Bump ruff from 0.6.3 to 0.6.4 (#1146) | * 76f83f6 - dependabot[bot] - 2024-09-09 08:49:53 | Bump ruff from 0.6.3 to 0.6.4 in /04_uns_historian (#1149) | * b97bb2b - dependabot[bot] - 2024-09-09 08:49:41 | Bump ruff from 0.6.3 to 0.6.4 in /05_sparkplugb (#1148) | * 0c7d4dc - dependabot[bot] - 2024-09-09 08:49:29 | Bump ruff from 0.6.3 to 0.6.4 in /07_uns_graphql (#1153) | * bb17e98 - dependabot[bot] - 2024-09-09 08:49:13 | Bump ruff from 0.6.3 to 0.6.4 in /02_mqtt-cluster (#1157) | * 9a6da6e - dependabot[bot] - 2024-09-09 08:49:02 | Bump ruff from 0.6.3 to 0.6.4 in /03_uns_graphdb (#1158) | * b5afc64 - dependabot[bot] - 2024-09-09 08:48:46 | Bump ruff from 0.6.3 to 0.6.4 in /06_uns_kafka (#1161) | * 7208156 - dependabot[bot] - 2024-09-09 08:47:48 | Bump pydantic from 2.8.2 to 2.9.0 in /07_uns_graphql (#1155) | * 9449031 - dependabot[bot] - 2024-09-09 08:47:41 | Bump pydantic from 2.8.2 to 2.9.0 in /06_uns_kafka (#1160) | * 5807143 - dependabot[bot] - 2024-09-09 08:47:35 | Bump pydantic from 2.8.2 to 2.9.0 in /05_sparkplugb (#1147) | * 13c5853 - dependabot[bot] - 2024-09-09 08:47:28 | Bump pydantic from 2.8.2 to 2.9.0 in /04_uns_historian (#1150) | * 962c410 - dependabot[bot] - 2024-09-09 08:47:22 | Bump pydantic from 2.8.2 to 2.9.0 in /03_uns_graphdb (#1159) | * 4a80193 - dependabot[bot] - 2024-09-09 08:47:16 | Bump pydantic from 2.8.2 to 2.9.0 in /02_mqtt-cluster (#1156) | * c81e1bc - dependabot[bot] - 2024-09-09 08:47:10 | Bump pydantic from 2.8.2 to 2.9.0 (#1144) | * 19360b3 - dependabot[bot] - 2024-09-09 08:47:03 | Bump starlette from 0.38.4 to 0.38.5 (#1142) | * e74e3c8 - dependabot[bot] - 2024-09-09 08:46:57 | Bump starlette from 0.38.4 to 0.38.5 in /07_uns_graphql (#1154) | * c17a42e - mkashwin@gmail.com - 2024-09-05 12:58:12 | bumped to LIBRDKAFKA VER "2.5.3" | * 4b1140c - mkashwin@gmail.com - 2024-09-05 12:45:24 | ran poetry update | * 3e31e77 - dependabot[bot] - 2024-09-04 08:31:11 | Bump cryptography from 43.0.0 to 43.0.1 in the pip group (#1140) | Bumps the pip group with 1 update: | [cryptography](https://github.com/pyca/cryptography). | | Updates `cryptography` from 43.0.0 to 43.0.1 | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's | changelog</a>.</em></p> | <blockquote> | <p>43.0.1 - 2024-09-03</p> | <pre><code> | * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL | 3.3.2. | <p>.. _v43-0-0:<br /> | </code></pre></p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pyca/cryptography/commit/a7733878281ca261c4ada04022fc706ba5de9d8b"><code>a773387</code></a> | bump for 43.0.1 (<a | href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/0393fef5758e55e3c7b3a3e6e5b77821c594a87f"><code>0393fef</code></a> | Backport setuptools version ban (<a | href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/6687bab97aef31d6ee6cc94ecc87a972137b5d4a"><code>6687bab</code></a> | Bump openssl from 0.10.65 to 0.10.66 in /src/rust (<a | href="https://redirect.github.com/pyca/cryptography/issues/11320">#11320</a>) | (<a | href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324</a>)</li> | <li>See full diff in <a | href="https://github.com/pyca/cryptography/compare/43.0.0...43.0.1">compare | view</a></li> | </ul> | </details> | <br /> | | | [![Dependabot compatibility | score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cryptography&package-manager=pip&previous-version=43.0.0&new-version=43.0.1)](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 <dependency name> major version` will close this | group update PR and stop Dependabot creating any more for the specific | dependency's major version (unless you unignore this specific | dependency's major version or upgrade to it yourself) | - `@dependabot ignore <dependency name> minor version` will close this | group update PR and stop Dependabot creating any more for the specific | dependency's minor version (unless you unignore this specific | dependency's minor version or upgrade to it yourself) | - `@dependabot ignore <dependency name>` will close this group update PR | and stop Dependabot creating any more for the specific dependency | (unless you unignore this specific dependency or upgrade to it yourself) | - `@dependabot unignore <dependency name>` will remove all of the ignore | conditions of the specified dependency | - `@dependabot unignore <dependency name> <ignore condition>` will | remove the ignore condition of the specified dependency and ignore | conditions | You can disable automated security fix PRs for this repo from the | [Security Alerts | page](https://github.com/mkashwin/unifiednamespace/network/alerts). | | </details> | | Signed-off-by: dependabot[bot] <support@github.com> | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 8e51110 - dependabot[bot] - 2024-09-04 08:30:32 | Bump the pip group across 6 directories with 1 update (#1141) | Bumps the pip group with 1 update in the /02_mqtt-cluster directory: | [cryptography](https://github.com/pyca/cryptography). | Bumps the pip group with 1 update in the /03_uns_graphdb directory: | [cryptography](https://github.com/pyca/cryptography). | Bumps the pip group with 1 update in the /04_uns_historian directory: | [cryptography](https://github.com/pyca/cryptography). | Bumps the pip group with 1 update in the /05_sparkplugb directory: | [cryptography](https://github.com/pyca/cryptography). | Bumps the pip group with 1 update in the /06_uns_kafka directory: | [cryptography](https://github.com/pyca/cryptography). | Bumps the pip group with 1 update in the /07_uns_graphql directory: | [cryptography](https://github.com/pyca/cryptography). | | Updates `cryptography` from 43.0.0 to 43.0.1 | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's | changelog</a>.</em></p> | <blockquote> | <p>43.0.1 - 2024-09-03</p> | <pre><code> | * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL | 3.3.2. | <p>.. _v43-0-0:<br /> | </code></pre></p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pyca/cryptography/commit/a7733878281ca261c4ada04022fc706ba5de9d8b"><code>a773387</code></a> | bump for 43.0.1 (<a | href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/0393fef5758e55e3c7b3a3e6e5b77821c594a87f"><code>0393fef</code></a> | Backport setuptools version ban (<a | href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/6687bab97aef31d6ee6cc94ecc87a972137b5d4a"><code>6687bab</code></a> | Bump openssl from 0.10.65 to 0.10.66 in /src/rust (<a | href="https://redirect.github.com/pyca/cryptography/issues/11320">#11320</a>) | (<a | href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324</a>)</li> | <li>See full diff in <a | href="https://github.com/pyca/cryptography/compare/43.0.0...43.0.1">compare | view</a></li> | </ul> | </details> | <br /> | | Updates `cryptography` from 43.0.0 to 43.0.1 | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's | changelog</a>.</em></p> | <blockquote> | <p>43.0.1 - 2024-09-03</p> | <pre><code> | * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL | 3.3.2. | <p>.. _v43-0-0:<br /> | </code></pre></p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pyca/cryptography/commit/a7733878281ca261c4ada04022fc706ba5de9d8b"><code>a773387</code></a> | bump for 43.0.1 (<a | href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/0393fef5758e55e3c7b3a3e6e5b77821c594a87f"><code>0393fef</code></a> | Backport setuptools version ban (<a | href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/6687bab97aef31d6ee6cc94ecc87a972137b5d4a"><code>6687bab</code></a> | Bump openssl from 0.10.65 to 0.10.66 in /src/rust (<a | href="https://redirect.github.com/pyca/cryptography/issues/11320">#11320</a>) | (<a | href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324</a>)</li> | <li>See full diff in <a | href="https://github.com/pyca/cryptography/compare/43.0.0...43.0.1">compare | view</a></li> | </ul> | </details> | <br /> | | Updates `cryptography` from 43.0.0 to 43.0.1 | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's | changelog</a>.</em></p> | <blockquote> | <p>43.0.1 - 2024-09-03</p> | <pre><code> | * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL | 3.3.2. | <p>.. _v43-0-0:<br /> | </code></pre></p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pyca/cryptography/commit/a7733878281ca261c4ada04022fc706ba5de9d8b"><code>a773387</code></a> | bump for 43.0.1 (<a | href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/0393fef5758e55e3c7b3a3e6e5b77821c594a87f"><code>0393fef</code></a> | Backport setuptools version ban (<a | href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/6687bab97aef31d6ee6cc94ecc87a972137b5d4a"><code>6687bab</code></a> | Bump openssl from 0.10.65 to 0.10.66 in /src/rust (<a | href="https://redirect.github.com/pyca/cryptography/issues/11320">#11320</a>) | (<a | href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324</a>)</li> | <li>See full diff in <a | href="https://github.com/pyca/cryptography/compare/43.0.0...43.0.1">compare | view</a></li> | </ul> | </details> | <br /> | | Updates `cryptography` from 43.0.0 to 43.0.1 | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's | changelog</a>.</em></p> | <blockquote> | <p>43.0.1 - 2024-09-03</p> | <pre><code> | * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL | 3.3.2. | <p>.. _v43-0-0:<br /> | </code></pre></p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pyca/cryptography/commit/a7733878281ca261c4ada04022fc706ba5de9d8b"><code>a773387</code></a> | bump for 43.0.1 (<a | href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/0393fef5758e55e3c7b3a3e6e5b77821c594a87f"><code>0393fef</code></a> | Backport setuptools version ban (<a | href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/6687bab97aef31d6ee6cc94ecc87a972137b5d4a"><code>6687bab</code></a> | Bump openssl from 0.10.65 to 0.10.66 in /src/rust (<a | href="https://redirect.github.com/pyca/cryptography/issues/11320">#11320</a>) | (<a | href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324</a>)</li> | <li>See full diff in <a | href="https://github.com/pyca/cryptography/compare/43.0.0...43.0.1">compare | view</a></li> | </ul> | </details> | <br /> | | Updates `cryptography` from 43.0.0 to 43.0.1 | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's | changelog</a>.</em></p> | <blockquote> | <p>43.0.1 - 2024-09-03</p> | <pre><code> | * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL | 3.3.2. | <p>.. _v43-0-0:<br /> | </code></pre></p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pyca/cryptography/commit/a7733878281ca261c4ada04022fc706ba5de9d8b"><code>a773387</code></a> | bump for 43.0.1 (<a | href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/0393fef5758e55e3c7b3a3e6e5b77821c594a87f"><code>0393fef</code></a> | Backport setuptools version ban (<a | href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/6687bab97aef31d6ee6cc94ecc87a972137b5d4a"><code>6687bab</code></a> | Bump openssl from 0.10.65 to 0.10.66 in /src/rust (<a | href="https://redirect.github.com/pyca/cryptography/issues/11320">#11320</a>) | (<a | href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324</a>)</li> | <li>See full diff in <a | href="https://github.com/pyca/cryptography/compare/43.0.0...43.0.1">compare | view</a></li> | </ul> | </details> | <br /> | | Updates `cryptography` from 43.0.0 to 43.0.1 | <details> | <summary>Changelog</summary> | <p><em>Sourced from <a | href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's | changelog</a>.</em></p> | <blockquote> | <p>43.0.1 - 2024-09-03</p> | <pre><code> | * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL | 3.3.2. | <p>.. _v43-0-0:<br /> | </code></pre></p> | </blockquote> | </details> | <details> | <summary>Commits</summary> | <ul> | <li><a | href="https://github.com/pyca/cryptography/commit/a7733878281ca261c4ada04022fc706ba5de9d8b"><code>a773387</code></a> | bump for 43.0.1 (<a | href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/0393fef5758e55e3c7b3a3e6e5b77821c594a87f"><code>0393fef</code></a> | Backport setuptools version ban (<a | href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526</a>)</li> | <li><a | href="https://github.com/pyca/cryptography/commit/6687bab97aef31d6ee6cc94ecc87a972137b5d4a"><code>6687bab</code></a> | Bump openssl from 0.10.65 to 0.10.66 in /src/rust (<a | href="https://redirect.github.com/pyca/cryptography/issues/11320">#11320</a>) | (<a | href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324</a>)</li> | <li>See full diff in <a | href="https://github.com/pyca/cryptography/compare/43.0.0...43.0.1">compare | view</a></li> | </ul> | </details> | <br /> | | | 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 <dependency name> major version` will close this | group update PR and stop Dependabot creating any more for the specific | dependency's major version (unless you unignore this specific | dependency's major version or upgrade to it yourself) | - `@dependabot ignore <dependency name> minor version` will close this | group update PR and stop Dependabot creating any more for the specific | dependency's minor version (unless you unignore this specific | dependency's minor version or upgrade to it yourself) | - `@dependabot ignore <dependency name>` will close this group update PR | and stop Dependabot creating any more for the specific dependency | (unless you unignore this specific dependency or upgrade to it yourself) | - `@dependabot unignore <dependency name>` will remove all of the ignore | conditions of the specified dependency | - `@dependabot unignore <dependency name> <ignore condition>` will | remove the ignore condition of the specified dependency and ignore | conditions | You can disable automated security fix PRs for this repo from the | [Security Alerts | page](https://github.com/mkashwin/unifiednamespace/network/alerts). | | </details> | | Signed-off-by: dependabot[bot] <support@github.com> | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 27caf64 - mkashwin@gmail.com - 2024-09-02 09:01:55 | Updating strawberry-graphql (0.237.3 -> 0.239.0) | * d394d1e - dependabot[bot] - 2024-09-02 08:19:55 | Bump starlette from 0.38.3 to 0.38.4 in /07_uns_graphql (#1135) | * db326d8 - dependabot[bot] - 2024-09-02 08:19:46 | Bump starlette from 0.38.3 to 0.38.4 (#1139) | * 171258e - dependabot[bot] - 2024-09-02 08:19:35 | Bump yarl from 1.9.6 to 1.9.7 (#1138) | * 4e78f42 - dependabot[bot] - 2024-09-02 08:19:28 | Bump yarl from 1.9.6 to 1.9.7 in /07_uns_graphql (#1137) | * e5bd2a4 - dependabot[bot] - 2024-09-02 08:19:20 | Bump strawberry-graphql from 0.237.3 to 0.239.0 in /07_uns_graphql (#1136) | * 86d87cc - github-actions[bot] - 2024-09-01 10:53:00 | Updating protocol buffers version to v28.0 (#1134) | * 64edebc - Github Actions - 2024-09-01 02:10:26 | Upgrade to protocol buffer release v28.0 | | --------- | | Co-authored-by: Github Actions <actions@github.com> | Co-authored-by: Ashwin Krishnan <36015265+mkashwin@users.noreply.github.com> * 697e53f - Ashwin Krishnan - 2024-08-26 20:27:40 | - Updating idna (3.7 -> 3.8) - Updating rich (13.7.1 -> 13.8.0) - Updating aiohappyeyeballs (2.3.7 -> 2.4.0) - Updating fastapi (0.112.1 -> 0.112.2) - Updating typer (0.12.4 -> 0.12.5) - Updating websockets (12.0 -> 13.0) - Updating aiohttp (3.10.4 -> 3.10.5) - Updating marshmallow (3.21.3 -> 3.22.0) - Updating authlib (1.3.1 -> 1.3.2) - Updating safety-schemas (0.0.3 -> 0.0.5) - Updating setuptools (72.2.0 -> 73.0.1) - Updating ruff (0.6.1 -> 0.6.2) | * 717d098 - dependabot[bot] - 2024-08-26 18:25:43 | Bump setuptools from 72.2.0 to 73.0.1 in /06_uns_kafka (#1106) | * f3e0fe0 - dependabot[bot] - 2024-08-26 18:15:13 | Bump marshmallow from 3.21.3 to 3.22.0 in /02_mqtt-cluster (#1113) | * 2d7a1f1 - dependabot[bot] - 2024-08-26 17:42:33 | Bump safety-schemas from 0.0.3 to 0.0.5 in /06_uns_kafka (#1108) | * 4ee8698 - dependabot[bot] - 2024-08-26 17:20:41 | Bump safety from 3.2.5 to 3.2.6 in /04_uns_historian (#1103) | * cb48238 - dependabot[bot] - 2024-08-26 17:17:39 | Bump authlib from 1.3.1 to 1.3.2 in /05_sparkplugb (#1120) | * 11c5fae - dependabot[bot] - 2024-08-26 17:10:41 | Bump typer from 0.12.4 to 0.12.5 in /03_uns_graphdb (#1127) | * 12e9115 - dependabot[bot] - 2024-08-26 17:09:43 | Bump setuptools from 72.2.0 to 73.0.1 in /07_uns_graphql (#1130) | * 1f1eb27 - dependabot[bot] - 2024-08-26 17:06:31 | Bump safety from 3.2.5 to 3.2.6 in /02_mqtt-cluster (#1116) | * 291f311 - dependabot[bot] - 2024-08-26 15:43:59 | Bump idna from 3.7 to 3.8 (#1119) | * f36030d - dependabot[bot] - 2024-08-26 15:37:33 | Bump ruff from 0.6.1 to 0.6.2 in /06_uns_kafka (#1107) | * 44f1060 - dependabot[bot] - 2024-08-26 15:26:48 | Bump idna from 3.7 to 3.8 in /05_sparkplugb (#1121) | * 519c038 - dependabot[bot] - 2024-08-26 15:24:30 | Bump setuptools from 72.2.0 to 73.0.1 in /02_mqtt-cluster (#1111) | * 9a8659c - dependabot[bot] - 2024-08-26 15:23:49 | Bump authlib from 1.3.1 to 1.3.2 in /03_uns_graphdb (#1126) | * 6188e02 - dependabot[bot] - 2024-08-26 15:23:42 | Bump websockets from 12.0 to 13.0 in /07_uns_graphql (#1129) | * a30178b - dependabot[bot] - 2024-08-26 15:20:02 | Bump safety-schemas from 0.0.3 to 0.0.5 in /07_uns_graphql (#1131) | * ec89667 - dependabot[bot] - 2024-08-26 15:17:07 | Bump safety from 3.2.5 to 3.2.6 in /05_sparkplugb (#1122) | * 25e3612 - dependabot[bot] - 2024-08-26 15:14:44 | Bump ruff from 0.6.1 to 0.6.2 in /04_uns_historian (#1101) | * 9bc8ae9 - dependabot[bot] - 2024-08-26 15:06:57 | Bump typer from 0.12.4 to 0.12.5 in /05_sparkplugb (#1123) | * a660f2a - dependabot[bot] - 2024-08-26 12:14:16 | Bump marshmallow from 3.21.3 to 3.22.0 in /03_uns_graphdb (#1128) | * 3035d08 - dependabot[bot] - 2024-08-26 12:10:10 | Bump pytest-asyncio from 0.23.8 to 0.24.0 in /07_uns_graphql (#1132) | * 627025e - dependabot[bot] - 2024-08-26 12:09:56 | Bump fastapi from 0.112.1 to 0.112.2 in /07_uns_graphql (#1133) | * 4fca31a - dependabot[bot] - 2024-08-26 12:09:07 | Bump idna from 3.7 to 3.8 in /03_uns_graphdb (#1125) | * e924458 - dependabot[bot] - 2024-08-26 12:08:51 | Bump safety from 3.2.5 to 3.2.6 in /03_uns_graphdb (#1124) | * cea88c4 - dependabot[bot] - 2024-08-26 12:06:08 | Bump fastapi from 0.112.1 to 0.112.2 (#1118) | * a3ab3e9 - dependabot[bot] - 2024-08-26 12:05:53 | Bump safety-schemas from 0.0.3 to 0.0.5 in /05_sparkplugb (#1117) | * 6e57c36 - dependabot[bot] - 2024-08-26 12:04:07 | Bump websockets from 12.0 to 13.0 (#1114) | * 93c7cbe - dependabot[bot] - 2024-08-26 12:03:34 | Bump aiohappyeyeballs from 2.3.7 to 2.4.0 (#1112) | * f18b7f9 - dependabot[bot] - 2024-08-26 12:02:37 | Bump ruff from 0.6.1 to 0.6.2 (#1110) | * 07a8d77 - dependabot[bot] - 2024-08-26 12:02:22 | Bump idna from 3.7 to 3.8 in /02_mqtt-cluster (#1109) | * 1a52fc8 - dependabot[bot] - 2024-08-26 12:01:08 | Bump authlib from 1.3.1 to 1.3.2 in /06_uns_kafka (#1105) | * d3ddbba - dependabot[bot] - 2024-08-26 12:00:54 | Bump typer from 0.12.4 to 0.12.5 in /06_uns_kafka (#1104) | * f3a236c - dependabot[bot] - 2024-08-26 11:59:50 | Bump typer from 0.12.4 to 0.12.5 in /04_uns_historian (#1102) | * ab94733 - dependabot[bot] - 2024-08-26 11:59:12 | Bump setuptools from 72.2.0 to 73.0.1 in /04_uns_historian (#1100) | * 0da6abd - dependabot[bot] - 2024-08-26 11:58:56 | Bump safety-schemas from 0.0.3 to 0.0.5 in /04_uns_historian (#1099) | * 91d068c - dependabot[bot] - 2024-08-19 12:28:32 | Bump ruff from 0.5.7 to 0.6.1 in /04_uns_historian (#1097) | * 5f99b4f - dependabot[bot] - 2024-08-19 12:28:17 | Bump ruff from 0.5.7 to 0.6.1 in /05_sparkplugb (#1095) | * f13af11 - dependabot[bot] - 2024-08-19 12:28:06 | Bump ruff from 0.5.7 to 0.6.1 in /03_uns_graphdb (#1093) | * 2030959 - dependabot[bot] - 2024-08-19 12:27:49 | Bump ruff from 0.5.7 to 0.6.1 in /06_uns_kafka (#1092) | * 5526090 - dependabot[bot] - 2024-08-19 12:27:36 | Bump ruff from 0.5.7 to 0.6.1 in /02_mqtt-cluster (#1089) | * d371d4b - dependabot[bot] - 2024-08-19 12:27:25 | Bump ruff from 0.5.7 to 0.6.1 in /07_uns_graphql (#1087) | * 42906d4 - dependabot[bot] - 2024-08-19 12:27:11 | Bump ruff from 0.5.7 to 0.6.1 (#1085) | * e7346d6 - Ashwin Krishnan - 2024-08-19 05:52:13 - Updating starlette (0.37.2 -> 0.38.2) - Updating aiohappyeyeballs (2.3.5 -> 2.3.7) - Updating fastapi (0.112.0 -> 0.112.1) - Updating typer (0.12.3 -> 0.12.4) - Updating uvloop (0.19.0 -> 0.20.0) - Updating aiohttp (3.10.3 -> 3.10.4) - Updating setuptools (72.1.0 -> 72.2.0) - Updating uvicorn (0.30.5 -> 0.30.6) --------- Co-authored-by: Ashwin Krishnan <mkashwin@gmail.com> Co-authored-by: Ashwin Krishnan <36015265+mkashwin@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
python
Pull requests that update Python code
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps marshmallow from 3.21.3 to 3.22.0.
Changelog
Sourced from marshmallow's changelog.
Commits
fbad345
Bump version and update changelog78cbc09
Merge pull request #2271 from deckar01/2270-meta-many7609530
Merge pull request #2279 from deckar01/simplify-hooksbbbd7af
Reduce pre-commit.ci updates to monthly (#2300)1d21132
[pre-commit.ci] pre-commit autoupdate8ceb4b3
[pre-commit.ci] pre-commit autoupdate (#2298)ac13e0d
Add sponsors to docs7ebdc7b
Fix logo image for pypi rendering7c2f1ca
Add Route4Me as sponsor01f8432
Bump alabaster from 0.7.16 to 1.0.0 (#2292)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 commands and options
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)