-
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
Creating PR for branch feature/graphql_graphdb #1187
Merged
Merged
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
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 (Bump strawberry-graphql from 0.240.4 to 0.242.0 in /07_uns_graphql #1186)
| Bumps
| strawberry-graphql
| from 0.240.4 to 0.242.0.
|
|
Release notes
|
Sourced from <a
| href="https://github.com/strawberry-graphql/strawberry/releases">strawberry-graphql's
| releases.
|
|
... (truncated)
|
|
|
Changelog
|
Sourced from <a
| href="https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md">strawberry-graphql's
| changelog.
|
|
... (truncated)
|
|
|
Commits
|
|
| href="strawberry-graphql/strawberry@ab169712b83b6e808730b0ee865ccefd0f9c0b12">
ab16971
| Release 🍓 0.242.0
|
| href="strawberry-graphql/strawberry@63528a59f2139b83aefb5bbec08b0bea795b7003">
63528a5
| Let legacy ws clients know about invalid data frames (<a
| href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3633">#3633)
|
| href="strawberry-graphql/strawberry@294114689c4a10de4924fa516538ffe797130a43">
2941146
| [pre-commit.ci] pre-commit autoupdate (<a
| href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3618">#3618)
|
| href="strawberry-graphql/strawberry@a162c9badd5ea636add571539f0bd7b222536176">
a162c9b
| Release 🍓 0.241.0
|
| href="strawberry-graphql/strawberry@72870476096a4ec4428bc6170f43bb3ac5228ba1">
7287047
| Add ability to set a custom info class for a schema (<a
| href="https://redirect.github.com/strawberry-graphql/strawberry/issues/3592">#3592)
|
| href="strawberry-graphql/strawberry@13bd97b8697929ec82a7fd95bdb9c17ccedaddf5">
13bd97b
| Remove old link
|
| href="strawberry-graphql/strawberry@0.240.4...0.242.0">compare
| view
|
|
|
|
|
|
|
| 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)
|
| ---
|
|
|
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)
|
|
|
|
| ---------
|
| 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 (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⚠️ Dependabot is rebasing this PR ⚠️
| Bump idna from 3.8 to 3.10 (Bump idna from 3.8 to 3.10 #1184)
| [//]: # (dependabot-start)
|
|
| 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 from 3.8 to 3.10.
|
|
Changelog
|
Sourced from <a
| href="https://github.com/kjd/idna/blob/master/HISTORY.rst">idna's
| changelog.
|
|
|
|
Commits
|
|
| href="kjd/idna@729225d8b0c58bc66bb38d1d0faf281a757ece59">
729225d
| Release v3.10
|
| href="kjd/idna@3eef1680132907e90afb0feb29136f6895001f3c">
3eef168
| Merge pull request <a
| href="https://redirect.github.com/kjd/idna/issues/194">#194 from
| kjd/revert-unicode-16
|
| href="kjd/idna@ceca619a214c816e04c7c233565280bf3998c938">
ceca619
| Revert Unicode 16.0.0 data updates
|
| href="kjd/idna@c43ac75cf649511c3d593164a32a3ff9cd0cdcd1">
c43ac75
| Merge pull request <a
| href="https://redirect.github.com/kjd/idna/issues/191">#191 from
| kjd/release-3.9
|
| href="kjd/idna@1b8800a4d0c76126ab2d3e28c7e62f567cbe69f8">
1b8800a
| Release v3.9
|
| href="kjd/idna@a1fd16821734235fb6ce4e0283a49a71d61535d2">
a1fd168
| Merge pull request <a
| href="https://redirect.github.com/kjd/idna/issues/190">#190 from
| kjd/unicode-16
|
| href="kjd/idna@7732c6153e07946f1bf5cdea96817264d305b7cc">
7732c61
| Merge branch 'master' into unicode-16
|
| href="kjd/idna@4ed183d95cf5cdfc98bb867b9e4b33a3fd13ca9b">
4ed183d
| Refactor membership test
|
| href="kjd/idna@762216bd7b1d0c45937703ea0c7632360e32c85b">
762216b
| Format with ruff
|
| href="kjd/idna@580ece955f7e127094b21b40761be6b70ab62aef">
580ece9
| Implement changes to UTS46 algorithm
|
| href="kjd/idna@v3.8...v3.10">compare
| view
|
|
|
|
|
|
|
| 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)
|
| ---
|
|
|
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)
|
|
|
|
| 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⚠️ Dependabot is rebasing this PR ⚠️
| Bump setuptools from 74.1.2 to 75.0.0 (Bump setuptools from 74.1.2 to 75.0.0 #1182)
| [//]: # (dependabot-start)
|
|
| 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 from 74.1.2 to
| 75.0.0.
|
|
Changelog
|
Sourced from <a
| href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's
| changelog.
|
|
|
|
Commits
|
|
| href="pypa/setuptools@5e27b2a6e324e70bd82a045aef8f75c84a3d3b28">
5e27b2a
| Bump version: 74.1.3 → 75.0.0
|
| href="pypa/setuptools@af9e245b57ef78fce03c7e28a0189388d8e4de18">
af9e245
| Merge pull request <a
| href="https://redirect.github.com/pypa/setuptools/issues/4649">#4649
| from pypa/feature/distutils-7283751
|
| href="pypa/setuptools@f15861e3ae2fb8a74efc528fa25754c329090611">
f15861e
| Add news fragment.
|
| href="pypa/setuptools@ce01828b6894c4597609da54fd343ea1aabfec84">
ce01828
| Merge <a
| href="https://github.com/pypa/distutils">https://github.com/pypa/distutils
| into feature/distutils-7283751
|
| href="pypa/setuptools@378984e02edae91d5f49425da8436f8dd9152b8a">
378984e
| Remove news fragments, not useful here.
|
| href="pypa/setuptools@ffdf0bd160ebf6acc1a0790ec1cb72d7da8968c4">
ffdf0bd
| Merge tag 'v74.1.3'
|
| href="pypa/setuptools@4c274911c59dd0161303d6cb991ec2a621ce1fb9">
4c27491
| Bump version: 74.1.2 → 74.1.3
|
| href="pypa/setuptools@a56a8f9cb798eec1c023242db15a7b3e27c72911">
a56a8f9
| Fix cross-platform compilation using
|
distutils._msvccompiler.MSVCCompiler
.|
| href="pypa/setuptools@72837514c2b67081401db556be9aaaa43debe44f">
7283751
| cygwinccompiler: Get the compilers from sysconfig
|
| href="pypa/setuptools@47353c5c699024429d353b7ae47af5406cac46c2">
47353c5
| Fix cross-platform compilation using
|
distutils._msvccompiler.MSVCCompiler
|
| href="pypa/setuptools@v74.1.2...v75.0.0">compare
| view
|
|
|
|
|
|
|
| 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)
|
| ---
|
|
|
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)
|
|
|
|
| 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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (Bump cryptography from 43.0.0 to 43.0.1 in the pip group #1140)
| Bumps the pip group with 1 update:
| cryptography.
|
| Updates
cryptography
from 43.0.0 to 43.0.1|
|
Changelog
|
Sourced from <a
| href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
| changelog.
|
|
|
|
Commits
|
|
| href="pyca/cryptography@a7733878281ca261c4ada04022fc706ba5de9d8b">
a773387
| bump for 43.0.1 (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533)
|
| href="pyca/cryptography@0393fef5758e55e3c7b3a3e6e5b77821c594a87f">
0393fef
| Backport setuptools version ban (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526)
|
| href="pyca/cryptography@6687bab97aef31d6ee6cc94ecc87a972137b5d4a">
6687bab
| 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
| href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324)
|
| href="pyca/cryptography@43.0.0...43.0.1">compare
| view
|
|
|
|
|
|
|
| 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)
|
| ---
|
|
|
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 <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.
|
|
|
| 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 (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.
| Bumps the pip group with 1 update in the /03_uns_graphdb directory:
| cryptography.
| Bumps the pip group with 1 update in the /04_uns_historian directory:
| cryptography.
| Bumps the pip group with 1 update in the /05_sparkplugb directory:
| cryptography.
| Bumps the pip group with 1 update in the /06_uns_kafka directory:
| cryptography.
| Bumps the pip group with 1 update in the /07_uns_graphql directory:
| cryptography.
|
| Updates
cryptography
from 43.0.0 to 43.0.1|
|
Changelog
|
Sourced from <a
| href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
| changelog.
|
|
|
|
Commits
|
|
| href="pyca/cryptography@a7733878281ca261c4ada04022fc706ba5de9d8b">
a773387
| bump for 43.0.1 (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533)
|
| href="pyca/cryptography@0393fef5758e55e3c7b3a3e6e5b77821c594a87f">
0393fef
| Backport setuptools version ban (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526)
|
| href="pyca/cryptography@6687bab97aef31d6ee6cc94ecc87a972137b5d4a">
6687bab
| 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
| href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324)
|
| href="pyca/cryptography@43.0.0...43.0.1">compare
| view
|
|
|
|
| Updates
cryptography
from 43.0.0 to 43.0.1|
|
Changelog
|
Sourced from <a
| href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
| changelog.
|
|
|
|
Commits
|
|
| href="pyca/cryptography@a7733878281ca261c4ada04022fc706ba5de9d8b">
a773387
| bump for 43.0.1 (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533)
|
| href="pyca/cryptography@0393fef5758e55e3c7b3a3e6e5b77821c594a87f">
0393fef
| Backport setuptools version ban (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526)
|
| href="pyca/cryptography@6687bab97aef31d6ee6cc94ecc87a972137b5d4a">
6687bab
| 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
| href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324)
|
| href="pyca/cryptography@43.0.0...43.0.1">compare
| view
|
|
|
|
| Updates
cryptography
from 43.0.0 to 43.0.1|
|
Changelog
|
Sourced from <a
| href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
| changelog.
|
|
|
|
Commits
|
|
| href="pyca/cryptography@a7733878281ca261c4ada04022fc706ba5de9d8b">
a773387
| bump for 43.0.1 (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533)
|
| href="pyca/cryptography@0393fef5758e55e3c7b3a3e6e5b77821c594a87f">
0393fef
| Backport setuptools version ban (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526)
|
| href="pyca/cryptography@6687bab97aef31d6ee6cc94ecc87a972137b5d4a">
6687bab
| 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
| href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324)
|
| href="pyca/cryptography@43.0.0...43.0.1">compare
| view
|
|
|
|
| Updates
cryptography
from 43.0.0 to 43.0.1|
|
Changelog
|
Sourced from <a
| href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
| changelog.
|
|
|
|
Commits
|
|
| href="pyca/cryptography@a7733878281ca261c4ada04022fc706ba5de9d8b">
a773387
| bump for 43.0.1 (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533)
|
| href="pyca/cryptography@0393fef5758e55e3c7b3a3e6e5b77821c594a87f">
0393fef
| Backport setuptools version ban (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526)
|
| href="pyca/cryptography@6687bab97aef31d6ee6cc94ecc87a972137b5d4a">
6687bab
| 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
| href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324)
|
| href="pyca/cryptography@43.0.0...43.0.1">compare
| view
|
|
|
|
| Updates
cryptography
from 43.0.0 to 43.0.1|
|
Changelog
|
Sourced from <a
| href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
| changelog.
|
|
|
|
Commits
|
|
| href="pyca/cryptography@a7733878281ca261c4ada04022fc706ba5de9d8b">
a773387
| bump for 43.0.1 (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533)
|
| href="pyca/cryptography@0393fef5758e55e3c7b3a3e6e5b77821c594a87f">
0393fef
| Backport setuptools version ban (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526)
|
| href="pyca/cryptography@6687bab97aef31d6ee6cc94ecc87a972137b5d4a">
6687bab
| 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
| href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324)
|
| href="pyca/cryptography@43.0.0...43.0.1">compare
| view
|
|
|
|
| Updates
cryptography
from 43.0.0 to 43.0.1|
|
Changelog
|
Sourced from <a
| href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
| changelog.
|
|
|
|
Commits
|
|
| href="pyca/cryptography@a7733878281ca261c4ada04022fc706ba5de9d8b">
a773387
| bump for 43.0.1 (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11533">#11533)
|
| href="pyca/cryptography@0393fef5758e55e3c7b3a3e6e5b77821c594a87f">
0393fef
| Backport setuptools version ban (<a
| href="https://redirect.github.com/pyca/cryptography/issues/11526">#11526)
|
| href="pyca/cryptography@6687bab97aef31d6ee6cc94ecc87a972137b5d4a">
6687bab
| 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
| href="https://redirect.github.com/pyca/cryptography/issues/11324">#11324)
|
| href="pyca/cryptography@43.0.0...43.0.1">compare
| view
|
|
|
|
|
| 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)
|
| ---
|
|
|
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 <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.
|
|
|
| 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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (Bump ruff from 0.5.7 to 0.6.1 #1085)
|
e7346d6 - Ashwin Krishnan - 2024-08-19 05:52:13